You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2008/01/30 03:38:00 UTC

svn commit: r616599 [3/12] - in /myfaces/tomahawk/branches/1_2_0/build: ./ src/ src/main/ src/main/java-templates/ src/main/resources/ src/main/resources/META-INF/ src/main/resources/META-INF/maven-faces-plugin/ src/main/resources/META-INF/maven-faces-...

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_DataProperties.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_DataProperties.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_DataProperties.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_DataProperties.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,62 @@
+<?xml version="1.0" ?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xi="http://www.w3.org/2001/XInclude">
+    <component>
+        <!--value, var, rows, first-->
+        <property>
+			<description>An EL expression that specifies the data model that backs this table.  The value can be of any type.
+
+				A value of type DataModel is used directly.  Array-like parameters of type java.util.List, array of Object,
+				java.sql.ResultSet, or javax.servlet.jsp.jstl.sql.Result are wrapped in a DataModel.
+
+				Other values are wrapped in a DataModel as a single row.</description>
+			<property-name>value</property-name>
+            <property-class>java.lang.Object</property-class>
+            <property-extension>
+				<mfp:required>false</mfp:required>
+			</property-extension>
+		</property>
+		<property>
+			<description>Defines the name of the request-scope variable that will hold the current row during iteration.  This value must be a static value.</description>
+			<property-name>var</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+ 	                        <mfp:literal-only>true</mfp:literal-only>
+				<mfp:required>false</mfp:required>
+            </property-extension>
+		</property>
+		<property>
+			<description>The number of rows to be displayed.  Specify zero for all remaining rows in the table.</description>
+			<property-name>rows</property-name>
+            <property-class>int</property-class>
+            <property-extension>
+				<mfp:required>false</mfp:required>
+			</property-extension>
+		</property>
+		<property>
+			<description>The index of the first row to be displayed, where 0 is the first row.</description>
+			<property-name>first</property-name>
+            <property-class>int</property-class>
+            <property-extension>
+				<mfp:required>false</mfp:required>
+			</property-extension>
+		</property>
+
+    </component>
+</faces-config>

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_DataProperties.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_DataProperties.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_TableRendererProperties.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_TableRendererProperties.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_TableRendererProperties.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_TableRendererProperties.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,86 @@
+<?xml version="1.0" ?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xi="http://www.w3.org/2001/XInclude">
+    <component>
+        <!-- columnClasses, footerClass, headerClass, rowClasses, captionClass, captionStyle -->
+        <property>
+            <description>A comma separated list of CSS class names to apply to td elements in
+                each column. More than one class can be applied to a column by separing the classes
+                with a space. I there are less classes than the number of columns, apply the same
+                sequence of classes to the remaining columns. If there are more classes specified
+                than the number of columns, ignore the last classes
+            </description>
+            <property-name>columnClasses</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+        <property>
+            <description>The CSS class to be applied to footer cells.</description>
+            <property-name>footerClass</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+        <property>
+            <description>The CSS class to be applied to header cells.</description>
+            <property-name>headerClass</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+        <property>
+            <description>A comma separated list of CSS class names to apply to td elements in
+                each row. If tere are less classes than the number of rows, apply the same
+                sequence of classes to the remaining rows, so the pattern is repeated.
+                More than one class can be applied to a row by separing the classes
+                with a space.
+            </description>
+            <property-name>rowClasses</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+        <property>
+            <description>A comma separated list of CSS class names to apply to all captions.
+                If tere are less classes than the number of rows, apply the same
+                sequence of classes to the remaining captions, so the pattern is repeated.
+                More than one class can be applied to a row by separing the classes
+                with a space.
+            </description>
+            <property-name>captionClass</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+        <property>
+            <description>The CSS class to be applied to the Caption.</description>
+            <property-name>captionStyle</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+    </component>
+</faces-config>

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_TableRendererProperties.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/includes/ui/_TableRendererProperties.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/Component.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/Component.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/Component.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/Component.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,40 @@
+<?xml version="1.0" ?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xi="http://www.w3.org/2001/XInclude">
+    <component>
+        <component-type>javax.faces.Component</component-type>
+        <component-class>javax.faces.component.UIComponent</component-class>
+        <component-extension>
+            <mfp:component-class-modifier>abstract</mfp:component-class-modifier>
+        </component-extension>
+
+        <!-- id, binding, rendered-->
+        <xi:include href="../../includes/ui/_ComponentProperties.xml" xpointer="/faces-config/component/*"/>
+        
+        <property>
+            <property-name>transient</property-name>
+            <property-class>boolean</property-class>
+            <property-extension>
+                <mfp:literal-only>true</mfp:literal-only>
+                <mfp:transient>true</mfp:transient>
+                <mfp:tag-attribute-excluded>true</mfp:tag-attribute-excluded>
+            </property-extension>
+        </property>
+    </component>
+</faces-config>
\ No newline at end of file

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/Component.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/Component.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/ComponentBase.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/ComponentBase.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/ComponentBase.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/ComponentBase.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,30 @@
+<?xml version="1.0" ?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:f="http://java.sun.com/jsf/core"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <component-type>javax.faces.ComponentBase</component-type>
+        <component-class>javax.faces.component.UIComponentBase</component-class>
+        <component-extension>
+            <mfp:component-supertype>javax.faces.Component</mfp:component-supertype>
+            <mfp:tag-class>javax.faces.webapp.UIComponentELTag</mfp:tag-class>
+            <mfp:component-class-modifier>abstract</mfp:component-class-modifier>
+        </component-extension>
+    </component>
+</faces-config>

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/ComponentBase.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/ComponentBase.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIColumn.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIColumn.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIColumn.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIColumn.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.Column</component-type>
+        <component-class>javax.faces.component.UIColumn</component-class>
+        <description></description>
+
+        <component-extension>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+        </component-extension>
+    </component>
+
+</faces-config>
+

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIColumn.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIColumn.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UICommand.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UICommand.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UICommand.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UICommand.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- # ******************************************************************************** # -->
+        <!-- # value, action, actionListener, immediate                                         # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.Command</component-type>
+        <component-class>javax.faces.component.UICommand</component-class>
+        <description>UICommand is a base abstraction for components that implement ActionSource.</description>
+
+        <!-- value, action, actionListener, immediate-->
+        <xi:include href="../../includes/ui/_CommandProperties.xml" xpointer="/faces-config/component/*"/>
+        
+        <component-extension>
+            <mfp:component-family>javax.faces.Command</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Button</mfp:renderer-type>
+
+            <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>
+        </component-extension>
+    </component>
+</faces-config>
+

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UICommand.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UICommand.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIData.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIData.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIData.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIData.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- # ******************************************************************************** # -->
+        <!-- # value, var, rows, first                                                          # -->
+        <!-- #################################################################################### -->
+        <description><![CDATA[UIData is a base abstraction for components that holds Data.]]></description>
+        <component-type>javax.faces.Data</component-type>
+        <component-class>javax.faces.component.UIData</component-class>
+
+        <!--value, var, rows, first-->
+        <xi:include href="../../includes/ui/_DataProperties.xml" xpointer="/faces-config/component/*"/>
+
+        <component-extension>
+            <mfp:component-family>javax.faces.Data</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Table</mfp:renderer-type>
+        </component-extension>
+    </component>
+</faces-config>
+

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIData.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIData.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIForm.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIForm.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIForm.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIForm.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.Form</component-type>
+        <component-class>javax.faces.component.UIForm</component-class>
+        <description></description>
+
+		<property>
+			<description>Defines a flag indicating whether or not this form should prepend its id to its descendent's id during the clientId generation process. If this flag is not set, the default value is true.</description>
+			<property-name>prependId</property-name>
+            <property-class>boolean</property-class>
+            <property-extension>
+                <mfp:literal-only>false</mfp:literal-only>
+            </property-extension>
+		</property>
+
+        <component-extension>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Form</mfp:renderer-type>
+        </component-extension>
+    </component>
+
+</faces-config>
+

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIForm.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIForm.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIGrapic.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIGrapic.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIGrapic.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIGrapic.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- # ******************************************************************************** # -->
+        <!-- # value, url                                                                       # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.Graphic</component-type>
+        <component-class>javax.faces.component.UIGraphic</component-class>
+        <description>Displays a graphical image.</description>
+
+        <property>
+            <description>The value property of the UIGraphic</description>
+            <property-name>value</property-name>
+            <property-class>java.lang.Object</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+
+        <property>
+            <description>The image URL</description>
+            <property-name>url</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+
+        <component-extension>
+            <mfp:component-family>javax.faces.Graphic</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Image</mfp:renderer-type>
+        </component-extension>
+    </component>
+
+</faces-config>
+

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIGrapic.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIGrapic.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIInput.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIInput.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIInput.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIInput.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- #     value, converter                                                             # -->
+        <!-- # ******************************************************************************** # -->
+        <!-- # immediate, required, converterMessage, requiredMessage, validatorMessage,        # -->
+        <!-- # validator, valueChangeListener                                                   # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.Input</component-type>
+        <component-class>javax.faces.component.UIInput</component-class>
+        <description>UICommand is a base abstraction for components that implement ActionSource.</description>
+
+        <xi:include href="../../includes/ui/FacesImmediateProperty.xml" xpointer="/faces-config/component/*"/>
+        <xi:include href="../../includes/ui/FacesRequiredProperty.xml" xpointer="/faces-config/component/*"/>
+
+        <property>
+            <description>Text of the converter message.</description>
+            <property-name>converterMessage</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+        <property>
+            <description>Text which will be shown if a required value is not submitted.</description>
+            <property-name>requiredMessage</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+        <property>
+            <description>Validator Method, which should be invoked for validation.</description>
+            <property-name>validator</property-name>
+            <property-class>javax.faces.el.MethodBinding</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+                <mfp:method-binding-signature>
+                    <mfp:parameter-type>javax.faces.context.FacesContext</mfp:parameter-type>
+                    <mfp:parameter-type>javax.faces.component.UIComponent</mfp:parameter-type>
+                    <mfp:parameter-type>java.lang.Object</mfp:parameter-type>
+                    <mfp:return-type>void</mfp:return-type>
+                </mfp:method-binding-signature>
+                <mfp:state-holder>yes</mfp:state-holder>
+            </property-extension>
+        </property>
+        <property>
+            <description>Text which will be shown, if validation fails.</description>
+            <property-name>validatorMessage</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+        <property>
+            <description>A Method which is called when the value changed.</description>
+            <property-name>valueChangeListener</property-name>
+            <property-class>javax.faces.el.MethodBinding</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+                <mfp:method-binding-signature>
+                    <mfp:parameter-type>javax.faces.event.ValueChangeEvent</mfp:parameter-type>
+                    <mfp:return-type>void</mfp:return-type>
+                </mfp:method-binding-signature>
+                <mfp:state-holder>yes</mfp:state-holder>
+            </property-extension>
+        </property>
+
+        <property>
+            <description><![CDATA[whether the component's value is currently valid]]></description>
+            <property-name>valid</property-name>
+            <property-class>boolean</property-class>
+            <default-value>true</default-value>
+            <property-extension>
+                <mfp:tag-attribute-excluded>true</mfp:tag-attribute-excluded>
+            </property-extension>
+        </property>
+
+        <property>
+            <description>
+                <![CDATA[whether a local value is currently set.  If false, values are being retrieved from any attached ValueBinding]]>
+            </description>
+            <property-name>localValueSet</property-name>
+            <property-class>boolean</property-class>
+            <default-value>false</default-value>
+            <property-extension>
+                <mfp:tag-attribute-excluded>true</mfp:tag-attribute-excluded>
+            </property-extension>
+        </property>
+
+        <property>
+            <description><![CDATA[the current submitted value.  This value,
+if non-null, is set by the Renderer to store a possibly invalid value
+for later conversion or redisplay, and has not yet been converted
+into the proper type for this component instance.   This method
+should only be used by the decode() and validate() method
+of this component, or its corresponding Renderer;  however, user code
+may manually set it to null to erase any submitted value.]]>
+            </description>
+            <property-name>submittedValue</property-name>
+            <property-class>java.lang.Object</property-class>
+            <property-extension>
+                <mfp:tag-attribute-excluded>true</mfp:tag-attribute-excluded>
+            </property-extension>
+        </property>
+
+        <component-extension>
+            <mfp:component-family>javax.faces.Input</mfp:component-family>
+            <mfp:component-supertype>javax.faces.Output</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Text</mfp:renderer-type>
+
+            <mfp:event>
+                <mfp:description>The valueChange event is delivered when the value
+attribute is changed.
+                </mfp:description>
+                <mfp:event-type>javax.faces.ValueChange</mfp:event-type>
+            </mfp:event>
+        </component-extension>
+    </component>
+</faces-config>
+

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIInput.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIInput.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessage.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessage.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessage.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessage.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- # ******************************************************************************** # -->
+        <!-- # for, showDetail, showSummary                                                     # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.Message</component-type>
+        <component-class>javax.faces.component.UIMessage</component-class>
+        <description>UIMessage is the base component class for components
+that display a single message on behalf of a component.</description>
+
+        <property>
+            <description>The ID of the component the Message should be diplayed for.</description>
+            <property-name>for</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>true</mfp:required>
+            </property-extension>
+        </property>
+
+        <!--showDetail-->
+        <property>
+            <description>Indicates that details are shown.</description>
+            <property-name>showDetail</property-name>
+            <property-class>boolean</property-class>
+            <default-value>true</default-value>
+        </property>
+
+        <!--showSummary-->
+        <property>
+            <description>Indicates that the summary should be included into the Message.</description>
+            <property-name>showSummary</property-name>
+            <property-class>boolean</property-class>
+            <default-value>false</default-value>
+        </property>
+
+        <component-extension>
+            <mfp:component-family>javax.faces.Message</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Message</mfp:renderer-type>
+        </component-extension>
+    </component>
+</faces-config>
\ No newline at end of file

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessage.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessage.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessages.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessages.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessages.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessages.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- # ******************************************************************************** # -->
+        <!-- # globalOnly, showDetail, showSummary                                              # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.Messages</component-type>
+        <component-class>javax.faces.component.UIMessages</component-class>
+        <description>UIMessage is the base component class for components
+that display a multiple messages on behalf of a component.</description>
+
+        <property>
+            <description>Indicates that only global messages should be diplayed</description>
+            <property-name>globalOnly</property-name>
+            <property-class>boolean</property-class>
+            <default-value>false</default-value>
+        </property>
+
+        <!--showDetail-->
+        <property>
+            <description>Indicates that details are shown.</description>
+            <property-name>showDetail</property-name>
+            <property-class>boolean</property-class>
+            <default-value>false</default-value>
+        </property>
+
+        <!--showSummary-->
+        <property>
+            <description>Indicates that the summary should be included into the Message.</description>
+            <property-name>showSummary</property-name>
+            <property-class>boolean</property-class>
+            <default-value>true</default-value>
+        </property>
+        <component-extension>
+            <mfp:component-family>javax.faces.Messages</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Messages</mfp:renderer-type>
+        </component-extension>
+    </component>
+</faces-config>
\ No newline at end of file

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessages.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIMessages.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UINamingContainer.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UINamingContainer.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UINamingContainer.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UINamingContainer.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,29 @@
+<?xml version="1.0" ?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:f="http://java.sun.com/jsf/core"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <component-type>javax.faces.NamingContainer</component-type>
+        <component-class>javax.faces.component.UINamingContainer</component-class>
+        <component-extension>
+            <mfp:component-family>javax.faces.NamingContainer</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+        </component-extension>
+    </component>
+</faces-config>

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UINamingContainer.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UINamingContainer.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- # ******************************************************************************** # -->
+        <!-- # value, converter                                                                 # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.Output</component-type>
+        <component-class>javax.faces.component.UIOutput</component-class>
+        <description>UIOutput displays a value to the user</description>
+
+        <property>
+            <description>The initial value of this component.</description>
+            <property-name>value</property-name>
+            <property-class>java.lang.Object</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+			</property-extension>
+        </property>
+
+        <property>
+            <description>An Instance ot the Converter</description>
+            <property-name>converter</property-name>
+            <property-class>javax.faces.convert.Converter</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+			</property-extension>
+        </property>
+
+        <component-extension>
+            <mfp:component-family>javax.faces.Output</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Text</mfp:renderer-type>
+        </component-extension>
+    </component>
+</faces-config>
\ No newline at end of file

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIOutput.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIPanel.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIPanel.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIPanel.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIPanel.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,29 @@
+<?xml version="1.0" ?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:f="http://java.sun.com/jsf/core"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <component-type>javax.faces.Panel</component-type>
+        <component-class>javax.faces.component.UIPanel</component-class>
+        <component-extension>
+            <mfp:component-family>javax.faces.Panel</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+        </component-extension>
+    </component>
+</faces-config>
\ No newline at end of file

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIPanel.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIPanel.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIParameter.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIParameter.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIParameter.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIParameter.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- # ******************************************************************************** # -->
+        <!-- # name, value                                                                      # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.Parameter</component-type>
+        <component-class>javax.faces.component.UIParameter</component-class>
+
+        <property>
+            <description>The value of this component.</description>
+            <property-name>value</property-name>
+            <property-class>java.lang.Object</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+			</property-extension>
+        </property>
+
+        <property>
+            <description>The name under which the value is stored.</description>
+            <property-name>name</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+			</property-extension>
+        </property>
+
+        <component-extension>
+            <mfp:component-family>javax.faces.Parameter</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+        </component-extension>
+    </component>
+</faces-config>
\ No newline at end of file

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIParameter.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UIParameter.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectBoolean.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectBoolean.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectBoolean.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectBoolean.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- #     value, converter                                                             # -->
+        <!-- #     immediate, required, converterMessage, requiredMessage, validatorMessage,    # -->
+        <!-- #     validator, valueChangeListener                                               # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.SelectBoolean</component-type>
+        <component-class>javax.faces.component.UISelectBoolean</component-class>
+        <description>UISelectBoolean is a Comonent which represents a boolean value.</description>
+        
+        <component-extension>
+            <mfp:component-family>javax.faces.SelectBoolean</mfp:component-family>
+            <mfp:component-supertype>javax.faces.Input</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Checkbox</mfp:renderer-type>
+        </component-extension>
+    </component>
+</faces-config>
\ No newline at end of file

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectBoolean.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectBoolean.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItem.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItem.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItem.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItem.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- # ******************************************************************************** # -->
+        <!-- # value, itemDisabled, itemEscaped, itemDescription, itemLabel, itemValue          # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.SelectItem</component-type>
+        <component-class>javax.faces.component.UISelectItem</component-class>
+        <description>UISelectItem should be nestetd inside a UISelectMany or UISelectOne component,
+and results in  the addition of a SelectItem instance to the list of available options
+for the parent component</description>
+
+        <property>
+            <description>The initial value of this component.</description>
+            <property-name>value</property-name>
+            <property-class>java.lang.Object</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+			</property-extension>
+        </property>
+
+        <property>
+            <description>Determine whether this item can be chosen by the user.
+When true, this item cannot be chosen by the user. If this method is
+ever called, then any EL-binding for the disabled property will be ignored.</description>
+            <property-name>itemDisabled</property-name>
+            <property-class>boolean</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+
+        <property>
+            <description>The escape setting for the label of this selection item.</description>
+            <property-name>itemEscaped</property-name>
+            <property-class>boolean</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+
+        <property>
+            <description>For use in development tools.</description>
+            <property-name>itemDescription</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+
+        <property>
+            <description>The string which will be presented to the user for this option.</description>
+            <property-name>itemLabel</property-name>
+            <property-class>java.lang.String</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+
+        <property>
+            <description>The value for this Item.</description>
+            <property-name>itemValue</property-name>
+            <property-class>java.lang.Object</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+            </property-extension>
+        </property>
+
+        <component-extension>
+            <mfp:component-family>javax.faces.SelectItem</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+        </component-extension>
+    </component>
+</faces-config>
\ No newline at end of file

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItem.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItem.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItems.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItems.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItems.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItems.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- # ******************************************************************************** # -->
+        <!-- # value                                                                            # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.SelectItems</component-type>
+        <component-class>javax.faces.component.UISelectItems</component-class>
+        <description>UISelectItems should be nestetd inside a UISelectMany or UISelectOne component,
+and results in  the addition of one ore more SelectItem instance to the list of available options
+for the parent component</description>
+
+        <property>
+            <description>The initial value of this component.</description>
+            <property-name>value</property-name>
+            <property-class>java.lang.Object</property-class>
+            <property-extension>
+                <mfp:required>false</mfp:required>
+			</property-extension>
+        </property>       
+
+        <component-extension>
+            <mfp:component-family>javax.faces.SelectItems</mfp:component-family>
+            <mfp:component-supertype>javax.faces.ComponentBase</mfp:component-supertype>
+        </component-extension>
+    </component>
+</faces-config>
\ No newline at end of file

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItems.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectItems.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectMany.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectMany.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectMany.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectMany.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- #     value, converter                                                             # -->
+        <!-- #     immediate, required, converterMessage, requiredMessage, validatorMessage,    # -->
+        <!-- #     validator, valueChangeListener                                               # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.SelectMany</component-type>
+        <component-class>javax.faces.component.UISelectMany</component-class>
+        <description>UISelectMany is a Component which represents a user choice of 0..n values.</description>
+
+        <component-extension>
+            <mfp:component-family>javax.faces.SelectMany</mfp:component-family>
+            <mfp:component-supertype>javax.faces.Input</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Listbox</mfp:renderer-type>
+        </component-extension>
+    </component>
+</faces-config>

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectMany.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectMany.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectOne.xml
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectOne.xml?rev=616599&view=auto
==============================================================================
--- myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectOne.xml (added)
+++ myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectOne.xml Tue Jan 29 18:37:44 2008
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation.
+
+  Licensed 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:xi="http://www.w3.org/2001/XInclude"
+              xmlns:mfp="http://myfaces.apache.org/maven-faces-plugin"
+              xmlns:xhtml="http://www.w3.org/1999/xhtml">
+    <component>
+        <!-- ################################ defined Properties ################################ -->
+        <!-- # from super classes:                                                              # -->
+        <!-- #     id, binding, rendered, transient                                             # -->
+        <!-- #     value, converter                                                             # -->
+        <!-- #     immediate, required, converterMessage, requiredMessage, validatorMessage,    # -->
+        <!-- #     validator, valueChangeListener                                               # -->
+        <!-- #################################################################################### -->
+        <component-type>javax.faces.SelectOne</component-type>
+        <component-class>javax.faces.component.UISelectOne</component-class>
+        <description>UISelectOne is a Component which represents a user choice of 0..1 value.</description>
+
+        <component-extension>
+            <mfp:component-family>javax.faces.SelectOne</mfp:component-family>
+            <mfp:component-supertype>javax.faces.Input</mfp:component-supertype>
+            <mfp:renderer-type>javax.faces.Menu</mfp:renderer-type>
+        </component-extension>
+    </component>
+</faces-config>

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectOne.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tomahawk/branches/1_2_0/build/src/main/resources/META-INF/maven-faces-plugin/components/javax/faces/UISelectOne.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL