rleland 02/04/16 09:30:24 Modified: doc/userGuide struts-html.xml Log: remove Duplicate password definition added when optionsCollection was added Feb 23 Revision Changes Path 1.8 +21 -351 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.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- struts-html.xml 18 Mar 2002 02:03:46 -0000 1.7 +++ struts-html.xml 16 Apr 2002 16:30:23 -0000 1.8 @@ -2795,27 +2795,27 @@ <name>javascript</name> <summary> - Render JavaScript validation based on the + Render JavaScript validation based on the validation rules loaded by the <code>ValidatorPlugIn</code>. </summary> <tagclass>org.apache.struts.taglib.html.JavascriptValidatorTag</tagclass> <bodycontent>empty</bodycontent> <info> <p> - Render JavaScript validation based on the - validation rules loaded by the <code>ValidatorPlugIn</code>. - The set of validation rules that should be generated is based - on the formName attribute passed in, which should match + Render JavaScript validation based on the + validation rules loaded by the <code>ValidatorPlugIn</code>. + The set of validation rules that should be generated is based + on the formName attribute passed in, which should match the name attribute of the form element in the xml file. <p> </p> - The dynamicJavascript and staticJavascript attributes - default to true, but if dynamicJavascript is set to <code>true</code> - and staticJavascript is set to <code>false</code> then only - the dynamic JavaScript will be rendered. If dynamicJavascript - is set to <code>false</code> - and staticJavascript is set to <code>true</code> then only - the static JavaScript will be rendered which can then be put in + The dynamicJavascript and staticJavascript attributes + default to true, but if dynamicJavascript is set to <code>true</code> + and staticJavascript is set to <code>false</code> then only + the dynamic JavaScript will be rendered. If dynamicJavascript + is set to <code>false</code> + and staticJavascript is set to <code>true</code> then only + the static JavaScript will be rendered which can then be put in separate JSP page so the browser can cache the static JavaScript. </p> </info> @@ -2826,7 +2826,7 @@ <rtexprvalue>false</rtexprvalue> <info> <p> - Whether or not to render the dynamic JavaScript. + Whether or not to render the dynamic JavaScript. Defaults to <code>true</code>. </p> </info> @@ -2837,7 +2837,7 @@ <rtexprvalue>true</rtexprvalue> <info> <p> - The key (form name) to retrieve a specific + The key (form name) to retrieve a specific set of validation rules. </p> </info> @@ -2848,9 +2848,9 @@ <rtexprvalue>true</rtexprvalue> <info> <p> - The alternate JavaScript method name to be used - instead of the of the default. The default is - 'validate' concatenated in front of + The alternate JavaScript method name to be used + instead of the of the default. The default is + 'validate' concatenated in front of the key (form name) passed in (ex: validateRegistrationForm). </p> </info> @@ -2861,8 +2861,8 @@ <rtexprvalue>true</rtexprvalue> <info> <p> - The current page of a set of validation rules - if the page attribute for the field element + The current page of a set of validation rules + if the page attribute for the field element in the xml file is in use. </p> </info> @@ -2873,7 +2873,7 @@ <rtexprvalue>true</rtexprvalue> <info> <p> - The src attribute's value when defining + The src attribute's value when defining the html script element. </p> </info> @@ -2884,7 +2884,7 @@ <rtexprvalue>false</rtexprvalue> <info> <p> - Whether or not to render the static JavaScript. + Whether or not to render the static JavaScript. Defaults to <code>true</code>. </p> </info> @@ -4140,336 +4140,6 @@ <info> The property of the bean within the collection which represents the value to be rendered for each option. Defaults to "value". - </info> - </attribute> - </tag> - - <tag> - - <name>password</name> - <summary> - Render A Password Input Field - </summary> - <tagclass>org.apache.struts.taglib.html.PasswordTag</tagclass> - <info> - Renders an HTML <input> element of type password, populated - from the specified value or the specified property of the bean - associated with our current form. This tag is only valid when - nested inside a form tag body. - </info> - - <attribute> - <name>accesskey</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - The keyboard character used to move focus immediately to this - element. - </info> - </attribute> - - <attribute> - <name>alt</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - <p>The alternate text for this element.</p> - </info> - </attribute> - - <attribute> - <name>altKey</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - <p>The message resources key of the alternate text for this - element.</p> - </info> - </attribute> - - <attribute> - <name>disabled</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - Set to <code>true</code> if this input field should be - disabled. - </info> - </attribute> - - <attribute> - <name>indexed</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - Valid only inside of logic:iterate tag. - If yes then name of the html tag will be rendered as - "id[34].propertyName". Number in brackets will be generated - for every iteration and taken from ancestor logic:iterate tag. - </info> - </attribute> - - <attribute> - <name>maxlength</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - Maximum number of input characters to accept. [No limit] - </info> - </attribute> - - <attribute> - <name>name</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - The attribute name of the bean whose properties are consulted when - rendering the current value of this input field. If not specified, - the bean associated with the form tag we are nested within is utilized. - </info> - </attribute> - - <attribute> - <name>onblur</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element loses input - focus. - </info> - </attribute> - - <attribute> - <name>onchange</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element loses input - focus and its value has changed. - </info> - </attribute> - - <attribute> - <name>onclick</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element receives a - mouse click. - </info> - </attribute> - - - <attribute> - <name>ondblclick</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element receives a - mouse double click. - </info> - </attribute> - - <attribute> - <name>onfocus</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element receives input - focus. - </info> - </attribute> - - - <attribute> - <name>onkeydown</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element has focus and a - key is depressed. - </info> - </attribute> - - <attribute> - <name>onkeypress</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element has focus and a - key is depressed and released. - </info> - </attribute> - - <attribute> - <name>onkeyup</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element has focus and a - key is released. - </info> - </attribute> - - <attribute> - <name>onmousedown</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element is under the mouse - pointer and a mouse button is depressed. - </info> - </attribute> - - <attribute> - <name>onmousemove</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element is under the - mouse pointer and the pointer is moved. - </info> - </attribute> - - <attribute> - <name>onmouseout</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element was under the - mouse pointer but the pointer was moved outside the element. - </info> - </attribute> - - <attribute> - <name>onmouseover</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element was not under - the mouse pointer but the pointer is moved inside the element. - </info> - </attribute> - - <attribute> - <name>onmouseup</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - JavaScript event handler executed when this element is under the - mouse pointer and a mouse button is released. - </info> - </attribute> - - <attribute> - <name>property</name> - <required>true</required> - <rtexprvalue>true</rtexprvalue> - <info> - Name of the request parameter that will be included with this - submission, set to the specified value. - </info> - </attribute> - - <attribute> - <name>readonly</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - Set to <code>true</code> if this input field should be - read only. - </info> - </attribute> - - <attribute> - <name>redisplay</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - Boolean flag indicating whether or not existing values - will be redisplayed if they exist. Even though the - redisplayed value will be shown as asterisks on the - visible HTML page, the cleartext of the actual password - value will be visible though the "Show Page Source" - menu option of the client browser. You may wish to - set this value to <code>false</code> on login pages. - Defaults to <code>true</code> for consistency with - all other form tags that redisplay their contents. - </info> - </attribute> - - <attribute> - <name>style</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - CSS styles to be applied to this HTML element. - </info> - </attribute> - - <attribute> - <name>styleClass</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - CSS stylesheet class to be applied to this HTML element. - </info> - </attribute> - - <attribute> - <name>styleId</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - Identifier to be assigned to this HTML element. - </info> - </attribute> - - <attribute> - <name>size</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - Number of character positions to allocate. [Browser default] - </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>title</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - <p>The advisory title for this element.</p> - </info> - </attribute> - - <attribute> - <name>titleKey</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - <p>The message resources key for the advisory title - for this element.</p> - </info> - </attribute> - - <attribute> - <name>value</name> - <required>false</required> - <rtexprvalue>true</rtexprvalue> - <info> - Value of the label to be placed on this button. This value will - also be submitted as the value of the specified request parameter. - [Body of this tag (if any), or "Cancel"] </info> </attribute> </tag>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>