|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: avoiding assignment statements
xslt works rather better if you have structured input rather than a fixed
set of flat variables. If you had a parameter show that took a list of
elements say <Replicates/><Metadata/> then you could just do
<xsl:for-each select="$show">
<xsl:if test="position()!=1">, </xsl:if>
<xsl:apply-templates select="."/>
</xsl:for-each>
where templates macching Replicates woul ddo whatever your pseudo code
Output("Reps") does.
or in xslt2 you could just have again a single parameter which takes a
sequence of strings rather than elements, and again for-each over that.
As it is, with scalar params, it's a bit easier to handle in xslt2, as
you can easily turn it into the above
<xsl:variable name="show" as="element()*">
<xsl:if test="showReplicates=1"><Replicates/></xsl:if>
...
</xsl:if>
in xslt1 you could do the same with the node-set extension that most
systems offer.
David
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








