Initial Commit
[packages] / xemacs-packages / jde / doc / src / styles / html / jdebook_html_toc.xsl
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4                 xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
5                 exclude-result-prefixes="doc"
6                 version='1.0'>
7
8 <xsl:template match="/">
9 <html>
10 <head>
11 <link rel="StyleSheet" href="../css/jde_style.css" TYPE="text/css"></link>
12 </head>
13 <body bgcolor="#FFF7C8">
14 <h2>Contents</h2>
15 <applet codebase="../../tli_rbl" archive="tli_rbl.jar" code="tli_rbl.class" width="300" height="800">
16
17     <param name="file"         value="./txt/jde-ug-toc.txt"></param>
18     <param name="target"       value="content"></param>
19     <param name="csep"         value=";"></param>
20     <param name="bImg"         value="../tli_rbl/img/icon3.gif"></param>
21     <param name="bgcolor"      value="16775112"></param>
22
23     <param name="v0"         value="http://www.javaside.com"></param>
24     <param name="v1"         value="_top"></param>
25     <param name="font0"      value="Arial, 0, 12, 0, -255"></param>
26     <param name="font1"      value="Times, 0, 12, 0, 12000"></param>
27     <param name="font2"      value="Arial, 2, 14, 255, -255"></param>
28     <param name="font3"      value="Arial, 3, 14, 55, 1255"></param>
29
30 <table border="0" width="100%" cols="1">
31
32 <tbody>
33 <xsl:apply-templates/>
34 </tbody>
35 </table>
36
37 </applet>
38 </body>
39 </html>
40 </xsl:template>
41
42
43 <xsl:template match="chapter">
44 <tr>
45 <td>
46 <a>
47 <xsl:attribute name="href">
48 <xsl:text>jde-ug-content.html#</xsl:text><xsl:value-of select="title/anchor/@id"/>
49 </xsl:attribute>
50 <xsl:attribute name="target">
51 <xsl:text>content</xsl:text>
52 </xsl:attribute>
53 <xsl:value-of select="title"/>
54 </a>
55 </td>
56 </tr>
57 </xsl:template>
58
59
60 <xsl:template match="text()|@*">
61 </xsl:template>
62
63
64
65 </xsl:stylesheet>
66