Author: wsmoak
Date: Sat Jun 24 20:23:23 2006
New Revision: 416981

URL: http://svn.apache.org/viewvc?rev=416981&view=rev
Log:
Alphabetize DTD attributes and comments.

Modified:
    
struts/action/trunk/core/src/main/resources/org/apache/struts/resources/struts-config_1_3.dtd

Modified: 
struts/action/trunk/core/src/main/resources/org/apache/struts/resources/struts-config_1_3.dtd
URL: 
http://svn.apache.org/viewvc/struts/action/trunk/core/src/main/resources/org/apache/struts/resources/struts-config_1_3.dtd?rev=416981&r1=416980&r2=416981&view=diff
==============================================================================
--- 
struts/action/trunk/core/src/main/resources/org/apache/struts/resources/struts-config_1_3.dtd
 (original)
+++ 
struts/action/trunk/core/src/main/resources/org/apache/struts/resources/struts-config_1_3.dtd
 Sat Jun 24 20:23:23 2006
@@ -268,10 +268,17 @@
      nested within an <action> element and only available to an Action object
      when it is invoked through that ActionMapping.
 
+     catalog         The name of a commons-chain catalog in which to look up
+                     a command to be executed as part of servicing this 
request.
+                     Only meaningful if "command" is also specified.
+
      className       Fully qualified Java class name of ActionForward
                      subclass to use for this object.
                      ["org.apache.struts.action.ActionForward"]
 
+     command         The name of a commons-chain command which should be 
looked up
+                     and executed as part of servicing this request.
+
      extends         The name of the forward configuration that this 
                      will inherit configuration information from.
 
@@ -383,6 +390,10 @@
      name            Name of the form bean, if any, that is associated with 
this
                      action mapping.
 
+     parameter       General-purpose configuration parameter that can be used 
to
+                     pass extra information to the Action object selected by
+                     this action mapping.
+
      path            The module-relative path of the submitted request, 
starting
                      with a "/" character, and without the filename extension 
if
                      extension mapping is used.
@@ -391,10 +402,6 @@
                      because it will look like a filename extension and
                      cause your Action to not be located.
 
-     parameter       General-purpose configuration parameter that can be used 
to
-                     pass extra information to the Action object selected by
-                     this action mapping.
-
      prefix          Prefix used to match request parameter names to ActionForm
                      property names, if any. Optional if "name" is specified,
                      else not allowed.
@@ -461,12 +468,19 @@
                      file uploads.
                      [4096]
 
+     catalog         Name of the catalog to use when processing requests
+                     for this module.
+                     [struts]
+
      className       Fully qualified Java class name of the
                      ControllerConfig subclass for this controller object.
                      If specified, the object must be a subclass of the
                      default class.
                      ["org.apache.struts.config.ControllerConfig"]
 
+     command         Name of the command to execute to process a request.
+                     [servlet-standard]
+
      contentType     Default content type (and optional character encoding) to
                      be set on each response. May be overridden by the Action,
                      JSP, or other resource to which the request is forwarded.
@@ -544,17 +558,13 @@
                      file uploads.
                      [{Directory provided by servlet container}]
 
-     catalog         Name of the catalog to use when processing requests
-                     for this module.
-                     [struts]
-
-     command         Name of the command to execute to process a request.
-                     [servlet-standard]
 -->
 <!ELEMENT controller     (set-property*)>
 <!ATTLIST controller     id             ID              #IMPLIED>
 <!ATTLIST controller     bufferSize     %Integer;       #IMPLIED>
+<!ATTLIST controller     catalog        CDATA           #IMPLIED>
 <!ATTLIST controller     className      %ClassName;     #IMPLIED>
+<!ATTLIST controller     command        CDATA           #IMPLIED>
 <!ATTLIST controller     contentType    CDATA           #IMPLIED>
 <!ATTLIST controller     forwardPattern CDATA           #IMPLIED>
 <!ATTLIST controller     inputForward   %Boolean;       #IMPLIED>
@@ -566,8 +576,6 @@
 <!ATTLIST controller     pagePattern    CDATA           #IMPLIED>
 <!ATTLIST controller     processorClass %ClassName;     #IMPLIED>
 <!ATTLIST controller     tempDir        CDATA           #IMPLIED>
-<!ATTLIST controller     catalog        CDATA           #IMPLIED>
-<!ATTLIST controller     command        CDATA           #IMPLIED>
 
 
 <!-- The "message-resources" element describes a MessageResources object with


Reply via email to