1
vote
1answer
28 views

XSLT: Match N-level node

Need to match node by id. (say a2-2) XML: <node id="a" title="Title a"> <node id="a1" title="Title a1" /> <node id="a2" title="Title a2" > <node id="a2-1" title="Title ...
1
vote
2answers
60 views

Understaning recursion in xslt

I am trying to understand recorsion in xslt. Can anybody explain what's happening in this code. <xsl:template name="factorial"> <xsl:param name="number" select="1"/> ...
1
vote
1answer
61 views

Recursive matching of data to make a hierarchy tree

My input xml looks like this: <AGROVOC xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CONCEPT> <Language>EN</Language> ...
1
vote
3answers
99 views

Reapplying templates to output of other templates in XSLT

The following should be either simple or impossible to do, but right now I can not find out how, and so I ask. In my XSLT I have templates that produce elements, that then should again be transformed. ...
0
votes
1answer
212 views

Recursive transformation with XSLT: Table to tree

I want to transfor hierarchical elements that represent a tree. The data is provided inside a table in this format: <?xml version="1.0" encoding="utf-16"?> <asx:abap ...
1
vote
1answer
99 views

How do i recursively count the number of todos in XSLT 1.0

One of our service provides a xml document that list collection of todo's. Todo's have been structured to be nestable under a todolist. Every single todo item will have parent todo list. I need to use ...
1
vote
1answer
655 views

XSLT - build multiple (n) html tables of equal size (in this case, 3x3)

Reference Question 1 Reference Question 2 Ok, both of the preceding links go to discussions of how to build cells and rows within tables. I was hoping to find an expanded example that showed how to ...
1
vote
2answers
674 views

XSLT 1.0 help with recursion logic

I'm having troubles with the logic and would apprecite any help/tips. I have <Deposits> elements and <Receipts> elements. However there isn't any identification what receipt was paid ...
0
votes
2answers
1k views

XSLT 1.0 recursion

I'm stuck with recursion, was wondering if anyone can help me out with it. I have <Receipts> and <Deposits> elements, that are not verbose, i.e. that a <Receipts> element doesn't ...