craigmcc    01/05/29 11:06:04

  Modified:    doc      struts-html.xml
               doc/userGuide building_view.xml
               src/share/org/apache/struts/taglib/logic package.html
  Log:
  Port the three recent documentation updates from 1.0.
  
  Revision  Changes    Path
  1.12      +9 -0      jakarta-struts/doc/struts-html.xml
  
  Index: struts-html.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/struts-html.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- struts-html.xml   2001/05/13 03:24:17     1.11
  +++ struts-html.xml   2001/05/29 18:05:56     1.12
  @@ -3472,6 +3472,15 @@
               </info>
           </attribute>
   
  +        <attribute>
  +            <name>tabindex</name>
  +            <required>false</required>
  +            <rtexprvalue>true</rtexprvalue>
  +            <info>
  +                The tab order (ascending positive integers) for this element.
  +            </info>
  +        </attribute>
  +
                   <attribute>
                           <name>value</name>
                           <required>true</required>
  
  
  
  1.2       +2 -2      jakarta-struts/doc/userGuide/building_view.xml
  
  Index: building_view.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/building_view.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- building_view.xml 2001/03/18 17:48:59     1.1
  +++ building_view.xml 2001/05/29 18:06:00     1.2
  @@ -227,9 +227,9 @@
     &lt;/tr&gt;
     &lt;tr&gt;
       &lt;td align="right"&gt;
  -      &lt;struts:submit&gt;
  +      &lt;html:submit&gt;
           &lt;bean:message key="button.submit"/&gt;
  -      &lt;/struts:submit&gt;
  +      &lt;/html:submit&gt;
       &lt;/td&gt;
       &lt;td align="right"&gt;
         &lt;html:reset&gt;
  
  
  
  1.9       +3 -3      
jakarta-struts/src/share/org/apache/struts/taglib/logic/package.html
  
  Index: package.html
  ===================================================================
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/logic/package.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- package.html      2001/03/25 21:16:24     1.8
  +++ package.html      2001/05/29 18:06:02     1.9
  @@ -200,7 +200,7 @@
             <pre>&lt;%
     java.util.Vector vector = new java.util.Vector();
     vector.add(new Integer(12));
  -  vector.add(new Integer(5))
  +  vector.add(new Integer(5));
    %&gt;
   </pre>
           </li>
  @@ -209,9 +209,9 @@
     </ul>
     <blockquote>
       <blockquote>
  -      <pre>&lt;bean:iterate id=&quot;myCollectionElement&quot; 
collection=&quot;&lt;%= vector %&gt;&quot;&gt;
  +      <pre>&lt;logic:iterate id=&quot;myCollectionElement&quot; 
collection=&quot;&lt;%= vector %&gt;&quot;&gt;
   <i> Do something with myCollectionElement</i>
  -&lt;/bean:iterate&gt;
  +&lt;/logic:iterate&gt;
   </pre>
       </blockquote>
     </blockquote>
  
  
  

Reply via email to