You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by jm...@apache.org on 2005/02/02 13:03:17 UTC

svn commit: r149511 - in struts/core/trunk: build.properties.sample.lib doc/acquiring.xml doc/faqs/helping.xml doc/learning.xml doc/userGuide/building_controller.xml

Author: jmitchell
Date: Wed Feb  2 04:03:14 2005
New Revision: 149511

URL: http://svn.apache.org/viewcvs?view=rev&rev=149511
Log:
Fix a few docs - Thanks Seansvn diff build.properties.sample.lib

Modified:
    struts/core/trunk/build.properties.sample.lib
    struts/core/trunk/doc/acquiring.xml
    struts/core/trunk/doc/faqs/helping.xml
    struts/core/trunk/doc/learning.xml
    struts/core/trunk/doc/userGuide/building_controller.xml

Modified: struts/core/trunk/build.properties.sample.lib
URL: http://svn.apache.org/viewcvs/struts/core/trunk/build.properties.sample.lib?view=diff&r1=149510&r2=149511
==============================================================================
--- struts/core/trunk/build.properties.sample.lib (original)
+++ struts/core/trunk/build.properties.sample.lib Wed Feb  2 04:03:14 2005
@@ -18,7 +18,7 @@
 #   * place a copy of the servlet.jar for your container in the same folder.
 #
 # If you prefer to keep the JARs at another location, the properties
-# at the very top of the file may changed. If you require more versatility
+# at the very top of the file may be changed. If you require more versatility
 # in specifiying JAR locations, see the original "build.properties.sample" file.
 #
 # Only the "shared" properties are required for a typical build. 

Modified: struts/core/trunk/doc/acquiring.xml
URL: http://svn.apache.org/viewcvs/struts/core/trunk/doc/acquiring.xml?view=diff&r1=149510&r2=149511
==============================================================================
--- struts/core/trunk/doc/acquiring.xml (original)
+++ struts/core/trunk/doc/acquiring.xml Wed Feb  2 04:03:14 2005
@@ -126,10 +126,15 @@
     repository, you will need to specify one of the following URLs:
     </p>
     <ul>
+      <li>http://svn.apache.org/repos/asf/struts/apps/trunk</li>
+      <li>http://svn.apache.org/repos/asf/struts/bsf/trunk</li>
       <li>http://svn.apache.org/repos/asf/struts/core/trunk</li>
       <li>http://svn.apache.org/repos/asf/struts/el/trunk</li>
       <li>http://svn.apache.org/repos/asf/struts/faces/trunk</li>
       <li>http://svn.apache.org/repos/asf/struts/sandbox/trunk</li>
+      <li>http://svn.apache.org/repos/asf/struts/shale/trunk</li>
+      <li>http://svn.apache.org/repos/asf/struts/taglib/trunk</li>
+      <li>http://svn.apache.org/repos/asf/struts/tiles/trunk</li>
     </ul>
     <p>
     <strong>Warning:</strong> If you try to take a shortcut, and check out
@@ -144,6 +149,27 @@
     User Guide for prerequisites. There are several JARs from the Jakarta
     Commons project that are required to build Struts.
     </p>
+
+    <p>
+    To download the trunk (HEAD revision) of all struts projects, a convenience
+    directory has been added, named current.  The current directory uses a 
+    Subversion feature called externals which stores properties on the directory.
+    With those properties Subversion has all the information it needs to download
+    all the struts subprojects together automatically.
+    </p>
+    <p>There are some caveats to remember.  Since all the subdirectories are 
+    still really different slices from the repository, relative paths won't 
+    always work as expected, for example.  See the 
+    <a href="http://svnbook.red-bean.com/en/1.1/ch07s03.html">Externals 
+    Definitions</a> section of the 
+    <a href="http://svnbook.red-bean.com/">Subversion Book</a> for details.
+    </p>
+
+    <p>To take advantage of this shortcut, use the following URL:
+    </p>
+    <ul>
+      <li>http://svn.apache.org/repos/asf/struts/current</li>
+    </ul>
 
     <p>
     If you are interested in the Tag Library Descriptor (TLD) files, these

Modified: struts/core/trunk/doc/faqs/helping.xml
URL: http://svn.apache.org/viewcvs/struts/core/trunk/doc/faqs/helping.xml?view=diff&r1=149510&r2=149511
==============================================================================
--- struts/core/trunk/doc/faqs/helping.xml (original)
+++ struts/core/trunk/doc/faqs/helping.xml Wed Feb  2 04:03:14 2005
@@ -238,7 +238,7 @@
 <p>
 The website portion of the package is the root directory of doc/.
 The User Guide portion is under the userGuide/ folder.
-If the material you'd to add doesn't fit right in with what's there,
+If the material you'd like to add doesn't fit right in with what's there,
 the best thing may to start a new section after the existing material.
 The navigation column can be found in the project.xml document.
 </p>

Modified: struts/core/trunk/doc/learning.xml
URL: http://svn.apache.org/viewcvs/struts/core/trunk/doc/learning.xml?view=diff&r1=149510&r2=149511
==============================================================================
--- struts/core/trunk/doc/learning.xml (original)
+++ struts/core/trunk/doc/learning.xml Wed Feb  2 04:03:14 2005
@@ -150,13 +150,13 @@
         <li>
             Documentation - The Struts documentation bundle, as seen on the website.</li>
         <li>
+            Tiles-Doc - Extensive demonstration of Tiles extension.</li>
+        <li>
             <strong>MailReader</strong> - The original Struts example application. <em>Try me first!</em></li>
         <li>Examples - Various demonstration applications combined as separate modules:<ul>
         <li>
             Exercise-Taglib - A set of test pages that also demonstrate use of the custom tags.</li>
         <li>
-            Tiles-Doc - Extensive demonstration of Tiles extension.</li>
-        <li>
             Upload - Demonstrates using the file upload facilities. (Based on Commons Upload.)</li>
         <li>
             Validator - Demonstrates using the Validator extension.</li>
@@ -238,7 +238,7 @@
     </p>
 
     <p>
-    The <a href="status.html#roadmap"><strong>Roadmap</strong></a> page outlines our tentative plans for future development.
+    The <a href="roadmap.html"><strong>Roadmap</strong></a> page outlines our tentative plans for future development.
     </p>
 
 </section>

Modified: struts/core/trunk/doc/userGuide/building_controller.xml
URL: http://svn.apache.org/viewcvs/struts/core/trunk/doc/userGuide/building_controller.xml?view=diff&r1=149510&r2=149511
==============================================================================
--- struts/core/trunk/doc/userGuide/building_controller.xml (original)
+++ struts/core/trunk/doc/userGuide/building_controller.xml Wed Feb  2 04:03:14 2005
@@ -216,7 +216,7 @@
         </td>
         <td>
         If the mapping has a role associated with it, ensure the requesting 
-        user is has the specified role.  
+        user has the specified role.  
         If they do not, raise an error and stop processing of the request.
         </td>
     </tr>
@@ -526,7 +526,7 @@
     "property", the tags will automatically use the DynaActionForm properties
     just like those of a conventional JavaBean.
     You can even expose DynaActionForm properties using bean:define.
-    (Although, tou can't use bean:define to <strong>instantiate</strong> a DynaActionForm,
+    (Although, you can't use bean:define to <strong>instantiate</strong> a DynaActionForm,
     since it needs to be setup with the appropriate dyna-properties).
     </p>
 



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