Hi,

I' looking for a two-pass transformation tutorial for cocoon.
Why?

My post on xsl-list:
___________________________________________________________________________

My problem is that I have lots of different stylesheets for the main-template (<xsl:call-template name="main"/>), and I don't want to write millions of different xsl's that differ just in one entry (<xsl:include href="XXXXX"/>).
Is there an other way to solve this problem?


my xsl:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:variable name="main"><xsl:value-of select="/document/style"/></xsl:variable>
<xsl:template match="/document">
...
<xsl:call-template name="main"/>
...
</xsl:template>
<!-- wrong usage of include -->
<xsl:include href="{$main}"/>
<!-- end wrong usage -->
<!-- needed to "code" around it -->
</xsl:stylesheet>
______________________________________________________________________


They told me to use two pass transformation. Are there some documented examples for this in cocoon?

Regards
Jonny

_________________________________________________________________
FreeSMS abr�umen mit dem MSN Messenger - der Countdown l�uft! http://messenger-mania.msn.de Jetzt mitmachen und gewinnen!



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



Reply via email to