glenn 01/07/01 08:48:48
Modified: src/taglib taglib-doc.xsl
Log:
Merge footer.xsl in
Revision Changes Path
1.4 +20 -8 jakarta-taglibs/src/taglib/taglib-doc.xsl
Index: taglib-doc.xsl
===================================================================
RCS file: /home/cvs/jakarta-taglibs/src/taglib/taglib-doc.xsl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- taglib-doc.xsl 2001/06/25 13:26:06 1.3
+++ taglib-doc.xsl 2001/07/01 15:48:48 1.4
@@ -3,6 +3,7 @@
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="html"
+ encoding="ISO-8859-1"
indent="yes"
omit-xml-declaration="yes"/>
<!--
@@ -26,9 +27,6 @@
1/1/2001
-->
-<!-- A footer linked in, which we call below (near the bottom) -->
-<xsl:include href="footer.xsl"/>
-
<!--
How some of the non-obvious TLD==>HTML mappings are used here:
@@ -178,7 +176,7 @@
</td>
</tr>
<tr>
- <td colspan="6"><xsl:copy-of select="description"/></td>
+ <td colspan="6"><xsl:value-of select="description"/></td>
</tr>
<tr>
<td><b>Tag Body</b></td>
@@ -226,7 +224,7 @@
<tr>
<td bgcolor="#ffffff"><xsl:text> </xsl:text></td>
<td colspan="5">
- <xsl:copy-of select="description"/>
+ <xsl:value-of select="description"/>
</td>
</tr>
</xsl:for-each>
@@ -329,7 +327,7 @@
<td><xsl:text> </xsl:text></td>
<td><xsl:text> </xsl:text></td>
<td colspan="4">
- <xsl:copy-of select="description"/>
+ <xsl:value-of select="description"/>
</td>
</tr>
</xsl:for-each>
@@ -407,8 +405,20 @@
</xsl:for-each>
<!-- End Additional TOC sections -->
- <!-- Footer Section (Examples, Javadoc, History) called. -->
- <xsl:call-template name="footer"/>
+ <!-- Footer Section (Examples, Javadoc, History) -->
+ <a name="examples"><h3>Examples</h3></a>
+ <p>See the example application
+ <xsl:value-of select="shortname"/>-examples.war for examples of the usage
+ of the tags from this custom tag library.</p>
+
+ <a name="javadocs"><h3>Java Docs</h3></a>
+ <p>Java programmers can view the java class documentation for this tag
+ library as <a href="javadoc/index.html">javadocs</a>.</p>
+
+ <a name="history"><h3>Revision History</h3></a>
+ <p>Review the complete <a href="changes.html">revision history</a> of
+ this tag library.</p>
+
</body>
</xsl:template>
@@ -418,4 +428,6 @@
</p>
</xsl:template>
+<xsl:template match="/document/revision"/>
+
</xsl:stylesheet>