Tagged Questions

1
vote
2answers
91 views

XSLT: How do I trigger a template when ther is no input file?

I'm creating a template which produces output based on a single string, passed via parameter, and does not use an input XML document. xsltproc seems to happily run with a single p …
1
vote
2answers
116 views

Drag-and-drop generation of XSLT for displaying XML as HTML?

(I've searched and browsed XSLT questions, as well as looked at Altova's product, though not yet Stylus's product.) I do not want to hear again that XSLT is complicated and diffic …
1
vote
1answer
177 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 xsl …
1
vote
3answers
194 views

XSLT; finding most frequent element value in a document

Apologies if this is a very simple question; I don't use XSLT very much and I can't find much advice on the web, as there is lots of pollution in search results! I have an XML doc …
2
votes
1answer
313 views

xslt transform and combine *.xml

I want to pull a series of relationships out of xml files and transform them into a graph I generate with dot. I can obviously do this with a scripting language, but I was curious …
3
votes
5answers
570 views

How to use node-set function in a platform-independent way?

I'm writing some xlst file which I want to use under linux and Windows. In this file I use node-set function which declared in different namespaces for MSXML and xsltproc ("urn:sc …
4
votes
2answers
2k 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: &lt Element fruit="apple" animal="cat" /&gt Which I want to be removed from the file. Using an XSLT st …
1
vote
2answers
233 views

Dealing with param values

I am attempting to compose a style sheet that, given an XML input (obviously) and a parameter that specifies a "target", will produce a list of commands that match that target. He …