What are parameters for collection() function

Here should go questions about transforming XML with XSLT and FOP.
feickertmd
Posts: 12
Joined: Tue Nov 23, 2010 8:00 pm

What are parameters for collection() function

Post by feickertmd »

This is more XPath than XSLT. I am combining multiple files in a directory into a single output file. The function that works to pull in and process all the files is:

Code: Select all

collection('translated_files?select=*.rdf*;recurse=yes;content-type=application/xml')
My question is: Where can i find all the possible parameters that i can use with fn:collection() ? Internet searches are turnign up nothing (assuming I am searching for the right things). I just want a reference so that I can use this in future.
Martin Honnen
Posts: 97
Joined: Tue Aug 19, 2014 12:04 pm

Re: What are parameters for collection() function

Post by Martin Honnen »

This depends on the used XSLT/XPath/XQuery processor, for Saxon 11 see the documentation at https://www.saxonica.com/html/documenta ... ories.html
tavy
Posts: 365
Joined: Thu Jul 01, 2004 12:29 pm

Re: What are parameters for collection() function

Post by tavy »

In the content completion documentation window there are links to the W3C specification and Salonica documentation:
https://www.w3.org/TR/2010/REC-xpath-fu ... collection
https://www.saxonica.com/html/documenta ... ction.html
Octavian Nadolu
<oXygen/> XML Editor
http://www.oxygenxml.com
Post Reply