Use this tag for questions specific to XSL Transformations version 1.0

learn more… | top users | synonyms

6
votes
2answers
16k views

Tokenizing and sorting with XSLT 1.0

I have a delimited string (delimited by spaces in my example below) that I need to tokenize, sort, and then join back together and I need to do all this using XSLT 1.0. How would I do that? I know I ...
5
votes
1answer
7k views

xslt 1.0 string replace function

I have a string "aa::bb::aa" and need to turn it in to "aa, bb, aa" I have tried translate(string,':',', ') but this returns "aa,,bb,,aa" How can this be done.
3
votes
4answers
165 views

Output entire XML as an attribute

I'm fairly new to XML and XSL Stylesheets, and I've been tasked with creating a stylesheet for one of our clients. I have already created a stylesheet that outputs an XML in the following format: ...
3
votes
1answer
2k views

XSLT split output files - muenchian grouping

I have an XSLT file so as to transform large amount of data. I would like to add a "split" functionality, either as a chained XSLT or within the current XSLT that can create multiple output files so ...
1
vote
1answer
239 views

convert xml to jsonx using xslt

Can anyone help me out in getting the below with an array..I have to generate the generalised xsl.. Input XML: <Login> <Groups> <Group> ...
1
vote
1answer
488 views

How to sort the elements (columns) in xslt to transform the xml file to csv format

<?xml version="1.0" encoding="utf-8"?> <Report p1:schemaLocation="Customer details http://reportserver?%2fCustomer details&amp;rs%3aFormat=XML&amp;rc%3aSchema=True" Name="Customer ...
0
votes
2answers
617 views

How have an xslt javascript extension function return a node-set?

Is there a simple way to have an extension function in XSLT 1.0 written in javascript return a node-set? I could create a new java class for this, but I would rather just put some code in the script ...
6
votes
4answers
4k views

Remove Elements and/or Attributes by Name per XSL Parameters

The following does the job of removing unwanted elements and attributes by name ("removeMe" in this example) from an XML file: <xsl:stylesheet version="1.0" ...
3
votes
3answers
502 views

List every node in an XML file

Simple situation... With any random XML file, I want to create a list of every node that it contains, but without any duplicates! So something like: <root name="example"> <child id="1"> ...
0
votes
2answers
373 views

how to copy the data of variable of one foreach to another for each in xslt

XML <swift> <message> <block2 type="input"> <messageType>102</messageType> <receiverAddress>BKTRUS33XBRD</receiverAddress> ...
3
votes
4answers
155 views

Transform to remove duplicate and copy rest

I want the output xml to have grouped for the element 'c', according to the attribute 'f'. Here is my input xml and the xslt. I want the group to occur only once and the other nodes should be copied ...
2
votes
1answer
1k views

XSLT: Passing URL querystring as a parameter

I know this is an old question that has been passed around SO several times but I was wondering whether anyone can expand on whether a URL that has a querystring attached to it can be stripped out via ...
1
vote
4answers
116 views

Formatting date in xslt

I'm trying to format a certain date format in xslt. This is the format: 2012-7-19 I'd like to convert this to a numerical value in xslt for sorting, so that the above would become: 20120719 ...
1
vote
2answers
105 views

check condition in xslt

Below is the input XML (Little Big) sorry for the bigger input XML and as well as output xml <tutorial> <lessons> <lesson> chapter unit 1 page </lesson> ...
1
vote
3answers
379 views

Merge functionality of two xsl files into a single file (continued…)

This is in continuation of my question: Merge functionality of two xsl files into a single file (not a xsl import or include issue) I have to merge the solution (xsl) of above question to below ...
0
votes
1answer
72 views

trying to insert CDATA section into a xml

Hi I have added the below two xsl text nodes to get CDATA in my output xml <xsl:text disable-output-escaping="yes">&lt;xsl:text ...
-1
votes
1answer
53 views

XSLT 1.0 textlist to individual elements and duplicate removal

I have the following XML document: <?xml version="1.0" encoding="UTF-8"?> <cars> <car body="Wagon"> <text>Red</text> </car> <car ...
4
votes
2answers
6k views

Usage of XSLT Params; <xsl:param> & <xsl:with-param>

Please explain me how best XSLT param can be used. in terms of <xsl:param> & <xsl:with-param> Sample LOC: <xsl:call-template name="ABC"> <xsl:with-param name="title" ...
1
vote
1answer
651 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
3answers
1k views

How to eliminate duplicate nodes bases on values of multiple attributes?

How can I eliminate duplicate nodes based on values of multiple (more than 1) attributes? Also the attribute names are passed as parameters to the stylesheet. Now I am aware of the Muenchian method of ...
6
votes
2answers
2k views

Upgrading XSLT 1.0 to XSLT 2.0

What is involved in upgrading from XSLT 1.0 to 2.0? 1 - What are the possible reasons for upgrading? 2 - What are the possible reasons for NOT upgrading? 3 - And finally, what are the steps to ...
3
votes
1answer
164 views

Disparate IE XML/XSL behavior in same view and browser version, but with different Domain User accounts

A user of ours has an issue when trying to access one of our web application's views (IE9; behavior appears consistent across 6, 8, and 9, but not across domain accounts). For this specific user's ...
3
votes
1answer
1k views

XSLT Grouping within sub groups using generate-id() is discarding repeat keys from earlier groups

I'm having trouble producing rolled-up groups when the keys I need can be repeated across groups from my input file. I'm using the muenchian method to do the grouping, as I'm stuck with xslt 1.0, and ...
3
votes
5answers
136 views

How to find nodes with same children

I have following xml. Note that node n1 and n3 have same children (order can be different). How can I write an XSL transformation to identify such nodes? <Document> <Node name="n1"> ...
3
votes
3answers
5k views

(xslt 1.0) How to replace the space with some string from all the text values in xml?

EDIT: [it started with character replacement and I ended up with discovering string replacements with help of Dimitre Novatchev and Roland Bouman I think the sample codes are sufficient to ...
3
votes
2answers
7k views

Performing a “Group By” query in XPath XSL

Given the following XML: <results name="queryResults"> <int name="intfield1:[* TO 10]">11</int> <int name="intfield2:[10 TO 20]">9</int> <int ...
2
votes
1answer
60 views

xslt counting different content of the same content

just started studying xslt.just want to know how would count the number of international based players? Another thing is the average height of he international players? <?xml version="1.0" ...
1
vote
2answers
337 views

Avoid URL-encoding in XSLT with output method html

I have a transformation that outputs HTML. In order to avoid self-closing tags that could break in older browsers (e.g. <img /> instead of <img></img>) output-method has to be html. ...
1
vote
1answer
106 views

xsl grouping of repetitive nodes by xml element in xslt1

I have a complex xml structure that looks like : <Items> <Item> <ItemTexts> <ItemText> ...
1
vote
1answer
223 views

trim mixed content to max number of characters with xslt

I have the following xml: <p>Lorem ipsum dolor sit amet, <b>consectetur adipisicing</b> elit, <i>sed do<sup>2</sup></i> eiusmod tempor incididunt ut labore ...
1
vote
1answer
102 views

Groups two xml files like a sql group-by

With the following file as input of xsltprocessor : mylibrary.xml : <library> <book isbn="1"/> <book isbn="3"/> <book isbn="5"/> </library> and this ...
0
votes
2answers
119 views

Check text string against an array in if-test

Is there any way to check if a text string contains any of the entries in pre-determined array? The use case is I am parsing through a large amount of text and looking for text links. As a result I am ...
0
votes
1answer
67 views

Grouping the nodes at three levels and summing one node

Please follow the comments in the sample xml it explains everything I need, it is having three scenerio's check each scenerio in the output xml in the same sequence. Input XML <!-- In the ...
0
votes
0answers
412 views

fixed: Multiple page-sequence objects

When working with big xml files fop breaks down due to the lack of ram(1.7gb in my case, is the limit), so one of the ways to fix this is to use multiple page sequence objects as described here . ...
0
votes
3answers
261 views

XSLT1.0 Rendering sequence of different elements stored in a variable as M x N table

I have the following XML (it is simplified and most attributes are omitted): <Document> <Transfer Name="" From="" To=""/> <Transfer Name="" From="" To=""/> ...
-1
votes
2answers
70 views

XML to CSV using XSLT

XML IS <projects> <project> <name ID="A" StartDate='2012-01-01' EndDate='2012-01-30'>Shockwave</name> <language>Ruby</language> <Manager ...
-1
votes
1answer
108 views

how to merge two nodes having “the same father”, the same method and the same id=0 (using XSLT)?

I need to merge the two nodes street as they have the same: father node: city NEW YORK same method: modify same id: 0 Attributes values must be merged (See the output file at the end of this post) ...
-1
votes
1answer
64 views

how to merge two nodes having “the same father” and having a precise “method” sequence (using XSLT)?

I need to merge the two nodes MANHATTAN: because our system rule is the following: "CREATE A + MODIFY A" is still a "CREATE A with the merged attributes" input file: <?xml version="1.0" ...
8
votes
3answers
159 views

XSLT: Sort by the lower of 2 values

I have some XML that is formatted as follows: <products> <product> <name>Product 1</name> <price> <orig>15</orig> ...
5
votes
3answers
3k views

xsl trying to ouput '<' as opposed to '&lt;'

Update: The issue still persists although it is not quite the same as before. Below is an example of what is being input, what is being output and what I want to have output An example of the input: ...
3
votes
2answers
72 views

Selecting the lowest value from and xml without sorting

I'm transforming an xml document to an html table using xslt, and now what I want to do is to change the background color of the cell containing the lowest "price" value without sorting my list. I'm ...
3
votes
2answers
322 views

How to use XML wrapped in CDATA inside another XML for XSL transformation?

An XML document contains another XML element, which is wrapped in CDATA. How can the wrapped XML be used for XSL and XSL-FO transformation (version 1)?
3
votes
2answers
146 views

How can I sort elements by new counted values in their child element. XSLT 1.0

I have an xml sheet of this kind: <houses> <house number="1"> <mainroom> <roomprice>5</roomprice> <roomtax>2</roomtax> ...
2
votes
1answer
71 views

Merging two xml files using xslt after reading a third xml file

I have an xml file as below propNode.xml <NODES> <NODE> <NODELINE CLASS="Item" TYPE="Item" > <ATTR_NODES> <ATTR_NODE NAME="myName" /> <ATTR_NODE ...
2
votes
1answer
81 views

How to do xslt Muenchian grouping with some null attributes?

Slightly different to the standard Meunchain grouping as I'm dealing with a null(?) attribute for some of the tags that I'm transforming. I'd like the null groupings to be treated as their own ...
2
votes
3answers
319 views

extracting information from a JSON file using XSLT version 1.0

I'm a noobie to stackoverflow and xslt so I hope I don't sound unintelligent! So I am working with SDI for a GIS company and I have a task that requires me to convert points that are in one spacial ...
2
votes
2answers
79 views

muenchian grouping in the second level

This is my xml input <issues> <issue status="open" type="Bug"> <fix_versions> <fix_version>6.14.0</fix_version> ...
2
votes
2answers
3k views

Passing a URL variable into xsl

Is it possible to pass a URL variable into xsl. EG. http:www.somedomain.com/index.aspx?myVar=test&myVar2=anotherTest I'd like to be able to use the values of myVar and myVar2 in the logic ...
2
votes
1answer
884 views

How do I use SUM and AVERAGE in XSL?

I want to the total kilometers per car and the average kilometers per day This is the input XML : <?xml version="1.0" encoding="ISO-8859-1" ?> <output> <cars> ...
2
votes
1answer
251 views

Automating exslt:node-set?

Not sure if this is possible, but trying set up something that doesn't make me have to type exslt:node-set when pulling values from a dynamically created node block. I am storing the entire set of ...

1 2 3