Hello,
first I want to thank you for your great help in the last days.
We have solved the problem now with your proposed
solution: tagging the xml with a stylesheet.
Our xml now looks like this:
<xsl:template match="document">
<document>
<xsl:apply-templates/>
</document>
</xsl:template>
<xsl:template match="xf:violation">
<xf:violation>
<i18n:text>
<xsl:value-of select="."/>
</i18n:text>
</xf:violation>
</xsl:template>
<xsl:template match="node()" priority="-1">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
Thanx again,
miHam
---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>
To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>