You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by ra...@apache.org on 2005/07/27 05:19:26 UTC

svn commit: r225448 - in /jakarta/taglibs/proper/src/trunk/doc: index.xml stylesheets/taglibs.xsl

Author: rahul
Date: Tue Jul 26 20:19:23 2005
New Revision: 225448

URL: http://svn.apache.org/viewcvs?rev=225448&view=rev
Log:
Announcing the 1.0.0 release of the RDC tag library on the Jakarta Taglibs index page.

Modified taglibs.xsl to handle the RDC libname. Added the sandboxLibURLTemplate which will be removed after I complete the SVN move for RDCs from Sandbox to Proper.


Modified:
    jakarta/taglibs/proper/src/trunk/doc/index.xml
    jakarta/taglibs/proper/src/trunk/doc/stylesheets/taglibs.xsl

Modified: jakarta/taglibs/proper/src/trunk/doc/index.xml
URL: http://svn.apache.org/viewcvs/jakarta/taglibs/proper/src/trunk/doc/index.xml?rev=225448&r1=225447&r2=225448&view=diff
==============================================================================
--- jakarta/taglibs/proper/src/trunk/doc/index.xml (original)
+++ jakarta/taglibs/proper/src/trunk/doc/index.xml Tue Jul 26 20:19:23 2005
@@ -82,6 +82,11 @@
 </section>
   <section name="News" href="News">
     <news>
+      <newsitem date="07/26/2005" libname="RDC">
+        Version 1.0.0 of the Reusable Dialog Components (RDC) Taglib has been 
+        <a href="http://jakarta.apache.org/site/downloads/downloads_taglibs-rdc.cgi">
+        released</a>.
+      </newsitem>
       <newsitem date="10/25/2004" libname="standard">
         Version 1.1.2 of the Standard Taglib 1.1 (JSTL 1.1) has been 
         <a href="http://jakarta.apache.org/site/binindex.cgi#Release%20Builds">

Modified: jakarta/taglibs/proper/src/trunk/doc/stylesheets/taglibs.xsl
URL: http://svn.apache.org/viewcvs/jakarta/taglibs/proper/src/trunk/doc/stylesheets/taglibs.xsl?rev=225448&r1=225447&r2=225448&view=diff
==============================================================================
--- jakarta/taglibs/proper/src/trunk/doc/stylesheets/taglibs.xsl (original)
+++ jakarta/taglibs/proper/src/trunk/doc/stylesheets/taglibs.xsl Tue Jul 26 20:19:23 2005
@@ -15,6 +15,7 @@
   <xsl:variable name="banner-bg" select="'#023264'"/>
   <xsl:variable name="banner-fg" select="'#ffffff'"/>
   <xsl:variable name="docDir">http://jakarta.apache.org/taglibs/doc</xsl:variable>
+  <xsl:variable name="sandboxDocDir">http://jakarta.apache.org/taglibs/sandbox/doc</xsl:variable>
 
   <xsl:param name="prefix"></xsl:param> 
   <!-- Process an entire document into an HTML page -->
@@ -309,6 +310,12 @@
   <xsl:template name="libURL">
     <xsl:choose>
 
+      <xsl:when test="@libname = 'RDC'">
+        <xsl:call-template name="sandboxLibURLTemplate">
+          <xsl:with-param name="libname">rdc</xsl:with-param>
+        </xsl:call-template>
+      </xsl:when>
+
       <xsl:when test="@libname = 'DBTags'">
         <xsl:call-template name="libURLTemplate">
           <xsl:with-param name="libname">dbtags</xsl:with-param>
@@ -353,6 +360,11 @@
   <xsl:template name="libURLTemplate">
     <xsl:param name="libname" select="@libname"/>
     [<a href="{$docDir}/{$libname}-doc/intro.html"><xsl:value-of select="@libname"/></a>]
+  </xsl:template>
+
+  <xsl:template name="sandboxLibURLTemplate">
+    <xsl:param name="libname" select="@libname"/>
+    [<a href="{$sandboxDocDir}/{$libname}-doc/intro.html"><xsl:value-of select="@libname"/></a>]
   </xsl:template>
 
   <xsl:template match="tagindex">



---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: taglibs-dev-help@jakarta.apache.org