compact xml (and xsl) support

Are you missing a feature? Request its implementation here.
bmf1972
Posts: 5
Joined: Mon Jul 19, 2004 8:45 pm

compact xml (and xsl) support

Post by bmf1972 »

http://nxg.me.uk/dist/lx/

Compact XSL (http://www.zanthan.com/ajm/xsltxt/):

Code: Select all


choose
when .test "$count > 1"
call "by-columns" ("column-count":"$count")
otherwise
<para>
"No columns"
instead of

Code: Select all


<xsl:choose>
<xsl:when test="$count > 1">
<xsl:call-template name="by-columns">
<xsl:with-param name="column-count" select="$count"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<para>
<text>No columns</text>
</para>
<xsl:otherwise>
</xsl:choose>
[/code]
sorin_ristache
Posts: 4141
Joined: Fri Mar 28, 2003 2:12 pm

Post by sorin_ristache »

Hello,

Thank you for the request of supporting compact XSL. I will log the request to our system.


Regards,
Sorin
zoreander
Posts: 2
Joined: Tue Jul 24, 2007 10:58 am

Post by zoreander »

I think it's good idea and thanks admins for support. :D
Post Reply