nicolaken 2003/10/02 01:15:04
Modified: src/resources/forrest-shbat/var skinlist2echo.xsl
Log:
Adding author and website attributes.
Revision Changes Path
1.3 +5 -1 xml-forrest/src/resources/forrest-shbat/var/skinlist2echo.xsl
Index: skinlist2echo.xsl
===================================================================
RCS file: /home/cvs/xml-forrest/src/resources/forrest-shbat/var/skinlist2echo.xsl,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- skinlist2echo.xsl 2 Oct 2003 04:14:46 -0000 1.2
+++ skinlist2echo.xsl 2 Oct 2003 08:15:03 -0000 1.3
@@ -11,7 +11,11 @@
</xsl:template>
<xsl:template match="skin">
- <echo><xsl:value-of select="@name"/> - <xsl:value-of select="normalize-space(description)"/></echo>
+<echo>
+* <xsl:value-of select="@name"/> - <xsl:value-of select="normalize-space(description)"/>
+ - author: <xsl:value-of select="@author"/>
+ - website: <xsl:value-of select="@website"/>
+</echo>
</xsl:template>
</xsl:stylesheet>
|