You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2005/11/25 02:41:42 UTC

svn commit: r348849 - /myfaces/impl/trunk/tld/entities/

Author: skitching
Date: Thu Nov 24 17:41:35 2005
New Revision: 348849

URL: http://svn.apache.org/viewcvs?rev=348849&view=rev
Log:
Mark HTML passthrough attributes as HTML in description

Modified:
    myfaces/impl/trunk/tld/entities/html_event_handler_attributes.xml
    myfaces/impl/trunk/tld/entities/html_form_attributes.xml
    myfaces/impl/trunk/tld/entities/html_img_attributes.xml
    myfaces/impl/trunk/tld/entities/html_input_attributes.xml
    myfaces/impl/trunk/tld/entities/html_label_attributes.xml
    myfaces/impl/trunk/tld/entities/html_select_attributes.xml
    myfaces/impl/trunk/tld/entities/html_table_attributes.xml
    myfaces/impl/trunk/tld/entities/html_textarea_attributes.xml
    myfaces/impl/trunk/tld/entities/html_universal_attributes.xml
    myfaces/impl/trunk/tld/entities/spec_img_attributes.xml
    myfaces/impl/trunk/tld/entities/standard_select_one_radio_attributes.xml

Modified: myfaces/impl/trunk/tld/entities/html_event_handler_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/html_event_handler_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/html_event_handler_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/html_event_handler_attributes.xml Thu Nov 24 17:41:35 2005
@@ -1,61 +1,61 @@
 <!-- HTML 4.0 event-handler attributes -->
 <attribute>
-	<name>onclick</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>Specifies a script to be invoked when the element is clicked.</description>
+    <name>onclick</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: Script to be invoked when the element is clicked.</description>
 </attribute>
 <attribute>
-	<name>ondblclick</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>Specifies a script to be invoked when the element is double-clicked.</description>
+    <name>ondblclick</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: Script to be invoked when the element is double-clicked.</description>
 </attribute>
 <attribute>
-	<name>onmousedown</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>Specifies a script to be invoked when the pointing device is pressed over this element.</description>
+    <name>onmousedown</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: Script to be invoked when the pointing device is pressed over this element.</description>
 </attribute>
 <attribute>
-	<name>onmouseup</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>Specifies a script to be invoked when the pointing device is released over this element.</description>
+    <name>onmouseup</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: Script to be invoked when the pointing device is released over this element.</description>
 </attribute>
 <attribute>
-	<name>onmouseover</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>Specifies a script to be invoked when the pointing device is moved into this element.</description>
+    <name>onmouseover</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: Script to be invoked when the pointing device is moved into this element.</description>
 </attribute>
 <attribute>
-	<name>onmousemove</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>Specifies a script to be invoked when the pointing device is moved while it is in this element.</description>
+    <name>onmousemove</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: Script to be invoked when the pointing device is moved while it is in this element.</description>
 </attribute>
 <attribute>
-	<name>onmouseout</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>Specifies a script to be invoked when the pointing device is moves out of this element.</description>
+    <name>onmouseout</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: Script to be invoked when the pointing device is moves out of this element.</description>
 </attribute>
 <attribute>
-	<name>onkeypress</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>Specifies a script to be invoked when a key is pressed over this element.</description>
+    <name>onkeypress</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: Script to be invoked when a key is pressed over this element.</description>
 </attribute>
 <attribute>
-	<name>onkeydown</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>Specifies a script to be invoked when a key is pressed down over this element.</description>
+    <name>onkeydown</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: Script to be invoked when a key is pressed down over this element.</description>
 </attribute>
 <attribute>
-	<name>onkeyup</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>Specifies a script to be invoked when a key is released over this element.</description>
+    <name>onkeyup</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: Script to be invoked when a key is released over this element.</description>
 </attribute>

Modified: myfaces/impl/trunk/tld/entities/html_form_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/html_form_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/html_form_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/html_form_attributes.xml Thu Nov 24 17:41:35 2005
@@ -5,7 +5,7 @@
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <description>
-        Provides a comma-separated list of content types that the 
+        HTML: Provides a comma-separated list of content types that the 
         server processing this form can handle.
     </description>
 </attribute>
@@ -14,7 +14,7 @@
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <description>
-        The list of character encodings accepted by the server for this
+        HTML: The list of character encodings accepted by the server for this
         form.
     </description>
 </attribute>
@@ -23,18 +23,18 @@
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <description>
-        The content type used to submit this form to the server.
+        HTML: The content type used to submit this form to the server.
     </description>
 </attribute>
 <attribute>
     <name>onreset</name>
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
-    <description>Specifies a script to be invoked when this form is reset.</description>
+    <description>HTML: Script to be invoked when this form is reset.</description>
 </attribute>
 <attribute>
     <name>onsubmit</name>
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
-    <description>Specifies a script to be invoked when this form is submitted.</description>
+    <description>HTML: Script to be invoked when this form is submitted.</description>
 </attribute>

Modified: myfaces/impl/trunk/tld/entities/html_img_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/html_img_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/html_img_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/html_img_attributes.xml Thu Nov 24 17:41:35 2005
@@ -1,17 +1,23 @@
 <!-- HTML 4.0 img attributes that are not part of the JSF 1.1 specification -->
 &html_align_attribute;
 &html_border_attribute;
-        <attribute>
-            <name>hspace</name>
-            <required>false</required>
-            <rtexprvalue>false</rtexprvalue>
-            <type>java.lang.String</type>
-            <description>Specifies the amount of white space to be inserted to the left and right of this element, in undefined units.  Deprecated in HTML 4.01.</description>
-        </attribute>
-        <attribute>
-            <name>vspace</name>
-            <required>false</required>
-            <rtexprvalue>false</rtexprvalue>
-            <type>java.lang.String</type>
-            <description>Specifies the amount of white space to be inserted above and below this element, in undefined units.  Deprecated in HTML 4.01.</description>
-        </attribute>
+<attribute>
+    <name>hspace</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <type>java.lang.String</type>
+    <description>
+        HTML: The amount of white space to be inserted to the left and right
+        of this element, in undefined units.  Deprecated in HTML 4.01.
+    </description>
+</attribute>
+<attribute>
+    <name>vspace</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <type>java.lang.String</type>
+    <description>
+        HTML: The amount of white space to be inserted above and below this
+        element, in undefined units.  Deprecated in HTML 4.01.
+    </description>
+</attribute>

Modified: myfaces/impl/trunk/tld/entities/html_input_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/html_input_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/html_input_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/html_input_attributes.xml Thu Nov 24 17:41:35 2005
@@ -9,16 +9,16 @@
 &html_readonly_attribute;
 &html_tabindex_attribute;
 <attribute>
-	<name>maxlength</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<type>java.lang.String</type>
-	<description>The maximum number of characters allowed to be entered.</description>
+    <name>maxlength</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <type>java.lang.String</type>
+    <description>HTML: The maximum number of characters allowed to be entered.</description>
 </attribute>
 <attribute>
-	<name>size</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<type>java.lang.String</type>
-	<description>The initial width of this control, in characters.</description>
+    <name>size</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <type>java.lang.String</type>
+    <description>HTML: The initial width of this control, in characters.</description>
 </attribute>

Modified: myfaces/impl/trunk/tld/entities/html_label_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/html_label_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/html_label_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/html_label_attributes.xml Thu Nov 24 17:41:35 2005
@@ -1,4 +1,4 @@
 <!-- HTML 4.0 label attributes -->
 &html_accesskey_attribute;
 &html_focus_blur_attributes;
-        <!-- "for" is a specific LabelRenderer attribute -->
+<!-- "for" is a specific LabelRenderer attribute -->

Modified: myfaces/impl/trunk/tld/entities/html_select_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/html_select_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/html_select_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/html_select_attributes.xml Thu Nov 24 17:41:35 2005
@@ -5,6 +5,6 @@
 &html_readonly_attribute;
 &html_disabled_attribute;
 &html_datafld_datasrc_dataformatas;
-        <!-- "multiple" cannot be set manually -->
-        <!-- "name" cannot be set manually -->
-        <!-- "size" cannot be set directly for it is a MenuRenderer specific attribute -->
+<!-- "multiple" cannot be set manually -->
+<!-- "name" cannot be set manually -->
+<!-- "size" cannot be set directly for it is a MenuRenderer specific attribute -->

Modified: myfaces/impl/trunk/tld/entities/html_table_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/html_table_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/html_table_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/html_table_attributes.xml Thu Nov 24 17:41:35 2005
@@ -9,7 +9,7 @@
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <description>
-        Specifies the amount of empty space between the cell border and
+        HTML: Specifies the amount of empty space between the cell border and
         its contents.  It can be either a pixel length or a percentage.
     </description>
 </attribute>
@@ -18,7 +18,7 @@
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <description>
-        Specifies the amount of space between the cells of the table.
+        HTML: Specifies the amount of space between the cells of the table.
         It can be either a pixel length or a percentage of available 
         space.
     </description>
@@ -28,7 +28,7 @@
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <description>
-        Controls what part of the frame that surrounds a table is 
+        HTML: Controls what part of the frame that surrounds a table is 
         visible.  Values include:  void, above, below, hsides, lhs, 
         rhs, vsides, box, and border.
     </description>
@@ -38,7 +38,7 @@
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <description>
-        Controls how rules are rendered between cells.  Values include:
+        HTML: Controls how rules are rendered between cells.  Values include:
         none, groups, rows, cols, and all.
     </description>
 </attribute>
@@ -47,7 +47,7 @@
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <description>
-        Provides a summary of the contents of the table, for
+        HTML: Provides a summary of the contents of the table, for
         accessibility purposes.
     </description>
 </attribute>
@@ -56,7 +56,7 @@
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <description>
-        Specifies the desired width of the table, as a pixel length or
+        HTML: Specifies the desired width of the table, as a pixel length or
         a percentage of available space.
     </description>
 </attribute>

Modified: myfaces/impl/trunk/tld/entities/html_textarea_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/html_textarea_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/html_textarea_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/html_textarea_attributes.xml Thu Nov 24 17:41:35 2005
@@ -12,12 +12,12 @@
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <type>java.lang.String</type>
-    <description>The width of this element, in characters.</description>
+    <description>HTML: The width of this element, in characters.</description>
 </attribute>
 <attribute>
     <name>rows</name>
     <required>false</required>
     <rtexprvalue>false</rtexprvalue>
     <type>java.lang.String</type>
-    <description>The height of this element, in characters.</description>
+    <description>HTML: The height of this element, in characters.</description>
 </attribute>

Modified: myfaces/impl/trunk/tld/entities/html_universal_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/html_universal_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/html_universal_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/html_universal_attributes.xml Thu Nov 24 17:41:35 2005
@@ -1,31 +1,31 @@
 <!-- HTML 4.0 universal attributes -->
 <attribute>
-	<name>dir</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>The direction of text display, either 'ltr' (left-to-right) or 'rtl' (right-to-left).</description>
+    <name>dir</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: The direction of text display, either 'ltr' (left-to-right) or 'rtl' (right-to-left).</description>
 </attribute>
 <attribute>
-	<name>lang</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>The base language of this document.</description>
+    <name>lang</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: The base language of this document.</description>
 </attribute>
 <attribute>
-	<name>style</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>CSS styling instructions.</description>
+    <name>style</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: CSS styling instructions.</description>
 </attribute>
 <attribute>
-	<name>title</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>An advisory title for this element.  Often used by the user agent as a tooltip.</description>
+    <name>title</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>HTML: An advisory title for this element.  Often used by the user agent as a tooltip.</description>
 </attribute>
 <attribute>
-	<name>styleClass</name>
-	<required>false</required>
-	<rtexprvalue>false</rtexprvalue>
-	<description>The CSS class for this element.  Corresponds to the HTML 'class' attribute.</description>
+    <name>styleClass</name>
+    <required>false</required>
+    <rtexprvalue>false</rtexprvalue>
+    <description>The CSS class for this element.  Corresponds to the HTML 'class' attribute.</description>
 </attribute>

Modified: myfaces/impl/trunk/tld/entities/spec_img_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/spec_img_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/spec_img_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/spec_img_attributes.xml Thu Nov 24 17:41:35 2005
@@ -4,21 +4,21 @@
             <required>false</required>
             <rtexprvalue>false</rtexprvalue>
             <type>java.lang.String</type>
-            <description>Overrides the natural height of this image, by specifying height in pixels.</description>
+            <description>HTML: Overrides the natural height of this image, by specifying height in pixels.</description>
         </attribute>
         <attribute>
             <name>ismap</name>
             <required>false</required>
             <rtexprvalue>false</rtexprvalue>
             <type>java.lang.String</type>
-            <description>Specifies server-side image map handling for this image.</description>
+            <description>HTML: Specifies server-side image map handling for this image.</description>
         </attribute>
         <attribute>
             <name>longdesc</name>
             <required>false</required>
             <rtexprvalue>false</rtexprvalue>
             <type>java.lang.String</type>
-            <description>A link to a long description of the image.</description>
+            <description>HTML: A link to a long description of the image.</description>
         </attribute>
         <!-- "name" attribute cannot be set directly by user -->
         <!-- "src" attribute cannot be set directly, use "url" instead! -->
@@ -27,12 +27,12 @@
             <required>false</required>
             <rtexprvalue>false</rtexprvalue>
             <type>java.lang.String</type>
-            <description>Specifies an image map to use with this image.</description>
+            <description>HTML: Specifies an image map to use with this image.</description>
         </attribute>
         <attribute>
             <name>width</name>
             <required>false</required>
             <rtexprvalue>false</rtexprvalue>
             <type>java.lang.String</type>
-            <description>Overrides the natural width of this image, by specifying width in pixels.</description>
+            <description>HTML: Overrides the natural width of this image, by specifying width in pixels.</description>
         </attribute>

Modified: myfaces/impl/trunk/tld/entities/standard_select_one_radio_attributes.xml
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/tld/entities/standard_select_one_radio_attributes.xml?rev=348849&r1=348848&r2=348849&view=diff
==============================================================================
--- myfaces/impl/trunk/tld/entities/standard_select_one_radio_attributes.xml (original)
+++ myfaces/impl/trunk/tld/entities/standard_select_one_radio_attributes.xml Thu Nov 24 17:41:35 2005
@@ -9,7 +9,11 @@
             <required>false</required>
             <rtexprvalue>false</rtexprvalue>
             <type>java.lang.String</type>
-            <description>Orientation of the options list. Valid values are "pageDirection" for a vertical layout, or "lineDirection" for horizontal. The default value is "lineDirection". </description>
+            <description>
+                Orientation of the options list. Valid values are 
+                "pageDirection" for a vertical layout, or "lineDirection" for
+                 horizontal. The default value is "lineDirection". 
+            </description>
         </attribute>
         <attribute>
             <name>border</name>