This commit is contained in:
2012-11-08 17:01:33 +00:00
parent b80375164e
commit 3795a3063d
2 changed files with 34 additions and 2 deletions

View File

@@ -16,8 +16,9 @@
<DocStyle>
<xsl:apply-templates select="Name"/>
<xsl:apply-templates select="Index"/>
<xsl:apply-templates select="numberingsequence"/>
<xsl:apply-templates select="IsStepSection"/>
<xsl:apply-templates select="numberingsequence"/>
<xsl:apply-templates select="IndexOtherThanFirstPage"/>
<xsl:apply-templates select="IsStepSection"/>
<xsl:apply-templates select="UseCheckOffs"/>
<xsl:apply-templates select ="UseColSByLevel"/>
<xsl:apply-templates select="oldtonew"/>
@@ -31,6 +32,13 @@
<xsl:template match="numberingsequence">
<xsl:attribute name="NumberingSequence"><xsl:value-of select="."/></xsl:attribute>
</xsl:template>
<xsl:template match="IndexOtherThanFirstPage">
<xsl:if test=".!=0">
<xsl:attribute name="IndexOtherThanFirstPage">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:if>
</xsl:template>
<xsl:template match="IsStepSection">
<xsl:attribute name="IsStepSection"><xsl:value-of select="."/>
</xsl:attribute>