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>
   &lt;taglib&gt;
  -  &lt;taglib-uri&gt;http://jakarta.apache.org/taglibs/<xsl:value-of 
select="short-name"/>-<xsl:value-of select="tlib-version"/>&lt;/taglib-uri&gt;
  +  &lt;taglib-uri&gt;<xsl:value-of select="uri"/>&lt;/taglib-uri&gt;
     &lt;taglib-location&gt;<xsl:value-of 
select="taglib-location"/>&lt;/taglib-location&gt;
   &lt;/taglib&gt;
   </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>
  -&lt;%@ taglib uri=&quot;http://jakarta.apache.org/taglibs/<xsl:value-of 
select="short-name"/>-<xsl:value-of select="tlib-version"/>&quot; 
prefix=&quot;<xsl:value-of select="prefix"/>&quot; %&gt;
  +&lt;%@ taglib uri=&quot;<xsl:value-of select="uri"/>&quot; 
prefix=&quot;<xsl:value-of select="prefix"/>&quot; %&gt;
   </pre>
     <p>where &quot;<i><xsl:value-of select="prefix"/></i>&quot; is the tag
        name prefix you wish to use for tags from this library. You can change
  
  
  

Reply via email to