XSLT is a transformation language for XML designed to transform structured documents into other formats (such as XML, HTML, and plain text). Questions should use the xslt-1.0, xslt-2.0, or xslt-3.0 tag as appropriate.
35
votes
9answers
7k views
13
votes
8answers
12k views
Generate/get xpath from XML node java
I'm interested in advice/pseudocode code/explanation rather than actual implementation.
I'd like to go trough xml document, all of its nodes
Check the node for attribute existence
Case if node ...
111
votes
5answers
138k 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 ...
74
votes
3answers
29k 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.
33
votes
8answers
44k 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">
...
22
votes
4answers
24k views
XML to CSV Using XSLT
I have the following XML document:
<projects>
<project>
<name>Shockwave</name>
<language>Ruby</language>
<owner>Brian May</owner>
...
43
votes
5answers
15k views
XPath and XSLT 2.0 for .NET? [closed]
.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?
34
votes
7answers
22k 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 ...
2
votes
4answers
2k views
XSLT 3-level grouping on attributes
OK, I KNOW that variations on this have been asked and answered; I've been reading them all day, but I'm still stuck. So, here goes:
I need to create a summary list in HTML from some XML.
Given this ...
26
votes
6answers
28k 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:
<Date>2007-11-14T12:01:00</Date>
When passing this through an XSLT stylesheet to output ...
4
votes
1answer
19k views
XSLT: A simple way to merge xml files
I have two xml files. I need to merge them together where the element "myid" matches between the two. Please have a look at these example files...
File1.xml:
<?xml version="1.0" ...
44
votes
9answers
24k 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:
...
21
votes
5answers
16k 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 ...
44
votes
3answers
42k 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="???"/>
10
votes
6answers
20k views
XSLT Replace function not found
I am writing an XSLT transformation in which I wish to use the Replace function to do a regex match and replace.
However, Visual Studio 2008 reports that
'replace()' is an unknown XSLT ...
19
votes
6answers
7k views
XSLT:Which is the best tutorial you would like to recommend [closed]
I want to learn the programming skills in XSLT to convert from XML to XML .. step by step ..
I am finding it hard to program with XSLT .. I have tried w3schools.com, tizag.com and books like XSLT ...
33
votes
1answer
34k 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 ...
8
votes
2answers
12k views
Chrome and Safari XSLT using JavaScript
I have the following code that applies a XSLT style
Test.Xml.xslTransform = function(xml, xsl) {
try {
// code for IE
if (window.ActiveXObject) {
ex = ...
46
votes
5answers
47k views
22
votes
3answers
25k 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 ...
13
votes
3answers
4k 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 ...
20
votes
4answers
48k views
XSLT string replace
I don't really know XSL but I need to fix this code, I have reduced it to make it simpler.
I am getting this error
Invalid XSLT/XPath function
on this line
<xsl:variable name="text" ...
3
votes
2answers
329 views
XML shredding via XSLT in Java
I need to transform large XML files that have a nested (hierarchical) structure of the form
<Root>
Flat XML
Hierarchical XML (multiple blocks, some repetitive)
Flat XML
</Root>
...
25
votes
11answers
3k 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 ...
31
votes
10answers
25k 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
34
votes
11answers
28k views
using a html entity in xslt (e.g. )
What is the best way to include an html entity in XSLT?
<xsl:template match="/a/node">
<xsl:value-of select="."/>
<xsl:text> </xsl:text>
</xsl:template>
...
11
votes
5answers
7k views
Version of XSLT in iPhone
I plan to use XML/XSLT in my iPhone application.
What version of XSLT is currently supported on the iPhone? Can I use XSLT 2.0 or just 1.0 ?
12
votes
3answers
8k views
XSLT with XML source that has a default namespace set to xmlns
I have an XML document with a default namespace indicated at the root.
Something like this:
<MyRoot xmlns="http://www.mysite.com">
<MyChild1>
<MyData>1234</MyData>
...
12
votes
3answers
15k views
how to apply group by on xslt elements
I need to group the value based on some attribute and populate it.
below mentioned is i/p xml and if you see there are 4 rows for Users and for id 2,4 Division is same i.e. HR
while generating ...
-1
votes
1answer
570 views
Xpath transformation not working in java
This is my xml document. I want to sign only the userID part using xml signature. I am using xpath transformation to select that particular element.
<samlp:AuthnRequest ...
6
votes
1answer
817 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
3answers
7k views
Does xslt have split() function?
How do you split a string based on some separator?
Given a string Topic1,Topic2,Topic3, I want to split the string based on , to generate:
Topic1 Topic2 Topic3
0
votes
3answers
784 views
[XSLT]: Rendering a node sequence as M x N table
@Oded: Sorry to have been poor in my exposition... My input document has a fragment like this:
<recordset name="resId" >
<record n="0">example 1</record>
<record n="1">example ...
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 ...
3
votes
3answers
5k views
Is it possible to use a Dynamic xPath expression in a xslt style sheet?
I'd like to use the value of an xslt parameter in an xpath expression. Specifically, as part of a not() call in an <xsl:if expression.
<xsl:transform version="1.0" ...
1
vote
1answer
62 views
Extracting a class from the section attribute using xsl
I have a XSLT question which follows on from the question I asked last week.
XSL for Xml: Inserting specific classes using XSL
The challenge is to insert classes according to the section attribute. I ...
68
votes
9answers
12k 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.
42
votes
5answers
37k 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:
...
15
votes
2answers
3k views
Why does XSLT output all text by default?
Hi I had performed a transformation which drops a tag if it is null.
I wanted to check whether my transformation is working fine, so instead of checking it manually, I wrote one more XSLT code which ...
15
votes
6answers
44k 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 ...
4
votes
3answers
7k views
XSLT: Convert base64 data into image files
I have seen several questions on how to encode an image file in base64, but how about the other way around - how do I reconstitute a picture from a base64 string stored in an XML file?
...
17
votes
4answers
6k views
What is the Most Efficient Java-Based streaming XSLT Processor?
I have a very large XML file which I need to transform into another XML file, and I would like to do this with XSLT. I am more interested in optimisation for memory, rather than optimisation for speed ...
7
votes
3answers
18k views
How do I write an XSLT to transform XML to CSV?
I'm trying to write an XSLT that will transform an XML document that I have to a CSV file. Here's a sample of the XML:
<?xml version="1.0" encoding="utf-8"?>
<Import>
<Users>
...
5
votes
4answers
6k views
How to unescape XML characters with help of XSLT?
I need to unescape xml characters from inside of XML nodes with help only XSLT transformation . I have <text><>and oyher possible characters</text> and need to get it as ...
3
votes
3answers
11k views
How to remove duplicate XML nodes using XSLT
I've got an extremely long XML file, like
<Root>
<ele1>
<child1>context1</child1>
<child2>test1</child2>
<child1>context1</child1>
...
3
votes
3answers
11k views
XSLT - Best way to split and render comma separated text as HTML
I have some data in an XML element that looks like this:
<item value="category1,category2">Item Name</item>
The bit I'm interested in is the value attribute. I'm able to get the data ...
2
votes
3answers
4k views
Summing numbers with comma as decimal separator in XSLT?
I have an XML file where the number are comma-separated
<foo>
<bar val="1,23"/>
<bar val="4,56"/>
<bar val="7,89"/>
</foo>
I would like to make a sum over ...
0
votes
1answer
3k views
XSL-FO: Force Wrap on Table Entries
I'm having an issue where when I publish my modspecs to pdf (XSL-FO). My tables are having issues, where the content of a cell will overflow its column into the next one. How do I force a break on ...
1
vote
1answer
555 views
Sitemesh like functionality with XSLT?
I recently asked a question about using XSL/t for creating a site layout and child pages Here.. Where the layout would decorate the child page. I want to expand on that idea and come up with SiteMesh ...
0
votes
1answer
553 views
XSLT attribute node (id) cannot be created after the children of the containing element
Typically i am doing an XSLT process over a Weblogic12 server. I kept running into this issue
net.sf.saxon.trans.DynamicError: An attribute node
(id) cannot be created after the children of the ...

