You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by hu...@apache.org on 2005/11/21 22:45:48 UTC

svn commit: r347994 - in /struts: apps/trunk/project.xml el/trunk/xdocs/struts-el.xml extras/trunk/project.xml taglib/trunk/project.xml taglib/trunk/xdocs/faq.xml

Author: husted
Date: Mon Nov 21 13:45:41 2005
New Revision: 347994

URL: http://svn.apache.org/viewcvs?rev=347994&view=rev
Log:
Complete final round of initial documentation changes for 1.3 series. 

Modified:
    struts/apps/trunk/project.xml
    struts/el/trunk/xdocs/struts-el.xml
    struts/extras/trunk/project.xml
    struts/taglib/trunk/project.xml
    struts/taglib/trunk/xdocs/faq.xml

Modified: struts/apps/trunk/project.xml
URL: http://svn.apache.org/viewcvs/struts/apps/trunk/project.xml?rev=347994&r1=347993&r2=347994&view=diff
==============================================================================
--- struts/apps/trunk/project.xml (original)
+++ struts/apps/trunk/project.xml Mon Nov 21 13:45:41 2005
@@ -35,15 +35,14 @@
 
 
   <description>
-  	The apps subproject hosts "example" or "sample" type applications
+  	The Struts Apps subproject hosts "example" or "sample" type applications
   	that are virtually ready to drop into your servlet container.
   	
   	The only ones that won't run out-of-the box are those that require
   	libraries that the Apache Software Foundation cannot distribute.
   	
   	In the cases where there are required jars, the documentation will
-  	indicate as such.
-  	
+  	indicate as such.  	
   </description>
   	
   <repository>

Modified: struts/el/trunk/xdocs/struts-el.xml
URL: http://svn.apache.org/viewcvs/struts/el/trunk/xdocs/struts-el.xml?rev=347994&r1=347993&r2=347994&view=diff
==============================================================================
--- struts/el/trunk/xdocs/struts-el.xml (original)
+++ struts/el/trunk/xdocs/struts-el.xml Mon Nov 21 13:45:41 2005
@@ -34,7 +34,7 @@
     </p>
 
     <p>
-    The base Struts tag library contains tags which rely on the evaluation
+    The base Struts Taglib contains tags which rely on the evaluation
     of "rtexprvalue"s (runtime scriptlet expressions) to evaluate dynamic
     attribute values.  For instance, to print a message from a properties
     file based on a resource key, you would use the
@@ -59,7 +59,7 @@
     <ul>
     
         <li>
-        The Struts tag library
+        The Struts Taglib
         </li>
 
         <li>
@@ -70,7 +70,7 @@
 
 
     <p>
-    Once you understand how to use these two, consider Struts tag
+    Once you understand how to use these two, consider the Struts Taglib
     attribute values being evaluated the same way the JSTL tag attribute
     values are.  
     Past that, there is very little else you need to know to effectively use 
@@ -79,8 +79,8 @@
     
     <p>
     Although the <strong>Struts-EL</strong> tag library is a direct "port"
-    of the tags from the Struts tag library, not all of the tags in the
-    Struts tag library were implemented in the <strong>Struts-EL</strong>
+    of the tags from the Struts Taglib, not all of the tags in the
+    Struts Taglib were implemented in the <strong>Struts-EL</strong>
     tag library.  
     This was the case if it was clear that the functionality of a particular 
     Struts tag could be entirely fulfilled by a tag in the JSTL.  
@@ -96,8 +96,8 @@
     <subsection name="Introduction">
 
     <p>
-        This subproject is an extension of the Struts tag library.  Each JSP custom tag
-       in this library is a subclass of an associated tag in the Struts tag library.
+        This subproject is an extension of Struts Taglib.  Each JSP custom tag
+       in this library is a subclass of an associated tag in Struts Taglib.
        One difference is that this tag library does not use "rtexprvalues", it uses
        the expression evaluation engine in the Jakarta Taglibs implementation of the
        JSP Standard Tag Library (version 1.0) to evaluate attribute values.
@@ -112,7 +112,7 @@
 
     <p>
        In order to fully understand the correct utilization of this library, you must
-       understand the use and operation of the Struts tag library, and the use and
+       understand the use and operation of Struts Taglib, and the use and
        operation of the JavaServer Pages Standard Tag Library (hereafter called the
        "JSTL"), along with the expression language (sometimes called the "EL") used
        for evaluating attribute values.
@@ -137,7 +137,7 @@
     </p>
 
     <p>
-       <strong> Bean Tag Library Tags NOT Implemented in Struts-EL</strong>
+       <strong> Bean Tags NOT Implemented in Struts-EL</strong>
     </p>
 
     <table>
@@ -151,7 +151,7 @@
     </table>
 
     <p>
-       <strong>Bean Tag Library Tags NOT Implemented in Struts-EL</strong>
+       <strong>Logic Tags NOT Implemented in Struts-EL</strong>
     </p>
 
     <table>
@@ -176,7 +176,7 @@
     </p>
 
     <p>
-       <strong>Html Tag Library Tags NOT Implemented in Struts-EL</strong>
+       <strong>HTML Tags NOT Implemented in Struts-EL</strong>
     </p>
 
     <p>
@@ -190,7 +190,7 @@
 
     <p>
        At this point of the implementation, there is only one change (to two similar
-       tags) to the set of attributes between the Struts tags, and the Struts-EL tags.
+       tags) to the set of attributes between the Struts Taglib tags and the Struts-EL tags.
        The "logic:match" and "logic:notMatch" tags have an additional attribute named
        "expr", which can take any value, and will be used as the value to compare
        against, in addition to the choices of "cookie", "header", "name"/"property",
@@ -203,7 +203,7 @@
     <subsection name="Usage Requirements">
 
     <p>
-       The Struts-EL tag library requires the use of the Struts tag library, and the
+       The Struts-EL tag library requires the use of Struts Taglib, and the
        Java Server Pages Standard Tag Library.  It is not necessary for JSP pages
        using the Struts-EL tag library to also use the Struts tags or the JSTL tags,
        but the Struts and JSTL tag libraries need to be part of the application

Modified: struts/extras/trunk/project.xml
URL: http://svn.apache.org/viewcvs/struts/extras/trunk/project.xml?rev=347994&r1=347993&r2=347994&view=diff
==============================================================================
--- struts/extras/trunk/project.xml (original)
+++ struts/extras/trunk/project.xml Mon Nov 21 13:45:41 2005
@@ -37,7 +37,7 @@
   
   <description>
 The purpose of this subproject is to provide a separate and common location to 
-provide optional but often useful extension classes to Struts Core.  
+provide optional but often useful extension classes to Struts Action Framework.  
   </description>
   <repository>
     <connection>scm|svn|http|//svn.apache.org/repos/asf/struts/extras/trunk</connection>

Modified: struts/taglib/trunk/project.xml
URL: http://svn.apache.org/viewcvs/struts/taglib/trunk/project.xml?rev=347994&r1=347993&r2=347994&view=diff
==============================================================================
--- struts/taglib/trunk/project.xml (original)
+++ struts/taglib/trunk/project.xml Mon Nov 21 13:45:41 2005
@@ -34,7 +34,7 @@
   <shortDescription>JSP custom tags for use with Struts Core.</shortDescription>
 
   <description>
-    This library simplifies development of a JSP-based view layer of a Struts Core Application.
+    This library simplifies development of a JSP-based view layer of a Struts Action Framework Application.
     These tags were previously packaged as part of the base Struts 1.2 distribution, but have
     been extracted into a separate library.
   </description>

Modified: struts/taglib/trunk/xdocs/faq.xml
URL: http://svn.apache.org/viewcvs/struts/taglib/trunk/xdocs/faq.xml?rev=347994&r1=347993&r2=347994&view=diff
==============================================================================
--- struts/taglib/trunk/xdocs/faq.xml (original)
+++ struts/taglib/trunk/xdocs/faq.xml Mon Nov 21 13:45:41 2005
@@ -108,7 +108,7 @@
 <a name="jsf"/>
 <subsection name="What about JSTL and JavaServer Faces?">
     <p>
-       Struts Core works well with the <a href="http://java.sun.com/products/jsp/jstl/">
+       Struts Action Framework works well with the <a href="http://java.sun.com/products/jsp/jstl/">
        JavaServer Standard Tag Library</a>. 
        For a JSTL rendition of the original Struts JSP tags, 
        see the <a href="http://struts.apache.org/struts-el/index.html">Struts EL subproject</a>.
@@ -117,7 +117,7 @@
     <p>
        If you'd like to start using 
        <a href="http://java.sun.com/j2ee/javaserverfaces/">JavaServer Faces</a>
-       components in your Struts Core application, 
+       components in your Struts Action Framework application, 
        please see the <a href="http://struts.apache.org/struts-faces/index.html">Struts Faces</a> subproject. 
        If you'd like to get a fresh start in a pure JSF environment, 
        please see the <a href="http://struts.apache.org/shale/index.html">Struts Shale</a> framework. 



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