You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2008/06/17 19:37:07 UTC

svn commit: r668764 - in /myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad: ./ includes/

Author: matzew
Date: Tue Jun 17 10:37:07 2008
New Revision: 668764

URL: http://svn.apache.org/viewvc?rev=668764&view=rev
Log:
setting some default values for immediate (for tooling support)

Modified:
    myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Command.xml
    myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/EditableValue.xml
    myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/NavigationTree.xml
    myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Page.xml
    myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Poll.xml
    myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Progress.xml
    myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/SelectRange.xml
    myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/ShowDetail.xml
    myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/includes/CommonTableAttrs.xml

Modified: myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Command.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Command.xml?rev=668764&r1=668763&r2=668764&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Command.xml (original)
+++ myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Command.xml Tue Jun 17 10:37:07 2008
@@ -1,155 +1,156 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
-	   
--->
-<faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee"
-              xmlns:tr="http://myfaces.apache.org/trinidad"
-              xmlns:xi="http://www.w3.org/2001/XInclude"
-              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
-              xmlns:mafp="http://myfaces.apache.org/maven-trinidad-plugin"
-              xmlns:xhtml="http://www.w3.org/1999/xhtml">
-  <component>
-    <description><![CDATA[UIXCommand is a base abstraction for
-          components that implement ActionSource and DialogSource.]]>
-    </description>
-    <icon>
-      <!-- small-icon>/org/apache/myfaces/trinidadinternal/metadata/icons/command.png</small-icon -->
-    </icon>
-    <component-type>org.apache.myfaces.trinidad.Command</component-type>
-    <component-class>org.apache.myfaces.trinidad.component.UIXCommand</component-class>
-    <property>
-      <description><![CDATA[a reference to an action method sent by the command component,
-              or the static outcome of an action. If the action starts with "dialog:",
-              useWindow attribute must be set to true.]]>
-      </description>
-      <property-name>action</property-name>
-      <property-class>javax.faces.el.MethodBinding</property-class>
-      <property-extension>
-        <mfp:method-binding-signature>
-          <mfp:return-type>java.lang.String</mfp:return-type>
-        </mfp:method-binding-signature>
-        <mfp:property-metadata>
-          <mfp:preferred>true</mfp:preferred>
-        </mfp:property-metadata>
-        <mfp:state-holder>yes</mfp:state-holder>
-      </property-extension>
-    </property>
-    <property>
-      <description><![CDATA[a method reference to an action listener]]></description>
-      <property-name>actionListener</property-name>
-      <property-class>javax.faces.el.MethodBinding</property-class>
-      <property-extension>
-        <mfp:method-binding-signature>
-          <mfp:parameter-type>javax.faces.event.ActionEvent</mfp:parameter-type>
-          <mfp:return-type>void</mfp:return-type>
-        </mfp:method-binding-signature>
-        <mfp:property-metadata>
-          <mfp:preferred>true</mfp:preferred>
-        </mfp:property-metadata>
-        <mfp:state-holder>yes</mfp:state-holder>
-      </property-extension>
-    </property>
-    <property>
-      <description><![CDATA[a method reference to a return listener.This method
-      is used to process dialog returnEvents which are generated as a result of either
-      calling org.apache.myfaces.trinidad.context.RequestContext.returnFromDialog
-      directly or declaratively through the use of a returnActionListener tag.]]></description>
-      <property-name>returnListener</property-name>
-      <property-class>javax.faces.el.MethodBinding</property-class>
-      <property-extension>
-        <mfp:method-binding-signature>
-          <mfp:parameter-type>org.apache.myfaces.trinidad.event.ReturnEvent</mfp:parameter-type>
-          <mfp:return-type>void</mfp:return-type>
-        </mfp:method-binding-signature>
-        <mfp:property-metadata>
-          <mfp:preferred>true</mfp:preferred>
-        </mfp:property-metadata>
-        <mfp:state-holder>yes</mfp:state-holder>
-      </property-extension>
-    </property>
-    <property>
-      <description><![CDATA[a method reference to a launch listener]]></description>
-      <property-name>launchListener</property-name>
-      <property-class>javax.faces.el.MethodBinding</property-class>
-      <property-extension>
-        <mfp:method-binding-signature>
-          <mfp:parameter-type>org.apache.myfaces.trinidad.event.LaunchEvent</mfp:parameter-type>
-          <mfp:return-type>void</mfp:return-type>
-        </mfp:method-binding-signature>
-        <mfp:property-metadata>
-          <mfp:preferred>true</mfp:preferred>
-        </mfp:property-metadata>
-        <mfp:state-holder>yes</mfp:state-holder>
-      </property-extension>
-    </property>
-    <property>
-      <description><![CDATA[whether data validation - client-side or
-            server-side -
-          will be skipped when
-          events are generated by this component.
-
-          When immediate is true, the command's action and
-          ActionListeners, including the default ActionListener
-          provided by the JavaServer Faces implementation,
-          will be executed during Apply Request Values phase
-          of the request processing lifecycle, rather than
-          waiting until the Invoke Application phase.  Because
-          validation runs during Process Validators (after
-          Apply Request Values, but before Invoke Application),
-          setting immediate to true will skip validation.]]>
-      </description>
-      <property-name>immediate</property-name>
-      <property-class>boolean</property-class>
-    </property>
-    <component-extension>
-      <mfp:component-family>org.apache.myfaces.trinidad.Command</mfp:component-family>
-      <mfp:component-supertype>org.apache.myfaces.trinidad.ComponentBase</mfp:component-supertype>
-      <mfp:renderer-type>org.apache.myfaces.trinidad.Button</mfp:renderer-type>
-      <mfp:tag-class>org.apache.myfaces.trinidadinternal.taglib.UIXCommandTag</mfp:tag-class>
-      <mfp:author>Gabrielle Crawford</mfp:author>
-      <mfp:component-metadata>
-        <mfp:group>${md:getTranslatedString("PALETTE_INPUT")}</mfp:group>
-      </mfp:component-metadata>
-      <mfp:tag-class-modifier>abstract</mfp:tag-class-modifier>
-      <mfp:event>
-        <mfp:description>Event delivered when the "action" of the component has been
-invoked;  for example, by clicking on a button.  The action may result
-in page navigation.
-        </mfp:description>
-        <mfp:event-type>javax.faces.Action</mfp:event-type>
-        <mfp:event-delivery-phase>Invoke Application</mfp:event-delivery-phase>
-        <mfp:event-delivery-phase>Apply Request Values</mfp:event-delivery-phase>
-      </mfp:event>
-      <mfp:event>
-        <mfp:description>Event delivered when the dialog has completed successfully.</mfp:description>
-        <mfp:event-type>org.apache.myfaces.trinidad.Return</mfp:event-type>
-        <mfp:event-delivery-phase>Apply Request Values</mfp:event-delivery-phase>
-      </mfp:event>
-      <mfp:event>
-        <mfp:description>Event delivered to prompt the command to launch a dialog.</mfp:description>
-        <mfp:event-type>org.apache.myfaces.trinidad.Launch</mfp:event-type>
-        <mfp:event-delivery-phase>Invoke Application</mfp:event-delivery-phase>
-        <mfp:event-delivery-phase>Apply Request Values</mfp:event-delivery-phase>
-      </mfp:event>
-    </component-extension>
-  </component>
-</faces-config>
-
-
-
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+	   
+-->
+<faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee"
+              xmlns:tr="http://myfaces.apache.org/trinidad"
+              xmlns:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:mafp="http://myfaces.apache.org/maven-trinidad-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+  <component>
+    <description><![CDATA[UIXCommand is a base abstraction for
+          components that implement ActionSource and DialogSource.]]>
+    </description>
+    <icon>
+      <!-- small-icon>/org/apache/myfaces/trinidadinternal/metadata/icons/command.png</small-icon -->
+    </icon>
+    <component-type>org.apache.myfaces.trinidad.Command</component-type>
+    <component-class>org.apache.myfaces.trinidad.component.UIXCommand</component-class>
+    <property>
+      <description><![CDATA[a reference to an action method sent by the command component,
+              or the static outcome of an action. If the action starts with "dialog:",
+              useWindow attribute must be set to true.]]>
+      </description>
+      <property-name>action</property-name>
+      <property-class>javax.faces.el.MethodBinding</property-class>
+      <property-extension>
+        <mfp:method-binding-signature>
+          <mfp:return-type>java.lang.String</mfp:return-type>
+        </mfp:method-binding-signature>
+        <mfp:property-metadata>
+          <mfp:preferred>true</mfp:preferred>
+        </mfp:property-metadata>
+        <mfp:state-holder>yes</mfp:state-holder>
+      </property-extension>
+    </property>
+    <property>
+      <description><![CDATA[a method reference to an action listener]]></description>
+      <property-name>actionListener</property-name>
+      <property-class>javax.faces.el.MethodBinding</property-class>
+      <property-extension>
+        <mfp:method-binding-signature>
+          <mfp:parameter-type>javax.faces.event.ActionEvent</mfp:parameter-type>
+          <mfp:return-type>void</mfp:return-type>
+        </mfp:method-binding-signature>
+        <mfp:property-metadata>
+          <mfp:preferred>true</mfp:preferred>
+        </mfp:property-metadata>
+        <mfp:state-holder>yes</mfp:state-holder>
+      </property-extension>
+    </property>
+    <property>
+      <description><![CDATA[a method reference to a return listener.This method
+      is used to process dialog returnEvents which are generated as a result of either
+      calling org.apache.myfaces.trinidad.context.RequestContext.returnFromDialog
+      directly or declaratively through the use of a returnActionListener tag.]]></description>
+      <property-name>returnListener</property-name>
+      <property-class>javax.faces.el.MethodBinding</property-class>
+      <property-extension>
+        <mfp:method-binding-signature>
+          <mfp:parameter-type>org.apache.myfaces.trinidad.event.ReturnEvent</mfp:parameter-type>
+          <mfp:return-type>void</mfp:return-type>
+        </mfp:method-binding-signature>
+        <mfp:property-metadata>
+          <mfp:preferred>true</mfp:preferred>
+        </mfp:property-metadata>
+        <mfp:state-holder>yes</mfp:state-holder>
+      </property-extension>
+    </property>
+    <property>
+      <description><![CDATA[a method reference to a launch listener]]></description>
+      <property-name>launchListener</property-name>
+      <property-class>javax.faces.el.MethodBinding</property-class>
+      <property-extension>
+        <mfp:method-binding-signature>
+          <mfp:parameter-type>org.apache.myfaces.trinidad.event.LaunchEvent</mfp:parameter-type>
+          <mfp:return-type>void</mfp:return-type>
+        </mfp:method-binding-signature>
+        <mfp:property-metadata>
+          <mfp:preferred>true</mfp:preferred>
+        </mfp:property-metadata>
+        <mfp:state-holder>yes</mfp:state-holder>
+      </property-extension>
+    </property>
+    <property>
+      <description><![CDATA[whether data validation - client-side or
+            server-side -
+          will be skipped when
+          events are generated by this component.
+
+          When immediate is true, the command's action and
+          ActionListeners, including the default ActionListener
+          provided by the JavaServer Faces implementation,
+          will be executed during Apply Request Values phase
+          of the request processing lifecycle, rather than
+          waiting until the Invoke Application phase.  Because
+          validation runs during Process Validators (after
+          Apply Request Values, but before Invoke Application),
+          setting immediate to true will skip validation.]]>
+      </description>
+      <property-name>immediate</property-name>
+      <property-class>boolean</property-class>
+      <default-value>false</default-value>
+    </property>
+    <component-extension>
+      <mfp:component-family>org.apache.myfaces.trinidad.Command</mfp:component-family>
+      <mfp:component-supertype>org.apache.myfaces.trinidad.ComponentBase</mfp:component-supertype>
+      <mfp:renderer-type>org.apache.myfaces.trinidad.Button</mfp:renderer-type>
+      <mfp:tag-class>org.apache.myfaces.trinidadinternal.taglib.UIXCommandTag</mfp:tag-class>
+      <mfp:author>Gabrielle Crawford</mfp:author>
+      <mfp:component-metadata>
+        <mfp:group>${md:getTranslatedString("PALETTE_INPUT")}</mfp:group>
+      </mfp:component-metadata>
+      <mfp:tag-class-modifier>abstract</mfp:tag-class-modifier>
+      <mfp:event>
+        <mfp:description>Event delivered when the "action" of the component has been
+invoked;  for example, by clicking on a button.  The action may result
+in page navigation.
+        </mfp:description>
+        <mfp:event-type>javax.faces.Action</mfp:event-type>
+        <mfp:event-delivery-phase>Invoke Application</mfp:event-delivery-phase>
+        <mfp:event-delivery-phase>Apply Request Values</mfp:event-delivery-phase>
+      </mfp:event>
+      <mfp:event>
+        <mfp:description>Event delivered when the dialog has completed successfully.</mfp:description>
+        <mfp:event-type>org.apache.myfaces.trinidad.Return</mfp:event-type>
+        <mfp:event-delivery-phase>Apply Request Values</mfp:event-delivery-phase>
+      </mfp:event>
+      <mfp:event>
+        <mfp:description>Event delivered to prompt the command to launch a dialog.</mfp:description>
+        <mfp:event-type>org.apache.myfaces.trinidad.Launch</mfp:event-type>
+        <mfp:event-delivery-phase>Invoke Application</mfp:event-delivery-phase>
+        <mfp:event-delivery-phase>Apply Request Values</mfp:event-delivery-phase>
+      </mfp:event>
+    </component-extension>
+  </component>
+</faces-config>
+
+
+

Modified: myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/EditableValue.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/EditableValue.xml?rev=668764&r1=668763&r2=668764&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/EditableValue.xml (original)
+++ myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/EditableValue.xml Tue Jun 17 10:37:07 2008
@@ -39,6 +39,7 @@
       </description>
       <property-name>immediate</property-name>
       <property-class>boolean</property-class>
+      <default-value>false</default-value>
     </property>
     <property>
       <description><![CDATA[whether the component's value is currently valid]]></description>
@@ -153,3 +154,4 @@
 </faces-config>
 
 
+

Modified: myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/NavigationTree.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/NavigationTree.xml?rev=668764&r1=668763&r2=668764&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/NavigationTree.xml (original)
+++ myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/NavigationTree.xml Tue Jun 17 10:37:07 2008
@@ -107,6 +107,7 @@
       </description>
       <property-name>immediate</property-name>
       <property-class>boolean</property-class>
+      <default-value>false</default-value>
     </property>
     <component-extension>
       <mfp:component-family>org.apache.myfaces.trinidad.NavigationTree</mfp:component-family>

Modified: myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Page.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Page.xml?rev=668764&r1=668763&r2=668764&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Page.xml (original)
+++ myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Page.xml Tue Jun 17 10:37:07 2008
@@ -91,6 +91,7 @@
       </description>
       <property-name>immediate</property-name>
       <property-class>boolean</property-class>
+      <default-value>false</default-value>
     </property>
     <component-extension>
       <mfp:component-family>org.apache.myfaces.trinidad.Page</mfp:component-family>

Modified: myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Poll.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Poll.xml?rev=668764&r1=668763&r2=668764&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Poll.xml (original)
+++ myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Poll.xml Tue Jun 17 10:37:07 2008
@@ -43,6 +43,7 @@
       </description>
       <property-name>immediate</property-name>
       <property-class>boolean</property-class>
+      <default-value>false</default-value>
     </property>
     <property>
       <description><![CDATA[a method reference to a poll listener]]></description>
@@ -81,3 +82,4 @@
 </faces-config>
 
 
+

Modified: myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Progress.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Progress.xml?rev=668764&r1=668763&r2=668764&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Progress.xml (original)
+++ myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/Progress.xml Tue Jun 17 10:37:07 2008
@@ -101,6 +101,7 @@
       </description>
       <property-name>immediate</property-name>
       <property-class>boolean</property-class>
+      <default-value>false</default-value>
     </property>
     <component-extension>
       <mfp:component-family>org.apache.myfaces.trinidad.Progress</mfp:component-family>
@@ -134,3 +135,4 @@
 </faces-config>
 
 
+

Modified: myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/SelectRange.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/SelectRange.xml?rev=668764&r1=668763&r2=668764&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/SelectRange.xml (original)
+++ myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/SelectRange.xml Tue Jun 17 10:37:07 2008
@@ -70,6 +70,7 @@
       </description>
       <property-name>immediate</property-name>
       <property-class>boolean</property-class>
+      <default-value>false</default-value>
     </property>
     <property>
       <description><![CDATA[a method reference to a rangeChange listener that
@@ -155,3 +156,4 @@
 </faces-config>
 
 
+

Modified: myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/ShowDetail.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/ShowDetail.xml?rev=668764&r1=668763&r2=668764&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/ShowDetail.xml (original)
+++ myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/ShowDetail.xml Tue Jun 17 10:37:07 2008
@@ -73,6 +73,7 @@
       </description>
       <property-name>immediate</property-name>
       <property-class>boolean</property-class>
+      <default-value>false</default-value>
     </property>
     <property>
       <description><![CDATA[a method reference to a disclosure listener]]></description>
@@ -108,3 +109,4 @@
 </faces-config>
 
 
+

Modified: myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/includes/CommonTableAttrs.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/includes/CommonTableAttrs.xml?rev=668764&r1=668763&r2=668764&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/includes/CommonTableAttrs.xml (original)
+++ myfaces/trinidad/trunk/trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/includes/CommonTableAttrs.xml Tue Jun 17 10:37:07 2008
@@ -50,6 +50,7 @@
       </description>
       <property-name>immediate</property-name>
       <property-class>boolean</property-class>
+      <default-value>false</default-value>
     </property>
   </component>
 </faces-config>