Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Stylesheets/mapstylesheet.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'Stylesheets/mapstylesheet.xsl')
-rw-r--r--Stylesheets/mapstylesheet.xsl24
1 files changed, 24 insertions, 0 deletions
diff --git a/Stylesheets/mapstylesheet.xsl b/Stylesheets/mapstylesheet.xsl
new file mode 100644
index 0000000..1e207a8
--- /dev/null
+++ b/Stylesheets/mapstylesheet.xsl
@@ -0,0 +1,24 @@
+<!-- Copyright (C) IBM Corporation 2008 -->
+<?xml version="1.0"?>
+<html xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xsl:version="1.0">
+<head>
+ <title><xsl:value-of select="map/@title" /></title>
+ <link rel="stylesheet" type="text/css" href="mapstyle.css" title="Selected Stylesheet" />
+</head>
+<body>
+ <h1>
+ <xsl:value-of select="map/@title" />
+ </h1>
+
+ <xsl:for-each select="map">
+ <li>
+ <xsl:for-each select="topicref">
+ <ul><a><xsl:attribute name="href">
+ <xsl:value-of select="@href" />
+ </xsl:attribute>
+ <xsl:value-of select="@navtitle" /></a></ul>
+ </xsl:for-each>
+ </li>
+ </xsl:for-each>
+</body>
+</html>