morgand 01/08/06 15:36:03
Modified: src/taglib taglib-doc.xsl
Log:
configuration docs should use the "uri" element, not a combination of short
name and version number. We probably should not embed version numbers
in the URI anyway.
Revision Changes Path
1.10 +2 -2 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.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- taglib-doc.xsl 2001/08/06 22:05:43 1.9
+++ taglib-doc.xsl 2001/08/06 22:36:03 1.10
@@ -518,7 +518,7 @@
descriptor in /WEB-INF/web.xml like this:
<pre>
<taglib>
- <taglib-uri>http://jakarta.apache.org/taglibs/<xsl:value-of
select="short-name"/>-<xsl:value-of select="tlib-version"/></taglib-uri>
+ <taglib-uri><xsl:value-of select="uri"/></taglib-uri>
<taglib-location><xsl:value-of
select="taglib-location"/></taglib-location>
</taglib>
</pre>
@@ -527,7 +527,7 @@
<p>To use the tags from this library in your JSP pages, add the following
directive at the top of each page: </p>
<pre>
-<%@ taglib uri="http://jakarta.apache.org/taglibs/<xsl:value-of
select="short-name"/>-<xsl:value-of select="tlib-version"/>"
prefix="<xsl:value-of select="prefix"/>" %>
+<%@ taglib uri="<xsl:value-of select="uri"/>"
prefix="<xsl:value-of select="prefix"/>" %>
</pre>
<p>where "<i><xsl:value-of select="prefix"/></i>" is the tag
name prefix you wish to use for tags from this library. You can change