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.
-1
votes
1answer
15 views
XSL change value of parameter
Take a look at my XML (simplified):
<head>
<body>
<xs:element type="xs:double"/>
</body>
</head>
What I want to do is to change value "xs:double" to "doubleOrEmpty" ...
0
votes
1answer
45 views
XSLT to convert the nested elements with comma seperated
I am trying to just convert any xml file to CSV format. the issue as when the xml has nested / child elements those values are not output as comma seperated. i have tried lot of examples in other ...
0
votes
1answer
21 views
xslt extract and sort leaf nodes by name - unexpected result
I wanted to extract leaf nodes and have them sorted.
My XSL gives unexpected results. How can I solve this?
Input
<root>
<b>
<b33 zzz="2" fff="3"></b33>
...
1
vote
1answer
23 views
xslt summing up by group of elements
I have a requirement to add an extra section under TXLifeRequest for summed up payment amount from the below xml.
<?xml version="1.0" encoding="utf-8"?>
<TXLife ...
2
votes
2answers
53 views
From SOAP to XML using XSLT
So I'm trying to convert (Extract) all the elements within the body of a SOAP document into XML using XSLT. Here's my SOAP document (complete)
<?xml version="1.0" encoding="UTF-8" ?>
...
0
votes
2answers
28 views
XSL condition to check if node exists
I want to check if in my XML exists node that has type attribute containing string type_attachment_.
Is it a correct way to check it?
<xsl:if test="count(*[contains(@Type, 'type_attachment_')]) ...
1
vote
2answers
35 views
Need XSLT Transformation to get Un-ordered List of HTML like structure
I am new to XSLT.
I need to transform the below input xml format to the desired output format which is under it (O/P Format is an unorderedList in HTML) using XSLT to use this in a JQuery plugin. I ...
0
votes
1answer
30 views
how to get date difference in xslt
My Schema is :
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:datetime="http://exslt.org/dates-and-times" ...
0
votes
1answer
23 views
xsl:for-each not working
I got an XSL variable named filt and it holds data like this
<filters>
<ritem relateditemnumber="8901037" />
<ritem relateditemnumber="8901038" />
<ritem ...
1
vote
1answer
28 views
How to count entries in XSLT?
I am quite new to XSLT and I would like to generate a count of participants for a list of events. This is my XML:
<events>
<event name="christmas"/>
<event ...
1
vote
1answer
22 views
Inline javascript in xsl
I have to have an inline script in an xsl stylesheet file but the problem is that the xsl tries to transform the script and causes errors.
<script id="template-upload" type="text/x-tmpl">
...
0
votes
1answer
20 views
How to instruct XSLT to apply template only on children?
When applyng this XSLT:
<xsl:template match="e">
<xsl:value-of select="@name"/>
</xsl:template>
To this xml:
<root>
<e name="1"/>
<la>
...
0
votes
1answer
22 views
How to group neighbour-siblings
i have something like this:
<root>
<a>foo</a>
<b>bar</b>
<groupme>foobar</groupme>
<groupme>baz</groupme>
...
0
votes
1answer
30 views
Can't get XSL to Display Correctly with XSL Variables and XPATH
I'm making a basic Contact List Web App with three pages - a Contact List page that displays all contacts in the DB (stored in an XML file), a Contact View page (that is a read-only page which ...
1
vote
2answers
59 views
Using XPath - How do I select/count immediate siblings?
I am trying to compound immediate following siblings with the same values together. But I am having trouble to select only the IMMEDIATE siblings.
Input:
<ROWS>
<ROW>
...
0
votes
1answer
36 views
XSLT adding new element to current node
I have a xml and I am trying to add a new element then assign the value on certain conditions.
Everything is working fine.
However, it seems to adding the new element to the parent node.
Can someone ...
0
votes
1answer
28 views
XSLT Failing to Match, Namespace and Doctype Issues
When applying the XSLT to XML file listed below no match is ever found. This transform is being preformed client-side in Internet Explorer 8 using the Msxml2 library. While my ultimate application is ...
0
votes
0answers
23 views
xsl:output method text and relative import doesn't work with Nokogiri Jruby
We were using Nokogiri with Ruby since last 3 months and it was working absolutely fine. Due to some architectural change we are moving to Jruby. We realized that xsl:output method="text" doesn't work ...
1
vote
3answers
83 views
increment counter in XSLT 1.0
This is the input XML:
<Move-Afile>
<Afile>
<Item>
<PackNumber>1234</PackNumber>
</Item>
<Item>
...
0
votes
3answers
52 views
How to define a correct XSLT?
Assuming I have the following XML and I care only about the FruitId, and the customer Numbereaten, and Weight attributes.
<AllFruits xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- ...
1
vote
1answer
26 views
adding attribute which value is another's element's attribute's value
i have xml:
<graph>
<node id="a" />
<node id="b" />
<node id="c" />
<node id="d" />
<link from="a" id="link1" to="b"/>
<link from="b" id="link2" to="d"/>
...
1
vote
1answer
49 views
Working with XSLT. Sample application
I want to reproduce this example in Java sample app:
http://www.w3schools.com/Xsl/tryxslt.asp?xmlfile=cdcatalog&xsltfile=cdcatalog
This is my sample app:
input.xml - contains the content that ...
-1
votes
1answer
47 views
Build a tree from a XML file using XSLT?
Being a XML file, I know to generate some output by the XSL. But I need to build a navigation tree either to hidden the contents that I don't have to look at or show those I want to. Tree that I am ...
1
vote
1answer
31 views
Confused: How to select XML content via ID in XSL
My aim is to use my xml (version 1.0) and xsl (version 1.0) files to create html pages.
This is the code in my XML file:
<Photo>
<Text id="one">This is the first Photo</Text>
...
3
votes
2answers
72 views
XSLT - What does “/.” do?
I am new to XSLT, so this question may be a bit silly. Could someone please explain to me what's going on here?
I have a simple XML document (just for testing purposes) and its stylesheet.
I don't ...
0
votes
0answers
34 views
Squarespace: how to use XML / XSLT in region
I have data that is coming in xml format, now i know i can use xslt to transform the file in xhtml that can be style in addition using css. now as Squarespace use region, how i am going to use xml ...
-3
votes
1answer
35 views
How do I structure poorly structured content based off of following/preceding-sibling text() node predicates? [closed]
Based on the source XML below, I want to capture the text nodes and <emphasis> elements that do not contain <emphasis bold="yes">NOTE#:</emphasis>, with their corresponding ...
0
votes
2answers
48 views
Pass XSLT element to C# code
In my XML, I have something like this:
<people>
<person>
<name>
<first>Bob</first>
<last>Bobbertson</last>
...
0
votes
1answer
42 views
XML/XSLT sum for-each with variables
I am having a problem. What I want is to sum the objects and print them for every iteration. I am new to XSLT, so please be kind. What I have is this code:
<?xml version = "1.0" encoding = ...
1
vote
2answers
63 views
Convert date from DD-MMM-YYYY to YYYYMMDD format in xslt 1.0
How we can convert the date format from DD-MMM-YYYY to YYYY-MM-DD in XSLT.
10-JAN-2013 TO 20130110
in XSLT 1.0
1
vote
1answer
71 views
My xsl stylesheet generates an xml file with multiple roots
I have a problem in parsing xml files with xslt stylesheets
http://docs.oracle.com/javase/tutorial/jaxp/xslt/transformingXML.html
i changed a bit in the stylizer code to input more than one xml file
...
-5
votes
0answers
31 views
XSL Transform of xml [closed]
I have xml
<wos>
<entry>
<db.link ref="WS def: Court">
<phrase>def: ...
0
votes
1answer
32 views
KML Linestring plotting problems
I currently have an XML file with some coordinates.
This XML is transformed throw an XSLT file into a KML file (only with placemarks). I've tested it on Google Earth and it's working fine.
Now, I'm ...
0
votes
2answers
31 views
How to use a template and variable name to count some values of a specific node in xsl
I use a template as
<xsl:template name="myTemplate">
and I need to count the amount of level nodes whose values are "ON" and "OFF".
The final report that I want to have:
this file ...
0
votes
0answers
22 views
Adding attributes to element using java sax parser
I have been trying to add attributes to an element but it's not working. I need the XML to be like this:
<team id="01" colored="Y">
<member>
<memberid>01</memberid>
...
1
vote
1answer
19 views
In XSLT 2.0, why is there no fn:decode-for-uri?
I have a URI encoded string in XML but can't decode it using xslt.
There is a fn:encode-for-uri to encode the string
But no decode-for-uri to decode.
Is there a function I have missed?
If not, why ...
2
votes
1answer
28 views
Convert escaped xml into nodes of the current document
I am working with a set of interrelated documents that I am collecting with a single XSL and processing (determining the URL to used based on the content and processing done so far).
For example a ...
0
votes
1answer
27 views
XSL - Display XML tags based on parameter from PHP
Ive got a problem displaying my desired XML tags based on an parameter. I'm fairly new to this.
XML Example:
<car name="Toyota">
<model nr="123" yeardate="2010">
<owner ...
1
vote
1answer
66 views
How to get all preceding nodes regardless of the current position
Structure of my XML
<root>
<Q id="a">1</Q>
<Q id="b">2</Q>
<Q id="c">3</Q>
<x>
<Q id="d">3.1</Q>
...
0
votes
3answers
35 views
xslt send variable to another template
I have an xml example like this:
<p class="exer_header" style="display: none;">
<image-input size="5" value="val1" />
</p>
<p class="exer_header" style="display: ...
1
vote
1answer
34 views
Running footer not visible on first page
I am using below XSLT to generate report with running footer, but the first page of ther report doesn't have the running footer, please advice what needs to be changed
<?xml version="1.0" ...
0
votes
3answers
31 views
XSLT: Wrapping a node and following text node with another tag
I've got the below XML document that I'd like to transform using XSLT.
Input:
<ABS>
<B>Heading 1</B>
text
<B>Heading 2</B>
text
<B>Heading 3</B> ...
0
votes
3answers
30 views
xsl - Get all attributes from childs
I'm having some trouble getting all the attributes from the parent tag, and their childs.
This is my the XML:
<macro name="editor">
<names variable="editor" delimiter=", ">
...
0
votes
1answer
15 views
How do I store HTML/XHTML in an XML file and then use XSLT to retrieve it?
I have an xml file containing the documentation from a project of mine. I'm using XSLT to transform this XML file into HTML to output it in a browser.
Now the thing is that I have some entities that ...
0
votes
1answer
23 views
transform file : sum of value - accept or reject
I am very new to xslt. I have been looking around how to solve my problem but seem i cannot find what i am looking for.
What I need to transform is:
sum a total of amount1, amount2, amount3, ...
0
votes
0answers
23 views
How to Get Correctly formatted date using Xslt?
I have a xslt code for getting the date from the database.the code is working correctly and I got the output ,but the problem is the date is not in correct format.here is the result.
output: ...
0
votes
1answer
30 views
How to create a folder during xslt transformation with Saxon in which to copy binary data afterwards
I'm currently in the process of writing an XSLT Stylesheet that will handle the transformation of DOCX Documents to (X)HTML files.
Given the fact images are either included (in the /word/media ...
0
votes
3answers
29 views
Change parent attribute value based on child value
I have to change the attribute of a parent node based on a combination of parent attirbute value and and child value. My input xml is as below:
<filters>
<sheetFilter filterUsage="table" ...
0
votes
2answers
71 views
XSL calculated field for running total
Im having some problem here, the recursion running total doesn't add up for my xsl template below is the code for my xsl and the xml
XML:
</xsl:for-each-group>
Subtotal:
...
1
vote
3answers
96 views
Saxon 9 XSLT transformer vs Xalan 2.7
I am currently using Xalan 2.7.0 for XSLT transformations over XML, but thinking over to switch to Saxon 9 version for XSLT transformations. So could someone list me the major cons and prons of using ...
