[ajax4jsf-svn-commits] JBoss Ajax4JSF SVN: r176 - trunk/framework/src/main/config/component.

ajax4jsf-svn-commits at lists.jboss.org ajax4jsf-svn-commits at lists.jboss.org
Sat May 5 13:20:48 EDT 2007


Author: vkukharchuk
Date: 2007-05-05 13:20:48 -0400 (Sat, 05 May 2007)
New Revision: 176

Modified:
   trunk/framework/src/main/config/component/commandButton.xml
   trunk/framework/src/main/config/component/commandLink.xml
   trunk/framework/src/main/config/component/form.xml
   trunk/framework/src/main/config/component/function.xml
   trunk/framework/src/main/config/component/mediaOutput.xml
   trunk/framework/src/main/config/component/poll.xml
   trunk/framework/src/main/config/component/push.xml
   trunk/framework/src/main/config/component/repeat.xml
   trunk/framework/src/main/config/component/support.xml
Log:


Modified: trunk/framework/src/main/config/component/commandButton.xml
===================================================================
--- trunk/framework/src/main/config/component/commandButton.xml	2007-05-04 21:05:27 UTC (rev 175)
+++ trunk/framework/src/main/config/component/commandButton.xml	2007-05-05 17:20:48 UTC (rev 176)
@@ -100,5 +100,10 @@
 			<classname>int</classname>
 			<description>Timeout ( in ms ) for request.</description>
 		</property>
+		<property>
+			<name>actionExpression</name>
+			<classname>java.lang.String</classname>
+			<description>The action method binding expression.</description>
+		</property>		
 	</component>     
 </components>
\ No newline at end of file

Modified: trunk/framework/src/main/config/component/commandLink.xml
===================================================================
--- trunk/framework/src/main/config/component/commandLink.xml	2007-05-04 21:05:27 UTC (rev 175)
+++ trunk/framework/src/main/config/component/commandLink.xml	2007-05-05 17:20:48 UTC (rev 176)
@@ -81,5 +81,10 @@
 			<classname>int</classname>
 			<description>Timeout ( in ms ) for request.</description>
 		</property>
+		<property>
+			<name>actionExpression</name>
+			<classname>java.lang.String</classname>
+			<description>The action method binding expression.</description>
+		</property>			
 	</component>     
 </components>
\ No newline at end of file

Modified: trunk/framework/src/main/config/component/form.xml
===================================================================
--- trunk/framework/src/main/config/component/form.xml	2007-05-04 21:05:27 UTC (rev 175)
+++ trunk/framework/src/main/config/component/form.xml	2007-05-05 17:20:48 UTC (rev 176)
@@ -53,6 +53,11 @@
 			<classname>int</classname>
 			<description>Timeout ( in ms ) for request.</description>
 		</property>
+		<property>
+			<name>prependId</name>
+			<classname>java.lang.String</classname>
+			<description>The flag indicating whether or not this form should prepend its id to its descendent id during the clientId generation process. If this flag is not set, the default value is true.</description>
+		</property>		
 	</component>
 	<component generate="false">
 		<name>javax.faces.HtmlCommandLink</name>
@@ -93,5 +98,21 @@
 		&ui_command_attributes;
 		&html_anchor_attributes;
 		&html_events;
+		<property>
+			<name>actionExpression</name>
+			<classname>java.lang.String</classname>
+			<description>The action method binding expression.</description>
+		</property>
+		<property>
+        <name>disabled</name>
+        <classname>boolean</classname>
+        <description>When set for a form control, this boolean attribute disables the control for user input.</description>
+    </property> 
+		<property>
+			<name>actionExpression</name>
+			<classname>java.lang.String</classname>
+			<description>The action method binding expression.</description>
+		</property>
+		
 	</component>     
 </components>
\ No newline at end of file

Modified: trunk/framework/src/main/config/component/function.xml
===================================================================
--- trunk/framework/src/main/config/component/function.xml	2007-05-04 21:05:27 UTC (rev 175)
+++ trunk/framework/src/main/config/component/function.xml	2007-05-05 17:20:48 UTC (rev 176)
@@ -58,5 +58,10 @@
 			<name>value</name>
 			<classname>java.lang.Object</classname>
 		</property>
+		<property>
+			<name>actionExpression</name>
+			<classname>java.lang.String</classname>
+			<description>The action method binding expression.</description>
+		</property>			
 	</component>
 </components>
\ No newline at end of file

Modified: trunk/framework/src/main/config/component/mediaOutput.xml
===================================================================
--- trunk/framework/src/main/config/component/mediaOutput.xml	2007-05-04 21:05:27 UTC (rev 175)
+++ trunk/framework/src/main/config/component/mediaOutput.xml	2007-05-05 17:20:48 UTC (rev 176)
@@ -147,22 +147,23 @@
 		<property>
 			<name>cacheable</name>
 			<classname>boolean</classname>
-			<description>cacheable</description>
+			<description>If "true", the resource is cached (on the server and the client sides).</description>
 		</property>
 		<property>
 			<name>expires</name>
 			<classname>java.util.Date</classname>
-			<description>expires</description>
+			<description>The attribute allows to manage caching and defines the period after which a resource is reloaded.</description>
 		</property>
 		<property>
 			<name>session</name>
 			<classname>boolean</classname>
-			<description>session</description>
+			<description>If "true", a session for an object generation is restored.</description>
 		</property>
 		<property>
 			<name>lastModified</name>
 			<classname>java.util.Date</classname>
-			<description>lastModified</description>
+			<description>The attribute allows to manage caching. A browser can send request with the header "If-Modified-Since" for necessity of object reloading. If time of modification is earlier, then the framework doesn't call generation and return code 304.
+			</description>
 		</property>
 	</component>     
 </components>
\ No newline at end of file

Modified: trunk/framework/src/main/config/component/poll.xml
===================================================================
--- trunk/framework/src/main/config/component/poll.xml	2007-05-04 21:05:27 UTC (rev 175)
+++ trunk/framework/src/main/config/component/poll.xml	2007-05-05 17:20:48 UTC (rev 176)
@@ -49,6 +49,11 @@
 		&ui_command_attributes;
 		&ajax_component_attributes;
 		<property>
+			<name>actionExpression</name>
+			<classname>java.lang.String</classname>
+			<description>The action method binding expression.</description>
+		</property>			
+		<property>
 			<name>onsubmit</name>
 			<classname>java.lang.String</classname>
 			<description>

Modified: trunk/framework/src/main/config/component/push.xml
===================================================================
--- trunk/framework/src/main/config/component/push.xml	2007-05-04 21:05:27 UTC (rev 175)
+++ trunk/framework/src/main/config/component/push.xml	2007-05-05 17:20:48 UTC (rev 176)
@@ -57,8 +57,13 @@
             User bean must register this listener and send EventObject to this listener on ready.
         </description>
         <methodargs>java.util.EventListener.class</methodargs>
-    </property>
+    </property>
 		<property>
+			<name>actionExpression</name>
+			<classname>java.lang.String</classname>
+			<description>The action method binding expression.</description>
+		</property>	
+		<property>
 			<name>onsubmit</name>
 			<classname>java.lang.String</classname>
 			<description>

Modified: trunk/framework/src/main/config/component/repeat.xml
===================================================================
--- trunk/framework/src/main/config/component/repeat.xml	2007-05-04 21:05:27 UTC (rev 175)
+++ trunk/framework/src/main/config/component/repeat.xml	2007-05-05 17:20:48 UTC (rev 176)
@@ -48,21 +48,29 @@
 			<description>varState</description>
 		</property>
 		<property>
+			<name>componentState</name>
+			<classname>java.lang.String</classname>
+			<description>It defines EL-binding  for a component state for saving or redefinition.</description>
+		</property>		
+		<property>
+			<name>stateVar</name>
+			<classname>java.lang.String</classname>
+			<description>The attribute  provides access to a component state on the client side.</description>
+		</property>		
+		<property>
 			<name>value</name>
 			<classname>java.lang.String</classname>
 			<description>The current value for this component.</description>
 		</property>
 		<property>
-			<name>componentState</name>
+			<name>ajaxKeys</name>
 			<classname>java.lang.String</classname>
-			<description>componentState</description>
+			<description>This attribute defines strings that are updated after an AJAX request.</description>
 		</property>
-
-
 		<property>
-			<name>ajaxKeys</name>
+			<name>rowKeyVar</name>
 			<classname>java.lang.String</classname>
-			<description>This attribute defines strings that are updated after an AJAX request.</description>
+			<description>The attribute  provides access to a row key in a Request scope.</description>
 		</property>
 		<property hidden="true">
 			<name>rowKey</name>

Modified: trunk/framework/src/main/config/component/support.xml
===================================================================
--- trunk/framework/src/main/config/component/support.xml	2007-05-04 21:05:27 UTC (rev 175)
+++ trunk/framework/src/main/config/component/support.xml	2007-05-05 17:20:48 UTC (rev 176)
@@ -76,6 +76,11 @@
 		&ui_command_attributes;
 		&ajax_component_attributes;
 		<property>
+			<name>actionExpression</name>
+			<classname>java.lang.String</classname>
+			<description>The action method binding expression.</description>
+		</property>			
+		<property>
 			<name>onsubmit</name>
 			<classname>java.lang.String</classname>
 			<description>




More information about the ajax4jsf-svn-commits mailing list