xsl-list
[Top] [All Lists]

RE: Outputing the same value-of for different nodes

2006-02-22 09:36:58
I cannot infer the production rule(s) from your sample input and output. Please 
elaborate.
-- 
Charles Knell
cknell(_at_)onebox(_dot_)com - email



-----Original Message-----
From:     Liron <magilam(_at_)netvision(_dot_)net(_dot_)il>
Sent:     Wed, 22 Feb 2006 17:19:36 +0100
To:       <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Subject:  [xsl] Outputing the same value-of for different nodes

Hello,

I wanted to ask how to output the same value on different nodes without 
effecting performance. Here's an example:

original xml file:

<tree>
   <son><value>something1</value></son>
   <son><value>something2</value></son>
   <son><value>something3</value></son>
</tree>

Lets assume I want to output something like this:

<tree>
   <first>
       <son><value>something1><position>1</position></value></son>
       <son><value>something2><position>2</position></value></son>
       <son><value>something3><position>3</position></value></son>
   </first>
   <second>
       <son><value>something1><position>1</position></value></son>
       <son><value>something2><position>2</position></value></son>
       <son><value>something3><position>3</position></value></son>
   </second>
</tree>

This is just an example so please don't question the need for such an output 
;)

In my xslt I'd probably use a xsl:for-each select="/tree/son" and then 
output the "value" node and "position()" under the "first" node but would I 
have to write a
"xsl:for-each" again only output it for the "second" node or there's some 
way of outputing the same value, lets say "position()", under different 
output nodes?

Thank you
Liron 


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