summaryrefslogtreecommitdiff
path: root/pcr/hiawatha/cdcatalog.xslt
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-09-20 23:27:08 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-09-20 23:27:08 -0400
commita44a429581d48f5f1dc661d8484519836c219807 (patch)
tree2d00688a5ebe9f6bb3f5ebe04fd6f35af12ac39f /pcr/hiawatha/cdcatalog.xslt
parenta3b4fa51913575d1c7478abfbcdd2799d0855ab0 (diff)
parent87b354d1fd3ad74a6d57140348bf63ddef871d11 (diff)
downloadabslibre-a44a429581d48f5f1dc661d8484519836c219807.tar.gz
abslibre-a44a429581d48f5f1dc661d8484519836c219807.tar.bz2
abslibre-a44a429581d48f5f1dc661d8484519836c219807.zip
Merge branch 'master' of git://projects.parabolagnulinux.org/abslibre
Diffstat (limited to 'pcr/hiawatha/cdcatalog.xslt')
-rw-r--r--pcr/hiawatha/cdcatalog.xslt24
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