0
votes
1answer
17 views
XSL: Tracking elements that toggle
The following string gets encoded in my source XML using toggles, and I want it changed to nodes with formatting information. (This is XLIFF to WordprocessingML.)
"Text, bold text …
5
votes
3answers
38 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?
1
vote
2answers
30 views
Using special characters in XSL
I am trying to include special characters such as £, #, " in an XSL document, but have been unable to find a good way to do this. If anybody can suggest a way to achieve this, I'd …
0
votes
2answers
39 views
Pass XML fragments as stylesheet paramters with lxml?
I'm starting to use lxml in Python for processing XML/XSL documents, and in general it seems very straight forward. However, I'm not able to find a way to pass an XML fragment as a …
2
votes
2answers
50 views
Muenchian Grouping - group within a node, not within the entire document
I'm trying to use Muenchian grouping in my XSLT to group matching nodes, but I only want to group within a parent node, not across the entire source XML document.
Given XSLT and …
1
vote
2answers
27 views
xsl:copy-of excluding parent
What code could I use in replace of <xsl:copy-of select="tag"/>, that when applied to the following xml..
<tag>
content
<a>
b
</a>
</tag>
…
1
vote
1answer
14 views
Selecting Comments by their inner xml in xpath/xsl
Hi,
Given the following xml document
<root>
<childnode0/>
<childnode2/>
<!--Comment1-->
<childnode3/>
<childnode4/>
<!--C …
0
votes
2answers
44 views
XSLT transform with multiple XML input files
Is it possible to perform a transform on multiple input XML files?
It doesn't appear to be possible using XslCompiledTransform, but is there an alternative way of applying an XSLT …
0
votes
1answer
35 views
xsl loop to split a fragment tree every n times
This is a sample of my XML, it can possibly have thousands of rows of items in a range of categories.
<store>
<products type="computer">
<item desc="text" am …
0
votes
3answers
39 views
xsl recursive loop node by index
I have created a recursive template for getting the first n number of items from my XML.
It uses an index(counter) just like how I would in a for loop. Now how can I get a node fr …
1
vote
3answers
54 views
Is XSL the right tool to deliver and process custom forms?
I am developing an ASP.NET MVC application on which I provide the end users with a particular form asking for pretty standard stuff, name, phone number, address, etc. However, som …
0
votes
1answer
17 views
How to get server side variable value in xsl template?
I want use localized strings from resources in xsl template as in aspx page, like this:
<%=GetLocalizedString("grid_numberof_claim")%>. I am trying use
<xsl:text disable …
1
vote
1answer
22 views
role of xsl in dynamically generating HTML pages from relational database.
can anybody explain the role that XSL can play when dynamically generating HTML pages from a relational database?
0
votes
2answers
45 views
XSL for-each: how to detect last node?
I have this simple code:
<xsl:for-each select="GroupsServed">
<xsl:value-of select="."/>,<br/>
</xsl:for-each></font>
I'm trying to add a comma f …
0
votes
2answers
48 views
In XSLT, how do you select/copy part of the document as text only?
In XSLT, how do you select/copy part of the document as text only?
The change I want to make is to take part of the tree (tags and values both) and output it as text only (prefera …
