Hi,
I try to explain me better:

What I want do,it is something like that.
 a.xml
<?xml-stylesheet href="b.xsl" type="text/xsl"?>
<?xml-logicsheet href="../mylogic.xsp.xsl"?>
<?cocoon-process type="xsp"?>
<?cocoon-process type="xslt"?>
...
<my:call> ... tag mapped in mylogic.xsp.xsl ... </my:call>
...
b.xsl:
<xsl:template match="/">
  <xsl:processing-instruction name="xml-stylesheet">href="c.xsl"
type="text/xsl"</xsl:processing-instruction>
  <xsl:processing-instruction
name="xml-logicsheet">href="../mylogic2.xsp.xsl"</xsl:processing-instruction
>
  <xsl:processing-instruction
name="cocoon-process">type="xsp"</xsl:processing-instruction>
  <xsl:processing-instruction
name="cocoon-process">type="xslt"</xsl:processing-instruction>
...
<xsl:template match="result">
        <my2:call>...tag mapped in mylogic2.xsp.xsl...</my2:call>
...

In a.xml I use mylogic.xsp.xsl (my taglib), and with b.xsl I want add
mylogic2.xsp.xsl (another taglib).

c.xsl: trasforms the page xml in a html page.!

Is it possible?
Thanks for help

Ciao Matteo



---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>

Reply via email to