Regen after makefile changes.

This commit is contained in:
Ruslan Ermilov 2011-08-09 15:15:36 +00:00
parent aa64c39b20
commit b0067b6853
3 changed files with 37 additions and 31 deletions

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="section[@name and @title]">
<a name="{@name}"/>
@ -10,6 +9,7 @@
<xsl:value-of select="@title"/>
</h4>
</center>
<xsl:apply-templates/>
</xsl:template>
@ -20,6 +20,7 @@
<xsl:value-of select="@title"/>
</h4>
</center>
<xsl:apply-templates/>
</xsl:template>
@ -27,17 +28,16 @@
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="para">
<p>
<xsl:apply-templates/>
</p>
</xsl:template>
<xsl:template match="value">
<i>
<xsl:apply-templates/>
</i>
</xsl:template>
</xsl:stylesheet>

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="directive">
<a name="{@name}"/>
@ -10,9 +9,13 @@
<xsl:value-of select="@name"/>
</h4>
</center>
<xsl:apply-templates select="syntax"/>
<xsl:apply-templates select="default"/>
<xsl:apply-templates select="context"/>
<xsl:apply-templates select="para"/>
</xsl:template>
@ -33,4 +36,5 @@
<xsl:apply-templates/>
<br/>
</xsl:template>
</xsl:stylesheet>

View File

@ -10,6 +10,7 @@
<xsl:variable select="/module/@link" name="LINK"/>
<xsl:include href="directive.xslt"/>
<xsl:include href="content.xslt"/>
<xsl:template match="/module">
@ -31,4 +32,5 @@
</html>
</xsl:template>
</xsl:stylesheet>