rleland     2004/02/01 08:15:07

  Modified:    doc/faqs newbie.xml
               doc/userGuide building_controller.xml configuration.xml
                        struts-bean.xml struts-html.xml struts-logic.xml
  Log:
  Doc changes only-
  Remove the old wording 'application module', 'application prefix',
  and just use 'module' & 'module prefix'. Quite a few of these were left over.
  
  Revision  Changes    Path
  1.24      +3 -3      jakarta-struts/doc/faqs/newbie.xml
  
  Index: newbie.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/faqs/newbie.xml,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- newbie.xml        27 Nov 2003 04:06:52 -0000      1.23
  +++ newbie.xml        1 Feb 2004 16:15:07 -0000       1.24
  @@ -233,8 +233,8 @@
   
   <p>
   But to answer the question =:0), a modular application is a Struts application that 
uses more than
  -one module. Module-relative means that the URI starts at the application-module 
level, rather than at
  -the application-context level, or the absolute-URL level.
  +one module. Module-relative means that the URI starts at the module level, rather 
than at
  +the context level, or the absolute-URL level.
   </p>
   <ul>
   <li>Absolute URL: http://localhost/myApplication/myModule/myAction.do</li>
  @@ -502,7 +502,7 @@
   Though, using Model 1 techniques in a Struts application does go against the grain.
   The approach recommended by most Struts developers is to create and populate 
whatever
   objects the view may need in the Action, and then forward these through the request.
  -Some objects may also be created and stored in the session or application context,
  +Some objects may also be created and stored in the session or context,
   depending on how they are used.
   </p>
   <p>
  
  
  
  1.77      +1 -1      jakarta-struts/doc/userGuide/building_controller.xml
  
  Index: building_controller.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/building_controller.xml,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- building_controller.xml   27 Jan 2004 10:32:50 -0000      1.76
  +++ building_controller.xml   1 Feb 2004 16:15:07 -0000       1.77
  @@ -1350,7 +1350,7 @@
   
       <p>
       Fronting your pages with ActionMappings is <em>essential</em> when using 
  -    application modules, since doing so is the only way you involve the 
  +    modules, since doing so is the only way you involve the 
       controller in the request -- and you want to!  
       The controller puts the application configuration in the request,
       which makes available all of your module-specific configuration data 
  
  
  
  1.30      +1 -1      jakarta-struts/doc/userGuide/configuration.xml
  
  Index: configuration.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/configuration.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- configuration.xml 12 Dec 2003 03:20:53 -0000      1.29
  +++ configuration.xml 1 Feb 2004 16:15:07 -0000       1.30
  @@ -409,7 +409,7 @@
   
       <p>
       Very little is required in order to start taking advantage of the Struts
  -    application module feature.
  +    module feature.
       Just go through the following steps:
       </p>
   
  
  
  
  1.20      +5 -5      jakarta-struts/doc/userGuide/struts-bean.xml
  
  Index: struts-bean.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/struts-bean.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- struts-bean.xml   16 Jan 2004 04:12:06 -0000      1.19
  +++ struts-bean.xml   1 Feb 2004 16:15:07 -0000       1.20
  @@ -372,12 +372,12 @@
       <ul>
       <li><em>forward</em> - Use the value of this attribute as the name
           of a global <code>ActionForward</code> to be looked up, and
  -        use the application-relative or context-relative URI found there.</li>
  +        use the module-relative or context-relative URI found there.</li>
       <li><em>href</em> - Use the value of this attribute unchanged (since
           this might link to a resource external to the application, the
           session identifier is <strong>not</strong> included.</li>
       <li><em>page</em> - Use the value of this attribute as an
  -        application-relative URI to the desired resource.</li>
  +        module-relative URI to the desired resource.</li>
       </ul>
       </info>
   
  @@ -438,7 +438,7 @@
         <required>false</required>
         <rtexprvalue>true</rtexprvalue>
         <info>
  -      <p>Application-relative name (starting with a '/') of the web application
  +      <p>Module-relative name (starting with a '/') of the web application
         resource to be dispatched, and whose response data is to be made
         available as a bean.</p>
         </info>
  @@ -452,7 +452,7 @@
         <required>false</required>
         <rtexprvalue>true</rtexprvalue>
         <info>
  -      <p>Application-relative URI (starting with a '/') of the web application
  +      <p>Module-relative URI (starting with a '/') of the web application
         resource to be included.</p>
         </info>
       </attribute>
  @@ -777,7 +777,7 @@
         <required>true</required>
         <rtexprvalue>true</rtexprvalue>
         <info>
  -      <p>Application-relative name (starting with a '/') of the web application
  +      <p>Module-relative name (starting with a '/') of the web application
         resource to be loaded and made available.</p>
         </info>
       </attribute>
  
  
  
  1.73      +6 -6      jakarta-struts/doc/userGuide/struts-html.xml
  
  Index: struts-html.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/struts-html.xml,v
  retrieving revision 1.72
  retrieving revision 1.73
  diff -u -r1.72 -r1.73
  --- struts-html.xml   24 Jan 2004 18:46:27 -0000      1.72
  +++ struts-html.xml   1 Feb 2004 16:15:07 -0000       1.73
  @@ -1527,12 +1527,12 @@
               <ul>
               <li><em>forward</em> - Use the value of this attribute as the
                   name of a global <code>ActionForward</code> to be looked
  -                up, and use the application-relative or context-relative
  +                up, and use the module-relative or context-relative
                   URI found there.</li>
               <li><em>href</em> - Use the value of this attribute unchanged.
                   </li>
               <li><em>page</em> - Use the value of this attribute as a
  -                application-relative URI, and generate a server-relative
  +                module-relative URI, and generate a server-relative
                   URI by including the context path and application
                   prefix.</li>
               <li><em>action</em> - Use the value of this attribute as the
  @@ -3386,17 +3386,17 @@
                   <ul>
                   <li><em>forward</em> - Use the value of this attribute as the
                       name of a global <code>ActionForward</code> to be looked
  -                    up, and use the application-relative or context-relative
  +                    up, and use the module-relative or context-relative
                       URI found there.</li>
                   <li><em>action</em> - Use the value of this attribute as the
                       name of a <code>Action</code> to be looked
  -                    up, and use the application-relative or context-relative
  +                    up, and use the module-relative or context-relative
                       URI found there.</li>
                    <li><em>href</em> - Use the value of this attribute unchanged.
                        </li>
                    <li><em>page</em> - Use the value of this attribute as a
  -                    application-relative URI, and generate a server-relative
  -                    URI by including the context path and application
  +                    module-relative URI, and generate a server-relative
  +                    URI by including the context path and module
                       prefix.</li>
                   </ul>
   
  
  
  
  1.20      +2 -2      jakarta-struts/doc/userGuide/struts-logic.xml
  
  Index: struts-logic.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/struts-logic.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- struts-logic.xml  16 Jan 2004 04:55:00 -0000      1.19
  +++ struts-logic.xml  1 Feb 2004 16:15:07 -0000       1.20
  @@ -1511,12 +1511,12 @@
                   <ul>
                   <li><em>forward</em> - Use the value of this attribute as the
                       name of a global <code>ActionForward</code> to be looked
  -                    up, and use the application-relative or context-relative
  +                    up, and use the module-relative or context-relative
                       URI found there.</li>
                   <li><em>href</em> - Use the value of this attribute unchanged.
                       </li>
                   <li><em>page</em> - Use the value of this attribute as an
  -                    application-relative URI, and generate a server-relative
  +                    module-relative URI, and generate a server-relative
                       URI by including the context path.</li>
                   </ul>
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to