Added support for VCSDEV and SUM format files for VCSummer

This commit is contained in:
Rich
2013-06-11 18:41:32 +00:00
parent f03615dd7d
commit 924e5c024e
6 changed files with 133 additions and 2 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"/>
<xsl:apply-templates select="dstyle|DocStructStyle|TopMargin|ContStyle|EndStyle|FinalMsg|CenterLineX|CenterLineYTop|CenterLineYBottom|LandscapePageList"/>
</DocStyle>
</xsl:template>
<xsl:template match="numberingsequence">
@@ -39,7 +39,35 @@
</xsl:attribute>
</xsl:if>
</xsl:template>
<xsl:template match="IsStepSection">
<xsl:template match="CenterLineX">
<xsl:if test=".!=0">
<xsl:attribute name="CenterLineX">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:if>
</xsl:template>
<xsl:template match="CenterLineYTop">
<xsl:if test=".!=0">
<xsl:attribute name="CenterLineYTop">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:if>
</xsl:template>
<xsl:template match="CenterLineYBottom">
<xsl:if test=".!=0">
<xsl:attribute name="CenterLineYBottom">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:if>
</xsl:template>
<xsl:template match="LandscapePageList">
<xsl:if test=".!='false'">
<xsl:attribute name="LandscapePageList">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:if>
</xsl:template>
<xsl:template match="IsStepSection">
<xsl:attribute name="IsStepSection"><xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>