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/10/09 05:22:18 UTC

svn commit: r307352 - in /jakarta/taglibs/proper/rdc/trunk: src/util/taglibs20-doc.xsl xml/intro.xml xml/rdc.xml

Author: rahul
Date: Sat Oct  8 20:22:14 2005
New Revision: 307352

URL: http://svn.apache.org/viewcvs?rev=307352&view=rev
Log:
Corrected documentation to reflect deployment procedure on JSP 2.0 containers, and updated dependencies information.

Modified:
    jakarta/taglibs/proper/rdc/trunk/src/util/taglibs20-doc.xsl
    jakarta/taglibs/proper/rdc/trunk/xml/intro.xml
    jakarta/taglibs/proper/rdc/trunk/xml/rdc.xml

Modified: jakarta/taglibs/proper/rdc/trunk/src/util/taglibs20-doc.xsl
URL: http://svn.apache.org/viewcvs/jakarta/taglibs/proper/rdc/trunk/src/util/taglibs20-doc.xsl?rev=307352&r1=307351&r2=307352&view=diff
==============================================================================
--- jakarta/taglibs/proper/rdc/trunk/src/util/taglibs20-doc.xsl (original)
+++ jakarta/taglibs/proper/rdc/trunk/src/util/taglibs20-doc.xsl Sat Oct  8 20:22:14 2005
@@ -642,19 +642,15 @@
     <p>Follow these steps to configure your web application with this tag
     library:</p>
     <ul>
-      <li>Copy the tag library descriptor file to the /WEB-INF subdirectory
-      of your web application.</li>
-      <li>Copy the tag library JAR file to the /WEB-INF/lib subdirectory 
-      of your web application.</li>
-      <li>Add a &lt;taglib&gt; element to your web application deployment
-      descriptor in /WEB-INF/web.xml like this:
-      <pre>
-        &lt;taglib&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>
-      </li>
+      <li>Use a servlet container that implements the JavaServer Pages
+      Specification, version 2.0 or higher (Example: Tomcat 5.x) or an
+      application server that supports J2EE 1.4 or higher (Example: 
+      Websphere Application Server 6.x)</li>
+      <li>Use a Servlet 2.4 web application descriptor for your web
+      application.</li>
+      <li>Copy the tag library JAR file 
+      (taglibs-<xsl:value-of select="prefix"/>.jar)
+      to the /WEB-INF/lib subdirectory of your web application.</li>
     </ul>
     <p>To use the tags from this library in your JSP pages, add the following
     directive at the top of each page: </p>

Modified: jakarta/taglibs/proper/rdc/trunk/xml/intro.xml
URL: http://svn.apache.org/viewcvs/jakarta/taglibs/proper/rdc/trunk/xml/intro.xml?rev=307352&r1=307351&r2=307352&view=diff
==============================================================================
--- jakarta/taglibs/proper/rdc/trunk/xml/intro.xml (original)
+++ jakarta/taglibs/proper/rdc/trunk/xml/intro.xml Sat Oct  8 20:22:14 2005
@@ -62,11 +62,13 @@
 <p>
   The RDC taglib project provides the following pieces:
 
-<p>A small collection of speech dialog components that aid in basic user interaction.</p>
+<ol>
+  <li>A small collection of speech dialog components that aid in basic user interaction.</li>
 
-<p> A collection of sample applications that demonstrate the use of these components.</p>
+  <li>An extensible JSP-2.0 framework for implementing additional speech components that can collaborate in producing complex spoken interaction.</li>
 
-<p>An extensible JSP-2.0 framework for implementing additional speech components that can collaborate in producing complex spoken interaction.</p>
+  <li> A collection of sample applications that demonstrate the use of these components.</li>
+</ol>
 
 All functionality is implemented either directly as JSP-2.0
 <i>tag</i> or <i>tagx</i> files, or as Java classes that implement
@@ -87,12 +89,18 @@
 This tag library requires JSP 2.0 support and has been developed on Tomcat 5.0.
 It depends on the following libraries, many of which can be obtained from various Apache projects:
 <ul>
-  <li>jstl.jar and standard.jar --- JSTL 1.1</li>
-  <li>jsp-api.jar --- for building custom tags</li>
-  <li>commons-el.jar  --- for delayed EL evaluation</li>
-  <li>struts.jar, commons-digester.jar and commons-beanutils.jar --- for struts examples</li>
-  <li>commons-logging.jar  --- for logging in taglib and sample applications</li>
+  <li>jstl.jar and standard.jar (JSTL 1.1)</li>
+  <li>jsp-api.jar (JSP 2.0) for building custom tags</li>
+  <li>commons-el.jar (1.0) for delayed EL evaluation</li>
+  <li>struts.jar (1.2), commons-digester.jar (1.7) and
+      commons-beanutils.jar (1.7) for struts examples and the
+      rule-based directed dialog</li>
+  <li>commons-logging.jar (1.0.4) for logging in taglib and sample
+      applications</li>
 </ul>
+It may be possible to use Commons library versions lesser than the ones quoted here.
+</p>
+<p>
 A majority of the tags implemented by this tag library have been
 created as <i>.tag</i> files. 
 Tag handlers implemented in Java extend JSP-2.0's

Modified: jakarta/taglibs/proper/rdc/trunk/xml/rdc.xml
URL: http://svn.apache.org/viewcvs/jakarta/taglibs/proper/rdc/trunk/xml/rdc.xml?rev=307352&r1=307351&r2=307352&view=diff
==============================================================================
--- jakarta/taglibs/proper/rdc/trunk/xml/rdc.xml (original)
+++ jakarta/taglibs/proper/rdc/trunk/xml/rdc.xml Sat Oct  8 20:22:14 2005
@@ -96,11 +96,20 @@
          the "Requirements" section of the HTML doc. -->
     <requirements-info>
       This custom tag library requires a servlet container
-      that supports the JavaServer Pages Specification, version 2.0 or higher  
-      + jstl.jar and standard.jar from the Apache project 
-      + commons-el.jar for delayed EL evaluation 
-      + struts.jar, commons-beanutils.jar and commons-digester.jar (for
-      building the struts support).
+      that supports the JavaServer Pages Specification, version 2.0 or
+      higher. The dependencies are:
+      <ul>
+        <li>jstl.jar and standard.jar (JSTL 1.1)</li>
+        <li>jsp-api.jar (JSP 2.0) for building custom tags</li>
+        <li>commons-el.jar (1.0) for delayed EL evaluation</li>
+        <li>struts.jar (1.2), commons-digester.jar (1.7) and
+        commons-beanutils.jar (1.7) for struts examples and the
+        rule-based directed dialog</li>
+        <li>commons-logging.jar (1.0.4) for logging in taglib and sample
+        applications</li>
+      </ul>
+      It may be possible to use Commons library versions lesser than the
+      ones quoted here.
     </requirements-info>
     
     <!-- The toc element allows the addition of document sections to
@@ -115,7 +124,7 @@
          tags in the tag library.  There must be at least one tagtoc.
          1 .. N tags can be nested within a tagtoc.
     -->
-    <!-- TVR: we will have the following sections:
+    <!-- We will have the following sections:
          
          0) Atomic Components 
          1) Composite Components



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