Tagged Questions
XSLT is a transformation language for XML. Its primary function is to transform XML documents into different output formats, commonly other XML, HTML or plain text.
55
votes
12answers
17k views
Is there an online tester for xPath selectors? [closed]
I know there are some online regex evaluators.. very useful, matching in real time. They are like web applications of RegexBuddy.
I was wondering if there is a similar thing for xPath selectors? I am ...
55
votes
42answers
6k views
Is XSLT worth it? [closed]
A while ago, I started on a project where I designed a html-esque XML schema so that authors could write their content (educational course material) in a simplified format which would then be ...
54
votes
6answers
75k views
Check if a string is null or empty in XSLT
How can I check if a value is null or empty with XSL?
For example, if categoryName is empty? I'm using a when choosing construct.
For example:
<xsl:choose>
<xsl:when test="categoryName ...
42
votes
4answers
52k views
XMLHttpRequest Origin null is not allowed Access-Control-Access-Allow for file:/// to file:/// (Serverless)
I'm trying to create a website that can be downloaded and run locally by launching its index file.
All the files are local, no resources are used online.
When I try to use the AJAXSLT plugin for ...
34
votes
2answers
10k views
How to apply an XSLT Stylesheet in C#
I want to apply an XSLT Stylesheet to an XML Document using C# and write the output to a File.
27
votes
6answers
3k views
XSLT equivalent for JSON
Is there an XSLT equivalent for JSON? Something to allow me to do transformations on JSON like XSLT does to XML.
27
votes
5answers
1k views
Is there an XSLT buddy available somewhere?
I think a lot of people know about tools like RegexBuddy. Is there something similar for XSLT?
25
votes
9answers
17k views
Pretty printing XML with javascript
I have a string that represents a non indented XML that I would like to pretty-print. For example:
<root><node/></root>
should become:
<root>
<node/>
</root>
...
25
votes
5answers
41k views
Counter inside xsl:for-each loop
How to get a counter inside xsl:for-each loop that would reflect the number of current element processed.
For example my source XML is
<books>
<book>
<title>The Unbearable ...
23
votes
13answers
9k views
Suggestions for an online XSLT Tester?
does anyone know of an online XSLT tester.. i.e. you provide the xml/xslt and it tells you the output... I know i could write one, but i'd like a solution that i have to write and that is ...
23
votes
11answers
2k views
How do I know my XSL is efficient and beautiful?
As a programmer, I am developing programs in procedural and OOP languages for many years now, and I guess I know beautiful and efficient code when I see it (or when I write it).
Recently I started to ...
23
votes
9answers
3k views
22
votes
3answers
21k views
How can I convert a string to upper- or lower-case with XSLT?
How do you do case conversion in XSL?
<xsl:variable name="upper">UPPER CASE</xsl:variable>
<xsl:variable name="lower" select="???"/>
22
votes
8answers
31k views
Does XSLT have a Split() function?
I have a string in a node and I'd like to split the string on '?' and return the last item in the array.
For example, in the block below:
<a>
<xsl:attribute name="href">
...
21
votes
6answers
6k views
XPath and XSLT 2.0 for .NET?
.NET 3.5 doesn't completely support XPATH 2.0 or XSLT 2.0, which is just too bad. Does anyone know if these two will be included and fully supported in any future .NET versions?
20
votes
8answers
8k views
Set HTML5 doctype with XSLT
How would I cleanly set the doctype of a file to HTML5 <!DOCTYPE html> via XSLT (in this case with collective.xdv)
The following, which is the best my Google foo has been able to find:
...
20
votes
4answers
713 views
Tips & Traps in Learning XSLT and “Real” Functional Programming?
This is my first post. Please be gentle if in ignorance I violate accepted norms... I did spend significant time in the FAQs. ;-)
Until recently my knowledge of XSLT was enough for my simple, ...
20
votes
4answers
14k views
Is there an XSLT name-of element?
In XSLT there is the
<xsl:value-of select="expression"/>
to get the value of an element, but is there something to select the tag-name of the element?
In a situation like this:
...
20
votes
1answer
18k views
How to remove elements from xml using xslt with stylesheet and xsltproc?
I have a lot of XML files which have something of the form:
< Element
fruit="apple"
animal="cat"
/>
Which I want to be removed from the file.
Using an XSLT stylesheet and the ...
20
votes
9answers
14k views
using a html entity in xslt (e.g. )
what is the best way to include a htlm entity in XSLT?
<xsl:template match="/a/node">
<xsl:value-of select="."/>
<xsl:text> </xsl:text>
</xsl:template>
...
19
votes
18answers
4k views
Viable alternative to XSLT?
I have used XSLT for a few different things over the years. I got used to it, but never felt like I really understood it all the way through. It always seems like I have to experiment to get the ...
19
votes
4answers
15k views
Converting XML to plain text using XSLT — how should I ignore/handle whitespace in the XSLT?
I'm trying to convert an XML file into the markup used by dokuwiki, using XSLT. This actually works to some degree, but the indentation in the XSL file is getting inserted into the results. At the ...
18
votes
5answers
21k views
18
votes
3answers
13k views
XML to CSV Using XSLT
I have the following XML document:
<projects>
<project>
<name>Shockwave</name>
<language>Ruby</language>
<owner>Brian May</owner>
...
18
votes
7answers
2k views
Any big sites using Client Side XSLT?
Lately, I've been pondering the somewhat non-mainstream architecture of building raw XML on the server side, and then using an XSLT stylesheet on the client to transform the XML into the full UI. Of ...
17
votes
5answers
2k views
Client-side XSLT
I converted my whole site to XML/XSL and I would like to know all of the current issues with performing Client-side XSLT.
Here are the ones i already know of (from first-hand experience):
...
17
votes
16answers
2k views
Why choose an XSL-transformation?
For a current project the decision has to be made whether to use XML and an XSL-transformation to produce HTML or to directly use HTML-templates.
I'd be interested in arguments for or against the ...
15
votes
3answers
7k views
How to save newlines in XML attribute?
I need to save content that containing newlines in some XML attributes, not text.
The method should be picked so that I am able to decode it in XSLT 1.0/ESXLT/XSLT 2.0
What is the best encoding ...
14
votes
5answers
7k views
How can I make XSLT work in chrome?
I have an XML document here that is served with a corresponding XSL file. The transformation is left to be executed client-side, without JavaScript.
This works fine in IE (shock horror), but in ...
14
votes
4answers
7k views
How to insert in XSLT
How can I insert
Into an XSLT stylesheet, I keep getting this error:
XML Parsing Error: undefined entity
Essentially I want a non breaking space character in the XSLT Template.
14
votes
3answers
13k views
How to create a boolean value in XSLT?
I am totally new to XSLT and can't work out where I am going wrong with the following code.
<xsl:variable name="var" select="boolean('false')"/>
<xsl:if test="$var'">variable is ...
14
votes
9answers
12k views
How do I remove the BOM character from my xml file
I am using xsl to control the output of my xml file, but the BOM character is being added.
Thanks
14
votes
4answers
4k views
What is more efficient for parsing Xml, XPath with XmlDocuments, XSLT or Linq?
I have parsed XML using both of the following two methods...
Parsing the XmlDocument using the object model and XPath queries.
XSL/T
But I have never used...
The Linq Xml object model that was ...
13
votes
5answers
8k views
How can I create a Word document using Python?
I'd like to create a Word document using Python, however, I want to re-use as much of my existing document-creation code as possible. I am currently using an XSLT to generate an HTML file that I ...
13
votes
6answers
3k views
What's the difference between XSLT and XSL-FO?
What's the difference between XSLT and XSL-FO ?
Every resource I've read deal with them as if they were 1, or at least very closely tied..
Thanks in advance
13
votes
5answers
15k views
XSLT: How to change an attribute value during <xsl:copy>?
I have an XML document, I want one of the attributes to change it's value.
First I copied everything from input to output using:
<xsl:template match="@*|node()">
<xsl:copy>
...
13
votes
3answers
4k views
Java XSLT processors supporting XPath 2.0
What are the currently available XSLT processors supporting XPath 2.0 standard?
13
votes
5answers
15k views
Format a date in XML via XSLT
When I use the XML serializer to serialize a DateTime, it is written in the following format:
2007-11-14T12:01:00
When passing this through an XSLT stylesheet to output HTML, how can I format this? ...
13
votes
4answers
3k views
How do I profile and optimize an XSLT?
I have an XSLT for viewing XML files in the browser. The XSLT is naively written and currently takes a long time to execute (several minutes).
My XML file is of modest size (~1 MiB), and other XSLTs ...
13
votes
6answers
5k views
Pure Python XSLT library
Is there an XSLT library that is pure Python?
Installing libxml2+libxslt or any similar C libraries is a problem on some of the platforms I need to support.
I really only need basic XSLT support, ...
12
votes
1answer
6k views
Current node vs. Context node in XSLT/XPath?
In XSLT, what is the difference between the "current node" and the "context node"? You can find both terms used here: http://www.w3.org/TR/xslt.
When would you use one or the other? How do you refer ...
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?
11
votes
6answers
6k views
How do I run an XSLT file?
Alright this seems like a stupid question but I can't figure it out. I'm writing an XSLT file to translate an XML document into an XHTML document. I've used both Visual Studio and XML Notepad 2007 to ...
11
votes
3answers
10k views
Can an XSLT insert the current date?
A program we use in my office exports reports by translating a XML file it exports with an XSLT file into XHTML. I'm rewriting the XSLT to change the formatting and to add more information from the ...
11
votes
5answers
22k views
XSLT concat string, remove last comma
I need to build up a string using XSLT and separate each string with a comma but not include a comma after the last string. In my example below I will have a trailing comma if I have Distribution node ...
11
votes
14answers
2k views
Is there a point creating a site using XSLT
Is this technology still popular?
I want to make a website which automatically transforms XSLT files. It should work like this:
When a user accesses the site, a single handler would accept his ...
10
votes
8answers
508 views
How can I speed up my 'divide and conquer' XSLT template which replaces certain characters in a string?
UPDATE: I added an answer to this question which incorporates almost all the suggestions which have been given. The original template given in the code below needed 45605ms to finish a real world ...
10
votes
4answers
940 views
What are good CLI tools for JSON?
General Problem
Though I may be diagnosing the root cause of an event, determining how many users it affected, or distilling timing logs in order to assess the performance and throughput impact of a ...
10
votes
8answers
996 views
Efficient recursion in functional programming vs. inefficient recursion in different paradigms
As far as I know recursion is very elegant but unefficient in OOP and procedural programming (see the wonderful "High Order perl", Mark Jason Dominus). I had some informations that in functional ...
10
votes
5answers
2k views
XML Diff: How to generate XML diff using XSLT?
I would like to compute the diff between two XML files or nodes using XSL/XSLT. Is there any stylesheet readily available or any simple way of doing it?