Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   XML (http://www.velocityreviews.com/forums/f32-xml.html)
-   -   XSLT & SABLOTRON: non-XSL instruction (http://www.velocityreviews.com/forums/t361449-xslt-and-sablotron-non-xsl-instruction.html)

gouranga 07-31-2006 09:57 AM

XSLT & SABLOTRON: non-XSL instruction
 
Sablotron keeps giving an error (non-XSL instruction) on the line with
this code:

<xsl:result-document href="slideshow/index.html" format="html">

Is this implemented in Sablotron?
It's quite urgent :)

Thx in advance.

Joe Kesselman 07-31-2006 12:23 PM

Re: XSLT & SABLOTRON: non-XSL instruction
 
gouranga wrote:
> <xsl:result-document href="slideshow/index.html" format="html">


That isn't an XSLT 1.0 directive. Some 1.0 processors support
redirection extension functions which can do similar things.


--
() ASCII Ribbon Campaign | Joe Kesselman
/\ Stamp out HTML e-mail! | System architexture and kinetic poetry

Martin Honnen 07-31-2006 12:25 PM

Re: XSLT & SABLOTRON: non-XSL instruction
 


gouranga wrote:

> Sablotron keeps giving an error (non-XSL instruction) on the line with
> this code:
>
> <xsl:result-document href="slideshow/index.html" format="html">


xsl:result-document is not an instruction defined in XSLT 1.0 (which
most XSLT processors currently implement and which was standardized in
1999) but rather one defined in XSLT 2.0 (which is so far hardly
implemented, major exception being Saxon 8 from
http://www.saxonica.com/, and which is not yet finally standardized).

> Is this implemented in Sablotron?


To my knowledge (which stems from using Sablotron in PHP 4) Sablotron
implements XSLT 1.0.


--

Martin Honnen
http://JavaScript.FAQTs.com/

gouranga 08-03-2006 10:08 AM

Re: XSLT & SABLOTRON: non-XSL instruction
 
gouranga wrote:
> Sablotron keeps giving an error (non-XSL instruction) on the line with
> this code:
>
> <xsl:result-document href="slideshow/index.html" format="html">
>
> Is this implemented in Sablotron?
> It's quite urgent :)
>
> Thx in advance


I need a solution in XSLT 1.0 so it will work with sablotron.
Basicly what I am doing is:

generate multiple documents from 1 xslt.

Can someone provide me a short code snippet to do this in XSLT 1.0 ?


Joe Kesselman 08-03-2006 11:44 AM

Re: XSLT & SABLOTRON: non-XSL instruction
 
> generate multiple documents from 1 xslt.
> Can someone provide me a short code snippet to do this in XSLT 1.0 ?


Bare XSLT 1.0 can't do it in a single pass. You either need extension
functions (check whether your XSLT processor supports the EXSLT redirect
extension), or you need to extract each document using a separate XSLT.

Or generate a single document made up of a bunch of sub-documents and
then use post-processing (a small SAX-based program?) to extract them
and store them separately.

Sorry, but that's what you've got.

--
() ASCII Ribbon Campaign | Joe Kesselman
/\ Stamp out HTML e-mail! | System architexture and kinetic poetry


All times are GMT. The time now is 11:51 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57