Re: [xsl] xsl reference in xsl

Subject: Re: [xsl] xsl reference in xsl
From: "cutlass" <cutlass@xxxxxxxxxxx>
Date: Tue, 13 Nov 2001 13:41:02 -0000
----- Original Message ----- 
From: "Eric Chappuis" <eric.chappuis@xxxxxxxxx>
To: <XSL-List@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Tuesday, November 13, 2001 1:34 PM
Subject: [xsl] xsl reference in xsl


> Hello,
> 
> How can I add in a xsl file the xsl reference for the result.
> 
> I have 2 transformation steps, let'say 
> 
> xml1 -> xslA-> xml2 
> and
> xml2 -> xslB-> xml3
> 
> So I need to write in xslA a <xsl:??? > line that will write during
> transformation:
> 
> <?xml-stylesheet type="text/xsl" href="xslB.xsl"?>

try the xsl:processing-instruction syntax

<xsl:processing-instruction name="xml-stylesheet">
<xsl:text>href="xslB.xsl" type="text/css"</xsl:text>
</xsl:processing-instruction>

to write PI's 

her is a link to FAQ
http://www.dpawson.co.uk/xsl/sect2/N6145.html


cheers ,jim fuller

> 
> I cannot find how to do this?
> 
> Could you help please?
> 
> Thanks,
> 
> Eric
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread