You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by ws...@apache.org on 2005/08/15 03:38:10 UTC

svn commit: r232684 [2/2] - in /struts/site/trunk/xdocs: ./ faqs/ userGuide/

Modified: struts/site/trunk/xdocs/userGuide/introduction.xml
URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/introduction.xml?rev=232684&r1=232683&r2=232684&view=diff
==============================================================================
--- struts/site/trunk/xdocs/userGuide/introduction.xml (original)
+++ struts/site/trunk/xdocs/userGuide/introduction.xml Sun Aug 14 18:37:54 2005
@@ -7,9 +7,9 @@
 
   <body>
 
-  <chapter name="1. Introduction" href="introduction">
+  <section name="1. Introduction" href="introduction">
 
-      <section name="1.1 Forward into the Past! (or a brief history of Struts)" href="history">
+      <subsection name="1.1 Forward into the Past! (or a brief history of Struts)" href="history">
 
         <p>
           When Java servlets were first invented, many programmers quickly realized that they were a
@@ -61,9 +61,9 @@
           Model 2 development will never be quite the same.
         </p>
       
-      </section>
+      </subsection>
       
-      <section name="1.2 The Model-View-Controller ('MVC') Design Pattern" href="mvc">
+      <subsection name="1.2 The Model-View-Controller ('MVC') Design Pattern" href="mvc">
       
         <p>
           In the MVC design pattern, application flow is mediated by a
@@ -80,9 +80,9 @@
           applications significantly easier to create and maintain.
         </p>
 
-      </section>
+      </subsection>
       
-    <section name="1.2.1 The Model: System State and Business Logic JavaBeans" href="modelConcepts">
+    <subsection name="1.2.1 The Model: System State and Business Logic JavaBeans" href="modelConcepts">
       
       <p>
         The <em>Model</em> portion of an MVC-based system can be often be divided into
@@ -138,9 +138,9 @@
         <a href="building_model.html">Building Model Components</a> chapter.
       </p>
 
-   </section>
+   </subsection>
 
-    <section name="1.2.2 The View: JSP Pages and Presentation Components" href="presentationConcepts">     
+    <subsection name="1.2.2 The View: JSP Pages and Presentation Components" href="presentationConcepts">     
 
       <p>
         The <em>View</em> portion of a Struts-based application is most often 
@@ -169,9 +169,9 @@
         Additional documentation regarding the taglibs is also available in 
         the Developer Guides (see menu).
       </p>
-    </section>
+    </subsection>
     
-    <section name="1.2.3 The Controller: ActionServlet and ActionMapping" href="controllerConcepts">
+    <subsection name="1.2.3 The Controller: ActionServlet and ActionMapping" href="controllerConcepts">
       
       <p>
         The <em>Controller</em> portion of the application is focused on receiving
@@ -207,9 +207,9 @@
         <a href="building_controller.html">Building Controller Components</a> chapter.
       </p>
 
-      </section>
+      </subsection>
       
-      <section name="1.3 Struts Control Flow" href="flow">
+      <subsection name="1.3 Struts Control Flow" href="flow">
       
         <p>
           The Struts framework provides several components that make up the <strong>Control</strong> 
@@ -413,14 +413,14 @@
           The code is copyrighted, but is free to use in any application.
          </p>
           
-</section>
+</subsection>
 
-<section>
+<subsection>
     <p class="right">
     Next: <a href="building_model.html">Building Model Components</a>
     </p>
-</section>
+</subsection>
       
-</chapter>
+</section>
 </body>
 </document>

Modified: struts/site/trunk/xdocs/userGuide/preface.xml
URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/preface.xml?rev=232684&r1=232683&r2=232684&view=diff
==============================================================================
--- struts/site/trunk/xdocs/userGuide/preface.xml (original)
+++ struts/site/trunk/xdocs/userGuide/preface.xml Sun Aug 14 18:37:54 2005
@@ -7,9 +7,9 @@
 
   <body>
 
-  <chapter name="0. Preface: Core Technologies">
+  <section name="0. Preface: Core Technologies">
 
-  <section name="0.1 The Usual Suspects" href="suspects">
+  <subsection name="0.1 The Usual Suspects" href="suspects">
 
     <p>
       This User Guide is written for active web developers and assumes a working
@@ -58,9 +58,9 @@
           Java</a> tutorial.
       </p>
 
-    </section>
+    </subsection>
 
-    <section name="0.2 HTTP, HTML and User Agents" href="http">
+    <subsection name="0.2 HTTP, HTML and User Agents" href="http">
 
     <p>The World Wide Web was built over the Hypertext Transfer Protocol
     (<a href="http://www.ietf.org/rfc/rfc2616.txt?number=2616">HTTP</a>) and the Hypertext Markup Language
@@ -84,9 +84,9 @@
     <li><a href="http://www.rfc-editor.org/rfc/rfc2109.txt"><strong>State
         Management Mechanism</strong></a> Specification (Cookies)</li>
     </ul>
-    </section>
+    </subsection>
 
-    <section name="0.3 The HTTP Request/Response cycle" href="cycle">
+    <subsection name="0.3 The HTTP Request/Response cycle" href="cycle">
 
     <p>A very important part of HTTP for the web developer is the request/response cycle. To use HTTP
     you have to make a request. A HTTP server, like a web server, is then obliged to respond. When you
@@ -99,9 +99,9 @@
     HTTP Overview</a> in the Java Web Services Tutorial.
     </p>
 
-    </section>
+    </subsection>
 
-    <section name="0.4 The Java Language and Application Frameworks" href="java">
+    <subsection name="0.4 The Java Language and Application Frameworks" href="java">
 
     <p>Struts is written in the popular and versatile
     <a href="http://java.sun.com/docs/books/jls/first_edition/html/index.html">Java programming language</a>.
@@ -137,9 +137,9 @@
     <a href="http://directory.google.com/Top/Computers/Programming/Languages/Java/Server-Side/Libraries_and_Frameworks/">frameworks</a>.
     </p>
 
-    </section>
+    </subsection>
 
-    <section name="0.5 JavaBeans" href="javabeans">
+    <subsection name="0.5 JavaBeans" href="javabeans">
 
     <p>Like many Java applications, most of the Struts objects are designed as
     <a href="http://java.sun.com/products/javabeans/">JavaBeans</a>. Following the JavaBean design patterns makes
@@ -163,9 +163,9 @@
         </li>
     </ul>
 
-    </section>
+    </subsection>
 
-    <section name="0.5.1 Reflection and Introspection" href="reflection">
+    <subsection name="0.5.1 Reflection and Introspection" href="reflection">
 
     <p>
     Reflection is the process of determining which member fields and methods are available on an object.
@@ -192,9 +192,9 @@
     </li>
     </ul>
 
-    </section>
+    </subsection>
 
-    <section name="0.5.2 Maps" href="Maps">
+    <subsection name="0.5.2 Maps" href="Maps">
 
     <p>
     JavaBeans store data as properties and may act on that data through other methods.
@@ -204,9 +204,9 @@
     Maps are often used "behind the scenes" as a flexible way to store dynamic data.
     </p>
 
-    </section>
+    </subsection>
 
-    <section name="0.5.3 DynaBeans" href="dynabeans">
+    <subsection name="0.5.3 DynaBeans" href="dynabeans">
 
     <p>
     DynaBeans combine the extensibility of JavaBeans with the flexibility of a Map.
@@ -233,9 +233,9 @@
     </li>
     </ul>
 
-    </section>
+    </subsection>
 
-    <section name="0.6 Properties Files and ResourceBundles" href="resources">
+    <subsection name="0.6 Properties Files and ResourceBundles" href="resources">
 
     <p>Java applications, including web applications, are often configured using
     <a href="http://java.sun.com/j2se/1.4.1/docs/api/java/util/Properties.html">Properties</a>
@@ -262,9 +262,9 @@
     in the Java Tutorial</li>
     </ul>
 
-    </section>
+    </subsection>
 
-    <section name="0.7 Java Servlets" href="servlets">
+    <subsection name="0.7 Java Servlets" href="servlets">
     <p>
     Since Java is an object-orientated language, the
     <a href="http://java.sun.com/products/servlet/">Java Servlet</a>
@@ -341,9 +341,9 @@
         <strong>Web Applications</strong></a> in the Java Web Services Tutorial.</li>
     </ul>
 
-    </section>
+    </subsection>
 
-    <section name="0.7.1 Servlets and threads" href="threads">
+    <subsection name="0.7.1 Servlets and threads" href="threads">
 
     <p>
     To boost performance, the container can multi-thread servlets.
@@ -363,9 +363,9 @@
     </li>
     </ul>
 
-    </section>
+    </subsection>
 
-      <section name="0.7.2 Servlet Context" href="context">
+      <subsection name="0.7.2 Servlet Context" href="context">
 
       <p>The <em>ServletContext</em> interface [<code>javax.servlet.ServletContext</code>] defines a servlet's view of
       the web application within which the servlet is running.  It is
@@ -398,9 +398,9 @@
     </li>
     </ul>
 
-      </section>
+      </subsection>
 
-      <section name="0.7.3 Servlet Request" href="request">
+      <subsection name="0.7.3 Servlet Request" href="request">
 
       <p>Each request processed by a servlet is represented by a Java
       interface, normally a <code>HttpServletRequest</code>
@@ -455,9 +455,9 @@
     </li>
     </ul>
 
-      </section>
+      </subsection>
 
-      <section name="0.7.4 Servlet Response" href="response">
+      <subsection name="0.7.4 Servlet Response" href="response">
 
       <p>The primary purpose of a servlet is to process an incoming
       <a href="#request">Servlet Request</a> [<code>javax.servlet.http.HttpServletRequest</code>]
@@ -517,9 +517,9 @@
     </li>
     </ul>
 
-      </section>
+      </subsection>
 
-      <section name="0.7.5 Filtering" href="filter">
+      <subsection name="0.7.5 Filtering" href="filter">
 
       <p>If you are using a servlet container based on version
       <strong>2.3</strong> or later of the Servlet Specification (such as
@@ -548,9 +548,9 @@
     </li>
     </ul>
 
-      </section>
+      </subsection>
 
-      <section name="0.7.6 Sessions" href="session">
+      <subsection name="0.7.6 Sessions" href="session">
 
       <p>One of the key characteristics of HTTP is that it is
       <em>stateless</em>. In other words, there is nothing built in to
@@ -604,9 +604,9 @@
         </li>
       </ul>
 
-      </section>
+      </subsection>
 
-      <section name="0.7.7 Dispatching Requests" href="dispatch">
+      <subsection name="0.7.7 Dispatching Requests" href="dispatch">
 
       <p>
       The Java Servlet specification extends the HTTP request/response cycle by allowing the request to be dispatched,
@@ -617,9 +617,9 @@
       and finally to a view object as part of a single request/response cycle.
       </p>
 
-      </section>
+      </subsection>
 
-      <section name="0.7.8 Web Applications" href="webapp">
+      <subsection name="0.7.8 Web Applications" href="webapp">
 
       <p>
       Just as a HTTP server can be used to host several distinct web sites,
@@ -639,9 +639,9 @@
     </li>
     </ul>
 
-      </section>
+      </subsection>
 
-      <section name="0.7.9 Web application deployment descriptor (web.xml)" href="events">
+      <subsection name="0.7.9 Web application deployment descriptor (web.xml)" href="events">
 
       <p>
       Most aspects of an application's lifecycle are configured through an XML document called the Web application deployment descriptor.
@@ -657,9 +657,9 @@
       </li>
       </ul>
 
-      </section>
+      </subsection>
 
-    <section name="0.7.10 Security" href="security">
+    <subsection name="0.7.10 Security" href="security">
 
     <p>
     One detail that can be configured in the Web application deployment descriptor is container-managed security.
@@ -676,9 +676,9 @@
       </li>
       </ul>
 
-    </section>
+    </subsection>
 
-    <section name="0.8 JavaServer Pages, JSP Tag Libraries, and Java Server Faces" href="jsp">
+    <subsection name="0.8 JavaServer Pages, JSP Tag Libraries, and Java Server Faces" href="jsp">
     <p><a href="http://java.sun.com/products/jsp/product.html">JavaServer Pages</a> (JSPs) are
     "inside-out servlets" that make it easier to create and maintain dynamic web pages. Instead
     of putting what you want to write to the HTTP response inside of a Java <code>print</code>
@@ -760,9 +760,9 @@
            </li>
        </ul>
 
-    </section>
+    </subsection>
 
-    <section name="0.9 Extensible Markup Language (XML)" href="xml">
+    <subsection name="0.9 Extensible Markup Language (XML)" href="xml">
 
     <p>The features provided by the Struts framework relies on a number of objects that are
     usually deployed using a configuration file written in
@@ -786,9 +786,9 @@
         when writing their own applications.
     </p>
 
-    </section>
+    </subsection>
 
-        <section name="0.9.1 Descriptors" href="descriptors">
+        <subsection name="0.9.1 Descriptors" href="descriptors">
 
         <p>
         When Java applications use XML configuration files,
@@ -802,9 +802,9 @@
         Likewise, Struts uses an XML configuration file to deploy objects used by the framework.
         </p>
 
-    </section>
+    </subsection>
 
-    <section name="0.10 Other layers" href="layers">
+    <subsection name="0.10 Other layers" href="layers">
 
     <p>
       Struts provides the control layer for a web application. Developers can use this layer with
@@ -830,9 +830,9 @@
         <li><a href="http://www.w3.org/TR/xslt">XSL Transformations </a></li>
         </ul>
 
-    </section>
+    </subsection>
 
-    <section name="0.11 JAAS" href="jaas">
+    <subsection name="0.11 JAAS" href="jaas">
 
     <p>
         While Struts can work with any approach to user authentication and authorization, Struts 1.1 and later offers
@@ -845,14 +845,14 @@
     Web Application Security</a> chapter of the
     <a href="http://java.sun.com/webservices/docs/1.0/tutorial/index.html">Java Web Services Tutorial</a>.</p>
 
-</section>
+</subsection>
 
-<section>
+<subsection>
     <p class="right">
     Next: <a href="introduction.html">Introduction</a>
     </p>
-</section>
+</subsection>
 
-</chapter>
+</section>
 </body>
 </document>

Modified: struts/site/trunk/xdocs/userGuide/release-notes-1.1-b3.xml
URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes-1.1-b3.xml?rev=232684&r1=232683&r2=232684&view=diff
==============================================================================
--- struts/site/trunk/xdocs/userGuide/release-notes-1.1-b3.xml (original)
+++ struts/site/trunk/xdocs/userGuide/release-notes-1.1-b3.xml Sun Aug 14 18:37:54 2005
@@ -7,8 +7,8 @@
 
   <body>
 
-  <chapter name="6.1 Release Notes" href="release_notes">
-  <section name="Beta Notes" href="beta">
+  <section name="6.1 Release Notes" href="release_notes">
+  <subsection name="Beta Notes" href="beta">
 
     <p>This section contains the release notes for
     <strong>nightly build</strong> of the Struts Framework,
@@ -17,9 +17,9 @@
     was released. For a complete list of changes since the last
     production release, see the <a href="#Introduction">Introduction</a> </p>
 
-  </section>
+  </subsection>
 
-<section name="Beta Fixes" href="beta.Changes">
+<subsection name="Beta Fixes" href="beta.Changes">
 
   <p>
   <strong>ApplicationConfig:</strong> In Struts 1.1. beta 3, the ApplicationConfig class 
@@ -35,9 +35,9 @@
   application.
   </p>
 
-</section>
+</subsection>
 
-  <section name="Introduction" href="Introduction">
+  <subsection name="Introduction" href="Introduction">
 
     <p>The remainder of this document contains the release notes for
     <strong>nightly build</strong> of the Struts Framework,
@@ -47,10 +47,10 @@
     <a href="#New">New Features</a> and <a href="#Changes">Changes</a>
     to Struts.</p>
 
-  </section>
+  </subsection>
 
 
-  <section name="What's Included?" href="Included">
+  <subsection name="What's Included?" href="Included">
 
     <p>The binary distribution of this release includes the following
     files relevant to Struts:</p>
@@ -108,9 +108,9 @@
         web applications that are included with Struts.</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="What's New?" href="New">
+  <subsection name="What's New?" href="New">
 
     <p>Following are highlights of the new features. In the next section, we
     provide links to the JavaDocs for the affected classes.</p>
@@ -304,9 +304,9 @@
     <li>JavaDocs: New <code>@since Struts 1.1</code> tag to indicate new packages, classes, and members added after the Struts 1.0.x version</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="Operational Changes and Bug Fixes" href="Changes">
+  <subsection name="Operational Changes and Bug Fixes" href="Changes">
 
     <p><strong>Struts Configuration Changes</strong></p>
     <p>The following changes and bug fixes have occurred in the configuration
@@ -443,9 +443,9 @@
     saved in the page context.</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="What's different?" href="diff">
+  <subsection name="What's different?" href="diff">
 
     <p>This section provides links to the Struts JavaDoc for any classes that have
     been added or deprecated since the Struts 1.0 release.
@@ -600,15 +600,15 @@
       </li>
     </ul>
 
-</section>
+</subsection>
 
-<section>
+<subsection>
     <p class="right">
     Next: <a href="installation.html">Installation</a>
     </p>
-</section>
+</subsection>
 
-</chapter>
+</section>
     </body>
 
 </document>

Modified: struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc1.xml
URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc1.xml?rev=232684&r1=232683&r2=232684&view=diff
==============================================================================
--- struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc1.xml (original)
+++ struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc1.xml Sun Aug 14 18:37:54 2005
@@ -7,8 +7,8 @@
 
   <body>
 
-  <chapter name="6.1 Release Notes" href="release_notes">
-  <section name="Beta Notes" href="beta">
+  <section name="6.1 Release Notes" href="release_notes">
+  <subsection name="Beta Notes" href="beta">
 
     <p>This section contains the release notes for
     <strong>nightly build</strong> of the Struts Framework,
@@ -17,9 +17,9 @@
     was released. For a complete list of changes since the last
     production release, see the <a href="#Introduction">Introduction</a> </p>
 
-  </section>
+  </subsection>
 
-<section name="Beta Fixes" href="beta.Changes">
+<subsection name="Beta Fixes" href="beta.Changes">
 
   <p>
   <strong>ApplicationConfig:</strong> In Struts 1.1. beta 3, the ApplicationConfig class 
@@ -35,9 +35,9 @@
   application.
   </p>
 
-</section>
+</subsection>
 
-  <section name="Introduction" href="Introduction">
+  <subsection name="Introduction" href="Introduction">
 
     <p>The remainder of this document contains the release notes for
     <strong>nightly build</strong> of the Struts Framework,
@@ -47,10 +47,10 @@
     <a href="#New">New Features</a> and <a href="#Changes">Changes</a>
     to Struts.</p>
 
-  </section>
+  </subsection>
 
 
-  <section name="What's Included?" href="Included">
+  <subsection name="What's Included?" href="Included">
 
     <p>The binary distribution of this release includes the following
     files relevant to Struts:</p>
@@ -108,9 +108,9 @@
         web applications that are included with Struts.</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="What's New?" href="New">
+  <subsection name="What's New?" href="New">
 
     <p>Following are highlights of the new features. In the next section, we
     provide links to the JavaDocs for the affected classes.</p>
@@ -304,9 +304,9 @@
     <li>JavaDocs: New <code>@since Struts 1.1</code> tag to indicate new packages, classes, and members added after the Struts 1.0.x version</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="Operational Changes and Bug Fixes" href="Changes">
+  <subsection name="Operational Changes and Bug Fixes" href="Changes">
 
     <p><strong>Struts Configuration Changes</strong></p>
     <p>The following changes and bug fixes have occurred in the configuration
@@ -443,9 +443,9 @@
     saved in the page context.</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="What's different?" href="diff">
+  <subsection name="What's different?" href="diff">
 
     <p>This section provides links to the Struts JavaDoc for any classes that have
     been added or deprecated since the Struts 1.0 release.
@@ -600,15 +600,15 @@
       </li>
     </ul>
 
-</section>
+</subsection>
 
-<section>
+<subsection>
     <p class="right">
     Next: <a href="installation.html">Installation</a>
     </p>
-</section>
+</subsection>
 
-</chapter>
+</section>
     </body>
 
 </document>

Modified: struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc2.xml
URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc2.xml?rev=232684&r1=232683&r2=232684&view=diff
==============================================================================
--- struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc2.xml (original)
+++ struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc2.xml Sun Aug 14 18:37:54 2005
@@ -7,8 +7,8 @@
 
   <body>
 
-  <chapter name="6.1 Release Notes" href="release_notes">
-  <section name="Release Candidate Notes" href="beta">
+  <section name="6.1 Release Notes" href="release_notes">
+  <subsection name="Release Candidate Notes" href="beta">
 
     <p>This section contains the release notes for the
     <strong>Version 1.1 Release Candidate 2</strong> build of the Struts Framework,
@@ -17,9 +17,9 @@
     was issued. For a complete list of changes since the last
     production release, see the <a href="#Introduction">Introduction</a> </p>
 
-  </section>
+  </subsection>
 
-<section name="RC/Beta Fixes" href="beta.Changes">
+<subsection name="RC/Beta Fixes" href="beta.Changes">
 
     <p>
         In RC2, the <strong>Commons-DBCP and Commons-Pool dependencies have been removed</strong>.
@@ -293,9 +293,9 @@
     </ul>
 
 
-</section>
+</subsection>
 
-  <section name="Introduction" href="Introduction">
+  <subsection name="Introduction" href="Introduction">
 
     <p>The remainder of this document contains the release notes for
     <strong>1.1 Release Candidate 2</strong> build of the Struts Framework,
@@ -305,10 +305,10 @@
     <a href="#New">New Features</a> and <a href="#Changes">Changes</a>
     to Struts.</p>
 
-  </section>
+  </subsection>
 
 
-  <section name="What's Included?" href="Included">
+  <subsection name="What's Included?" href="Included">
 
     <p>The binary distribution of this release includes the following
     files relevant to Struts:</p>
@@ -379,9 +379,9 @@
     <li>Commons Validator 1.0.2</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="What's New?" href="New">
+  <subsection name="What's New?" href="New">
 
     <p>Following are highlights of the new features. In the next section, we
     provide links to the JavaDocs for the affected classes.</p>
@@ -572,9 +572,9 @@
     <li>JavaDocs: New <code>@since Struts 1.1</code> tag to indicate new packages, classes, and members added after the Struts 1.0.x version</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="Operational Changes and Bug Fixes" href="Changes">
+  <subsection name="Operational Changes and Bug Fixes" href="Changes">
 
     <p><strong>Struts Configuration Changes</strong></p>
     <p>The following changes and bug fixes have occurred in the configuration
@@ -714,9 +714,9 @@
         &lt;html:optionsCollection&gt; based on a collection saved in the page context.</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="What's different?" href="diff">
+  <subsection name="What's different?" href="diff">
 
     <p>This section provides links to the Struts JavaDoc for any classes that have
     been added or deprecated since the Struts 1.0 release.
@@ -872,15 +872,15 @@
       </li>
     </ul>
 
-</section>
+</subsection>
 
-<section>
+<subsection>
     <p class="right">
     Next: <a href="installation.html">Installation</a>
     </p>
-</section>
+</subsection>
 
-</chapter>
+</section>
     </body>
 
 </document>

Modified: struts/site/trunk/xdocs/userGuide/release-notes-1.1.xml
URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes-1.1.xml?rev=232684&r1=232683&r2=232684&view=diff
==============================================================================
--- struts/site/trunk/xdocs/userGuide/release-notes-1.1.xml (original)
+++ struts/site/trunk/xdocs/userGuide/release-notes-1.1.xml Sun Aug 14 18:37:54 2005
@@ -7,8 +7,8 @@
 
   <body>
 
-  <chapter name="6.1 Release Notes" href="release_notes">
-  <section name="Release Notes" href="beta">
+  <section name="6.1 Release Notes" href="release_notes">
+  <subsection name="Release Notes" href="beta">
 
     <p>This section contains the release notes for the
     <strong>Version 1.1</strong> build of the Struts Framework, for changes that
@@ -17,9 +17,9 @@
     was issued. For a complete list of changes since the last
     production release, see the <a href="#Introduction">Introduction</a> </p>
 
-  </section>
+  </subsection>
 
-<section name="Release Candidate/Beta Fixes" href="beta.Changes">
+<subsection name="Release Candidate/Beta Fixes" href="beta.Changes">
 
     <p>
         In RC2, the <strong>Commons-DBCP and Commons-Pool dependencies have been removed</strong>.
@@ -307,9 +307,9 @@
     </ul>
 
 
-</section>
+</subsection>
 
-  <section name="Introduction" href="Introduction">
+  <subsection name="Introduction" href="Introduction">
 
     <p>The remainder of this document contains the release notes for
     <strong>1.1 Release Candidate 2</strong> build of the Struts Framework,
@@ -319,10 +319,10 @@
     <a href="#New">New Features</a> and <a href="#Changes">Changes</a>
     to Struts.</p>
 
-  </section>
+  </subsection>
 
 
-  <section name="What's Included?" href="Included">
+  <subsection name="What's Included?" href="Included">
 
     <p>The binary distribution of this release includes the following
     files relevant to Struts:</p>
@@ -393,9 +393,9 @@
     <li>Commons Validator 1.0.2</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="What's New?" href="New">
+  <subsection name="What's New?" href="New">
 
     <p>Following are highlights of the new features. In the next section, we
     provide links to the JavaDocs for the affected classes.</p>
@@ -586,9 +586,9 @@
     <li>JavaDocs: New <code>@since Struts 1.1</code> tag to indicate new packages, classes, and members added after the Struts 1.0.x version</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="Operational Changes and Bug Fixes" href="Changes">
+  <subsection name="Operational Changes and Bug Fixes" href="Changes">
 
     <p><strong>Struts Configuration Changes</strong></p>
     <p>The following changes and bug fixes have occurred in the configuration
@@ -728,9 +728,9 @@
         &lt;html:optionsCollection&gt; based on a collection saved in the page context.</li>
     </ul>
 
-  </section>
+  </subsection>
 
-  <section name="What's different?" href="diff">
+  <subsection name="What's different?" href="diff">
 
     <p>This section provides links to the Struts JavaDoc for any classes that have
     been added or deprecated since the Struts 1.0 release.
@@ -886,15 +886,15 @@
       </li>
     </ul>
 
-</section>
+</subsection>
 
-<section>
+<subsection>
     <p class="right">
     Next: <a href="installation.html">Installation</a>
     </p>
-</section>
+</subsection>
 
-</chapter>
+</section>
     </body>
 
 </document>

Modified: struts/site/trunk/xdocs/userGuide/release-notes-1.2.7.xml
URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes-1.2.7.xml?rev=232684&r1=232683&r2=232684&view=diff
==============================================================================
--- struts/site/trunk/xdocs/userGuide/release-notes-1.2.7.xml (original)
+++ struts/site/trunk/xdocs/userGuide/release-notes-1.2.7.xml Sun Aug 14 18:37:54 2005
@@ -4,8 +4,8 @@
     <title>Struts Release Notes (since 1.2.4)</title>
   </properties>
  <body>
- <chapter name="6.1 Release Notes - Version 1.2.7" href="release_notes">
-      <section name="Introduction" href="Introduction">
+ <section name="6.1 Release Notes - Version 1.2.7" href="release_notes">
+      <subsection name="Introduction" href="Introduction">
           <p>
               This section contains release notes for changes that have taken
               place since
@@ -24,9 +24,9 @@
              <a href="installation.html">Installation chapter</a>.
           </p>
  
-      </section>
+      </subsection>
 
-      <section name="Highlights of Changes" href="Highlight">
+      <subsection name="Highlights of Changes" href="Highlight">
           <p>
               The purpose of this section is to highlight the new features since the
               Version 1.2.4 release. For detailed information concerning changes 
@@ -156,9 +156,9 @@
               from emeritus to active status.
           </p>
           
-      </section>
+      </subsection>
 
-      <section name="Detailed Changes" href="Detail">
+      <subsection name="Detailed Changes" href="Detail">
           <p>
               This section contains the details of changes since version 1.2.4 with links to
               bugzilla tickets and Subversion Revision details. It is split into the following
@@ -743,12 +743,12 @@
                      </ul></td>
              </tr>
          </table>
-      </section>
+      </subsection>
 
-     <section>
+     <subsection>
        <p class="right">Next:
        <a href="installation.html">Installation</a></p>
-     </section>
- </chapter>
+     </subsection>
+ </section>
 </body>
 </document>

Modified: struts/site/trunk/xdocs/userGuide/release-notes.xml
URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes.xml?rev=232684&r1=232683&r2=232684&view=diff
==============================================================================
--- struts/site/trunk/xdocs/userGuide/release-notes.xml (original)
+++ struts/site/trunk/xdocs/userGuide/release-notes.xml Sun Aug 14 18:37:54 2005
@@ -4,8 +4,8 @@
     <title>Struts Release Notes (since 1.2.4)</title>
   </properties>
  <body>
- <chapter name="6.1 Release Notes - Version 1.2.7" href="release_notes">
-      <section name="Introduction" href="Introduction">
+ <section name="6.1 Release Notes - Version 1.2.7" href="release_notes">
+      <subsection name="Introduction" href="Introduction">
           <p>
               This section contains release notes for changes that have taken
               place since
@@ -24,9 +24,9 @@
              <a href="installation.html">Installation chapter</a>.
           </p>
  
-      </section>
+      </subsection>
 
-      <section name="Highlights of Changes" href="Highlight">
+      <subsection name="Highlights of Changes" href="Highlight">
           <p>
               The purpose of this section is to highlight the new features since the
               Version 1.2.4 release. For detailed information concerning changes 
@@ -156,9 +156,9 @@
               from emeritus to active status.
           </p>
           
-      </section>
+      </subsection>
 
-      <section name="Detailed Changes" href="Detail">
+      <subsection name="Detailed Changes" href="Detail">
           <p>
               This section contains the details of changes since version 1.2.4 with links to
               bugzilla tickets and Subversion Revision details. It is split into the following
@@ -743,12 +743,12 @@
                      </ul></td>
              </tr>
          </table>
-      </section>
+      </subsection>
 
-     <section>
+     <subsection>
        <p class="right">Next:
        <a href="installation.html">Installation</a></p>
-     </section>
- </chapter>
+     </subsection>
+ </section>
 </body>
 </document>



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


Re: svn commit: r232684 [2/2] - in /struts/site/trunk/xdocs: ./ faqs/ userGuide/

Posted by Zack Yakubov <zy...@gmail.com>.
unsibcribe

On 8/14/05, wsmoak@apache.org <ws...@apache.org> wrote:
> Modified: struts/site/trunk/xdocs/userGuide/introduction.xml
> URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/introduction.xml?rev=232684&r1=232683&r2=232684&view=diff
> ==============================================================================
> --- struts/site/trunk/xdocs/userGuide/introduction.xml (original)
> +++ struts/site/trunk/xdocs/userGuide/introduction.xml Sun Aug 14 18:37:54 2005
> @@ -7,9 +7,9 @@
> 
>    <body>
> 
> -  <chapter name="1. Introduction" href="introduction">
> +  <section name="1. Introduction" href="introduction">
> 
> -      <section name="1.1 Forward into the Past! (or a brief history of Struts)" href="history">
> +      <subsection name="1.1 Forward into the Past! (or a brief history of Struts)" href="history">
> 
>          <p>
>            When Java servlets were first invented, many programmers quickly realized that they were a
> @@ -61,9 +61,9 @@
>            Model 2 development will never be quite the same.
>          </p>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="1.2 The Model-View-Controller ('MVC') Design Pattern" href="mvc">
> +      <subsection name="1.2 The Model-View-Controller ('MVC') Design Pattern" href="mvc">
> 
>          <p>
>            In the MVC design pattern, application flow is mediated by a
> @@ -80,9 +80,9 @@
>            applications significantly easier to create and maintain.
>          </p>
> 
> -      </section>
> +      </subsection>
> 
> -    <section name="1.2.1 The Model: System State and Business Logic JavaBeans" href="modelConcepts">
> +    <subsection name="1.2.1 The Model: System State and Business Logic JavaBeans" href="modelConcepts">
> 
>        <p>
>          The <em>Model</em> portion of an MVC-based system can be often be divided into
> @@ -138,9 +138,9 @@
>          <a href="building_model.html">Building Model Components</a> chapter.
>        </p>
> 
> -   </section>
> +   </subsection>
> 
> -    <section name="1.2.2 The View: JSP Pages and Presentation Components" href="presentationConcepts">
> +    <subsection name="1.2.2 The View: JSP Pages and Presentation Components" href="presentationConcepts">
> 
>        <p>
>          The <em>View</em> portion of a Struts-based application is most often
> @@ -169,9 +169,9 @@
>          Additional documentation regarding the taglibs is also available in
>          the Developer Guides (see menu).
>        </p>
> -    </section>
> +    </subsection>
> 
> -    <section name="1.2.3 The Controller: ActionServlet and ActionMapping" href="controllerConcepts">
> +    <subsection name="1.2.3 The Controller: ActionServlet and ActionMapping" href="controllerConcepts">
> 
>        <p>
>          The <em>Controller</em> portion of the application is focused on receiving
> @@ -207,9 +207,9 @@
>          <a href="building_controller.html">Building Controller Components</a> chapter.
>        </p>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="1.3 Struts Control Flow" href="flow">
> +      <subsection name="1.3 Struts Control Flow" href="flow">
> 
>          <p>
>            The Struts framework provides several components that make up the <strong>Control</strong>
> @@ -413,14 +413,14 @@
>            The code is copyrighted, but is free to use in any application.
>           </p>
> 
> -</section>
> +</subsection>
> 
> -<section>
> +<subsection>
>      <p class="right">
>      Next: <a href="building_model.html">Building Model Components</a>
>      </p>
> -</section>
> +</subsection>
> 
> -</chapter>
> +</section>
>  </body>
>  </document>
> 
> Modified: struts/site/trunk/xdocs/userGuide/preface.xml
> URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/preface.xml?rev=232684&r1=232683&r2=232684&view=diff
> ==============================================================================
> --- struts/site/trunk/xdocs/userGuide/preface.xml (original)
> +++ struts/site/trunk/xdocs/userGuide/preface.xml Sun Aug 14 18:37:54 2005
> @@ -7,9 +7,9 @@
> 
>    <body>
> 
> -  <chapter name="0. Preface: Core Technologies">
> +  <section name="0. Preface: Core Technologies">
> 
> -  <section name="0.1 The Usual Suspects" href="suspects">
> +  <subsection name="0.1 The Usual Suspects" href="suspects">
> 
>      <p>
>        This User Guide is written for active web developers and assumes a working
> @@ -58,9 +58,9 @@
>            Java</a> tutorial.
>        </p>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.2 HTTP, HTML and User Agents" href="http">
> +    <subsection name="0.2 HTTP, HTML and User Agents" href="http">
> 
>      <p>The World Wide Web was built over the Hypertext Transfer Protocol
>      (<a href="http://www.ietf.org/rfc/rfc2616.txt?number=2616">HTTP</a>) and the Hypertext Markup Language
> @@ -84,9 +84,9 @@
>      <li><a href="http://www.rfc-editor.org/rfc/rfc2109.txt"><strong>State
>          Management Mechanism</strong></a> Specification (Cookies)</li>
>      </ul>
> -    </section>
> +    </subsection>
> 
> -    <section name="0.3 The HTTP Request/Response cycle" href="cycle">
> +    <subsection name="0.3 The HTTP Request/Response cycle" href="cycle">
> 
>      <p>A very important part of HTTP for the web developer is the request/response cycle. To use HTTP
>      you have to make a request. A HTTP server, like a web server, is then obliged to respond. When you
> @@ -99,9 +99,9 @@
>      HTTP Overview</a> in the Java Web Services Tutorial.
>      </p>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.4 The Java Language and Application Frameworks" href="java">
> +    <subsection name="0.4 The Java Language and Application Frameworks" href="java">
> 
>      <p>Struts is written in the popular and versatile
>      <a href="http://java.sun.com/docs/books/jls/first_edition/html/index.html">Java programming language</a>.
> @@ -137,9 +137,9 @@
>      <a href="http://directory.google.com/Top/Computers/Programming/Languages/Java/Server-Side/Libraries_and_Frameworks/">frameworks</a>.
>      </p>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.5 JavaBeans" href="javabeans">
> +    <subsection name="0.5 JavaBeans" href="javabeans">
> 
>      <p>Like many Java applications, most of the Struts objects are designed as
>      <a href="http://java.sun.com/products/javabeans/">JavaBeans</a>. Following the JavaBean design patterns makes
> @@ -163,9 +163,9 @@
>          </li>
>      </ul>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.5.1 Reflection and Introspection" href="reflection">
> +    <subsection name="0.5.1 Reflection and Introspection" href="reflection">
> 
>      <p>
>      Reflection is the process of determining which member fields and methods are available on an object.
> @@ -192,9 +192,9 @@
>      </li>
>      </ul>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.5.2 Maps" href="Maps">
> +    <subsection name="0.5.2 Maps" href="Maps">
> 
>      <p>
>      JavaBeans store data as properties and may act on that data through other methods.
> @@ -204,9 +204,9 @@
>      Maps are often used "behind the scenes" as a flexible way to store dynamic data.
>      </p>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.5.3 DynaBeans" href="dynabeans">
> +    <subsection name="0.5.3 DynaBeans" href="dynabeans">
> 
>      <p>
>      DynaBeans combine the extensibility of JavaBeans with the flexibility of a Map.
> @@ -233,9 +233,9 @@
>      </li>
>      </ul>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.6 Properties Files and ResourceBundles" href="resources">
> +    <subsection name="0.6 Properties Files and ResourceBundles" href="resources">
> 
>      <p>Java applications, including web applications, are often configured using
>      <a href="http://java.sun.com/j2se/1.4.1/docs/api/java/util/Properties.html">Properties</a>
> @@ -262,9 +262,9 @@
>      in the Java Tutorial</li>
>      </ul>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.7 Java Servlets" href="servlets">
> +    <subsection name="0.7 Java Servlets" href="servlets">
>      <p>
>      Since Java is an object-orientated language, the
>      <a href="http://java.sun.com/products/servlet/">Java Servlet</a>
> @@ -341,9 +341,9 @@
>          <strong>Web Applications</strong></a> in the Java Web Services Tutorial.</li>
>      </ul>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.7.1 Servlets and threads" href="threads">
> +    <subsection name="0.7.1 Servlets and threads" href="threads">
> 
>      <p>
>      To boost performance, the container can multi-thread servlets.
> @@ -363,9 +363,9 @@
>      </li>
>      </ul>
> 
> -    </section>
> +    </subsection>
> 
> -      <section name="0.7.2 Servlet Context" href="context">
> +      <subsection name="0.7.2 Servlet Context" href="context">
> 
>        <p>The <em>ServletContext</em> interface [<code>javax.servlet.ServletContext</code>] defines a servlet's view of
>        the web application within which the servlet is running.  It is
> @@ -398,9 +398,9 @@
>      </li>
>      </ul>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="0.7.3 Servlet Request" href="request">
> +      <subsection name="0.7.3 Servlet Request" href="request">
> 
>        <p>Each request processed by a servlet is represented by a Java
>        interface, normally a <code>HttpServletRequest</code>
> @@ -455,9 +455,9 @@
>      </li>
>      </ul>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="0.7.4 Servlet Response" href="response">
> +      <subsection name="0.7.4 Servlet Response" href="response">
> 
>        <p>The primary purpose of a servlet is to process an incoming
>        <a href="#request">Servlet Request</a> [<code>javax.servlet.http.HttpServletRequest</code>]
> @@ -517,9 +517,9 @@
>      </li>
>      </ul>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="0.7.5 Filtering" href="filter">
> +      <subsection name="0.7.5 Filtering" href="filter">
> 
>        <p>If you are using a servlet container based on version
>        <strong>2.3</strong> or later of the Servlet Specification (such as
> @@ -548,9 +548,9 @@
>      </li>
>      </ul>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="0.7.6 Sessions" href="session">
> +      <subsection name="0.7.6 Sessions" href="session">
> 
>        <p>One of the key characteristics of HTTP is that it is
>        <em>stateless</em>. In other words, there is nothing built in to
> @@ -604,9 +604,9 @@
>          </li>
>        </ul>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="0.7.7 Dispatching Requests" href="dispatch">
> +      <subsection name="0.7.7 Dispatching Requests" href="dispatch">
> 
>        <p>
>        The Java Servlet specification extends the HTTP request/response cycle by allowing the request to be dispatched,
> @@ -617,9 +617,9 @@
>        and finally to a view object as part of a single request/response cycle.
>        </p>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="0.7.8 Web Applications" href="webapp">
> +      <subsection name="0.7.8 Web Applications" href="webapp">
> 
>        <p>
>        Just as a HTTP server can be used to host several distinct web sites,
> @@ -639,9 +639,9 @@
>      </li>
>      </ul>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="0.7.9 Web application deployment descriptor (web.xml)" href="events">
> +      <subsection name="0.7.9 Web application deployment descriptor (web.xml)" href="events">
> 
>        <p>
>        Most aspects of an application's lifecycle are configured through an XML document called the Web application deployment descriptor.
> @@ -657,9 +657,9 @@
>        </li>
>        </ul>
> 
> -      </section>
> +      </subsection>
> 
> -    <section name="0.7.10 Security" href="security">
> +    <subsection name="0.7.10 Security" href="security">
> 
>      <p>
>      One detail that can be configured in the Web application deployment descriptor is container-managed security.
> @@ -676,9 +676,9 @@
>        </li>
>        </ul>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.8 JavaServer Pages, JSP Tag Libraries, and Java Server Faces" href="jsp">
> +    <subsection name="0.8 JavaServer Pages, JSP Tag Libraries, and Java Server Faces" href="jsp">
>      <p><a href="http://java.sun.com/products/jsp/product.html">JavaServer Pages</a> (JSPs) are
>      "inside-out servlets" that make it easier to create and maintain dynamic web pages. Instead
>      of putting what you want to write to the HTTP response inside of a Java <code>print</code>
> @@ -760,9 +760,9 @@
>             </li>
>         </ul>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.9 Extensible Markup Language (XML)" href="xml">
> +    <subsection name="0.9 Extensible Markup Language (XML)" href="xml">
> 
>      <p>The features provided by the Struts framework relies on a number of objects that are
>      usually deployed using a configuration file written in
> @@ -786,9 +786,9 @@
>          when writing their own applications.
>      </p>
> 
> -    </section>
> +    </subsection>
> 
> -        <section name="0.9.1 Descriptors" href="descriptors">
> +        <subsection name="0.9.1 Descriptors" href="descriptors">
> 
>          <p>
>          When Java applications use XML configuration files,
> @@ -802,9 +802,9 @@
>          Likewise, Struts uses an XML configuration file to deploy objects used by the framework.
>          </p>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.10 Other layers" href="layers">
> +    <subsection name="0.10 Other layers" href="layers">
> 
>      <p>
>        Struts provides the control layer for a web application. Developers can use this layer with
> @@ -830,9 +830,9 @@
>          <li><a href="http://www.w3.org/TR/xslt">XSL Transformations </a></li>
>          </ul>
> 
> -    </section>
> +    </subsection>
> 
> -    <section name="0.11 JAAS" href="jaas">
> +    <subsection name="0.11 JAAS" href="jaas">
> 
>      <p>
>          While Struts can work with any approach to user authentication and authorization, Struts 1.1 and later offers
> @@ -845,14 +845,14 @@
>      Web Application Security</a> chapter of the
>      <a href="http://java.sun.com/webservices/docs/1.0/tutorial/index.html">Java Web Services Tutorial</a>.</p>
> 
> -</section>
> +</subsection>
> 
> -<section>
> +<subsection>
>      <p class="right">
>      Next: <a href="introduction.html">Introduction</a>
>      </p>
> -</section>
> +</subsection>
> 
> -</chapter>
> +</section>
>  </body>
>  </document>
> 
> Modified: struts/site/trunk/xdocs/userGuide/release-notes-1.1-b3.xml
> URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes-1.1-b3.xml?rev=232684&r1=232683&r2=232684&view=diff
> ==============================================================================
> --- struts/site/trunk/xdocs/userGuide/release-notes-1.1-b3.xml (original)
> +++ struts/site/trunk/xdocs/userGuide/release-notes-1.1-b3.xml Sun Aug 14 18:37:54 2005
> @@ -7,8 +7,8 @@
> 
>    <body>
> 
> -  <chapter name="6.1 Release Notes" href="release_notes">
> -  <section name="Beta Notes" href="beta">
> +  <section name="6.1 Release Notes" href="release_notes">
> +  <subsection name="Beta Notes" href="beta">
> 
>      <p>This section contains the release notes for
>      <strong>nightly build</strong> of the Struts Framework,
> @@ -17,9 +17,9 @@
>      was released. For a complete list of changes since the last
>      production release, see the <a href="#Introduction">Introduction</a> </p>
> 
> -  </section>
> +  </subsection>
> 
> -<section name="Beta Fixes" href="beta.Changes">
> +<subsection name="Beta Fixes" href="beta.Changes">
> 
>    <p>
>    <strong>ApplicationConfig:</strong> In Struts 1.1. beta 3, the ApplicationConfig class
> @@ -35,9 +35,9 @@
>    application.
>    </p>
> 
> -</section>
> +</subsection>
> 
> -  <section name="Introduction" href="Introduction">
> +  <subsection name="Introduction" href="Introduction">
> 
>      <p>The remainder of this document contains the release notes for
>      <strong>nightly build</strong> of the Struts Framework,
> @@ -47,10 +47,10 @@
>      <a href="#New">New Features</a> and <a href="#Changes">Changes</a>
>      to Struts.</p>
> 
> -  </section>
> +  </subsection>
> 
> 
> -  <section name="What's Included?" href="Included">
> +  <subsection name="What's Included?" href="Included">
> 
>      <p>The binary distribution of this release includes the following
>      files relevant to Struts:</p>
> @@ -108,9 +108,9 @@
>          web applications that are included with Struts.</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="What's New?" href="New">
> +  <subsection name="What's New?" href="New">
> 
>      <p>Following are highlights of the new features. In the next section, we
>      provide links to the JavaDocs for the affected classes.</p>
> @@ -304,9 +304,9 @@
>      <li>JavaDocs: New <code>@since Struts 1.1</code> tag to indicate new packages, classes, and members added after the Struts 1.0.x version</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="Operational Changes and Bug Fixes" href="Changes">
> +  <subsection name="Operational Changes and Bug Fixes" href="Changes">
> 
>      <p><strong>Struts Configuration Changes</strong></p>
>      <p>The following changes and bug fixes have occurred in the configuration
> @@ -443,9 +443,9 @@
>      saved in the page context.</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="What's different?" href="diff">
> +  <subsection name="What's different?" href="diff">
> 
>      <p>This section provides links to the Struts JavaDoc for any classes that have
>      been added or deprecated since the Struts 1.0 release.
> @@ -600,15 +600,15 @@
>        </li>
>      </ul>
> 
> -</section>
> +</subsection>
> 
> -<section>
> +<subsection>
>      <p class="right">
>      Next: <a href="installation.html">Installation</a>
>      </p>
> -</section>
> +</subsection>
> 
> -</chapter>
> +</section>
>      </body>
> 
>  </document>
> 
> Modified: struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc1.xml
> URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc1.xml?rev=232684&r1=232683&r2=232684&view=diff
> ==============================================================================
> --- struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc1.xml (original)
> +++ struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc1.xml Sun Aug 14 18:37:54 2005
> @@ -7,8 +7,8 @@
> 
>    <body>
> 
> -  <chapter name="6.1 Release Notes" href="release_notes">
> -  <section name="Beta Notes" href="beta">
> +  <section name="6.1 Release Notes" href="release_notes">
> +  <subsection name="Beta Notes" href="beta">
> 
>      <p>This section contains the release notes for
>      <strong>nightly build</strong> of the Struts Framework,
> @@ -17,9 +17,9 @@
>      was released. For a complete list of changes since the last
>      production release, see the <a href="#Introduction">Introduction</a> </p>
> 
> -  </section>
> +  </subsection>
> 
> -<section name="Beta Fixes" href="beta.Changes">
> +<subsection name="Beta Fixes" href="beta.Changes">
> 
>    <p>
>    <strong>ApplicationConfig:</strong> In Struts 1.1. beta 3, the ApplicationConfig class
> @@ -35,9 +35,9 @@
>    application.
>    </p>
> 
> -</section>
> +</subsection>
> 
> -  <section name="Introduction" href="Introduction">
> +  <subsection name="Introduction" href="Introduction">
> 
>      <p>The remainder of this document contains the release notes for
>      <strong>nightly build</strong> of the Struts Framework,
> @@ -47,10 +47,10 @@
>      <a href="#New">New Features</a> and <a href="#Changes">Changes</a>
>      to Struts.</p>
> 
> -  </section>
> +  </subsection>
> 
> 
> -  <section name="What's Included?" href="Included">
> +  <subsection name="What's Included?" href="Included">
> 
>      <p>The binary distribution of this release includes the following
>      files relevant to Struts:</p>
> @@ -108,9 +108,9 @@
>          web applications that are included with Struts.</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="What's New?" href="New">
> +  <subsection name="What's New?" href="New">
> 
>      <p>Following are highlights of the new features. In the next section, we
>      provide links to the JavaDocs for the affected classes.</p>
> @@ -304,9 +304,9 @@
>      <li>JavaDocs: New <code>@since Struts 1.1</code> tag to indicate new packages, classes, and members added after the Struts 1.0.x version</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="Operational Changes and Bug Fixes" href="Changes">
> +  <subsection name="Operational Changes and Bug Fixes" href="Changes">
> 
>      <p><strong>Struts Configuration Changes</strong></p>
>      <p>The following changes and bug fixes have occurred in the configuration
> @@ -443,9 +443,9 @@
>      saved in the page context.</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="What's different?" href="diff">
> +  <subsection name="What's different?" href="diff">
> 
>      <p>This section provides links to the Struts JavaDoc for any classes that have
>      been added or deprecated since the Struts 1.0 release.
> @@ -600,15 +600,15 @@
>        </li>
>      </ul>
> 
> -</section>
> +</subsection>
> 
> -<section>
> +<subsection>
>      <p class="right">
>      Next: <a href="installation.html">Installation</a>
>      </p>
> -</section>
> +</subsection>
> 
> -</chapter>
> +</section>
>      </body>
> 
>  </document>
> 
> Modified: struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc2.xml
> URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc2.xml?rev=232684&r1=232683&r2=232684&view=diff
> ==============================================================================
> --- struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc2.xml (original)
> +++ struts/site/trunk/xdocs/userGuide/release-notes-1.1-rc2.xml Sun Aug 14 18:37:54 2005
> @@ -7,8 +7,8 @@
> 
>    <body>
> 
> -  <chapter name="6.1 Release Notes" href="release_notes">
> -  <section name="Release Candidate Notes" href="beta">
> +  <section name="6.1 Release Notes" href="release_notes">
> +  <subsection name="Release Candidate Notes" href="beta">
> 
>      <p>This section contains the release notes for the
>      <strong>Version 1.1 Release Candidate 2</strong> build of the Struts Framework,
> @@ -17,9 +17,9 @@
>      was issued. For a complete list of changes since the last
>      production release, see the <a href="#Introduction">Introduction</a> </p>
> 
> -  </section>
> +  </subsection>
> 
> -<section name="RC/Beta Fixes" href="beta.Changes">
> +<subsection name="RC/Beta Fixes" href="beta.Changes">
> 
>      <p>
>          In RC2, the <strong>Commons-DBCP and Commons-Pool dependencies have been removed</strong>.
> @@ -293,9 +293,9 @@
>      </ul>
> 
> 
> -</section>
> +</subsection>
> 
> -  <section name="Introduction" href="Introduction">
> +  <subsection name="Introduction" href="Introduction">
> 
>      <p>The remainder of this document contains the release notes for
>      <strong>1.1 Release Candidate 2</strong> build of the Struts Framework,
> @@ -305,10 +305,10 @@
>      <a href="#New">New Features</a> and <a href="#Changes">Changes</a>
>      to Struts.</p>
> 
> -  </section>
> +  </subsection>
> 
> 
> -  <section name="What's Included?" href="Included">
> +  <subsection name="What's Included?" href="Included">
> 
>      <p>The binary distribution of this release includes the following
>      files relevant to Struts:</p>
> @@ -379,9 +379,9 @@
>      <li>Commons Validator 1.0.2</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="What's New?" href="New">
> +  <subsection name="What's New?" href="New">
> 
>      <p>Following are highlights of the new features. In the next section, we
>      provide links to the JavaDocs for the affected classes.</p>
> @@ -572,9 +572,9 @@
>      <li>JavaDocs: New <code>@since Struts 1.1</code> tag to indicate new packages, classes, and members added after the Struts 1.0.x version</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="Operational Changes and Bug Fixes" href="Changes">
> +  <subsection name="Operational Changes and Bug Fixes" href="Changes">
> 
>      <p><strong>Struts Configuration Changes</strong></p>
>      <p>The following changes and bug fixes have occurred in the configuration
> @@ -714,9 +714,9 @@
>          &lt;html:optionsCollection&gt; based on a collection saved in the page context.</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="What's different?" href="diff">
> +  <subsection name="What's different?" href="diff">
> 
>      <p>This section provides links to the Struts JavaDoc for any classes that have
>      been added or deprecated since the Struts 1.0 release.
> @@ -872,15 +872,15 @@
>        </li>
>      </ul>
> 
> -</section>
> +</subsection>
> 
> -<section>
> +<subsection>
>      <p class="right">
>      Next: <a href="installation.html">Installation</a>
>      </p>
> -</section>
> +</subsection>
> 
> -</chapter>
> +</section>
>      </body>
> 
>  </document>
> 
> Modified: struts/site/trunk/xdocs/userGuide/release-notes-1.1.xml
> URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes-1.1.xml?rev=232684&r1=232683&r2=232684&view=diff
> ==============================================================================
> --- struts/site/trunk/xdocs/userGuide/release-notes-1.1.xml (original)
> +++ struts/site/trunk/xdocs/userGuide/release-notes-1.1.xml Sun Aug 14 18:37:54 2005
> @@ -7,8 +7,8 @@
> 
>    <body>
> 
> -  <chapter name="6.1 Release Notes" href="release_notes">
> -  <section name="Release Notes" href="beta">
> +  <section name="6.1 Release Notes" href="release_notes">
> +  <subsection name="Release Notes" href="beta">
> 
>      <p>This section contains the release notes for the
>      <strong>Version 1.1</strong> build of the Struts Framework, for changes that
> @@ -17,9 +17,9 @@
>      was issued. For a complete list of changes since the last
>      production release, see the <a href="#Introduction">Introduction</a> </p>
> 
> -  </section>
> +  </subsection>
> 
> -<section name="Release Candidate/Beta Fixes" href="beta.Changes">
> +<subsection name="Release Candidate/Beta Fixes" href="beta.Changes">
> 
>      <p>
>          In RC2, the <strong>Commons-DBCP and Commons-Pool dependencies have been removed</strong>.
> @@ -307,9 +307,9 @@
>      </ul>
> 
> 
> -</section>
> +</subsection>
> 
> -  <section name="Introduction" href="Introduction">
> +  <subsection name="Introduction" href="Introduction">
> 
>      <p>The remainder of this document contains the release notes for
>      <strong>1.1 Release Candidate 2</strong> build of the Struts Framework,
> @@ -319,10 +319,10 @@
>      <a href="#New">New Features</a> and <a href="#Changes">Changes</a>
>      to Struts.</p>
> 
> -  </section>
> +  </subsection>
> 
> 
> -  <section name="What's Included?" href="Included">
> +  <subsection name="What's Included?" href="Included">
> 
>      <p>The binary distribution of this release includes the following
>      files relevant to Struts:</p>
> @@ -393,9 +393,9 @@
>      <li>Commons Validator 1.0.2</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="What's New?" href="New">
> +  <subsection name="What's New?" href="New">
> 
>      <p>Following are highlights of the new features. In the next section, we
>      provide links to the JavaDocs for the affected classes.</p>
> @@ -586,9 +586,9 @@
>      <li>JavaDocs: New <code>@since Struts 1.1</code> tag to indicate new packages, classes, and members added after the Struts 1.0.x version</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="Operational Changes and Bug Fixes" href="Changes">
> +  <subsection name="Operational Changes and Bug Fixes" href="Changes">
> 
>      <p><strong>Struts Configuration Changes</strong></p>
>      <p>The following changes and bug fixes have occurred in the configuration
> @@ -728,9 +728,9 @@
>          &lt;html:optionsCollection&gt; based on a collection saved in the page context.</li>
>      </ul>
> 
> -  </section>
> +  </subsection>
> 
> -  <section name="What's different?" href="diff">
> +  <subsection name="What's different?" href="diff">
> 
>      <p>This section provides links to the Struts JavaDoc for any classes that have
>      been added or deprecated since the Struts 1.0 release.
> @@ -886,15 +886,15 @@
>        </li>
>      </ul>
> 
> -</section>
> +</subsection>
> 
> -<section>
> +<subsection>
>      <p class="right">
>      Next: <a href="installation.html">Installation</a>
>      </p>
> -</section>
> +</subsection>
> 
> -</chapter>
> +</section>
>      </body>
> 
>  </document>
> 
> Modified: struts/site/trunk/xdocs/userGuide/release-notes-1.2.7.xml
> URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes-1.2.7.xml?rev=232684&r1=232683&r2=232684&view=diff
> ==============================================================================
> --- struts/site/trunk/xdocs/userGuide/release-notes-1.2.7.xml (original)
> +++ struts/site/trunk/xdocs/userGuide/release-notes-1.2.7.xml Sun Aug 14 18:37:54 2005
> @@ -4,8 +4,8 @@
>      <title>Struts Release Notes (since 1.2.4)</title>
>    </properties>
>   <body>
> - <chapter name="6.1 Release Notes - Version 1.2.7" href="release_notes">
> -      <section name="Introduction" href="Introduction">
> + <section name="6.1 Release Notes - Version 1.2.7" href="release_notes">
> +      <subsection name="Introduction" href="Introduction">
>            <p>
>                This section contains release notes for changes that have taken
>                place since
> @@ -24,9 +24,9 @@
>               <a href="installation.html">Installation chapter</a>.
>            </p>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="Highlights of Changes" href="Highlight">
> +      <subsection name="Highlights of Changes" href="Highlight">
>            <p>
>                The purpose of this section is to highlight the new features since the
>                Version 1.2.4 release. For detailed information concerning changes
> @@ -156,9 +156,9 @@
>                from emeritus to active status.
>            </p>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="Detailed Changes" href="Detail">
> +      <subsection name="Detailed Changes" href="Detail">
>            <p>
>                This section contains the details of changes since version 1.2.4 with links to
>                bugzilla tickets and Subversion Revision details. It is split into the following
> @@ -743,12 +743,12 @@
>                       </ul></td>
>               </tr>
>           </table>
> -      </section>
> +      </subsection>
> 
> -     <section>
> +     <subsection>
>         <p class="right">Next:
>         <a href="installation.html">Installation</a></p>
> -     </section>
> - </chapter>
> +     </subsection>
> + </section>
>  </body>
>  </document>
> 
> Modified: struts/site/trunk/xdocs/userGuide/release-notes.xml
> URL: http://svn.apache.org/viewcvs/struts/site/trunk/xdocs/userGuide/release-notes.xml?rev=232684&r1=232683&r2=232684&view=diff
> ==============================================================================
> --- struts/site/trunk/xdocs/userGuide/release-notes.xml (original)
> +++ struts/site/trunk/xdocs/userGuide/release-notes.xml Sun Aug 14 18:37:54 2005
> @@ -4,8 +4,8 @@
>      <title>Struts Release Notes (since 1.2.4)</title>
>    </properties>
>   <body>
> - <chapter name="6.1 Release Notes - Version 1.2.7" href="release_notes">
> -      <section name="Introduction" href="Introduction">
> + <section name="6.1 Release Notes - Version 1.2.7" href="release_notes">
> +      <subsection name="Introduction" href="Introduction">
>            <p>
>                This section contains release notes for changes that have taken
>                place since
> @@ -24,9 +24,9 @@
>               <a href="installation.html">Installation chapter</a>.
>            </p>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="Highlights of Changes" href="Highlight">
> +      <subsection name="Highlights of Changes" href="Highlight">
>            <p>
>                The purpose of this section is to highlight the new features since the
>                Version 1.2.4 release. For detailed information concerning changes
> @@ -156,9 +156,9 @@
>                from emeritus to active status.
>            </p>
> 
> -      </section>
> +      </subsection>
> 
> -      <section name="Detailed Changes" href="Detail">
> +      <subsection name="Detailed Changes" href="Detail">
>            <p>
>                This section contains the details of changes since version 1.2.4 with links to
>                bugzilla tickets and Subversion Revision details. It is split into the following
> @@ -743,12 +743,12 @@
>                       </ul></td>
>               </tr>
>           </table>
> -      </section>
> +      </subsection>
> 
> -     <section>
> +     <subsection>
>         <p class="right">Next:
>         <a href="installation.html">Installation</a></p>
> -     </section>
> - </chapter>
> +     </subsection>
> + </section>
>  </body>
>  </document>
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
> For additional commands, e-mail: dev-help@struts.apache.org
> 
>

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