xsl-list
[Top] [All Lists]

Re: equivalent od #define

2005-11-28 03:19:27
Colin, David

After sleeping on it I have solution, I could have explained the problem better...

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:defines="user defined data">
<xsl:output method="xml" omit-xml-declaration="yes" indent="yes" />

<defines:data>
 <const name="a" a1="38" a2="38" a3="39" a4="80" />
 <const name="b" a1="5" a2="45" a3="24" a4="90" />
</defines:data>

<xsl:variable name="index">2</xsl:variable>

<xsl:template match="/" >
<xsl:value-of select="document('')/*/defines:data/const[number($index)]/@a1" />
..
</xsl:template>

</xsl:stylesheet>

-rvg

----- Original Message ----- From: "Colin Paul Adams" <colin(_at_)colina(_dot_)demon(_dot_)co(_dot_)uk>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Sent: Sunday, November 27, 2005 10:34 PM
Subject: Re: [xsl] equivalent od #define


"Robert" == Robert Van Gemert <rcvangemert(_at_)optushome(_dot_)com(_dot_)au> 
writes:

   Robert> Colin, Yes, but I need to change the varable based on the
   Robert> value of another variable and all this need to be
   Robert> global. I cannot use <xsl:choose> outside a template.

Why not?

This works:

<xsl:transform
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
xmlns:xs="http://www.w3.org/2001/XMLSchema";
version="2.0">

<xsl:param name="value" select="1" as="xs:integer"/>

<xsl:variable name="choice">
<xsl:value-of select="$value + 1"/>
</xsl:variable>

<xsl:template match="/" >
 <xsl:value-of select="$choice"/>
</xsl:template>

</xsl:transform>

--
Colin Adams
Preston Lancashire

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>