diff options
author | Maverick | 2016-06-16 17:34:17 +0530 |
---|---|---|
committer | Maverick | 2016-06-16 17:34:17 +0530 |
commit | 018f0066ec626a970ad8a736cdf6268066aac888 (patch) | |
tree | c3688fbebd7571723947042a294a5cf7d4749b0e /finalmodsheet.xsl | |
parent | 292fa6e123100198debe875068e815842e68a5d7 (diff) | |
download | xcos-on-web-018f0066ec626a970ad8a736cdf6268066aac888.tar.gz xcos-on-web-018f0066ec626a970ad8a736cdf6268066aac888.tar.bz2 xcos-on-web-018f0066ec626a970ad8a736cdf6268066aac888.zip |
A lot of changes which I don't remember
Diffstat (limited to 'finalmodsheet.xsl')
-rw-r--r-- | finalmodsheet.xsl | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/finalmodsheet.xsl b/finalmodsheet.xsl index e331a57..56e95b3 100644 --- a/finalmodsheet.xsl +++ b/finalmodsheet.xsl @@ -7,6 +7,7 @@ Authors: Maverick & Karma <!-- NOTES: Look for TAG:Break1!!! + TAG:Break2!!! --> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" indent="no" /> @@ -183,17 +184,23 @@ Look for TAG:Break1!!! <xsl:value-of select="@scilabClass" /> </xsl:attribute> </xsl:if> - <xsl:if test="@varName"> + <!-- <xsl:if test="@varName"> <xsl:attribute name="varName"> <xsl:value-of select="@varName" /> </xsl:attribute> - </xsl:if> + </xsl:if> --> <xsl:apply-templates /> </xsl:element> </xsl:template> + + <!-- Maverick --> + <!-- TAG:Break2 + The template handles the 'as' attribute rather loosely and demands + proper handling. + --> <xsl:template name="Array" match="Array"> <xsl:element name="Array"> - <xsl:if test="name(..)='BasicBlock'"> + <xsl:if test="name(..)='BasicBlock' or @as='context'"> <xsl:if test="@as"> <xsl:attribute name="as"> <xsl:value-of select="@as" /> @@ -1685,11 +1692,12 @@ Look for TAG:Break1!!! <xsl:value-of select="@style" /> </xsl:attribute> </xsl:if> - <xsl:if test="@value"> + <!-- <xsl:if test="@value"> <xsl:attribute name="value"> <xsl:value-of select="@value" /> </xsl:attribute> - </xsl:if> + </xsl:if> --> + <xsl:if test="@visbile"> <xsl:attribute name="visbile"> <xsl:value-of select="@visbile" /> @@ -1792,11 +1800,11 @@ Look for TAG:Break1!!! <xsl:value-of select="@style" /> </xsl:attribute> </xsl:if> - <xsl:if test="@value"> + <!-- <xsl:if test="@value"> <xsl:attribute name="value"> <xsl:value-of select="@value" /> </xsl:attribute> - </xsl:if> + </xsl:if> --> <xsl:if test="@visible"> <xsl:attribute name="visible"> <xsl:value-of select="@visible" /> @@ -1864,11 +1872,11 @@ Look for TAG:Break1!!! <xsl:value-of select="@style" /> </xsl:attribute> </xsl:if> - <xsl:if test="@value"> + <!-- <xsl:if test="@value"> <xsl:attribute name="value"> <xsl:value-of select="@value" /> </xsl:attribute> - </xsl:if> + </xsl:if> --> <xsl:if test="@visible"> <xsl:attribute name="visible"> <xsl:value-of select="@visible" /> @@ -1936,11 +1944,11 @@ Look for TAG:Break1!!! <xsl:value-of select="@style" /> </xsl:attribute> </xsl:if> - <xsl:if test="@value"> + <!-- <xsl:if test="@value"> <xsl:attribute name="value"> <xsl:value-of select="@value" /> </xsl:attribute> - </xsl:if> + </xsl:if> --> <xsl:if test="@visible"> <xsl:attribute name="visible"> <xsl:value-of select="@visible" /> @@ -2008,11 +2016,11 @@ Look for TAG:Break1!!! <xsl:value-of select="@style" /> </xsl:attribute> </xsl:if> - <xsl:if test="@value"> + <!-- <xsl:if test="@value"> <xsl:attribute name="value"> <xsl:value-of select="@value" /> </xsl:attribute> - </xsl:if> + </xsl:if> --> <xsl:if test="@visible"> <xsl:attribute name="visible"> <xsl:value-of select="@visible" /> |