I have numerous XML files that are organized into different directories. I need to combine them and transform the result using XSLT. So far, I have already done this except for one problem: some XML files need to be transformed first before it can be included into the result. xinclude seems to ignore the xml-stylesheet declaration.

How can i transform XML files before they are xincluded?

Regards,

[ simon.cpu ]

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

How is the process run? With a Makefile or something like that? In that case, add explicit calls to xsltproc before the inclusion and then xinclude the output of xsltproc.

If xsltproc can read the processing instruction (xml-stylesheet, note that I did not test that), you do not even have to indicate explicitely the stylesheet to use.

link|improve this answer
I think I'll either write a Bourne shell or PHP script. Someone at IRC gave the same suggestion too: do a two-pass operation and xinclude the result. I wish xinclude supported XSLT... =) – simoncpu Jan 12 '10 at 10:53
feedback

Break it up into multiple transform calls, first prepare the xml files, then do your main transformation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.