Sycing Foundry files.

git-svn-id: https://svn.libreccm.org/ccm/trunk@2893 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2014-09-29 14:04:39 +00:00
parent 19e8d52464
commit 4d3aa1fca9
5 changed files with 14 additions and 10 deletions

View File

@ -1,20 +1,25 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<foundry:documentation xmlns:foundry="http://foundry.libreccm.org"> <foundry:documentation xmlns:foundry="http://foundry.libreccm.org">
<foundry:doc-static-text href="overview"/> <foundry:doc-chapter id="overview"
title="Overview">
<foundry:doc-static-text href="overview-foundry"/>
<foundry:doc-static-text href="this-manual"/>
</foundry:doc-chapter>
<foundry:doc-chapter id="user-manual" <foundry:doc-chapter id="user-manual"
title="User Manual"> title="User Manual">
<foundry:doc-static-text href="user/about-foundry"/> <foundry:doc-static-text href="user/about-foundry"/>
<foundry:doc-static-text href="user/layout-templates"/> <foundry:doc-static-text href="user/layout-templates"/>
<foundry:doc-static-text href="user/css-files"/> <foundry:doc-static-text href="user/css-files"/>
<foundry:doc-generated title="Templates Tags Reference" <foundry:doc-generated title="Templates Tags Reference"
href="lib/template-tags"/> section="user"/>
</foundry:doc-chapter> </foundry:doc-chapter>
<foundry:doc-chapter id="developer-manual" <foundry:doc-chapter id="developer-manual"
title="Developer Manual"> title="Developer Manual">
<foundry:doc-static-text href="devel/foundry-structure"/> <foundry:doc-static-text href="devel/foundry-structure"/>
<foundry:doc-static-text href="devel/coding-style"/> <foundry:doc-static-text href="devel/coding-style"/>
<foundry:doc-static-text href="devel/foundry-doc-system"/> <foundry:doc-static-text href="devel/foundry-doc-system"/>
<!--<foundry:doc-generated title="XSL Templates and Function references" <foundry:doc-generated title="XSL Templates and Function references"
href="lib/lib"/>--> href="devel"/>
</foundry:doc-chapter> </foundry:doc-chapter>
</foundry:documentation> </foundry:documentation>

View File

@ -33,7 +33,7 @@
<xsl:strip-space elements="*"/> <xsl:strip-space elements="*"/>
<xsl:template match="/foundry:documentation"> <xsl:template match="/foundry:documentation">
<xsl:text>&lt;!DOCTYPE HTML&gt;</xsl:text> <!--<xsl:text>&lt;!DOCTYPE HTML&gt;</xsl:text>-->
<html> <html>
<head> <head>
<meta http-equiv="content-type" <meta http-equiv="content-type"
@ -65,12 +65,12 @@
</xsl:template> </xsl:template>
<xsl:template match="/foundry:documentation/foundry:doc-chapter"> <xsl:template match="/foundry:documentation/foundry:doc-chapter">
<section id="{./@id}"> <article id="{./@id}">
<h1> <h1>
<xsl:value-of select="./@title"/> <xsl:value-of select="./@title"/>
</h1> </h1>
<xsl:apply-templates/> <xsl:apply-templates/>
</section> </article>
</xsl:template> </xsl:template>
<xsl:template match="/foundry:documentation//foundry:doc-static-text"> <xsl:template match="/foundry:documentation//foundry:doc-static-text">

View File

@ -37,7 +37,7 @@ processor, some are read from the configuration files of Foundry and some are de
<foundry:doc section="devel"> <foundry:doc section="devel">
<foundry:doc-desc> <foundry:doc-desc>
The version of Foundry. Kept in sync with the version of CCM, so the first version The version of Foundry. Kept in sync with the version of CCM, so the first version
will be 2.2.3. was be 2.2.3.
</foundry:doc-desc> </foundry:doc-desc>
</foundry:doc> </foundry:doc>
<xsl:variable name="foundry-version" select="'2.2.3-SNAPSHOT'"/> <xsl:variable name="foundry-version" select="'2.2.3-SNAPSHOT'"/>

View File

@ -23,7 +23,7 @@
<!-- <!--
This file contains utility functions and templates for Foundry. Most of them are implemented as This file contains utility functions and templates for Foundry. Most of them are implemented as
EXSLT functions. XSLT 2.0 functions.
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema"

View File

@ -82,7 +82,6 @@
</foundry:doc-desc> </foundry:doc-desc>
</foundry:doc> </foundry:doc>
<xsl:template match="/foundry:documentation"> <xsl:template match="/foundry:documentation">
<!--<xsl:text>&lt;!DOCTYPE HTML&gt;</xsl:text>-->
<html> <html>
<head> <head>
<meta http-equiv="content-type" <meta http-equiv="content-type"