Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
177 views

XSL key using multiple values

The following is the sample XML structure I'm working on: <command name="test"> <parameter index="2">4000</parameter> <tag>4000</tag> <parameter ...
2
votes
1answer
105 views

Using two elements for xsl:key key

I know that if I have an XML file like this: <persons> <class name="English"> <person name="Tarzan" id="050676"/> <person name="Donald" id="070754"/> ...
1
vote
1answer
30 views

xslt 1.0, select group of nodes with key

I want to select nodes based on some variables. The XML code: <data> <prot seq="AAA"> <node num="1">1345</node> <node num="1">11245</node> ...
1
vote
3answers
57 views

muenchian grouping

I was wondering how this predicate([1]), is hardcoded as 1 always in the muenchian grouping. The concept was not clear for me, after a lot of search. It is explained as the current node, is compared ...
1
vote
2answers
81 views

XSLT 1.0 Grouping Key for different Nodes and Elements

I am looking at the Muenchian Grouping. I tried finding examples that are similar to my xml but can't find any. Most of the examples are well structured while mine is confusing. Here's a shortened ...
1
vote
2answers
86 views

Using xsl:key to find an attribute from a matched child

Fairly new to XSL - so please forgive noobishness. I have an input XML document (this is actually the docbook form of the Jargon File, snipped significantly): <?xml version="1.0" ...
1
vote
1answer
140 views

Finding Specific Descendant Nodes With XSL:Key

Given the following code: <database> <table name="table1"> <column name="id"/> <column name="created_at"/> </table> <table name="table2"> ...
1
vote
1answer
280 views

Nesting of xsl:key() within xsl:key() & combining results of xsl:key()

I have 2 unrelated questions. I need to do a grouping of data using XSLT. I need this to function like how a nested IF within an IF would function. After which, I need to group the data so that I can ...
0
votes
2answers
416 views

Name of iteration variable in xsl:for-each on xsl:key in XSLT 1.0

I have XSLT 1.0 code like this: <xsl:key name="enemyItems" match="metadata[attributes/metadata_key/@value = 'enemylist']" use="attributes/metadata_refkey/@value"/> ...
0
votes
5answers
367 views

Counting distinct items in XSLT and listing only once

I have the following XML: <assessment> <section> <item> <attributes> <variables> <variable> ...
0
votes
2answers
2k views

XSLT external lookup table correct usage - key() function?

I have searched around and found some tutorials for xsl:key and key() function, but somehow I still am missing some understanding apparently. There is a XML-XML transformation I need to do, which ...