0
votes
3answers
53 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. …
1
vote
1answer
57 views
Optimising XDocument to XDocument XSLT
The following code works but is messy and slow. I am transforming an XDocument to another XDocument using XSLT2 with Saxon, adapted using SaxonWrapper:
public static XDocument HSRTransform(XDocument …
1
vote
3answers
64 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="/">
…
2
votes
4answers
184 views
What XSLT 2.0 tools exist?
Hello all, 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, …
0
votes
1answer
93 views
XSLT 2.0 support in JDK 6?
Does JDK 6 support XSLT 2.0 for transformation.
My question is, does it come with an XSLT processor built for XSLT 2.0? or DO I need to go for other libraries like Saxon.
0
votes
2answers
90 views
How to count specific nodes in xml hierachy depends on condition in XSL
I'm writing a stylesheet in xsl (version 2.0) I want to know how could I count all nodes with a specific name although they're not siblings
for example in the following xml I want to count the numbers …
2
votes
1answer
98 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.
3
votes
3answers
445 views
Java XSLT processors supporting XPath 2.0
What are the currently available XSLT processors supporting XPath 2.0 standard?
0
votes
2answers
224 views
Conditional Auto increment in xsl
I have an XML some thing like
<V>
<W>
<X>1</X>
</W>
<W>
<Y>1</Y>
</W>
<W>
<X>1555</X>
</W>
…
0
votes
3answers
244 views
What are some useful constructs for using XSLT to produce XSLT?
I have an existing XSLT stylesheet that takes XML and produces nicely formatted XHTML. I want to make an XSL-FO version of this stylesheet to produce PDF via Apache FOP. What I want to know is this:
…
0
votes
2answers
44 views
How to Rename xml elements and use the new names in the same XSL styleSheet?
I have a xsl file for html output. the xsl handles an old format of xml whixh I want to renew now. Therefore I need to rename the old elements names to the new names I'm using the new names in the …
0
votes
2answers
170 views
Transforming one XML format to another via XSL
The existing format is
<A>
<B>
<C>hello</C>
<C>how</C>
<C>are</C>
<C>you</C>
</B>
</A>
I want to …
1
vote
3answers
682 views
How to compare the value of two nodes in XSLT
I am new to XSLT. I need help comparing the value of two nodes' values in XML.
My sample XML:
<?xml version="1.0" encoding="utf-8"?>
<G1Export xmlns="">
<AgencyGroup xmlns="">
…
1
vote
1answer
206 views
xslt 2.0 and Ruby on OS X
I am attempting to parse an XML document against an XSLT 2.0 sheet. However, I am being told that the libraries on OSX 10.5.x only support XSLT 1.0 operations. When I look at xsltproc, I get this:
…
4
votes
4answers
911 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?
