hi,
do any one have any idea of xslt.
i have made a xsl file , like
<!-- Condtions for //es-inhalt-eu/rubrum Path -->
<xsl:for-each select="//es-inhalt-eu/rubrum">
<es-inhalt-eu>
<xsl:element name = "es-inhalt-eu-block">
<xsl:attribut e name ="typ">rubru m
</xsl:attribute>
<xsl:copy-of select ="//es-inhalt-eu/rubrum/node()"/>
</xsl:element>
</es-inhalt-eu>
</xsl:for-each>
when i execute this it gives me only the nodes formatted in the
xpath mentioned //es-inhalt-eu/rubrum in the code but i want all the nodes in a xml file plus the output of my xsl file .
any help ??
do any one have any idea of xslt.
i have made a xsl file , like
<!-- Condtions for //es-inhalt-eu/rubrum Path -->
<xsl:for-each select="//es-inhalt-eu/rubrum">
<es-inhalt-eu>
<xsl:element name = "es-inhalt-eu-block">
<xsl:attribut e name ="typ">rubru m
</xsl:attribute>
<xsl:copy-of select ="//es-inhalt-eu/rubrum/node()"/>
</xsl:element>
</es-inhalt-eu>
</xsl:for-each>
when i execute this it gives me only the nodes formatted in the
xpath mentioned //es-inhalt-eu/rubrum in the code but i want all the nodes in a xml file plus the output of my xsl file .
any help ??
Comment