diff options
author | ASP1234 | 2016-06-23 05:11:27 +0000 |
---|---|---|
committer | ASP1234 | 2016-06-23 05:11:27 +0000 |
commit | 75ca4720672c7854a831759b6f07b367be5b4c51 (patch) | |
tree | ac29ae7d657f0cce19c3ca31bbaa82f83bf03d70 /finalmodsheet.xsl | |
parent | 2593bfbd62d8a16721275c110bdb00eb000d2b7f (diff) | |
download | xcos-on-web-75ca4720672c7854a831759b6f07b367be5b4c51.tar.gz xcos-on-web-75ca4720672c7854a831759b6f07b367be5b4c51.tar.bz2 xcos-on-web-75ca4720672c7854a831759b6f07b367be5b4c51.zip |
CMSCOPE set functionality
Diffstat (limited to 'finalmodsheet.xsl')
-rw-r--r-- | finalmodsheet.xsl | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/finalmodsheet.xsl b/finalmodsheet.xsl index 7c94af2..0546481 100644 --- a/finalmodsheet.xsl +++ b/finalmodsheet.xsl @@ -134,6 +134,9 @@ Look for TAG:Break1!!! <xsl:when test="@style='CommandPort'"> <xsl:call-template name="CommandPort" /> </xsl:when> + <xsl:when test="@style='Split'"> + <xsl:call-template name="SplitBlock" /> + </xsl:when> <xsl:otherwise> <!-- Maverick --> <!-- TAG:Break1 @@ -1160,14 +1163,10 @@ Look for TAG:Break1!!! <xsl:value-of select="@simulationFunctionName" /> </xsl:attribute> </xsl:if> - <xsl:if test="@simulationFunctionType"> - <xsl:attribute name="simulationFunctionType"> - <xsl:value-of select="@simulationFunctionType" /> - </xsl:attribute> - </xsl:if> + <xsl:attribute name="simulationFunctionType">DEFAULT</xsl:attribute> <xsl:if test="@style"> <xsl:attribute name="style"> - <xsl:value-of select="@style" /> + <xsl:value-of select="@name" /> </xsl:attribute> </xsl:if> <xsl:if test="@value"> |