On Saturday, Feb 1, 2003, at 18:40 Europe/London, Joe Slag wrote:
I've been using TaglibHelper in the XSP pages of the project I'm working on - and it's been great - but now I'm working on a page on which my coworkers (who are doing the corresponding XSLT) would like some of the data to come out as attributes. In case I'm messing up my terminology, rather thanMake use of AxKit pipelines. If you co-workers want that then give it to them with:
<foo>
<bar>1</bar>
</foo>
they would prefer output like
<foo bar="1" />
<xsl:stylesheet>
<xsl:template match="foo">
<foo bar="{./bar}">
</xsl:template>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
