diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2013-09-20 17:06:18 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2013-09-20 17:06:18 -0300 |
commit | 8660cc0897a4a96f5c9ec23b3262deb787593739 (patch) | |
tree | 41507dc75cbc0a9fc844c5fe131bbe6a8e5fe20a /pcr/hiawatha/cdcatalog.xslt | |
parent | 4a88564b04e5cbf185ecb2984b77bb533e72dfe8 (diff) | |
parent | a15e19cb5254a876b22065a3c7ec24124429c51c (diff) |
Merge branch 'master' of ssh://projects.parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'pcr/hiawatha/cdcatalog.xslt')
-rw-r--r-- | pcr/hiawatha/cdcatalog.xslt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pcr/hiawatha/cdcatalog.xslt b/pcr/hiawatha/cdcatalog.xslt new file mode 100644 index 000000000..db9cc35bc --- /dev/null +++ b/pcr/hiawatha/cdcatalog.xslt @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- Edited with XML Spy v4.2 -->
+<xsl:stylesheet version="1.0"
+xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:template match="/">
+ <html>
+ <body>
+ <h2>My CD Collection</h2>
+ <table border="1">
+ <tr bgcolor="#9acd32">
+ <th align="left">Title</th>
+ <th align="left">Artist</th>
+ </tr>
+ <xsl:for-each select="catalog/cd">
+ <tr>
+ <td><xsl:value-of select="title"/></td>
+ <td><xsl:value-of select="artist"/></td>
+ </tr>
+ </xsl:for-each>
+ </table>
+ </body>
+ </html>
+</xsl:template>
+</xsl:stylesheet>
\ No newline at end of file |