xsl-list
[Top] [All Lists]

Re: Add attributes Processed File

2004-12-06 09:44:09

The only solution that i think is to mark te already processed elements "a".

that clearly isn't a solution as XSLT can not write to teh input, and
all templaes are side effect free.

Unfortunately I can't follow your problem description well enough to
suggest any code.

So I must group all groups of elements "a" that has one element "b" among 
them.

what do you mean by "group" here, and in particular what do you mean by
group of groups.

As your input and output had lots of <a flag="true"/> I couldn't tell which
elements in the input was being mapped to which element in the output.


I must group all elements "a" with attribute flag="true" follwed by a
element "b" with attribute flag="true"  

to select all such a elements you would use

select=".//a[(_at_)flag='true'][following-sibling::b[(_at_)flag='true]]"

but I can't relate that to your sample output. (The above would just
select one element in your sample input:

<root>
 <a flag="false">
   <b flag="false"/>
 </a>
 <c>
    <b flag="false"/>
    <b flag="false">
       <a flag="true"/><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
       <b flag="true"/>
       <a flag="true"/>
       <a flag="true"/>
       <a flag="true"/>
    </b>
 </c>
</root>

David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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