This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: xsl:if/xsl:when test


Hi Maulik,

...
> WHAT I have working:
> In the following XML, I have two <Node_path> and <Node_value> pairs in the
> first child, and if both text are valid, it processes each <URL> under it,
> meaning six times!
...
> Snippet XSL code:
...
>    <xsl:for-each select="$tempdoc//NODE">

do the test
...
if test is ok:
>          <xsl:for-each select="$tempdoc//URL">
>           <url><xsl:value-of select="." /></url>
>          </xsl:for-each>
>          </xsl:if>
> 
>        </xsl:for-each>
You've got two nodes and three URLs. You call the inner xsl:for-each two
times and get three URLs => you get six results. 

You probably want something like:
for-each NODE
  do the test
if all tests are ok
  for-each url
    do what you like

Gruß, Philip

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]