FAQDOCSDOWNLOADSGALLERYJA-SIG LogoSourceForge.net Logo
General
Background
Technical
RDF Metadata
XSL
Usage
Troubleshooting
How can I access data from an included file in my XSL?
How can I specify parameters to my XSL?

How can I access data from an included file in my XSL?

The document root of each included XML file is wrapped together; to access the root elements of all includes, you could write an xpath like:

/cms:wrapper/cms:include/node()[not(name()='RDF')]

The not statement in the xpath excludes metadata, which is always found under an rdf:RDF element.

See the documentation on includes  and the section on transformations for more details.

Back to Top

How can I specify parameters to my XSL?

There are a variety of parameters available. Here's a sample:




Back to Top