Re: [basex-talk] Destination of result-document from XSLT module

2015-08-05 Thread Christian Grün
Hi Vincent, (# db:chop false #) { let $xslt := doc('stylesheet.xsl') return xslt:transform-text($doc, $xslt) } I should be sufficient to pass on the filename to the XSLT processor: xslt:transform-text($doc, 'stylesheet.xsl') You can do the same with the document input. If you, or someone

Re: [basex-talk] Destination of result-document from XSLT module

2015-08-04 Thread Lizzi, Vincent
-konstanz.de Subject: Re: [basex-talk] Destination of result-document from XSLT module Thank Vincent, But it the input of the xslt I want to control. I'm using BaseX with the CHOP false because I use text documentation and space is important at the end or the begining of an element, and when I try

Re: [basex-talk] Destination of result-document from XSLT module

2015-08-03 Thread Marc
-konstanz.de [mailto:basex-talk-boun...@mailman.uni-konstanz.de] On Behalf Of Marc Sent: Monday, August 03, 2015 4:53 PM Cc: basex-talk@mailman.uni-konstanz.de Subject: Re: [basex-talk] Destination of result-document from XSLT module Hi, I have an other problem is to control the serialization of the node

Re: [basex-talk] Destination of result-document from XSLT module

2015-08-03 Thread Marc
Hi, I have an other problem is to control the serialization of the node passed to the transform function. I don't see how to control it. Marc Le 03/08/2015 22:32, Andy Bunce a écrit : Hi Max, This sounds like a good thing. Another solution to the result-document issue might be to implement the

Re: [basex-talk] Destination of result-document from XSLT module

2015-08-03 Thread Lizzi, Vincent
Of Marc Sent: Monday, August 03, 2015 4:53 PM Cc: basex-talk@mailman.uni-konstanz.de Subject: Re: [basex-talk] Destination of result-document from XSLT module Hi, I have an other problem is to control the serialization of the node passed to the transform function. I don't see how to control

Re: [basex-talk] Destination of result-document from XSLT module

2015-08-03 Thread Andy Bunce
Hi Max, This sounds like a good thing. Another solution to the result-document issue might be to implement the XQuery 3.1 transform function [1] /Andy [1] http://www.w3.org/TR/xpath-functions-31/#func-transform On 3 August 2015 at 20:54, Max Goltzsche max.goltzs...@algorythm.de wrote: Hello

Re: [basex-talk] Destination of result-document from XSLT module

2015-08-03 Thread Max Goltzsche
Hello Vincent, besides an URI resolver I also want to set XSLT 2.0's output destination in BaseX. Currently as you can see in BaseX' xslt:transform and xslt:transform-text implementation in