You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by O....@sh.cvut.cz on 2003/12/02 05:57:17 UTC

Logicsheet with code inside

Hi, I'd like to do logicsheet, it should just copy of input code. Example:

XSP script looks like:

<new_sheet:tag>
... java code, using other logicsheet, simply anything ...
</new_sheet:tag>

XSL logisheet define should look like (I thought):


<xsl:template match="new_sheet:tag">
  <xsp:content>
    <xsl:apply-templates/>
  </xsp:content>
</xsl:template>

or something like

<xsl:template match="new_sheet:tag">
  <xsl:copy>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>

But nothing of the above doesn't work correctly (mainly calling other 
logicsheets, it seems). Do you know right way? Thanks a lot!

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org