Tagged Questions
The xproc tag has no wiki summary.
3
votes
2answers
282 views
How to simplify this xproc pipeline?
I've just started digging into XProc (using Calabash). I have a series of XSLT transformations I want to apply to a single input document to produce a single output document. I was previously using ...
1
vote
1answer
48 views
Executing XPROC
Am very new to XSLT and XPROC stuffs. Now i have written my sample XPROC, As like every beginner, i also started with Hello World.
hello.xpl
<?xml version="1.0" encoding="UTF-8"?>
...
1
vote
2answers
92 views
XSLT workflow with variable number of source files
I have a bunch of XML files with a fixed, country-based naming schema: report_en.xml, report_de.xml, report_fr.xml, etc. Now I want to write an XSLT style sheet that reads each of these files via the ...
1
vote
5answers
333 views
XML streaming with XProc
I'm playing with xproc, the XML pipeline language and http://xmlcalabash.com/. I'd like to find an example for streaming large xml documents.
for example, given the following huge xml document:
...
0
votes
1answer
30 views
p:variable :: What does shaddowing mean and can I reassign a new value to a previously declared p:variable
I've not tried it yet.
Can we update the value of p:variable anywhere else in the pipeline i.e. after its valid declaration at start of some step? If not then why? Also what is the best way of doing ...
0
votes
1answer
45 views
XPROC - Generation of files in secondary port
My requirement is to generate one XML file and few HTML files in the secondary port. I have configured few steps in XPROC. Below is the sample code
<p:xslt name="create-document">
...