xsl-list
[Top] [All Lists]

Re: [xsl] Linking Variable to the Path

2007-08-26 16:15:19
Another way to solve your problem is by generating an ad hoc XSLT

== This stylesheet generate another stylesheet ==
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
  xmlns:axsl="http://www.w3.org/1999/XSL/TransformAlias";>

<xsl:output method="xml"/>

<xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/>

<xsl:template match="/">
<axsl:stylesheet version="1.0">

 <axsl:template match="/">
   <axsl:variable name="dest" select="{//every[1]/event[1]}"/>
   <axsl:value-of select="$dest/@name"/>
 </axsl:template>
</axsl:stylesheet>
</xsl:template>
</xsl:stylesheet>
== The resulting stylesheet is to apply to your document

Xmlizer

On 8/22/07, Yaswanth Kumar Ravella <yaswanth(_dot_)mtrx(_at_)gmail(_dot_)com> 
wrote:

Hi,

::I am having an XML file like this ::

<root>
 <every>
  <event name="Ready"/>
 </every>
 <pattern>
  <connection destination="//every[1]/event[1]" />
 </pattern>
</root>
-------------------------------
::When my XSL file has this code::

<xsl:template match="root">
  <xsl:variable name="dest"    select="//every[1]/event[1]"/>
  <xsl:value-of select="$dest/@name"/>
</xsl:template>

It prints 'Ready'.
Here I am directly assigning variable 'dest' to the path of the event.
This is ok.
-------------------------------
::When I changed my XSL code to ::

<xsl:template match="root">
  <xsl:variable name="dest"
select="//pattern[1]/connection[1]/@destination"/>
  <xsl:value-of select="$dest/@name"/>
</xsl:template>

It doesn't print 'Ready' or anything.
Here I am storing variable 'dest' with the value of the
'connection/@destination', Which I expected to work properly but it is not
working.
------------------------------

How can I print 'event-name' using 'connection-destination'?


Regards
Yaswanth Ravella



--~------------------------------------------------------------------
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>
--~--