xsl variable and sunshine getxml

2002-08-20 Thread Barbara Post
c2.0.3.. I am surprised that : sunshine:getxml context=MyContext path=/root/lkfmPageTitle/ works while : variable name=foo sunshine:getxml context=MyContext path=/root/lkfmPageTitle/ /variable xsl:value-of select=$foo/ does not... I need to pass the value to a template (of an imported reused

Re: xsl variable and sunshine getxml

2002-08-20 Thread KOZLOV Roman
Why not xsl:variable? Roman Barbara Post wrote: c2.0.3.. I am surprised that : sunshine:getxml context=MyContext path=/root/lkfmPageTitle/ works while : variable name=foo sunshine:getxml context=MyContext path=/root/lkfmPageTitle/ /variable xsl:value-of select=$foo/ does not...

Re: xsl variable and sunshine getxml

2002-08-20 Thread Barbara Post
yeah it was a typo in my mail but indeed I have xsl:variable in my xsl. sorry.. - Original Message - From: KOZLOV Roman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 20, 2002 3:03 PM Subject: Re: xsl variable and sunshine getxml Why not xsl:variable? Roman Barbara

RE: xsl variable and sunshine getxml

2002-08-20 Thread Carsten Ziegeler
-Original Message- From: Barbara Post [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 2:52 PM To: [EMAIL PROTECTED] Subject: xsl variable and sunshine getxml c2.0.3.. I am surprised that : sunshine:getxml context=MyContext path=/root/lkfmPageTitle/ works while

Re: xsl variable and sunshine getxml

2002-08-20 Thread Barbara Post
Subject: RE: xsl variable and sunshine getxml -Original Message- From: Barbara Post [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 2:52 PM To: [EMAIL PROTECTED] Subject: xsl variable and sunshine getxml c2.0.3.. I am surprised that : sunshine:getxml

Re: xsl variable and sunshine getxml

2002-08-20 Thread Joerg Heinicke
Hello Barbara, that's a simple XSL problem. With variable name=foo sunshine:getxml context=MyContext path=/root/lkfmPageTitle/ /variable you create a Result Tree Fragment (RTF), not a node set. A RTF contains the nodes, but you can't operate on them like on a node set. It behaves more