[OpenE-dev] [cvs] opene/src/doc/style keywords.xsl
Status: Alpha
Brought to you by:
dblevins
From: David B. <dav...@vi...> - 2002-04-23 16:45:23
|
Added: src/doc/style keywords.xsl Log: XSLT for website By David Blevins, on 02d/02/04 23:09:45 Revision Changes Path 1.1 opene/src/doc/style/keywords.xsl Index: keywords.xsl =================================================================== <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0"> <xsl:template match="keywords"> <xsl:element name="meta"> <xsl:attribute name="http-equiv">Keywords</xsl:attribute> <xsl:attribute name="content"> <xsl:for-each select="keyword"> <xsl:value-of select="."/> <xsl:choose> <xsl:when test="position() = last()"></xsl:when> <xsl:otherwise>, </xsl:otherwise> </xsl:choose> </xsl:for-each> </xsl:attribute> </xsl:element> </xsl:template> </xsl:stylesheet> |