Tagged Questions
Use this tag for questions specific to XSL Transformations version 2.0
13
votes
3answers
4k views
Java XSLT processors supporting XPath 2.0
What are the currently available XSLT processors supporting XPath 2.0 standard?
12
votes
5answers
5k views
Open-source java XSLT 2.0 implementation?
I'm currently looking into using XSLT 2.0, but I cannot find any open-source java implementations (Saxon-B seems to fit the bill, but isn't schema-aware).
Am I missing something?
6
votes
3answers
176 views
How to include ancestor branch of a node selected via xpath parameter in output of XSLT
After trying for over 8 hours I am hoping someone can help me with this:
Given the following (simplified) XML for a book:
<book>
<section name="A">
<chapter name="I">
...
6
votes
1answer
1k views
Convert dateTime to unix epoch in xslt
I have a dateTime variable, and I want to convert it to a decimal value of epoch.
How can this be done?
I tried using:
seconds-from-duration($time, xs:dateTime('1970-01-01T00:00:00'))
but it just ...
5
votes
2answers
70 views
In XSLT can I tokenize on nothing?
I need to convert the string 'abcdef' to its parts, 'a', 'b', 'c', 'd', 'e', 'f'. Stupidly I tried
tokenize('abcdef', '')
but of course that returns a FORX0003 error (The regular expression in ...
5
votes
3answers
347 views
XSL recursive call - xsl:functions vs xsl:template with call template
I have basic query. I have been using xsl:template and use call tempate to make recursive calls to the template. I see xsl:function which also has feasibility to make recursive function calls like ...
5
votes
4answers
2k views
How to select saxon TransformerFactory in Java
In my web application I need to use Saxon TransformerFactory to use XSLT 2.0 but I can't use setProperty method because I haven't this right on the web server and there is a Security Manager.
So i ...
5
votes
5answers
1k views
What XSLT 2.0 tools exist?
I'm trying to wrap my head around XML and XSLT stuff, and in my research I stumbled upon different XSLT processors.
Xalan was the first one, and it seems to work pretty fine and is free, except that ...
4
votes
4answers
65 views
what is the range of count attribute in xslt?
i am using one xslt file for count the number of elements in an XML file that have a particular value (to verify uniqueness) and stored in xsl variable name.Actually, this xml file is created ...
4
votes
1answer
247 views
XSL - Remove non breaking space
In my XSL implementation (2.0), I tried using the below statement to remove all the spaces & non breaking spaces within a text node. It works for spaces only but not for non breaking spaces whose ...
4
votes
3answers
390 views
When will xslt 2.0 be finished
I really want to start developing in xslt 2.0 but I have been hearing that xslt 2.0 is not supported in browsers yet. Is there an expected date that xslt 2.0 will be done and when will it be supported ...
4
votes
1answer
295 views
Two phase processing: Do not output empty tags from phase-1 XSLT 2.0 processing
I have some complex XSLT 2.0 transformations. I'm trying to find out if there is general purpose way to ensure that no empty tags are output. So... conceptually, a final stage of processing that ...
4
votes
2answers
2k views
Will XPath 2.0 and/or XSLT 2.0 be implemented in PHP?
The question was asked but deleted by the asker before it received an answer. Because I believe the question is sound and legitimate and serves a purpose, I'm asking it again and provide the answer I ...
4
votes
1answer
397 views
Enumerated Values based on distinct ones XSLT 2.0
I have a long list of values in XML with named identifiers. I need to make separate output files for each of the distinct identifiers grouped together and uniquely named.
So, for example, let's say I ...
3
votes
4answers
54 views
how do i select following-siblings of my current process element until it statisfies the condition in for-each using xslt 2.0?
This is my XML Document(Small Snippt).
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
...
3
votes
3answers
86 views
XSLT 2.0 Xpath error “not a node item”
my first post here - sure hope someone will know the answer!
I have been able to find solutions for many issues I had, but not for this one.
The questions and answers on this site on the same subject ...
3
votes
2answers
45 views
Doing a double-pass in XSL?
Is it possible to store the output of an XSL transformation in some sort of variable and then perform an additional transformation on the variable's contents? (All in one XSL file)
(XSLT-2.0 ...
3
votes
2answers
94 views
How to wrap text to fit window in XSLT
I need your help. I am extracting data from XML using XSLT 2.0. The data has long lines and I want to fit them into window size by automatically breaking lines. Is it possible in XSLT? I tried finding ...
3
votes
4answers
66 views
How do I find the number of elements in a <xs:list> using XSLT?
I have an XML schema that contains the following type :
<xs:simpleType name="valuelist">
<xs:list itemType="xs:double"/>
</xs:simpleType>
A sample XML fragment would be:
...
3
votes
2answers
74 views
xslt sort output xml
I'm trying to find a solution to the following problem.
I'm developing XSLT transformation (which is now about 40KB big) that is transforming quite complex XMLs into a quite simple structure which ...
3
votes
3answers
187 views
how to sort values with XSLT?
I have an XML similar to this:
<Test>
<grapes>
<a>TypeA</a>
<b>value1</b>
</grapes>
<oranges>
<a>TypeB</a>
...
3
votes
1answer
131 views
How to convert hyphen in text feature list to HTML list items using XSLT?
I have an XML file for Real Estate property listings - one of the fields, called 'AdvNotes' contains features of the property. These are usually entered as plain text as follows:
Property features:
...
3
votes
2answers
62 views
How to use xsl:sort with foreign characters (i.e., 'æ', 'ø' and 'å')
I'm trying to sort a list by the name of each element. Example:
Title One
Another Title
Å Another Title
Ø Yet Another Title
The output of this using the original sort-function will result in ...
3
votes
2answers
99 views
XML to XML Mapping using XSLT
I am new to XSLT and trying to map one XML to another XML using xslt, here is my first XML
<root>
<record>
<element name="LoginId">a</element>
<element ...
3
votes
1answer
376 views
XSLT 2.0: How to iterate over stored values of an array inside a for-each loop with conditional check?
I am writing xsl stylesheet to extract information from iTunes Music Library. xml file.
I want to store track information of playlists in an array and later iterate over them to get more information. ...
3
votes
2answers
90 views
Comparing 2 node sets based on attribute sequence
I'm trying to build up a kind of library XML, comparing various nodes and combining them for later reuse. The logic should be fairly straightforward, if the tag_XX attribute value sequence of a given ...
3
votes
1answer
90 views
Output minimized tags from XSL transform using XSLT 2.0
I'm transforming an XML document with mimimized br tags like this:
<br/>
I'm using Saxon 9, and outputting as XHTML
<xsl:output method="xhtml" indent="yes" ...
3
votes
2answers
212 views
How to check if xml textnode has Chinese characters with RegEx in a XSLT
On this website http://gskinner.com/RegExr/ (which is a RegEx test website) this regex match works
Match:
[^\x00-\xff]
Sample Text: test123 或元件数据不可用
But if I have this input XML:
<?xml ...
3
votes
4answers
237 views
Custom format for <xsl:number>
Is it possible to define a custom format for <xsl:number>?
I have the case where a standard alpha-based format is desired, but certain characters in the alphabet are forbidden (strange ...
3
votes
4answers
117 views
How to group elements by content (XSLT 2.0)?
-- Modified question --
Thanks already for all who provided potential solutions, but these are in line whith what I tried already, so I assume I should have been more clear. I extended the XML a bit ...
3
votes
2answers
48 views
How to preserve xml element's data position with xslt
We are transforming some like following xml:
<collection>
<availableLocation>NY</availableLocation>
<cd>
Fight for your mind
</cd>
<cd>
...
3
votes
4answers
394 views
How to split text and preserve HTML tags (XSLT 2.0)
I have an xml that has a description node:
<config>
<desc>A <b>first</b> sentence here. The second sentence with some link <a href="myurl">The link</a>. The ...
3
votes
1answer
89 views
How to filter state abbreviations from strings
I have XML where the /forms/form/@number can be in almost any format (any combination of letters, numbers and single spaces). Occasionally there will be @number values which are the same form...but ...
3
votes
2answers
360 views
Unescape during XSLT transform
I'm transforming an XML document using XSLT into XHTML, using Saxon, XSLT 2.0 compliant.
Within my XML documents I have nodes like so (truncated here for brevity):
<script ...
3
votes
2answers
343 views
Use xslt:analyze-string to add acronyms to HTML
I want to add acronyms to an HTML text using xslt:analyze-string.
The problem: in my HTML text are tags such as
<strong>some text</strong>
that are treated as XML nodes. When I apply ...
3
votes
2answers
671 views
Dynamic doctype in XSLT transform (correct use of result-document instruction)
I'm using XSLT and need to generate the doctype dynamically in the transformed output, based on a parameter.
I hear that this cann't be done using XSLT 1.0, but can with version 2.0, using the ...
3
votes
3answers
210 views
XSL to find all nodes between nodes
I have a large poorly formed XML file where information related to a single line item is broken into multiple lines of information that I'm trying to group with the parent line item (ITEM_ID). The ...
3
votes
3answers
391 views
3
votes
1answer
205 views
Applying templates to elements in a variable/sequence
When I use "apply-templates" and select a variable sequence, does the template act upon the context of the element in the sequence, or does it act upon the context of the element in the document?
In ...
3
votes
1answer
548 views
Improving the performance of XSL
I am using the below XSL 2.0 code to find the ids of the text nodes that contains the list of indices that i give as input. the code works perfectly but in terms for performance it is taking a long ...
3
votes
1answer
695 views
Add XSLT 2 schema to Visual Studio 2010 for intellisense
I'd like to add the XSLT 2 schema to Visual Studio 2010 to provide intellisense. I've added the schema to C:\Program Files\Microsoft Visual Studio 10.0\Xml\Schemas (removing the XSLT 1 schema), but to ...
3
votes
2answers
489 views
Adding <span> tags to all text nodes between custom self closing tags
I have a pair of custom self closing tags s1 and s2 defined in namespace x in my xhtml. For each tag pair s1, s2 having the same id, I want to add span tags to all the text nodes between them. Each ...
3
votes
3answers
988 views
xml, html or xhtml in <xsl:output>: Which is the better choice?
For historic reasons we have a mixture of
<xsl:output method="xml">
and
<xsl:output method="html">
and
<xsl:output method="xhtml">
inside an include-hierarchy of XSL files. ...
3
votes
3answers
727 views
Is xsl:sequence always non-empty?
I don't understand output from this stylesheet:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
...
3
votes
2answers
430 views
Is there an XSLT 2.0 library for .NET?
Simple query - I am looking for recommendations for a .NET library that supports XSLT 2.0 (if one exists).
Thanks.
2
votes
1answer
28 views
Number of rows in a flat file transformed from xml using xslt
Below is the xsl I have used for transforming an xml to a flat file, whci also satisfies various other required conditions.
<xsl:stylesheet version="1.0" ...
2
votes
2answers
83 views
XSLT: Check if Element traversed earlier
I am trying to render some data from a large XML using XSLT. The XML data is actually kind of graph data and not hierarchical. and elements are related to each other and as such may end up havin a ...
2
votes
2answers
64 views
“XSLT transformation failed” why?
Firefox tells me "Error during XSLT transformation: XSLT transformation failed." for an XML file that uses the following XSL file:
<?xml version='1.0' encoding='UTF-8'?>
<xsl:stylesheet ...
2
votes
2answers
42 views
how to check all descendant::w:p that having the child of w:r/w:t of my current node using xslt 2.0?
This is my Xml document(small snippt).
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
...
2
votes
2answers
60 views
XSLT Call-Template name attribute
It seems as if I can't use an Xpath in the name attribute of the call-template element. How can I get around this? Any help/thoughts would be awesome!
<xsl:for-each ...