Added new property to DocStyle named ShowSectionTitles

Format changes including Purpose/Symptom/Entry Conditions PageStyle and DocStyle
Added xsl to match ShowSectionTitles
This commit is contained in:
Rich
2013-07-02 15:32:11 +00:00
parent 7bc0e8846e
commit 4080ac83a5
3 changed files with 122 additions and 6 deletions

View File

@@ -26,7 +26,7 @@
<xsl:apply-templates select="SpecialStepsFoldout"/>
<xsl:apply-templates select="UndSpecialStepsFoldout"/>
<xsl:apply-templates select="pagestyle"/>
<xsl:apply-templates select="dstyle|DocStructStyle|TopMargin|ContStyle|EndStyle|FinalMsg|CenterLineX|CenterLineYTop|CenterLineYBottom|LandscapePageList"/>
<xsl:apply-templates select="dstyle|DocStructStyle|TopMargin|ContStyle|EndStyle|FinalMsg|CenterLineX|CenterLineYTop|CenterLineYBottom|LandscapePageList|ShowSectionTitles"/>
</DocStyle>
</xsl:template>
<xsl:template match="numberingsequence">
@@ -67,6 +67,13 @@
</xsl:attribute>
</xsl:if>
</xsl:template>
<xsl:template match="ShowSectionTitles">
<xsl:if test=".!='false'">
<xsl:attribute name="ShowSectionTitles">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:if>
</xsl:template>
<xsl:template match="IsStepSection">
<xsl:attribute name="IsStepSection"><xsl:value-of select="."/>
</xsl:attribute>