JBoss Rich Faces SVN: r18923 - modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-08-23 03:05:58 -0400 (Mon, 23 Aug 2010)
New Revision: 18923
Added:
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jajax-a4jajax_example.xml_sample
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jkeepAlive-a4jkeepAlive_example.xml_sample
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jlog-a4jlog_example.xml_sample
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jstatus-Basic_a4jstatus_usage.xml_sample
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-data-Data_reference_example.xml_sample
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-limitRender-Rendering_example.xml_sample
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-render-render_example.xml_sample
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Attaching_richcomponentControl_to_a_component.xml_sample
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Using_parameters-0.xml_sample
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Using_parameters-1.xml_sample
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-richcomponentControl_basic_usage.xml_sample
Log:
Adding extracted code samples
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jajax-a4jajax_example.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jajax-a4jajax_example.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jajax-a4jajax_example.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1,6 @@
+<h:panelGrid columns="2">
+ <h:inputText id="myinput" value="#{userBean.name}">
+ <a4j:ajax event="onkeyup" reRender="outtext" />
+ </h:inputText>
+ <h:outputText id="outtext" value="#{userBean.name}" />
+</h:panelGrid>
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jkeepAlive-a4jkeepAlive_example.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jkeepAlive-a4jkeepAlive_example.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jkeepAlive-a4jkeepAlive_example.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1 @@
+<a4j:keepAlive beanName="testBean" />
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jlog-a4jlog_example.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jlog-a4jlog_example.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jlog-a4jlog_example.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1 @@
+<a4j:log level="ALL" popup="false" width="400" height="200" />
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jstatus-Basic_a4jstatus_usage.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jstatus-Basic_a4jstatus_usage.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-a4jstatus-Basic_a4jstatus_usage.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1 @@
+<a4j:status startText="In progress..." stopText="Complete" />
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-data-Data_reference_example.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-data-Data_reference_example.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-data-Data_reference_example.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1 @@
+<a4j:commandButton value="Update" data="#{userBean.name}" oncomplete="showTheName(data.name)" />
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-limitRender-Rendering_example.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-limitRender-Rendering_example.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-limitRender-Rendering_example.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1,12 @@
+<h:form id="form1">
+ <a4j:commandButton value="Normal rendering" render="infoBlock" />
+ <a4j:commandButton value="Limited rendering" render="infoBlock" limitRender="true" />
+</h:form>
+
+<h:panelGrid id="infoBlock">
+ ...
+</h:panelGrid>
+
+<a4j:outputPanel ajaxRendered="true">
+ <h:messages />
+</a4j:outputPanel>
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-render-render_example.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-render-render_example.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-render-render_example.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1,14 @@
+<h:form id="form1">
+ <a4j:commandButton value="Basic reference" render="infoBlock, infoBlock2" />
+ <a4j:commandButton value="Specific reference" render=":infoBlock,:sv:infoBlock2" />
+</h:form>
+
+<h:panelGrid id="infoBlock">
+ ...
+</h:panelGrid>
+
+<f:subview id="sv">
+ <h:panelGrid id="infoBlock2">
+ ...
+ </h:panelGrid>
+</f:subview>
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Attaching_richcomponentControl_to_a_component.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Attaching_richcomponentControl_to_a_component.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Attaching_richcomponentControl_to_a_component.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1 @@
+<rich:componentControl attachTo="doExpandCalendarID" event="onclick" operation="Expand" for="ccCalendarID" />
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Using_parameters-0.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Using_parameters-0.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Using_parameters-0.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1 @@
+<rich:componentControl name="func" event="onRowClick" for="menu" operation="show" params="#{car.model}"/>
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Using_parameters-1.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Using_parameters-1.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-Using_parameters-1.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1,3 @@
+<rich:componentControl event="onRowClick" for="menu" operation="show">
+ <f:param value="#{car.model}" name="model"/>
+</rich:componentControl>
Added: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-richcomponentControl_basic_usage.xml_sample
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-richcomponentControl_basic_usage.xml_sample (rev 0)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richcomponentControl-richcomponentControl_basic_usage.xml_sample 2010-08-23 07:05:58 UTC (rev 18923)
@@ -0,0 +1,4 @@
+<h:commandButton value="Show Modal Panel">
+ <!--componentControl is attached to the commandButton-->
+ <rich:componentControl for="ccModalPanelID" event="onclick" operation="show"/>
+</h:commandButton>
15 years, 1 month
JBoss Rich Faces SVN: r18922 - modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-08-23 03:04:53 -0400 (Mon, 23 Aug 2010)
New Revision: 18922
Modified:
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Actions.xml
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Common_Ajax_attributes.xml
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Containers.xml
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Processing_management.xml
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Resources.xml
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Selection_and_ordering.xml
modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Validation.xml
Log:
Updated with clearer sectioning
Modified: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Actions.xml
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Actions.xml 2010-08-23 03:50:06 UTC (rev 18921)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Actions.xml 2010-08-23 07:04:53 UTC (rev 18922)
@@ -8,70 +8,80 @@
</para>
<section id="sect-Component_Reference-Actions-a4jactionParam">
<title><sgmltag><a4j:actionParam></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.ActionParameter</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HTMLActionParameter</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:actionParam></sgmltag> behavior combines the functionality of the JavaServer Faces (<acronym>JSF</acronym>) components <sgmltag><f:param></sgmltag> and <sgmltag><f:actionListener></sgmltag>.
</para>
- <para>
- Basic usage of the <sgmltag><a4j:actionParam></sgmltag> requires three main attributes:
- </para>
- <itemizedlist>
- <listitem>
+
+ <section id="sect-Component_Reference-a4jactionParam-Basic_usage">
+ <title>Basic usage</title>
+ <para>
+ Basic usage of the <sgmltag><a4j:actionParam></sgmltag> requires three main attributes:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <varname>name</varname>, for the name of the parameter;
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <varname>value</varname>, for the initial value of the parameter; and
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <varname>assignTo</varname>, for defining the bean property. The property will be updated if the parent command component performs an action event during the <emphasis>Process Request</emphasis> phase.
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>
+ <xref linkend="exam-Component_Reference-a4jactionParam-a4jactionParam_example" /> shows a simple implementation along with the accompanying managed bean.
+ </para>
+ <example id="exam-Component_Reference-a4jactionParam-a4jactionParam_example">
+ <title><sgmltag><a4j:actionParam></sgmltag> example</title>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jactionParam-a4jactionParam_example.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ <programlisting language="Java" role="JAVA"><xi:include href="extras/exam-Component_Reference-a4jactionParam-a4jactionParam_example.js" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
<para>
- <varname>name</varname>, for the name of the parameter;
+ When the <guibutton>Set name to Alex</guibutton> button is pressed, the application sets the <varname>name</varname> parameter of the bean to <literal>Alex</literal>, and displays the name in the output field.
</para>
- </listitem>
- <listitem>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-a4jactionParam-Interoperability">
+ <title>Interoperability</title>
+ <para>
+ The <sgmltag><a4j:actionParam></sgmltag> behavior can be used with non-Ajax components in addition to Ajax components. In this way, data model values can be updated without an JavaScript code on the server side.
+ </para>
+ <para>
+ The <varname>converter</varname> attribute can be used to specify how to convert the value before it is submitted to the data model. The property is assigned the new value during the <emphasis>Update Model</emphasis> phase.
+ </para>
+ <note>
+ <title>Validation failure</title>
<para>
- <varname>value</varname>, for the initial value of the parameter; and
+ If the validation of the form fails, the <emphasis>Update Model</emphasis> phase will be skipped and the property will not be updated.
</para>
- </listitem>
- <listitem>
- <para>
- <varname>assignTo</varname>, for defining the bean property. The property will be updated if the parent command component performs an action event during the <emphasis>Process Request</emphasis> phase.
- </para>
- </listitem>
- </itemizedlist>
- <para>
- <xref linkend="exam-Component_Reference-a4jactionParam-a4jactionParam_example" /> shows a simple implementation along with the accompanying managed bean. When the <guibutton>Set name to Alex</guibutton> button is pressed, the application sets the <varname>name</varname> parameter of the bean to <literal>Alex</literal>, and displays the name in the output field.
- </para>
- <example id="exam-Component_Reference-a4jactionParam-a4jactionParam_example">
- <title><sgmltag><a4j:actionParam></sgmltag> example</title>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jactionParam-a4jactionParam_example.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
-
-<programlisting language="Java" role="JAVA">
-<xi:include href="extras/exam-Component_Reference-a4jactionParam-a4jactionParam_example.js" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- </example>
- <para>
- The <sgmltag><a4j:actionParam></sgmltag> behavior can be used with non-Ajax components in addition to Ajax components. In this way, data model values can be updated without an JavaScript code on the server side.
- </para>
- <para>
- The <varname>converter</varname> attribute can be used to specify how to convert the value before it is submitted to the data model. The property is assigned the new value during the <emphasis>Update Model</emphasis> phase.
- </para>
- <note>
- <title>Validation failure</title>
+ </note>
<para>
- If the validation of the form fails, the <emphasis>Update Model</emphasis> phase will be skipped and the property will not be updated.
+ Variables from JavaScript functions can be used for the <varname>value</varname> attribute. In such an implementation, the <varname>noEscape</varname> attribute should be set to <literal>true</literal>. Using <code>noEscape="true"</code>, the <varname>value</varname> attribute can contain any JavaScript expression or JavaScript function invocation, and the result will be sent to the server as the <varname>value</varname> attribute.
</para>
- </note>
- <para>
- Variables from JavaScript functions can be used for the <varname>value</varname> attribute. In such an implementation, the <varname>noEscape</varname> attribute should be set to <literal>true</literal>. Using <code>noEscape="true"</code>, the <varname>value</varname> attribute can contain any JavaScript expression or JavaScript function invocation, and the result will be sent to the server as the <varname>value</varname> attribute.
- </para>
+ </section>
+
+ <section id="sect-Component_Reference-a4jactionParam-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.ActionParameter</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HTMLActionParameter</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+
</section>
<!-- FIXME not in M2 -->
@@ -109,28 +119,9 @@
<section id="sect-Component_Reference-Actions-a4jcommandButton">
<title><sgmltag><a4j:commandButton></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.CommandButton</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxCommandButton</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>javax.faces.Command</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxCommandButtonRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
+ <para>
+ The <sgmltag><a4j:commandButton></sgmltag> is similar to the JavaServer Faces (<acronym>JSF</acronym>) component <sgmltag><h:commandButton></sgmltag>, but additionally includes Ajax support. When the command button is clicked it submits an Ajax form, and when a response is received the command button can be dynamically rendered.
+ </para>
<figure id="figu-Component_Reference-a4jcommandButton-a4jcommandButton">
<title><sgmltag><a4j:commandButton></sgmltag></title>
<mediaobject>
@@ -144,44 +135,53 @@
</textobject>
</mediaobject>
</figure>
- <para>
- The <sgmltag><a4j:commandButton></sgmltag> is similar to the JavaServer Faces (<acronym>JSF</acronym>) component <sgmltag><h:commandButton></sgmltag>, but additionally includes Ajax support. When the command button is clicked it generates an Ajax form submit, and when a response is received the command button can be dynamically rendered.
- </para>
- <para>
- The <sgmltag><a4j:commandButton></sgmltag> requires only the <varname>value</varname> and <varname>render</varname> attributes to function. The <varname>value</varname> attribute specifies the text of the button and the <varname>render</varname> attribute specifies which areas are to be updated. The <sgmltag><a4j:commandButton></sgmltag> uses the <varname>onclick</varname> event instead of the <varname>onsubmit</varname> event, but otherwise uses all common Ajax attributes as listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
- </para>
- <note>
- <title>Set <code>disabledDefault="true"</code></title>
+
+ <section id="sect-Component_Reference-a4jcommandButton-Basic_usage">
+ <title>Basic usage</title>
<para>
- When attaching a JavaScript function to a <sgmltag><a4j:commandButton></sgmltag> with the help of a <sgmltag><rich:componentControl></sgmltag>, do not use the <varname>attachTo</varname> attribute of <sgmltag><rich:componentControl></sgmltag>. The attribute adds event handlers using <classname>Event.observe</classname> but <sgmltag><a4j:commandButton></sgmltag> does not include this event.
+ The <sgmltag><a4j:commandButton></sgmltag> requires only the <varname>value</varname> and <varname>render</varname> attributes to function. The <varname>value</varname> attribute specifies the text of the button and the <varname>render</varname> attribute specifies which areas are to be updated. The <sgmltag><a4j:commandButton></sgmltag> uses the <varname>onclick</varname> event instead of the <varname>onsubmit</varname> event, but otherwise uses all common Ajax attributes as listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
</para>
- </note>
+ <note>
+ <title>Set <code>disabledDefault="true"</code></title>
+ <para>
+ When attaching a JavaScript function to a <sgmltag><a4j:commandButton></sgmltag> with the help of a <sgmltag><rich:componentControl></sgmltag>, do not use the <varname>attachTo</varname> attribute of <sgmltag><rich:componentControl></sgmltag>. The attribute adds event handlers using <classname>Event.observe</classname> but <sgmltag><a4j:commandButton></sgmltag> does not include this event.
+ </para>
+ </note>
+ </section>
+
+ <section id="sect-Component_Reference-a4jcommandButton-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.CommandButton</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxCommandButton</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>javax.faces.Command</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxCommandButtonRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+
</section>
<section id="sect-Component_Reference-Actions-a4jcommandLink">
<title><sgmltag><a4j:commandLink></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.CommandLink</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxCommandLink</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>javax.faces.Command</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxCommandLinkRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
+ <para>
+ The <sgmltag><a4j:commandLink></sgmltag> is similar to the JavaServer Faces (<acronym>JSF</acronym>) component <sgmltag><h:commandLink></sgmltag>, but additionally includes Ajax support. When the command link is clicked it generates an Ajax form submit, and when a response is received the command link can be dynamically rendered.
+ </para>
<figure id="figu-Component_Reference-a4jcommandLink-a4jcommandLink">
<title><sgmltag><a4j:commandLink></sgmltag></title>
<mediaobject>
@@ -195,132 +195,166 @@
</textobject>
</mediaobject>
</figure>
- <para>
- The <sgmltag><a4j:commandLink></sgmltag> is similar to the JavaServer Faces (<acronym>JSF</acronym>) component <sgmltag><h:commandLink></sgmltag>, but additionally includes Ajax support. When the command link is clicked it generates an Ajax form submit, and when a response is received the command link can be dynamically rendered.
- </para>
- <para>
- The <sgmltag><a4j:commandLink></sgmltag> requires only the <varname>value</varname> and <varname>render</varname> attributes to function. The <varname>value</varname> attribute specifies the text of the link and the <varname>render</varname> attribute specifies which areas are to be updated. The <sgmltag><a4j:commandLink></sgmltag> uses the <varname>onclick</varname> event instead of the <varname>onsubmit</varname> event, but otherwise uses all common Ajax attributes as listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
- </para>
+
+ <section id="sect-Component_Reference-a4jcommandLink-Basic_usage">
+ <title>Basic usage</title>
+ <para>
+ The <sgmltag><a4j:commandLink></sgmltag> requires only the <varname>value</varname> and <varname>render</varname> attributes to function. The <varname>value</varname> attribute specifies the text of the link and the <varname>render</varname> attribute specifies which areas are to be updated. The <sgmltag><a4j:commandLink></sgmltag> uses the <varname>onclick</varname> event instead of the <varname>onsubmit</varname> event, but otherwise uses all common Ajax attributes as listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
+ </para>
+ </section>
+
+ <section id="sect-Component_Reference-a4jcommandLink-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.CommandLink</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxCommandLink</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>javax.faces.Command</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxCommandLinkRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<section id="sect-Component_Reference-Actions-richcomponentControl">
<title><sgmltag><rich:componentControl></sgmltag></title>
- <remark>The following reference data is taken from the old <sgmltag><rich:componentControl></sgmltag> reference. The details may be different now that the component is part of the <classname>a4j</classname> tag library.</remark>
- <itemizedlist>
- <listitem>
+ <para>
+ The <sgmltag><rich:componentControl></sgmltag> allows JavaScript API functions to be called on components after defined events. Initialization variants and activation events can be customized, and parameters can be passed to the target component.
+ </para>
+
+ <section id="sect-Component_Reference-richcomponentControl-Basic_usage">
+ <title>Basic usage</title>
+ <para>
+ The <varname>event</varname>, <varname>for</varname>, and <varname>operation</varname> attributes are all that is required to attach JavaScript functions to the parent component. The <varname>event</varname> attribute specifies the event that triggers the JavaScript API function call. The <varname>for</varname> attribute defines the target component, and the <varname>operation</varname> attribute specifies the JavaScript function to perform.
+ </para>
+ <example id="exam-Component_Reference-richcomponentControl-richcomponentControl_basic_usage">
+ <title><sgmltag><rich:componentControl></sgmltag> basic usage</title>
+ <programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-richcomponentControl-richcomponentControl_basic_usage.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
<para>
- <parameter>component-type</parameter>: <classname>org.richfaces.ComponentControl</classname>
+ The example contains a single command button, which when clicked shows the modal panel with the identifier <literal>ccModalPanelID</literal>.
</para>
- </listitem>
- <listitem>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-richcomponentControl-Attaching_to_a_component">
+ <title>Attaching to a component</title>
+ <para>
+ The <varname>attachTo</varname> attribute can be used to attach the event to a component other than the parent component. If no <varname>attachTo</varname> attribute is supplied, the <sgmltag><rich:componentControl></sgmltag> component's parent is used, as in <xref linkend="exam-Component_Reference-richcomponentControl-richcomponentControl_basic_usage" />.
+ </para>
+ <example id="exam-Component_Reference-richcomponentControl-Attaching_richcomponentControl_to_a_component">
+ <title>Attaching <sgmltag><rich:componentControl></sgmltag> to a component</title>
+ <programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-richcomponentControl-Attaching_richcomponentControl_to_a_component.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
<para>
- <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlComponentControl</classname>
+ In the example, the <literal>onclick</literal> event of the component with the identifier <literal>ccCalendarID</literal> will trigger the <literal>Expand</literal> operation for the component with the identifier <literal>doExpandCalendarID</literal>.
</para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.richfaces.ComponentControl</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.richfaces.ComponentControlRenderer</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.ComponentControlTag</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><rich:componentControl></sgmltag> allows JavaScript API functions to be called on components after defined events. Initialization variants and activation events can be customized, and parameters can be passed to the target component.
- </para>
- <para>
- The <varname>event</varname>, <varname>for</varname>, and <varname>operation</varname> attributes are all that is required to attach JavaScript functions to the parent component. The <varname>event</varname> attribute specifies the event that triggers the JavaScript API function call. The <varname>for</varname> attribute defines the target component, and the <varname>operation</varname> attribute specifies the JavaScript function to perform.
- </para>
- <example id="exam-Component_Reference-richcomponentControl-richcomponentControl_basic_usage">
- <title>rich:componentControl basic usage</title>
-
-<programlisting language="XML" role="XML"><h:commandButton value="Show Modal Panel">
- <!--componentControl is attached to the commandButton-->
- <rich:componentControl for="ccModalPanelID" event="onclick" operation="show"/>
-</h:commandButton>
-</programlisting>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-richcomponentControl-Parameters_and_JavaScript">
+ <title>Parameters and JavaScript</title>
<para>
- The example contains a single command button, which when clicked shows the modal panel with the identifier <literal>ccModalPanelID</literal>.
+ The operation can receive parameters either through the <varname>params</varname> attribute, or by using <sgmltag><f:param></sgmltag> elements.
</para>
- </example>
- <para>
- The <varname>attachTo</varname> attribute can be used to attach the event to a component other than the parent component. If no <varname>attachTo</varname> attribute is supplied, the <sgmltag><rich:componentControl></sgmltag> component's parent is used, as in <xref linkend="exam-Component_Reference-richcomponentControl-richcomponentControl_basic_usage" />.
- </para>
- <example id="exam-Component_Reference-richcomponentControl-Attaching_richcomponentControl_to_a_component">
- <title>Attaching <sgmltag><rich:componentControl></sgmltag> to a component</title>
-
-<programlisting language="XML" role="XML"><rich:componentControl attachTo="doExpandCalendarID" event="onclick" operation="Expand" for="ccCalendarID" />
-</programlisting>
+ <example id="exam-Component_Reference-richcomponentControl-Using_parameters">
+ <title>Using parameters</title>
+ <variablelist>
+ <varlistentry>
+ <term>The <varname>params</varname> attribute</term>
+ <listitem>
+ <programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-richcomponentControl-Using_parameters-0.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><sgmltag><f:param></sgmltag> elements</term>
+ <listitem>
+ <programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-richcomponentControl-Using_parameters-1.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </example>
<para>
- In the example, the <literal>onclick</literal> event of the component with the identifier <literal>ccCalendarID</literal> will trigger the <literal>Expand</literal> operation for the component with the identifier <literal>doExpandCalendarID</literal>.
+ The <varname>name</varname> attribute can be used to define a normal JavaScript function that triggers the specified operation on the target component.
</para>
- </example>
- <para>
- The operation can receive parameters either through the <varname>params</varname> attribute, or by using <sgmltag><f:param></sgmltag> elements.
- </para>
- <example id="exam-Component_Reference-richcomponentControl-Using_parameters">
- <title>Using parameters</title>
+ </section>
+
+
+ <section id="sect-Component_Reference-richcomponentControl-Timing">
+ <title>Timing</title>
+ <para>
+ The <varname>attachTiming</varname> attribute can determine the page loading phase during which the <sgmltag><rich:componentControl></sgmltag> is attached to the source component:
+ </para>
<variablelist>
<varlistentry>
- <term>The <varname>params</varname> attribute</term>
+ <term><literal>immediate</literal></term>
<listitem>
-
-<programlisting language="XML" role="XML"><rich:componentControl name="func" event="onRowClick" for="menu" operation="show" params="#{car.model}"/>
-</programlisting>
+ <para>
+ attached during execution of the script.
+ </para>
</listitem>
</varlistentry>
<varlistentry>
- <term><sgmltag><f:param></sgmltag> elements</term>
+ <term><literal>onavailable</literal></term>
<listitem>
-
-<programlisting language="XML" role="XML"><rich:componentControl event="onRowClick" for="menu" operation="show">
- <f:param value="#{car.model}" name="model"/>
-</rich:componentControl>
-</programlisting>
+ <para>
+ attached after the target component is initialized.
+ </para>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term><literal>onload</literal></term>
+ <listitem>
+ <para>
+ attached after the page is loaded.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
- </example>
- <para>
- The <varname>name</varname> attribute can be used to define a normal JavaScript function that triggers the specified operation on the target component.
- </para>
- <para>
- The <varname>attachTiming</varname> attribute can determine the page loading phase during which the <sgmltag><rich:componentControl></sgmltag> is attached to the source component:
- </para>
- <variablelist>
- <varlistentry>
- <term><literal>immediate</literal></term>
+ </section>
+
+ <section id="sect-Component_Reference-richcomponentControl-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
<listitem>
<para>
- attached during execution of the script.
+ <parameter>component-type</parameter>: <classname>org.richfaces.ComponentControl</classname>
</para>
</listitem>
- </varlistentry>
- <varlistentry>
- <term><literal>onavailable</literal></term>
<listitem>
<para>
- attached after the target component is initialized.
+ <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlComponentControl</classname>
</para>
</listitem>
- </varlistentry>
- <varlistentry>
- <term><literal>onload</literal></term>
<listitem>
<para>
- attached after the page is loaded.
+ <parameter>component-family</parameter>: <classname>org.richfaces.ComponentControl</classname>
</para>
</listitem>
- </varlistentry>
- </variablelist>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.richfaces.ComponentControlRenderer</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.ComponentControlTag</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<!-- TODO not in M2 -->
@@ -370,146 +404,149 @@
<section id="sect-Component_Reference-Actions-a4jjsFunction">
<title><sgmltag><a4j:jsFunction></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.Function</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlajaxFunction</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.ajax4jsf.components.ajaxFunction</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.ajaxFunctionRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:jsFunction></sgmltag> component allows Ajax requests to be performed directly from JavaScript code, and server-side data to be invoked and returned in JavaScript Object Notation (<acronym>JSON</acronym>) format to use in client-side JavaScript calls.
</para>
- <para>
- The <sgmltag><a4j:jsFunction></sgmltag> component has all the common Ajax action attributes as listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />; the <varname>action</varname> and <varname>actionListener</varname> attributes can be invoked and parts of the page can be re-rendered after a successful call to the JavaScript function. <xref linkend="exam-Component_Reference-a4jjsFunction-a4jjsFunction_example" /> shows how an Ajax request can be initiated from the JavaScript and a partial page update performed. The JavaScript function can be invoked with the data returned by the Ajax response.
- </para>
- <example id="exam-Component_Reference-a4jjsFunction-a4jjsFunction_example">
- <title><sgmltag><a4j:jsFunction></sgmltag> example</title>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jjsFunction-a4jjsFunction_example.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- </example>
- <para>
- The <sgmltag><a4j:jsFunction></sgmltag> component allows the use of the <sgmltag><a4j:actionParam></sgmltag> component or the JavaServer Faces <sgmltag><f:param></sgmltag> component to pass any number of parameters for the JavaScript function.
- </para>
- <para>
- The <sgmltag><a4j:jsFunction></sgmltag> component is similar to the <sgmltag><a4j:commandButton></sgmltag> component, but it can be activated from the JavaScript code. This allows some server-side functionality to be invoked and the returned data to subsequently be used in a JavaScript function invoked by the <varname>oncomplete</varname> event attribute. In this way, the <sgmltag><a4j:jsFunction></sgmltag> component can be used instead of the <sgmltag><a4j:commandButton></sgmltag> component.
- </para>
+
+ <section id="sect-Component_Reference-a4jjsFunction-Basic_usage">
+ <title>Basic usage</title>
+ <para>
+ The <sgmltag><a4j:jsFunction></sgmltag> component has all the common Ajax action attributes as listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />; the <varname>action</varname> and <varname>actionListener</varname> attributes can be invoked and parts of the page can be re-rendered after a successful call to the JavaScript function. <xref linkend="exam-Component_Reference-a4jjsFunction-a4jjsFunction_example" /> shows how an Ajax request can be initiated from the JavaScript and a partial page update performed. The JavaScript function can be invoked with the data returned by the Ajax response.
+ </para>
+ <example id="exam-Component_Reference-a4jjsFunction-a4jjsFunction_example">
+ <title><sgmltag><a4j:jsFunction></sgmltag> example</title>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jjsFunction-a4jjsFunction_example.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-a4jjsFunction-Parameters_and_JavaScript">
+ <title>Parameters and JavaScript</title>
+ <para>
+ The <sgmltag><a4j:jsFunction></sgmltag> component allows the use of the <sgmltag><a4j:actionParam></sgmltag> component or the JavaServer Faces <sgmltag><f:param></sgmltag> component to pass any number of parameters for the JavaScript function.
+ </para>
+ <para>
+ The <sgmltag><a4j:jsFunction></sgmltag> component is similar to the <sgmltag><a4j:commandButton></sgmltag> component, but it can be activated from the JavaScript code. This allows some server-side functionality to be invoked and the returned data to subsequently be used in a JavaScript function invoked by the <varname>oncomplete</varname> event attribute. In this way, the <sgmltag><a4j:jsFunction></sgmltag> component can be used instead of the <sgmltag><a4j:commandButton></sgmltag> component.
+ </para>
+ </section>
+
+ <section id="sect-Component_Reference-a4jjsFunction-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.Function</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlajaxFunction</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.ajax4jsf.components.ajaxFunction</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.ajaxFunctionRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<section id="sect-Component_Reference-Actions-a4jpoll">
<title><sgmltag><a4j:poll></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.Poll</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.AjaxPoll</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.ajax4jsf.components.AjaxPoll</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxPollRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:poll></sgmltag> component allows periodical sending of Ajax requests to the server. It is used for repeatedly updating a page at specific time intervals.
</para>
- <para>
- The <varname>interval</varname> attribute specifies the time in milliseconds between requests. The default for this value is 1000 ms (1 second).
- </para>
- <para>
- The <varname>timeout</varname> attribute defines the response waiting time in milliseconds. If a response isn't received within the timeout period, the connection is aborted and the next request is sent. By default, the timeout is not set.
- </para>
- <para>
- The <sgmltag><a4j:poll></sgmltag> component can be enabled and disabled using the <varname>enabled</varname> attribute. Using Expression Language (<acronym>EL</acronym>), the <varname>enabled</varname> attribute can point to a bean property to apply a particular attribute value.
- </para>
+
+ <section id="sect-Component_Reference-a4jpoll-Timing_options">
+ <title>Timing options</title>
+ <para>
+ The <varname>interval</varname> attribute specifies the time in milliseconds between requests. The default for this value is 1000 ms (1 second).
+ </para>
+ <para>
+ The <varname>timeout</varname> attribute defines the response waiting time in milliseconds. If a response isn't received within the timeout period, the connection is aborted and the next request is sent. By default, the timeout is not set.
+ </para>
+ <para>
+ The <sgmltag><a4j:poll></sgmltag> component can be enabled and disabled using the <varname>enabled</varname> attribute. Using Expression Language (<acronym>EL</acronym>), the <varname>enabled</varname> attribute can point to a bean property to apply a particular attribute value.
+ </para>
+ </section>
+
+ <section id="sect-Component_Reference-a4jpoll-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.Poll</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.AjaxPoll</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.ajax4jsf.components.AjaxPoll</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxPollRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<section id="sect-Component_Reference-Actions-a4jpush">
<title><sgmltag><a4j:push></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.Push</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.AjaxPush</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.ajax4jsf.components.AjaxPush</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxPushRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:push></sgmltag> component periodically performs an Ajax request to the server, simulating "push" functionality. While it is not strictly pushing updates, the request is made to minimal code only, not to the <acronym>JSF</acronym> tree, checking for the presence of new messages in the queue. The request registers <classname>EventListener</classname>, which receives messages about events, but does not poll registered beans. If a message exists, a complete request is performed. This is different from the <sgmltag><a4j:poll></sgmltag> component, which performs a full request at every interval.
</para>
- <para>
- The <varname>interval</varname> attribute specifies the time in milliseconds between checking for messages. The default for this value is 1000 ms (1 second). It is possible to set the interval value to <literal>0</literal>, in which case it is constantly checking for new messages.
- </para>
- <para>
- The <varname>timeout</varname> attribute defines the response waiting time in milliseconds. If a response isn't received within the timeout period, the connection is aborted and the next request is sent. By default, the timeout is not set. In combination with the <varname>interval</varname> attribute, checks for the queue state can short polls or long connections.
- </para>
+
+ <section id="sect-Component_Reference-a4jpush-Timing_options">
+ <title>Timing options</title>
+ <para>
+ The <varname>interval</varname> attribute specifies the time in milliseconds between checking for messages. The default for this value is 1000 ms (1 second). It is possible to set the interval value to <literal>0</literal>, in which case it is constantly checking for new messages.
+ </para>
+ <para>
+ The <varname>timeout</varname> attribute defines the response waiting time in milliseconds. If a response isn't received within the timeout period, the connection is aborted and the next request is sent. By default, the timeout is not set. In combination with the <varname>interval</varname> attribute, checks for the queue state can short polls or long connections.
+ </para>
+ </section>
+
+ <section id="sect-Component_Reference-a4jpush-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.Push</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.AjaxPush</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.ajax4jsf.components.AjaxPush</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxPushRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<section id="sect-Component_Reference-Actions-a4jajax">
<title><sgmltag><a4j:ajax></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.Ajax</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxSupport</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.ajax4jsf.Ajax</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxSupportRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:ajax></sgmltag> component allows Ajax capability to be added to any non-Ajax component. It is placed as a direct child to the component that requires Ajax support. The <sgmltag><a4j:ajax></sgmltag> component uses the common attributes listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
</para>
@@ -521,15 +558,34 @@
</note>
<example id="exam-Component_Reference-a4jajax-a4jajax_example">
<title><sgmltag><a4j:ajax></sgmltag> example</title>
-
-<programlisting language="XML" role="XML"><h:panelGrid columns="2">
- <h:inputText id="myinput" value="#{userBean.name}">
- <a4j:ajax event="onkeyup" reRender="outtext" />
- </h:inputText>
- <h:outputText id="outtext" value="#{userBean.name}" />
-</h:panelGrid>
-</programlisting>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jajax-a4jajax_example.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
</example>
+
+ <section id="sect-Component_Reference-a4jajax-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.Ajax</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxSupport</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.ajax4jsf.Ajax</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxSupportRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
</chapter>
Modified: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Common_Ajax_attributes.xml
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Common_Ajax_attributes.xml 2010-08-23 03:50:06 UTC (rev 18921)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Common_Ajax_attributes.xml 2010-08-23 07:04:53 UTC (rev 18922)
@@ -18,23 +18,7 @@
</para>
<example id="exam-Component_Reference-render-render_example">
<title>render example</title>
-
-<programlisting language="XML" role="XML">
-<h:form id="form1">
- <a4j:commandButton value="Basic reference" render="infoBlock, infoBlock2" />
- <a4j:commandButton value="Specific reference" render=":infoBlock,:sv:infoBlock2" />
-</h:form>
-
-<h:panelGrid id="infoBlock">
- ...
-</h:panelGrid>
-
-<f:subview id="sv">
- <h:panelGrid id="infoBlock2">
- ...
- </h:panelGrid>
-</f:subview>
-</programlisting>
+ <programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-render-render_example.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
</example>
<para>
The value of the <varname>render</varname> attribute can also be an expression written using JavaServer Faces' Expression Language (<acronym>EL</acronym>); this can either be a <type>Set</type>, <type>Collection</type>, <type>Array</type>, or <type>String</type>.
@@ -70,21 +54,7 @@
</para>
<example id="exam-Component_Reference-limitRender-Rendering_example">
<title>Rendering example</title>
-
-<programlisting language="XML" role="XML">
-<h:form id="form1">
- <a4j:commandButton value="Normal rendering" render="infoBlock" />
- <a4j:commandButton value="Limited rendering" render="infoBlock" limitRender="true" />
-</h:form>
-
-<h:panelGrid id="infoBlock">
- ...
-</h:panelGrid>
-
-<a4j:outputPanel ajaxRendered="true">
- <h:messages />
-</a4j:outputPanel>
-</programlisting>
+ <programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-limitRender-Rendering_example.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
</example>
</section>
@@ -230,10 +200,7 @@
</para>
<example id="exam-Component_Reference-data-Data_reference_example">
<title>Data reference example</title>
-
-<programlisting language="XML" role="XML">
-<a4j:commandButton value="Update" data="#{userBean.name}" oncomplete="showTheName(data.name)" />
-</programlisting>
+ <programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-data-Data_reference_example.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
</example>
</section>
Modified: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Containers.xml
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Containers.xml 2010-08-23 03:50:06 UTC (rev 18921)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Containers.xml 2010-08-23 07:04:53 UTC (rev 18922)
@@ -59,110 +59,117 @@
<section id="sect-Component_Reference-Containers-a4jinclude">
<title><sgmltag><a4j:include></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.Include</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.Include</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>javax.faces.Output</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxIncludeRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:include></sgmltag> component allows one view to be included as part of another page. This is useful for applications where multiple views might appear on the one page, with navigation between the views. Views can use partial page navigation in Ajax mode, or standard <acronym>JSF</acronym> navigation for navigation between views.
</para>
- <para>
- The <varname>viewId</varname> attribute is required to reference the resource that will be included as a view on the page. It uses a full context-relative path to point to the resource, similar to the paths used for the <sgmltag><from-view-id></sgmltag> and <sgmltag><to-view-id></sgmltag> tags in the <filename>faces-config.xml</filename> <acronym>JSF</acronym> navigation rules.
- </para>
- <example id="exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude">
- <title>A wizard using <sgmltag><a4j:include></sgmltag></title>
+
+ <section id="sect-Component_Reference-a4jinclude-Basic_usage">
+ <title>Basic usage</title>
<para>
- The page uses <sgmltag><a4j:include></sgmltag> to include the first step of the wizard:
+ The <varname>viewId</varname> attribute is required to reference the resource that will be included as a view on the page. It uses a full context-relative path to point to the resource, similar to the paths used for the <sgmltag><from-view-id></sgmltag> and <sgmltag><to-view-id></sgmltag> tags in the <filename>faces-config.xml</filename> <acronym>JSF</acronym> navigation rules.
</para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <para>
- The first step is fully contained in a separate file, <filename>wstep1.xhtml</filename>. Subsequent steps are set up similarly with additional <guibutton>Previous</guibutton> buttons.
- </para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-1.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <para>
- The navigation is defined in the <filename>faces-config.xml</filename> configuration file:
- </para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-2.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- </example>
- </section>
-
- <section id="sect-Component_Reference-Containers-a4joutputPanel">
- <title><sgmltag><a4j:outputPanel></sgmltag></title>
- <itemizedlist>
- <listitem>
+ <example id="exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude">
+ <title>A wizard using <sgmltag><a4j:include></sgmltag></title>
<para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.OutputPanel</classname>
+ The page uses <sgmltag><a4j:include></sgmltag> to include the first step of the wizard:
</para>
- </listitem>
- <listitem>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
<para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxOutputPanel</classname>
+ The first step is fully contained in a separate file, <filename>wstep1.xhtml</filename>. Subsequent steps are set up similarly with additional <guibutton>Previous</guibutton> buttons.
</para>
- </listitem>
- <listitem>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-1.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
<para>
- <parameter>component-family</parameter>: <classname>javax.faces.Panel</classname>
+ The navigation is defined in the <filename>faces-config.xml</filename> configuration file:
</para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxOutputPanelRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-2.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-a4jinclude-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.Include</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.Include</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>javax.faces.Output</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxIncludeRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+ </section>
+
+ <section id="sect-Component_Reference-Containers-a4joutputPanel">
+ <title><sgmltag><a4j:outputPanel></sgmltag></title>
<para>
The <sgmltag><a4j:outputPanel></sgmltag> component is used to group together components in to update them as a whole, rather than having to specify the components individually.
</para>
- <para>
- The <varname>layout</varname> attribute can be used to determine how the component is rendered in <acronym>HTML</acronym>:
- </para>
- <itemizedlist>
- <listitem>
- <para>
- <code>layout="inline"</code> is the default behavior, which will render the component as a pair of <sgmltag><span></sgmltag> tags containing the child components.
- </para>
- </listitem>
- <listitem>
- <para>
- <code>layout="block"</code> will render the component as a pair of <sgmltag><div></sgmltag> tags containing the child components, which will use any defined <sgmltag><div></sgmltag> element styles.
- </para>
- </listitem>
- <listitem>
- <para>
- <code>layout="none"</code> will render the component as a pair of <sgmltag><span></sgmltag> tags with an identifier equal to that of a child component. If the child component is rendered then the <sgmltag><span></sgmltag> are not included, leaving no markup representing the <sgmltag><a4j:outputPanel></sgmltag> in <acronym>HTML</acronym>.
- </para>
- </listitem>
- </itemizedlist>
- <para>
- Setting <code>ajaxRendered="true"</code> will cause the <sgmltag><a4j:outputPanel></sgmltag> to be updated with each Ajax response for the page, even when not listed explicitly by the requesting component. This can in turn be overridden by specific attributes on any requesting components.
- </para>
+
+ <section id="sect-Component_Reference-a4joutputPanel-Panel_appearance">
+ <title>Panel appearance</title>
+ <para>
+ The <varname>layout</varname> attribute can be used to determine how the component is rendered in <acronym>HTML</acronym>:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <code>layout="inline"</code> is the default behavior, which will render the component as a pair of <sgmltag><span></sgmltag> tags containing the child components.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <code>layout="block"</code> will render the component as a pair of <sgmltag><div></sgmltag> tags containing the child components, which will use any defined <sgmltag><div></sgmltag> element styles.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <code>layout="none"</code> will render the component as a pair of <sgmltag><span></sgmltag> tags with an identifier equal to that of a child component. If the child component is rendered then the <sgmltag><span></sgmltag> are not included, leaving no markup representing the <sgmltag><a4j:outputPanel></sgmltag> in <acronym>HTML</acronym>.
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>
+ Setting <code>ajaxRendered="true"</code> will cause the <sgmltag><a4j:outputPanel></sgmltag> to be updated with each Ajax response for the page, even when not listed explicitly by the requesting component. This can in turn be overridden by specific attributes on any requesting components.
+ </para>
+ </section>
+
+ <section id="sect-Component_Reference-a4joutputPanel-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.OutputPanel</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxOutputPanel</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>javax.faces.Panel</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxOutputPanelRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<!-- TODO not in M2 -->
@@ -225,34 +232,38 @@
<section id="sect-Component_Reference-Containers-a4jregion">
<title><sgmltag><a4j:region></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.AjaxRegion</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxRegion</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.ajax4jsf.AjaxRegion</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxRegionRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:region></sgmltag> component specifies a part of the document object model (<acronym>DOM</acronym>) tree to be processed on the server. The processing includes data handling during decoding, conversion, validation, and model updating. When not using <sgmltag><a4j:region></sgmltag>, the entire view functions as a region.
</para>
<para>
The whole form is still submitted to the server, but only the specified region is processed. Regions can be nested, in which case only the immediate region of the component initiating the request will be processed.
</para>
+
+ <section id="sect-Component_Reference-a4jregion-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.AjaxRegion</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxRegion</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.ajax4jsf.AjaxRegion</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxRegionRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
</chapter>
Modified: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Processing_management.xml
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Processing_management.xml 2010-08-23 03:50:06 UTC (rev 18921)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Processing_management.xml 2010-08-23 07:04:53 UTC (rev 18922)
@@ -8,227 +8,249 @@
</para>
<section id="sect-Component_Reference-Processing_management-a4jqueue">
<title><sgmltag><a4j:queue></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.QueueRenderer</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlQueue</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.ajax4jsf.Queue</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>tag-class</parameter>: <classname>org.ajax4jsf.taglib.html.jsp.QueueTag</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:queue></sgmltag> component manages a queue of Ajax requests to control message processing.
</para>
- <para>
- The queue can be disabled by setting the <varname>disabled</varname> attribute to <literal>true</literal>. The <varname>size</varname> attribute specifies the number of requests that can be stored in the queue at a time; smaller queue sizes help prevent server overloads. When the queue's size is exceeded, the <varname>sizeExceededBehavior</varname> determines the way in which the queue handles the requests:
- </para>
- <itemizedlist>
- <listitem>
- <para>
- <literal>dropNext</literal> drops the next request currently in the queue.
- </para>
- </listitem>
- <listitem>
- <para>
- <literal>dropNew</literal> drops the incoming request.
- </para>
- </listitem>
- <listitem>
- <para>
- <literal>fireNext</literal> immediately sends the next request currently in the queue.
- </para>
- </listitem>
- <listitem>
- <para>
- <literal>fireNew</literal> immediately sends the incoming request.
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:queue></sgmltag> component features several events relating to queuing actions:
- </para>
- <itemizedlist>
- <listitem>
- <para>
- The <varname>oncomplete</varname> event attribute is fired after a request is completed. The request object is passed as a parameter to the event handler, so the queue is accessible using <code>request.queue</code> and the element which was the source of the request is accessible using <code>this</code>.
- </para>
- </listitem>
- <listitem>
- <para>
- The <varname>onrequestqueue</varname> event attribute is fired after a new request has been added to the queue.
- </para>
- </listitem>
- <listitem>
- <para>
- The <varname>onrequestdequeue</varname> event attribute is fired after a request has been removed from the queue.
- </para>
- </listitem>
- <listitem>
- <para>
- The <varname>onsizeexceeded</varname> event attribute is fired when the queue has been exceeded.
- </para>
- </listitem>
- <listitem>
- <para>
- The <varname>onsubmit</varname> event attribute is fired before the request is sent.
- </para>
- </listitem>
- <listitem>
- <para>
- The <varname>onsuccess</varname> event attribute is fired after a successful request bu before the <acronym>DOM</acronym> is updated on the client side.
- </para>
- </listitem>
- </itemizedlist>
+
+ <section id="sect-Component_Reference-a4jqueue-Queue_size">
+ <title>Queue size</title>
+ <para>
+ The <varname>size</varname> attribute specifies the number of requests that can be stored in the queue at a time; smaller queue sizes help prevent server overloads. When the queue's size is exceeded, the <varname>sizeExceededBehavior</varname> determines the way in which the queue handles the requests:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <literal>dropNext</literal> drops the next request currently in the queue.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <literal>dropNew</literal> drops the incoming request.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <literal>fireNext</literal> immediately sends the next request currently in the queue.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <literal>fireNew</literal> immediately sends the incoming request.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+
+ <section id="sect-Component_Reference-a4jqueue-a4jqueue_client-side_events">
+ <title><sgmltag><a4j:queue></sgmltag> client-side events</title>
+ <para>
+ The <sgmltag><a4j:queue></sgmltag> component features several events relating to queuing actions:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ The <varname>oncomplete</varname> event attribute is fired after a request is completed. The request object is passed as a parameter to the event handler, so the queue is accessible using <code>request.queue</code> and the element which was the source of the request is accessible using <code>this</code>.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The <varname>onrequestqueue</varname> event attribute is fired after a new request has been added to the queue.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The <varname>onrequestdequeue</varname> event attribute is fired after a request has been removed from the queue.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The <varname>onsizeexceeded</varname> event attribute is fired when the queue has been exceeded.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The <varname>onsubmit</varname> event attribute is fired before the request is sent.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The <varname>onsuccess</varname> event attribute is fired after a successful request but before the <acronym>DOM</acronym> is updated on the client side.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+
+ <section id="sect-Component_Reference-a4jqueue-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.QueueRenderer</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlQueue</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.ajax4jsf.Queue</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>tag-class</parameter>: <classname>org.ajax4jsf.taglib.html.jsp.QueueTag</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<section id="sect-Component_Reference-Processing_management-a4jlog">
<title><sgmltag><a4j:log></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.Log</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.AjaxLog</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.ajax4jsf.Log</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.LogRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:log></sgmltag> component generates JavaScript that opens a debug window, logging application information such as requests, responses, and <acronym>DOM</acronym> changes.
</para>
- <para>
- The <varname>popup</varname> attribute causes the logging data to appear in a new pop-up window if set to <literal>true</literal>, or in place on the current page if set to <literal>false</literal>. The window is set to be opened by pressing the key combination <keycombo action="simul"><keycap>Ctrl</keycap><keycap>Shift</keycap><keycap>L</keycap></keycombo>; this can be partially reconfigured with the <varname>hotkey</varname> attribute, which specifies the letter key to use in combination with <keycombo><keycap>Ctrl</keycap><keycap>Shift</keycap></keycombo> instead of <keycap>L</keycap>.
- </para>
- <para>
- The amount of data logged can be determined with the <varname>level</varname> attribute:
- </para>
- <itemizedlist>
- <listitem>
+
+ <section id="sect-Component_Reference-a4jlog-Log_monitoring">
+ <title>Log monitoring</title><para>
+ The <varname>popup</varname> attribute causes the logging data to appear in a new pop-up window if set to <literal>true</literal>, or in place on the current page if set to <literal>false</literal>. The window is set to be opened by pressing the key combination <keycombo action="simul"><keycap>Ctrl</keycap><keycap>Shift</keycap><keycap>L</keycap></keycombo>; this can be partially reconfigured with the <varname>hotkey</varname> attribute, which specifies the letter key to use in combination with <keycombo><keycap>Ctrl</keycap><keycap>Shift</keycap></keycombo> instead of <keycap>L</keycap>.
+ </para>
+ <para>
+ The amount of data logged can be determined with the <varname>level</varname> attribute:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <literal>ERROR</literal>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <literal>FATAL</literal>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <literal>INFO</literal>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <literal>WARN</literal>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <literal>ALL</literal>, the default setting, logs all data.
+ </para>
+ </listitem>
+ </itemizedlist>
+ <example id="exam-Component_Reference-a4jlog-a4jlog_example">
+ <title><sgmltag><a4j:log></sgmltag> example</title>
+ <programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-a4jlog-a4jlog_example.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </example>
+ <note>
+ <title>Log renewal</title>
<para>
- <literal>ERROR</literal>
+ The log is automatically renewed after each Ajax request. It does not need to be explicitly re-rendered.
</para>
- </listitem>
- <listitem>
- <para>
- <literal>FATAL</literal>
- </para>
- </listitem>
- <listitem>
- <para>
- <literal>INFO</literal>
- </para>
- </listitem>
- <listitem>
- <para>
- <literal>WARN</literal>
- </para>
- </listitem>
- <listitem>
- <para>
- <literal>ALL</literal>, the default setting, logs all data.
- </para>
- </listitem>
- </itemizedlist>
- <example id="exam-Component_Reference-a4jlog-a4jlog_example">
- <title><sgmltag><a4j:log></sgmltag> example</title>
-
-<programlisting language="XML" role="XML">
-<a4j:log level="ALL" popup="false" width="400" height="200" />
-</programlisting>
- </example>
- <note>
- <title>Log renewal</title>
- <para>
- The log is automatically renewed after each Ajax request. It does not need to be explicitly re-rendered.
- </para>
- </note>
+ </note>
+ </section>
+
+ <section id="sect-Component_Reference-a4jlog-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.Log</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.AjaxLog</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.ajax4jsf.Log</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.LogRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<section id="sect-Component_Reference-Processing_management-a4jstatus">
<title><sgmltag><a4j:status></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.Status</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxStatus</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>javax.faces.Panel</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxStatusRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:status></sgmltag> component displays the status of current Ajax requests; the status can be either in progress or complete.
</para>
- <para>
- The <varname>startText</varname> attribute defines the text shown after the request has been started and is currently in progress. This text can be styled with the <varname>startStyle</varname> and <varname>startStyleClass</varname> attributes. Similarly, the <varname>stopText</varname> attribute defines the text shown once the request is complete, and text is styled with the <varname>stopStyle</varname> and <varname>stopStyleClass</varname> attributes. Alternatively, the text styles can be customized using facets, with the facet name set to either <literal>start</literal> or <literal>stop</literal> as required. If the <varname>stopText</varname> attribute is not defined, and no facet exists for the stopped state, the status is simply not shown; in this way only the progress of the request is displayed to the user.
- </para>
- <example id="exam-Component_Reference-a4jstatus-Basic_a4jstatus_usage">
- <title>Basic <sgmltag><a4j:status></sgmltag> usage</title>
-
-<programlisting language="XML" role="XML">
-<a4j:status startText="In progress..." stopText="Complete" />
-</programlisting>
- </example>
- <para>
- The <sgmltag><a4j:status></sgmltag> component works for each Ajax component inside the local region. If no region is defined, every request made on the page will activate the <sgmltag><a4j:status></sgmltag> component. Alternatively, the <sgmltag><a4j:status></sgmltag> component can be linked to specific components in one of two ways:
- </para>
- <itemizedlist>
- <listitem>
- <para>
- The <varname>for</varname> attribute can be used to specify the component for which the status is to be monitored.
- </para>
- </listitem>
- <listitem>
- <para>
- With an <varname>id</varname> identifier attribute specified for the <sgmltag><a4j:status></sgmltag>, individual components can have their statuses monitored by referencing the identifier with their own <varname>status</varname> attributes.
- </para>
- </listitem>
- </itemizedlist>
- <example id="exam-Component_Reference-a4jstatus-Updating_a_common_a4jstatus_component">
- <title>Updating a common <sgmltag><a4j:status></sgmltag> component</title>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jstatus-Updating_a_common_a4jstatus_component.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- </example>
+
+ <section id="sect-Component_Reference-a4jstatus-Customizing_the_text">
+ <title>Customizing the text</title>
+ <para>
+ The <varname>startText</varname> attribute defines the text shown after the request has been started and is currently in progress. This text can be styled with the <varname>startStyle</varname> and <varname>startStyleClass</varname> attributes. Similarly, the <varname>stopText</varname> attribute defines the text shown once the request is complete, and text is styled with the <varname>stopStyle</varname> and <varname>stopStyleClass</varname> attributes. Alternatively, the text styles can be customized using facets, with the facet name set to either <literal>start</literal> or <literal>stop</literal> as required. If the <varname>stopText</varname> attribute is not defined, and no facet exists for the stopped state, the status is simply not shown; in this way only the progress of the request is displayed to the user.
+ </para>
+ <example id="exam-Component_Reference-a4jstatus-Basic_a4jstatus_usage">
+ <title>Basic <sgmltag><a4j:status></sgmltag> usage</title>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jstatus-Basic_a4jstatus_usage.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-a4jstatus-Specifying_a_region">
+ <title>Specifying a region</title>
+ <para>
+ The <sgmltag><a4j:status></sgmltag> component works for each Ajax component inside the local region. If no region is defined, every request made on the page will activate the <sgmltag><a4j:status></sgmltag> component. Alternatively, the <sgmltag><a4j:status></sgmltag> component can be linked to specific components in one of two ways:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ The <varname>for</varname> attribute can be used to specify the component for which the status is to be monitored.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ With an <varname>id</varname> identifier attribute specified for the <sgmltag><a4j:status></sgmltag>, individual components can have their statuses monitored by referencing the identifier with their own <varname>status</varname> attributes.
+ </para>
+ </listitem>
+ </itemizedlist>
+ <example id="exam-Component_Reference-a4jstatus-Updating_a_common_a4jstatus_component">
+ <title>Updating a common <sgmltag><a4j:status></sgmltag> component</title>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jstatus-Updating_a_common_a4jstatus_component.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-a4jstatus-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.Status</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.component.html.HtmlAjaxStatus</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>javax.faces.Panel</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.ajax4jsf.components.AjaxStatusRenderer</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
</chapter>
Modified: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Resources.xml
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Resources.xml 2010-08-23 03:50:06 UTC (rev 18921)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Resources.xml 2010-08-23 07:04:53 UTC (rev 18922)
@@ -194,39 +194,51 @@
<section id="sect-Component_Reference-Resources-a4jkeepAlive">
<title><sgmltag><a4j:keepAlive></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.ajax4jsf.components.KeepAlive</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.ajax4jsf.components.AjaxKeepAlive</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.ajax4jsf.components.AjaxKeepAlive</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><a4j:keepAlive></sgmltag> component allows the state of a managed bean to be retained between Ajax requests.
</para>
<para>
- Managed beans can be declared with the <literal>request</literal> scope in the <filename>faces-config.xml</filename> configuration file, using the <sgmltag><managed-bean-scope></sgmltag> tag. Any references to the bean instance after the request has ended will cause the server to throw an illegal argument exception (<exceptionname>IllegalArgumentException</exceptionname>). The <sgmltag><a4j:keepAlive></sgmltag> component avoids this be maintaining the state of the whole bean object for subsequent requests.
+ Managed beans can be declared with the <literal>request</literal> scope in the <filename>faces-config.xml</filename> configuration file, using the <sgmltag><managed-bean-scope></sgmltag> tag. Any references to the bean instance after the request has ended will cause the server to throw an illegal argument exception (<exceptionname>IllegalArgumentException</exceptionname>). The <sgmltag><a4j:keepAlive></sgmltag> component avoids this by maintaining the state of the whole bean object for subsequent requests.
</para>
- <para>
- The <varname>beanName</varname> attribute defines the request-scope managed bean name to keep alive. The <varname>ajaxOnly</varname> attribute determines whether or not the value of the bean should be available during non-Ajaxx requests; if <code>ajaxOnly="true"</code>, the request-scope bean keeps its value during Ajax requests, but any non-Ajax requests will re-create the bean as a regular request-scope bean.
- </para>
- <example id="exam-Component_Reference-a4jkeepAlive-a4jkeepAlive_example">
- <title><sgmltag><a4j:keepAlive></sgmltag> example</title>
-
-<programlisting language="XML" role="XML">
-<a4j:keepAlive beanName="testBean" />
-</programlisting>
- </example>
+
+ <section id="sect-Component_Reference-a4jkeepAlive-Basic_usage">
+ <title>Basic usage</title>
+ <para>
+ The <varname>beanName</varname> attribute defines the request-scope managed bean name to keep alive.
+ </para>
+ <example id="exam-Component_Reference-a4jkeepAlive-a4jkeepAlive_example">
+ <title><sgmltag><a4j:keepAlive></sgmltag> example</title>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jkeepAlive-a4jkeepAlive_example.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-a4jkeepAlive-Non-Ajax_requests">
+ <title>Non-Ajax requests</title>
+ <para>
+ The <varname>ajaxOnly</varname> attribute determines whether or not the value of the bean should be available during non-Ajax requests; if <code>ajaxOnly="true"</code>, the request-scope bean keeps its value during Ajax requests, but any non-Ajax requests will re-create the bean as a regular request-scope bean.
+ </para>
+ </section>
+
+ <section id="sect-Component_Reference-a4jkeepAlive-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.ajax4jsf.components.KeepAlive</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.ajax4jsf.components.AjaxKeepAlive</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.ajax4jsf.components.AjaxKeepAlive</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<!-- TODO not in M2 -->
Modified: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Selection_and_ordering.xml
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Selection_and_ordering.xml 2010-08-23 03:50:06 UTC (rev 18921)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Selection_and_ordering.xml 2010-08-23 07:04:53 UTC (rev 18922)
@@ -11,8 +11,6 @@
<para>
The <sgmltag><rich:listShuttle></sgmltag> component is used for moving select items from one list into another. Items can optionally be re-ordered. It supports selection of multiple items, keyboard usage, and a customizable look and feel.
</para>
- <para>
- </para>
</section>
<section id="sect-Component_Reference-Selection_and_ordering-richorderingList">
Modified: modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Validation.xml
===================================================================
--- modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Validation.xml 2010-08-23 03:50:06 UTC (rev 18921)
+++ modules/docs/branches/draft/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Validation.xml 2010-08-23 07:04:53 UTC (rev 18922)
@@ -6,35 +6,9 @@
<para>
This chapter covers those components that validate user input. The components enhance <acronym>JSF</acronym> validation capabilities with Ajax support and the use of <application>Hibernate</application> validators.
</para>
+
<section id="sect-Component_Reference-Validation-richajaxValidator">
<title><sgmltag><rich:ajaxValidator></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.richfaces.ajaxValidator</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlajaxValidator</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.richfaces.ajaxValidator</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.richfaces.ajaxValidatorRenderer</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.ajaxValidatorTag</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><rich:ajaxValidator></sgmltag> component provides Ajax validation for <acronym>JSF</acronym> inputs. It is added as a child component to a <acronym>JSF</acronym> tag, and the <varname>event</varname> attribute specifies when to trigger the validation.
</para>
@@ -43,209 +17,242 @@
<para>
This example shows the use of <sgmltag><rich:ajaxValidator></sgmltag> with standard <acronym>JSF</acronym> validators. The validators check the length of the entered name, and the range of the entered age.
</para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-richajaxValidator-richajaxValidator_example.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-richajaxValidator-richajaxValidator_example.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
</example>
- <para>
- The <sgmltag><rich:ajaxValidator></sgmltag> component can also work with custom validators made using the <acronym>JSF</acronym> Validation <acronym>API</acronym> in the <package>javax.faces.validator</package> package, or with Hibernate Validator. Refer to the <citetitle>Hibernate Validator documentation</citetitle> for details on how to use Hibernate Validator.
- </para>
- <example id="exam-Component_Reference-richajaxValidator-Using_richajaxValidator_with_Hibernate_Validator">
- <title>Using <sgmltag><rich:ajaxValidator></sgmltag> with Hibernate Validator</title>
+
+ <section id="sect-Component_Reference-richajaxValidator-Custom_validators">
+ <title>Custom validators</title>
<para>
- This example shows the use of <sgmltag><rich:ajaxValidator></sgmltag> with Hibernate Validator. It validates the entered name, email, and age.
+ The <sgmltag><rich:ajaxValidator></sgmltag> component can also work with custom validators made using the <acronym>JSF</acronym> Validation <acronym>API</acronym> in the <package>javax.faces.validator</package> package, or with Hibernate Validator. Refer to the <citetitle>Hibernate Validator documentation</citetitle> for details on how to use Hibernate Validator.
</para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-richajaxValidator-Using_richajaxValidator_with_Hibernate_Validator-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <para>
- The validation is performed using the <classname>ValidationBean</classname> class:
- </para>
-
-<programlisting language="Java" role="JAVA">
-<xi:include href="extras/exam-Component_Reference-ValidationBean.js" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <blockquote>
- <figure id="figu-Component_Reference-Using_richajaxValidator_with_Hibernate_Validator-richajaxValidator_example_result">
- <title><sgmltag><rich:ajaxValidator></sgmltag> example result</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/figu-Component_Reference-richajaxValidator-richajaxValidator_example_result.png" format="PNG" width="444" />
- </imageobject>
- <textobject>
- <para>
- The result of the <sgmltag><rich:ajaxValidator></sgmltag> example: three text entry fields with corresponding validation messages.
- </para>
- </textobject>
- </mediaobject>
- </figure>
- </blockquote>
- </example>
+ <example id="exam-Component_Reference-richajaxValidator-Using_richajaxValidator_with_Hibernate_Validator">
+ <title>Using <sgmltag><rich:ajaxValidator></sgmltag> with Hibernate Validator</title>
+ <para>
+ This example shows the use of <sgmltag><rich:ajaxValidator></sgmltag> with Hibernate Validator. It validates the entered name, email, and age.
+ </para>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-richajaxValidator-Using_richajaxValidator_with_Hibernate_Validator-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ <para>
+ The validation is performed using the <classname>ValidationBean</classname> class:
+ </para>
+ <programlisting language="Java" role="JAVA"><xi:include href="extras/exam-Component_Reference-ValidationBean.js" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ <blockquote>
+ <figure id="figu-Component_Reference-Using_richajaxValidator_with_Hibernate_Validator-richajaxValidator_example_result">
+ <title><sgmltag><rich:ajaxValidator></sgmltag> example result</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/figu-Component_Reference-richajaxValidator-richajaxValidator_example_result.png" format="PNG" width="444" />
+ </imageobject>
+ <textobject>
+ <para>
+ The result of the <sgmltag><rich:ajaxValidator></sgmltag> example: three text entry fields with corresponding validation messages.
+ </para>
+ </textobject>
+ </mediaobject>
+ </figure>
+ </blockquote>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-richajaxValidator-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.richfaces.ajaxValidator</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlajaxValidator</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.richfaces.ajaxValidator</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.richfaces.ajaxValidatorRenderer</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.ajaxValidatorTag</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<section id="sect-Component_Reference-Validation-richbeanValidator">
<title><sgmltag><rich:beanValidator></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.richfaces.beanValidator</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlbeanValidator</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.richfaces.beanValidator</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.richfaces.beanValidatorRenderer</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.beanValidatorTag</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><rich:beanValidator></sgmltag> component provides model-based constraints using Hibernate Validator. This allows Hibernate Validator to be used similar to its use with Seam-based applications.
</para>
- <para>
- The <varname>summary</varname> attribute is used for displaying messages about validation errors.
- </para>
- <example id="exam-Component_Reference-richbeanValidator-richbeanValidator_example">
- <title><sgmltag><rich:beanValidator></sgmltag> example</title>
+ <section id="sect-Component_Reference-richbeanValidator-Basic_usage">
+ <title>Basic usage</title>
<para>
- This example shows the bean-based validation of a simple form, containing the user's name, email, and age. The <sgmltag><rich:beanValidator></sgmltag> component is defined in the same way as for <acronym>JSF</acronym> validators.
+ The <varname>summary</varname> attribute is used for displaying messages about validation errors.
</para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-richbeanValidator-richbeanValidator_example-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <para>
- The accompanying bean contains the validation data:
- </para>
-
-<programlisting language="Java" role="JAVA">
-<xi:include href="extras/exam-Component_Reference-ValidationBean.js" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <blockquote>
- <figure id="figu-Component_Reference-richbeanValidator_example-richbeanValidator_example_result">
- <title><sgmltag><rich:beanValidator></sgmltag> example result</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/figu-Component_Reference-richbeanValidator-richbeanValidator_example_result.png" format="PNG" width="444" />
- </imageobject>
- <textobject>
- <para>
- The result of the <sgmltag><rich:beanValidator></sgmltag> example: three text entry fields with corresponding validation messages.
- </para>
- </textobject>
- </mediaobject>
- </figure>
- </blockquote>
- </example>
+ <example id="exam-Component_Reference-richbeanValidator-richbeanValidator_example">
+ <title><sgmltag><rich:beanValidator></sgmltag> example</title>
+ <para>
+ This example shows the bean-based validation of a simple form, containing the user's name, email, and age. The <sgmltag><rich:beanValidator></sgmltag> component is defined in the same way as for <acronym>JSF</acronym> validators.
+ </para>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-richbeanValidator-richbeanValidator_example-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ <para>
+ The accompanying bean contains the validation data:
+ </para>
+ <programlisting language="Java" role="JAVA"><xi:include href="extras/exam-Component_Reference-ValidationBean.js" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ <blockquote>
+ <figure id="figu-Component_Reference-richbeanValidator_example-richbeanValidator_example_result">
+ <title><sgmltag><rich:beanValidator></sgmltag> example result</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/figu-Component_Reference-richbeanValidator-richbeanValidator_example_result.png" format="PNG" width="444" />
+ </imageobject>
+ <textobject>
+ <para>
+ The result of the <sgmltag><rich:beanValidator></sgmltag> example: three text entry fields with corresponding validation messages.
+ </para>
+ </textobject>
+ </mediaobject>
+ </figure>
+ </blockquote>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-richbeanValidator-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.richfaces.beanValidator</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlbeanValidator</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.richfaces.beanValidator</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.richfaces.beanValidatorRenderer</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.beanValidatorTag</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
<section id="sect-Component_Reference-Validation-richgraphValidator">
<title><sgmltag><rich:graphValidator></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- <parameter>component-type</parameter>: <classname>org.richfaces.graphValidator</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlgraphValidator</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>component-family</parameter>: <classname>org.richfaces.graphValidator</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>renderer-type</parameter>: <classname>org.richfaces.graphValidatorRenderer</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.graphValidatorTag</classname>
- </para>
- </listitem>
- </itemizedlist>
<para>
The <sgmltag><rich:graphValidator></sgmltag> component is used to wrap a group of input components for overall validation with Hibernate Validators. This is different from the <sgmltag><rich:beanValidator></sgmltag> component, which is used as a child element to individual input components.
</para>
- <para>
- The <varname>summary</varname> attribute is used for displaying messages about validation errors.
- </para>
- <example id="exam-Component_Reference-richgraphValidator-richgraphValidator_example">
- <title><sgmltag><rich:graphValidator></sgmltag> example</title>
+
+ <section id="sect-Component_Reference-richgraphValidator-Basic_usage">
+ <title>Basic usage</title>
<para>
- This example shows the validation of a simple form, containing the user's name, email, and age. The <sgmltag><rich:graphValidator></sgmltag> component wraps the input components to validate them together.
+ The <varname>summary</varname> attribute is used for displaying messages about validation errors.
</para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-richgraphValidator-richgraphValidator_example-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
+ <example id="exam-Component_Reference-richgraphValidator-richgraphValidator_example">
+ <title><sgmltag><rich:graphValidator></sgmltag> example</title>
+ <para>
+ This example shows the validation of a simple form, containing the user's name, email, and age. The <sgmltag><rich:graphValidator></sgmltag> component wraps the input components to validate them together.
+ </para>
+ <programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-richgraphValidator-richgraphValidator_example-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ <para>
+ The accompanying bean contains the validation data:
+ </para>
+ <programlisting language="Java" role="JAVA"><xi:include href="extras/exam-Component_Reference-ValidationBean.js" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ <blockquote>
+ <figure id="figu-Component_Reference-richgraphValidator_example-richgraphValidator_example_result">
+ <title><sgmltag><rich:graphValidator></sgmltag> example result</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/figu-Component_Reference-richgraphValidator-richgraphValidator_example_result.png" format="PNG" width="444" />
+ </imageobject>
+ <textobject>
+ <para>
+ The result of the <sgmltag><rich:graphValidator></sgmltag> example: three text entry fields with corresponding validation messages.
+ </para>
+ </textobject>
+ </mediaobject>
+ </figure>
+ </blockquote>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-richgraphValidator-Bean_values">
+ <title>Bean values</title>
<para>
- The accompanying bean contains the validation data:
+ The optional <varname>value</varname> attribute can be used to define a value bound to the bean. The bean properties are then validated again <emphasis>after</emphasis> the model has been updated.
</para>
+ <example id="exam-Component_Reference-richgraphValidator-Using_the_value_attribute">
+ <title>Using the <varname>value</varname> attribute</title>
-<programlisting language="Java" role="JAVA">
-<xi:include href="extras/exam-Component_Reference-ValidationBean.js" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <blockquote>
- <figure id="figu-Component_Reference-richgraphValidator_example-richgraphValidator_example_result">
- <title><sgmltag><rich:graphValidator></sgmltag> example result</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/figu-Component_Reference-richgraphValidator-richgraphValidator_example_result.png" format="PNG" width="444" />
- </imageobject>
- <textobject>
- <para>
- The result of the <sgmltag><rich:graphValidator></sgmltag> example: three text entry fields with corresponding validation messages.
- </para>
- </textobject>
- </mediaobject>
- </figure>
- </blockquote>
- </example>
- <para>
- The optional <varname>value</varname> attribute can be used to define a value bound to the bean. The bean properties are then validated again <emphasis>after</emphasis> the model has been updated.
- </para>
- <example id="exam-Component_Reference-richgraphValidator-Using_the_value_attribute">
- <title>Using the <varname>value</varname> attribute</title>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-richgraphValidator-Using_the_value_attribute.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <blockquote>
- <figure id="figu-Component_Reference-Using_the_value_attribute-Result_from_using_the_value_attribute">
- <title>Result from using the <varname>value</varname> attribute</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/figu-Component_Reference-richgraphValidator-Result_from_using_the_value_attribute.png" format="PNG" width="444" />
- </imageobject>
- <textobject>
- <para>
- The result from the example of using the <varname>value</varname> attribute with <sgmltag><rich:graphValidator></sgmltag>. The values in the number spinners need to validate before being stored.
- </para>
- </textobject>
- </mediaobject>
- </figure>
- </blockquote>
- </example>
+ <programlisting language="XML" role="XML">
+ <xi:include href="extras/exam-Component_Reference-richgraphValidator-Using_the_value_attribute.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ </programlisting>
+ <blockquote>
+ <figure id="figu-Component_Reference-Using_the_value_attribute-Result_from_using_the_value_attribute">
+ <title>Result from using the <varname>value</varname> attribute</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/figu-Component_Reference-richgraphValidator-Result_from_using_the_value_attribute.png" format="PNG" width="444" />
+ </imageobject>
+ <textobject>
+ <para>
+ The result from the example of using the <varname>value</varname> attribute with <sgmltag><rich:graphValidator></sgmltag>. The values in the number spinners need to validate before being stored.
+ </para>
+ </textobject>
+ </mediaobject>
+ </figure>
+ </blockquote>
+ </example>
+ </section>
+
+ <section id="sect-Component_Reference-richgraphValidator-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.richfaces.graphValidator</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlgraphValidator</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.richfaces.graphValidator</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.richfaces.graphValidatorRenderer</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.graphValidatorTag</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
</chapter>
15 years, 1 month
JBoss Rich Faces SVN: r18921 - in modules/docs/branches/draft: Developer_Guide/src/main/docbook/en-US and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-08-22 23:50:06 -0400 (Sun, 22 Aug 2010)
New Revision: 18921
Modified:
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Author_Group.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Book_Info.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Component_Development_Kit_Guide.ent
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Configuration.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Creating_a_new_component.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Creating_components_in_other_environments.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Developer_sample.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Introduction.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Naming_conventions.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Preface.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Revision_History.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Template_tags_reference.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Unit_testing.xml
modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Using_components_in_projects.xml
modules/docs/branches/draft/Developer_Guide/src/main/docbook/en-US/Book_Info.xml
modules/docs/branches/draft/Developer_Guide/src/main/docbook/en-US/Developer_Guide.ent
modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Migration_Guide.ent
Log:
Updated legacy entities
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Author_Group.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Author_Group.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Author_Group.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<authorgroup>
<author>
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Book_Info.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Book_Info.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Book_Info.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,12 +1,10 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE bookinfo PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<bookinfo id="book-Component_Development_Kit_Guide-Component_Development_Kit_Guide">
<title>Component Development Kit Guide</title>
- <subtitle>Developing custom components for use in RichFaces &VERSIONLONG;<remark> (draft)</remark>
+ <subtitle>Developing custom components for use in RichFaces 4<remark> (draft)</remark>
projects</subtitle>
<productname>RichFaces</productname>
<productnumber>4.0</productnumber>
@@ -14,7 +12,7 @@
<pubsnumber>1</pubsnumber>
<abstract>
<para>This book details how to use the RichFaces Component Development
-Kit to create custom components for use with the RichFaces &VERSION;
+Kit to create custom components for use with the RichFaces 4
framework.</para>
</abstract>
<corpauthor>
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Component_Development_Kit_Guide.ent
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Component_Development_Kit_Guide.ent 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Component_Development_Kit_Guide.ent 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,6 +1,5 @@
<!ENTITY PRODUCT "RichFaces">
<!ENTITY VERSION "4.0">
-<!ENTITY VERSIONLONG "4.0.0.ALPHA2">
<!ENTITY BOOKID "Component_Development_Kit_Guide">
<!ENTITY HOLDER "Red Hat">
<!ENTITY YEAR "2009">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Configuration.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Configuration.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Configuration.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<chapter id="chap-Component_Development_Kit_Guide-Configuration">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Creating_a_new_component.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Creating_a_new_component.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Creating_a_new_component.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<chapter id="chap-Component_Development_Kit_Guide-Creating_a_new_component">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Creating_components_in_other_environments.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Creating_components_in_other_environments.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Creating_components_in_other_environments.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<chapter id="chap-Component_Development_Kit_Guide-Creating_components_in_other_environments">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Developer_sample.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Developer_sample.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Developer_sample.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<chapter id="chap-Component_Development_Kit_Guide-Developer_sample">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Introduction.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Introduction.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Introduction.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<chapter id="chap-Component_Development_Kit_Guide-Introduction">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Naming_conventions.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Naming_conventions.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Naming_conventions.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<appendix id="appe-Component_Development_Kit_Guide-Naming_conventions">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Preface.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Preface.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Preface.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE preface PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<preface id="pref-Component_Development_Kit_Guide-Preface">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Revision_History.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Revision_History.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Revision_History.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<appendix id="appe-Component_Development_Kit_Guide-Revision_History">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Template_tags_reference.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Template_tags_reference.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Template_tags_reference.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<appendix id="appe-Component_Development_Kit_Guide-Template_tags_reference">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Unit_testing.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Unit_testing.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Unit_testing.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<chapter id="chap-Component_Development_Kit_Guide-Unit_testing">
Modified: modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Using_components_in_projects.xml
===================================================================
--- modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Using_components_in_projects.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Component_Development_Kit_Guide/src/main/docbook/en-US/Using_components_in_projects.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Component_Development_Kit_Guide.ent">
-%BOOK_ENTITIES;
]>
<chapter id="chap-Component_Development_Kit_Guide-Using_components_in_projects">
Modified: modules/docs/branches/draft/Developer_Guide/src/main/docbook/en-US/Book_Info.xml
===================================================================
--- modules/docs/branches/draft/Developer_Guide/src/main/docbook/en-US/Book_Info.xml 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Developer_Guide/src/main/docbook/en-US/Book_Info.xml 2010-08-23 03:50:06 UTC (rev 18921)
@@ -3,7 +3,7 @@
]>
<bookinfo id="book-Developer_Guide-Developer_Guide">
<title>Developer Guide</title>
- <subtitle>Developing applications using RichFaces &VERSIONLONG;<remark> (draft)</remark>
+ <subtitle>Developing applications using RichFaces 4<remark> (draft)</remark>
</subtitle>
<productname>RichFaces</productname>
<productnumber>4.0</productnumber>
@@ -11,7 +11,7 @@
<pubsnumber>1</pubsnumber>
<abstract>
<para>
- Read this book for a comprehensive guide to getting started and working with RichFaces &VERSION;. It includes details of the architecture, the framework's use in different applications, and skinning implementations.
+ Read this book for a comprehensive guide to getting started and working with RichFaces 4. It includes details of the architecture, the framework's use in different applications, and skinning implementations.
</para>
</abstract>
<corpauthor>
Modified: modules/docs/branches/draft/Developer_Guide/src/main/docbook/en-US/Developer_Guide.ent
===================================================================
--- modules/docs/branches/draft/Developer_Guide/src/main/docbook/en-US/Developer_Guide.ent 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Developer_Guide/src/main/docbook/en-US/Developer_Guide.ent 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,6 +1,5 @@
<!ENTITY PRODUCT "RichFaces">
<!ENTITY VERSION "4.0">
-<!ENTITY VERSIONLONG "4.0.0.ALPHA2">
<!ENTITY BOOKID "Developer_Guide">
<!ENTITY HOLDER "Red Hat">
<!ENTITY YEAR "2009">
Modified: modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Migration_Guide.ent
===================================================================
--- modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Migration_Guide.ent 2010-08-23 02:06:42 UTC (rev 18920)
+++ modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Migration_Guide.ent 2010-08-23 03:50:06 UTC (rev 18921)
@@ -1,6 +1,5 @@
<!ENTITY PRODUCT "RichFaces">
<!ENTITY VERSION "4.0">
-<!ENTITY VERSIONLONG "4.0.0.ALPHA2">
<!ENTITY BOOKID "Migration_Guide">
<!ENTITY HOLDER "Red Hat Inc.">
<!ENTITY YEAR "2009">
15 years, 1 month
JBoss Rich Faces SVN: r18920 - modules/docs/branches/draft.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-08-22 22:06:42 -0400 (Sun, 22 Aug 2010)
New Revision: 18920
Added:
modules/docs/branches/draft/Component_Development_Kit_Guide/
Log:
Adding CDK Guide to drafting branch
Copied: modules/docs/branches/draft/Component_Development_Kit_Guide (from rev 18919, modules/docs/trunk/Component_Development_Kit_Guide)
15 years, 1 month
JBoss Rich Faces SVN: r18919 - modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-08-22 21:43:24 -0400 (Sun, 22 Aug 2010)
New Revision: 18919
Modified:
modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Book_Info.xml
modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Changes_and_new_features.xml
modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Introduction.xml
modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Migration_Guide.xml
modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Preface.xml
modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Revision_History.xml
modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Upgrading.xml
Log:
Updated Migration Guide with new components
Modified: modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Book_Info.xml
===================================================================
--- modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Book_Info.xml 2010-08-22 17:57:24 UTC (rev 18918)
+++ modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Book_Info.xml 2010-08-23 01:43:24 UTC (rev 18919)
@@ -1,25 +1,22 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE bookinfo PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Migration_Guide.ent">
-%BOOK_ENTITIES;
]>
<bookinfo id="book-Migration_Guide-Migration_Guide">
<title>Migration Guide</title>
- <subtitle>Migrating existing projects to RichFaces &VERSIONLONG;<remark> (draft)</remark>
- </subtitle>
+ <subtitle>Migrating existing projects to RichFaces 4.0.0<remark> (draft)</remark></subtitle>
<productname>RichFaces</productname>
<productnumber>4.0</productnumber>
<edition>0</edition>
<pubsnumber>1</pubsnumber>
<abstract>
<para>
- Read this book to take an existing <productname>RichFaces</productname> project and upgrade it for use with <productname>RichFaces</productname> &VERSION;. The book covers changes in component usage and behaviors, as well as new framework features which may affect existing <productname>RichFaces</productname> projects.
+ Read this book to take an existing <productname>RichFaces</productname> project and upgrade it for use with <productname>RichFaces</productname> 4. The book covers changes in component usage and behaviors, as well as new framework features which may affect existing <productname>RichFaces</productname> projects.
</para>
</abstract>
<corpauthor>
<inlinemediaobject>
<imageobject>
- <imagedata fileref="./images/rf_logo.png" format="PNG" />
+ <imagedata fileref="./images/rf_logo.png" format="PNG" scalefit="1" width="444" />
</imageobject>
<textobject>
<phrase>Logo</phrase>
Modified: modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Changes_and_new_features.xml
===================================================================
--- modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Changes_and_new_features.xml 2010-08-22 17:57:24 UTC (rev 18918)
+++ modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Changes_and_new_features.xml 2010-08-23 01:43:24 UTC (rev 18919)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Migration_Guide.ent">
-%BOOK_ENTITIES;
]>
<chapter id="chap-Migration_Guide-Changes_and_new_features">
<title>Changes and new features</title>
@@ -63,6 +61,9 @@
<listitem>
<simplelist type="vert" columns="3">
<member>
+ <sgmltag><rich:autocomplete></sgmltag>
+ </member>
+ <member>
<sgmltag><rich:calendar></sgmltag>
</member>
<member>
@@ -87,16 +88,16 @@
<sgmltag><rich:progressBar></sgmltag>
</member>
<member>
- <sgmltag><rich:simpleTogglePanel></sgmltag>
+ <sgmltag><rich:tab></sgmltag>
</member>
<member>
- <sgmltag><rich:suggestionBox></sgmltag>
+ <sgmltag><rich:toggleControl></sgmltag>
</member>
<member>
- <sgmltag><rich:tab></sgmltag>
+ <sgmltag><rich:togglePanel></sgmltag>
</member>
<member>
- <sgmltag><rich:toggleControl></sgmltag>
+ <sgmltag><rich:togglePanelItem></sgmltag>
</member>
<member>
<sgmltag><rich:tree></sgmltag>
@@ -150,6 +151,9 @@
<listitem>
<simplelist type="vert" columns="3">
<member>
+ <sgmltag><rich:autocomplete></sgmltag>
+ </member>
+ <member>
<sgmltag><rich:ajaxValidator></sgmltag>
</member>
<member>
@@ -186,18 +190,12 @@
<sgmltag><rich:progressBar></sgmltag>
</member>
<member>
- <sgmltag><rich:scrollableDataTable></sgmltag>
+ <sgmltag><rich:tab></sgmltag>
</member>
<member>
- <sgmltag><rich:simpleTogglePanel></sgmltag>
+ <sgmltag><rich:togglePanel></sgmltag>
</member>
<member>
- <sgmltag><rich:suggestionBox></sgmltag>
- </member>
- <member>
- <sgmltag><rich:tab></sgmltag>
- </member>
- <member>
<sgmltag><rich:tree></sgmltag>
</member>
<member>
@@ -252,6 +250,9 @@
<sgmltag><rich:ajaxValidator></sgmltag>
</member>
<member>
+ <sgmltag><rich:autocomplete></sgmltag>
+ </member>
+ <member>
<sgmltag><rich:calendar></sgmltag>
</member>
<member>
@@ -279,21 +280,18 @@
<sgmltag><rich:progressBar></sgmltag>
</member>
<member>
- <sgmltag><rich:scrollableDataTable></sgmltag>
+ <sgmltag><rich:tab></sgmltag>
</member>
<member>
- <sgmltag><rich:simpleTogglePanel></sgmltag>
+ <sgmltag><rich:toggleControl></sgmltag>
</member>
<member>
- <sgmltag><rich:suggestionBox></sgmltag>
+ <sgmltag><rich:togglePanel></sgmltag>
</member>
<member>
- <sgmltag><rich:tab></sgmltag>
+ <sgmltag><rich:togglePanelItem></sgmltag>
</member>
<member>
- <sgmltag><rich:toggleControl></sgmltag>
- </member>
- <member>
<sgmltag><rich:tree></sgmltag>
</member>
</simplelist>
@@ -345,6 +343,9 @@
<sgmltag><rich:ajaxValidator></sgmltag>
</member>
<member>
+ <sgmltag><rich:autocomplete></sgmltag>
+ </member>
+ <member>
<sgmltag><rich:calendar></sgmltag>
</member>
<member>
@@ -372,21 +373,18 @@
<sgmltag><rich:progressBar></sgmltag>
</member>
<member>
- <sgmltag><rich:scrollableDataTable></sgmltag>
+ <sgmltag><rich:tab></sgmltag>
</member>
<member>
- <sgmltag><rich:simpleTogglePanel></sgmltag>
+ <sgmltag><rich:toggleControl></sgmltag>
</member>
<member>
- <sgmltag><rich:suggestionBox></sgmltag>
+ <sgmltag><rich:togglePanel></sgmltag>
</member>
<member>
- <sgmltag><rich:tab></sgmltag>
+ <sgmltag><rich:togglePanelItem></sgmltag>
</member>
<member>
- <sgmltag><rich:toggleControl></sgmltag>
- </member>
- <member>
<sgmltag><rich:tree></sgmltag>
</member>
<member>
@@ -502,6 +500,9 @@
<sgmltag><rich:ajaxValidator></sgmltag>
</member>
<member>
+ <sgmltag><rich:autocomplete></sgmltag>
+ </member>
+ <member>
<sgmltag><rich:calendar></sgmltag>
</member>
<member>
@@ -529,21 +530,18 @@
<sgmltag><rich:progressBar></sgmltag>
</member>
<member>
- <sgmltag><rich:scrollableDataTable></sgmltag>
+ <sgmltag><rich:tab></sgmltag>
</member>
<member>
- <sgmltag><rich:simpleTogglePanel></sgmltag>
+ <sgmltag><rich:toggleControl></sgmltag>
</member>
<member>
- <sgmltag><rich:suggestionBox></sgmltag>
+ <sgmltag><rich:togglePanel></sgmltag>
</member>
<member>
- <sgmltag><rich:tab></sgmltag>
+ <sgmltag><rich:togglePanelItem></sgmltag>
</member>
<member>
- <sgmltag><rich:toggleControl></sgmltag>
- </member>
- <member>
<sgmltag><rich:tree></sgmltag>
</member>
<member>
@@ -595,6 +593,9 @@
<sgmltag><rich:ajaxValidator></sgmltag>
</member>
<member>
+ <sgmltag><rich:autocomplete></sgmltag>
+ </member>
+ <member>
<sgmltag><rich:calendar></sgmltag>
</member>
<member>
@@ -619,15 +620,9 @@
<sgmltag><rich:panelMenuItem></sgmltag>
</member>
<member>
- <sgmltag><rich:scrollableDataTable></sgmltag>
+ <sgmltag><rich:togglePanel></sgmltag>
</member>
<member>
- <sgmltag><rich:simpleTogglePanel></sgmltag>
- </member>
- <member>
- <sgmltag><rich:suggestionBox></sgmltag>
- </member>
- <member>
<sgmltag><rich:tab></sgmltag>
</member>
<member>
@@ -706,9 +701,6 @@
<sgmltag><rich:progressBar></sgmltag>
</member>
<member>
- <sgmltag><rich:simpleTogglePanel></sgmltag>
- </member>
- <member>
<sgmltag><rich:suggestionBox></sgmltag>
</member>
<member>
@@ -718,6 +710,12 @@
<sgmltag><rich:toggleControl></sgmltag>
</member>
<member>
+ <sgmltag><rich:togglePanel></sgmltag>
+ </member>
+ <member>
+ <sgmltag><rich:togglePanelItem></sgmltag>
+ </member>
+ <member>
<sgmltag><rich:toolTip></sgmltag>
</member>
<member>
@@ -887,7 +885,7 @@
</section>
<section id="sect-Migration_Guide-Feature_changes-a4jpush_and_a4jpoll">
- <title><sgmltag><a4J:push></sgmltag> and <sgmltag><a4j:poll></sgmltag></title>
+ <title><sgmltag><a4j:push></sgmltag> and <sgmltag><a4j:poll></sgmltag></title>
<para>
Both the <sgmltag><a4j:push></sgmltag> and <sgmltag><a4j:poll></sgmltag> components now raise a client-side event. For <sgmltag><a4j:push></sgmltag>, this is the <varname>ondataavailable</varname> event, while for <sgmltag><a4j:poll></sgmltag> it is the <varname>ontimeevent</varname>.
</para>
@@ -926,35 +924,63 @@
</listitem>
</itemizedlist>
</section>
- <!--
- <section id="sect-Migration_Guide-Feature_changes-richtogglePanel">
- <title><rich:togglePanel></title>
+
+ <section id="sect-Migration_Guide-Feature_changes-richpopupPanel">
+ <title><rich:popupPanel></title>
<para>
- Incomplete.
+ The <sgmltag><rich:popupPanel></sgmltag> component replaces the old <sgmltag><rich:modalPanel></sgmltag>. It allows the pop-up window to be presented as either a modal or non-modal window.
</para>
</section>
- <section id="sect-Migration_Guide-Feature_changes-richtabPanel">
- <title><rich:tabPanel></title>
+ <section id="sect-Migration_Guide-Features_changes-richtogglePanel">
+ <title><sgmltag><rich:togglePanel></sgmltag></title>
<para>
- Incomplete.
+ The <sgmltag><rich:togglePanel></sgmltag> no longer uses facets for managing switchable panels.
</para>
</section>
+ </section>
+
+ <section id="sect-Migration_Guide-Changes_and_new_features-Consolidated_or_renamed_components">
+ <title>Consolidated or renamed components</title>
+ <para>
+ Several new components and behaviors have been added to <productname>RichFaces</productname> &VERSION;, some of which replace the functionality of deprecated elements. For full details on how to use these new components and behaviors, refer to the <citetitle>Component Reference</citetitle>.
+ </para>
- <section id="sect-Migration_Guide-Feature_changes-richtoolBar">
- <title><rich:toolBar></title>
+ <section id="sect-Migration_Guide-Consolidated_or_renamed_components-richautocomplete">
+ <title><sgmltag><rich:autocomplete></sgmltag></title>
<para>
- Incomplete.
+ The <sgmltag><rich:autocomplete></sgmltag> component combines and replaces the old <sgmltag><rich:comboBox></sgmltag> and <sgmltag><rich:suggestionBox></sgmltag> components.
</para>
</section>
- <section id="sect-Migration_Guide-Feature_changes-richtoolTip">
- <title><rich:toolTip></title>
+ <section id="sect-Migration_Guide-Consolidated_or_renamed_components-richaccordion_and_richaccordionItem">
+ <title><sgmltag><rich:accordion></sgmltag> and <sgmltag><rich:accordionItem></sgmltag></title>
<para>
- Incomplete.
+ The <sgmltag><rich:accordion></sgmltag> component replaces the old <sgmltag><rich:panelBar></sgmltag> component. The <sgmltag><rich:accordionItem></sgmltag> component replaces the old <sgmltag><rich:panelBarItem></sgmltag> component.
</para>
</section>
- -->
+
+ <section id="sect-Migration_Guide-Consolidated_or_renamed_components-richextendedDataTable">
+ <title><sgmltag><rich:extendedDataTable></sgmltag></title>
+ <para>
+ The <sgmltag><rich:extendedDataTable></sgmltag> component now includes the functionality of the old <sgmltag><rich:scrollableDataTable></sgmltag> component.
+ </para>
+ </section>
+
+ <section id="sect-Migration_Guide-Consolidated_or_renamed_components-richpopupPanel">
+ <title><sgmltag><rich:popupPanel></sgmltag></title>
+ <para>
+ The <sgmltag><rich:popupPanel></sgmltag> component replaces the old <sgmltag><rich:modalPanel></sgmltag> component.
+ </para>
+ </section>
+
+ <section id="sect-Migration_Guide-Consolidated_or_renamed_components-richtogglePanel_and_richtogglePanelItem">
+ <title><sgmltag><rich:togglePanel></sgmltag> and <sgmltag><rich:togglePanelItem></sgmltag></title>
+ <para>
+ The functionality of the old <sgmltag><rich:togglePanel></sgmltag> component has been divided into two separate components: the <sgmltag><rich:togglePanel></sgmltag> and <sgmltag><rich:togglePanelItem></sgmltag> components. This naming now follows the convention of other switchable panel components.
+ </para>
+ </section>
+
</section>
<section id="sect-Migration_Guide-Changes_and_new_features-New_components_and_behaviors">
@@ -962,7 +988,6 @@
<para>
Several new components and behaviors have been added to <productname>RichFaces</productname> &VERSION;, some of which replace the functionality of deprecated elements. For full details on how to use these new components and behaviors, refer to the <citetitle>Developer Guide</citetitle>.
</para>
- <!-- dataTable, dataLists, trees possibly included here as they may be consolidated -->
<section id="sect-Migration_Guide-New_components_and_behaviors-richbusyBehavior">
<title><sgmltag><rich:busyBehavior></sgmltag></title>
@@ -971,36 +996,55 @@
</para>
</section>
- <!--
- <section id="sect-Migration_Guide-New_components_and_behaviors-richpopupPanel">
- <title><sgmltag><rich:popupPanel></sgmltag></title>
+ <section id="sect-Migration_Guide-New_components_and_behaviors-richtogglePanelItem">
+ <title><sgmltag><rich:togglePanelItem></sgmltag></title>
<para>
- Incomplete.
+ The <sgmltag><rich:togglePanel></sgmltag> component now manages multiple <sgmltag><rich:togglePanelItem></sgmltag> components instead of using facets for the switchable panels. Refer to <xref linkend="sect-Migration_Guide-Consolidated_or_renamed_components-richtogglePanel_and_richtogglePanelItem" /> and the components' descriptions in the <citetitle>Component Reference</citetitle> for further details.
</para>
</section>
- -->
</section>
<section id="sect-Migration_Guide-Changes_and_new_features-Deprecated_components_and_behaviors">
<title>Deprecated components and behaviors</title>
<para>
- Some components and behaviors have been deprecated in <productname>RichFaces</productname> &VERSION;. For the most part these items have their functionality replicated by another component or behavior.
+ Some components and behaviors have been deprecated in <productname>RichFaces</productname> &VERSION;. For the most part these items have their functionality replicated by another component or behavior. Refer to <xref linkend="sect-Migration_Guide-Changes_and_new_features-Consolidated_or_renamed_components" /> for further details on consolidated functionality.
</para>
+
<section id="sect-Migration_Guide-Deprecated_components_and_behaviors-a4jpage">
<title><sgmltag><a4j:page></sgmltag></title>
<para>
<productname>RichFaces</productname> &VERSION; drops support for the <sgmltag><a4j:page></sgmltag> component. The component was previously used for solving incompatibility in the JavaServer Pages (<acronym>JSP</acronym>) environment with Apache MyFaces in early Ajax4jsf versions.
</para>
</section>
- <!--
+
+ <section id="sect-Migration_Guide-Deprecated_components_and_behaviors-richcomboBox_and_richsuggestionBox">
+ <title><sgmltag><rich:comboBox></sgmltag> and <sgmltag><rich:suggestionBox></sgmltag></title>
+ <para>
+ The functionality of the old <sgmltag><rich:comboBox></sgmltag> and <sgmltag><rich:suggestionBox></sgmltag> components is now available through the <sgmltag><rich:autocomplete></sgmltag> component.
+ </para>
+ </section>
+
<section id="sect-Migration_Guide-Deprecated_components_and_behaviors-richmodalPanel">
<title><sgmltag><rich:modalPanel></sgmltag></title>
<para>
- Incomplete.
+ The functionality of the old <sgmltag><rich:modalPanel></sgmltag> component is now available through the <sgmltag><rich:popupPanel></sgmltag> component.
</para>
</section>
- -->
+
+ <section id="sect-Migration_Guide-Deprecated_components_and_behaviors-richpanelBar_and_richpanelBarItem">
+ <title><sgmltag><rich:panelBar></sgmltag> and <sgmltag><rich:panelBarItem></sgmltag></title>
+ <para>
+ The functionality of the old <sgmltag><rich:panelBar></sgmltag> component is now available through the <sgmltag><rich:accordion></sgmltag> component. The functionality of the old <sgmltag><rich:panelBarIten></sgmltag> component is now available through the <sgmltag><rich:accordionItem></sgmltag> component.
+ </para>
+ </section>
+
+ <section id="sect-Migration_Guide-Deprecated_components_and_behaviors-richscrollableDataTable">
+ <title><sgmltag><rich:scrollableDataTable></sgmltag></title>
+ <para>
+ The functionality of the old <sgmltag><rich:scrollableDataTable></sgmltag> component is now available through the <sgmltag><rich:extendedDataTable></sgmltag> component.
+ </para>
+ </section>
+
</section>
-
</chapter>
Modified: modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Introduction.xml
===================================================================
--- modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Introduction.xml 2010-08-22 17:57:24 UTC (rev 18918)
+++ modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Introduction.xml 2010-08-23 01:43:24 UTC (rev 18919)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Migration_Guide.ent">
-%BOOK_ENTITIES;
]>
<chapter id="chap-Migration_Guide-Introduction">
<title>Introduction</title>
Modified: modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Migration_Guide.xml
===================================================================
--- modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Migration_Guide.xml 2010-08-22 17:57:24 UTC (rev 18918)
+++ modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Migration_Guide.xml 2010-08-23 01:43:24 UTC (rev 18919)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Migration_Guide.ent">
-%BOOK_ENTITIES;
]>
<book status="draft">
<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
Modified: modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Preface.xml
===================================================================
--- modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Preface.xml 2010-08-22 17:57:24 UTC (rev 18918)
+++ modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Preface.xml 2010-08-23 01:43:24 UTC (rev 18919)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE preface PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Migration_Guide.ent">
-%BOOK_ENTITIES;
]>
<preface id="pref-Migration_Guide-Preface">
<title>Preface</title>
Modified: modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Revision_History.xml
===================================================================
--- modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Revision_History.xml 2010-08-22 17:57:24 UTC (rev 18918)
+++ modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Revision_History.xml 2010-08-23 01:43:24 UTC (rev 18919)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Migration_Guide.ent">
-%BOOK_ENTITIES;
]>
<appendix id="appe-Migration_Guide-Revision_History">
<title>Revision History</title>
Modified: modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Upgrading.xml
===================================================================
--- modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Upgrading.xml 2010-08-22 17:57:24 UTC (rev 18918)
+++ modules/docs/branches/draft/Migration_Guide/src/main/docbook/en-US/Upgrading.xml 2010-08-23 01:43:24 UTC (rev 18919)
@@ -1,7 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Migration_Guide.ent">
-%BOOK_ENTITIES;
]>
<chapter id="chap-Migration_Guide-Upgrading">
<title>Upgrading</title>
@@ -49,6 +47,7 @@
</para>
</listitem>
</itemizedlist>
+ <!--
<para>
Existing projects should already contain the following libraries; if not, they will need to be included in the libraries directory as well:
</para>
@@ -74,6 +73,7 @@
</para>
</listitem>
</itemizedlist>
+ -->
</step>
<step id="step-Migration_Guide-Installation-Set_up_Maven">
<title>Set up Maven</title>
15 years, 1 month
JBoss Rich Faces SVN: r18918 - in trunk: archetypes and 53 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-08-22 13:57:24 -0400 (Sun, 22 Aug 2010)
New Revision: 18918
Modified:
trunk/archetypes/pom.xml
trunk/archetypes/richfaces-archetype-simpleapp/pom.xml
trunk/archetypes/richfaces-component-short/pom.xml
trunk/archetypes/richfaces-component/pom.xml
trunk/archetypes/richfaces-components-aggregator/pom.xml
trunk/bom/pom.xml
trunk/cdk/annotations/pom.xml
trunk/cdk/attributes/pom.xml
trunk/cdk/commons/pom.xml
trunk/cdk/dist/pom.xml
trunk/cdk/generator/pom.xml
trunk/cdk/maven-cdk-plugin/pom.xml
trunk/cdk/maven-resources-plugin/pom.xml
trunk/cdk/parent/pom.xml
trunk/cdk/pom.xml
trunk/cdk/xinclude/pom.xml
trunk/core/api/pom.xml
trunk/core/commons/pom.xml
trunk/core/impl/pom.xml
trunk/core/parent/pom.xml
trunk/core/pom.xml
trunk/dist/pom.xml
trunk/examples/core-demo/pom.xml
trunk/examples/input-demo/pom.xml
trunk/examples/iteration-demo/pom.xml
trunk/examples/misc-demo/pom.xml
trunk/examples/output-demo/pom.xml
trunk/examples/parent/pom.xml
trunk/examples/pom.xml
trunk/examples/repeater-demo/pom.xml
trunk/examples/richfaces-showcase/pom.xml
trunk/parent/pom.xml
trunk/pom.xml
trunk/ui/common/api/pom.xml
trunk/ui/common/pom.xml
trunk/ui/common/ui/pom.xml
trunk/ui/core/api/pom.xml
trunk/ui/core/pom.xml
trunk/ui/core/ui/pom.xml
trunk/ui/dist/pom.xml
trunk/ui/dist/richfaces-components-api/pom.xml
trunk/ui/dist/richfaces-components-ui/pom.xml
trunk/ui/input/api/pom.xml
trunk/ui/input/pom.xml
trunk/ui/input/ui/pom.xml
trunk/ui/iteration/api/pom.xml
trunk/ui/iteration/pom.xml
trunk/ui/iteration/ui/pom.xml
trunk/ui/misc/pom.xml
trunk/ui/misc/ui/pom.xml
trunk/ui/output/api/pom.xml
trunk/ui/output/pom.xml
trunk/ui/output/ui/pom.xml
trunk/ui/parent/pom.xml
trunk/ui/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: trunk/archetypes/pom.xml
===================================================================
--- trunk/archetypes/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/archetypes/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -17,7 +17,7 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -30,7 +30,7 @@
<groupId>org.richfaces.archetypes</groupId>
<artifactId>archetypes-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Archetypes: Aggregator</name>
@@ -48,9 +48,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/archetypes</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/archetypes</url>
</scm>
</project>
Modified: trunk/archetypes/richfaces-archetype-simpleapp/pom.xml
===================================================================
--- trunk/archetypes/richfaces-archetype-simpleapp/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/archetypes/richfaces-archetype-simpleapp/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-simpleapp</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Simple Application</name>
@@ -78,9 +78,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes/richfac...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes/richfaces-...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
</scm>
</project>
Modified: trunk/archetypes/richfaces-component/pom.xml
===================================================================
--- trunk/archetypes/richfaces-component/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/archetypes/richfaces-component/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Component</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes/richfac...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes/richfaces-...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
</scm>
</project>
Modified: trunk/archetypes/richfaces-component-short/pom.xml
===================================================================
--- trunk/archetypes/richfaces-component-short/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/archetypes/richfaces-component-short/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component-short</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Component Short</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes/richfac...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes/richfaces-...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
</scm>
</project>
Modified: trunk/archetypes/richfaces-components-aggregator/pom.xml
===================================================================
--- trunk/archetypes/richfaces-components-aggregator/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/archetypes/richfaces-components-aggregator/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-components-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Components Aggregator</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes/richfac...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes/richfaces-...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
</scm>
</project>
Modified: trunk/bom/pom.xml
===================================================================
--- trunk/bom/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/bom/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -23,7 +23,7 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces BOM</name>
<parent>
@@ -217,9 +217,9 @@
</dependencyManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/b...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/buil...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/build/bom</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/build/bom</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/build/bom</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/build/bom</url>
</scm>
</project>
Modified: trunk/cdk/annotations/pom.xml
===================================================================
--- trunk/cdk/annotations/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/cdk/annotations/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<description>That project contains annotations for JSF classes</description>
<name>annotations</name>
<dependencies>
Modified: trunk/cdk/attributes/pom.xml
===================================================================
--- trunk/cdk/attributes/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/cdk/attributes/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>attributes</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<description>That project contains JAXB bindings for model classes representing schema attributes data</description>
<name>attributes</name>
Modified: trunk/cdk/commons/pom.xml
===================================================================
--- trunk/cdk/commons/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/cdk/commons/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>commons</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>commons</name>
<build>
<plugins>
Modified: trunk/cdk/dist/pom.xml
===================================================================
--- trunk/cdk/dist/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/cdk/dist/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -4,20 +4,20 @@
<parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>dist</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>JSF Components Development Kit (CDK) distribution assembly</name>
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/cdk/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20100822-M2/cdk/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/cdk/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/cdk/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk</url>
</scm>
<build>
<finalName>cdk</finalName>
Modified: trunk/cdk/generator/pom.xml
===================================================================
--- trunk/cdk/generator/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/cdk/generator/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -3,13 +3,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Java Server Faces component generator</name>
Modified: trunk/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-cdk-plugin/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/cdk/maven-cdk-plugin/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -2,13 +2,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
Modified: trunk/cdk/maven-resources-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-resources-plugin/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/cdk/maven-resources-plugin/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -4,13 +4,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-resources-plugin</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>maven-resources-plugin</name>
<description>Maven plugin for packaging resources with web application</description>
Modified: trunk/cdk/parent/pom.xml
===================================================================
--- trunk/cdk/parent/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/cdk/parent/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -13,7 +13,7 @@
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development Kit (CDK)</name>
@@ -22,9 +22,9 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/cdk/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/tags/4.0.0.20100822-...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/cdk/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/cdk/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent</url>
</scm>
<build>
Modified: trunk/cdk/pom.xml
===================================================================
--- trunk/cdk/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/cdk/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development Kit (CDK)</name>
<properties>
@@ -32,9 +32,9 @@
</modules>
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/cdk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/cdk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20100822-M2/cdk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/cdk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/cdk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk</url>
</scm>
<!-- Minimal build configuration -->
Modified: trunk/cdk/xinclude/pom.xml
===================================================================
--- trunk/cdk/xinclude/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/cdk/xinclude/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -22,13 +22,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>xinclude</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Cocoon 3: xinclude transformer</name>
<description>Cocoon 3 xinclude transformer with Xpointer scheme support.</description>
Modified: trunk/core/api/pom.xml
===================================================================
--- trunk/core/api/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/core/api/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -82,8 +82,8 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/core/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/core/api</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/core/api</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/core/api</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/core/commons/pom.xml
===================================================================
--- trunk/core/commons/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/core/commons/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -21,13 +21,13 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.commons</groupId>
<artifactId>richfaces-commons-api</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Commons API</name>
<dependencies>
@@ -57,8 +57,8 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/comm...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/commons/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/commons/api</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/commons/api</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/commons/api</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/core/impl/pom.xml
===================================================================
--- trunk/core/impl/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/core/impl/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -253,8 +253,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/core/impl</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/core/impl</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/core/impl</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/core/impl</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/core/parent/pom.xml
===================================================================
--- trunk/core/parent/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/core/parent/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -23,13 +23,13 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Core Parent</name>
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -54,8 +54,8 @@
</plugins>
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/core/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/core/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/core/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/core/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/core/pom.xml
===================================================================
--- trunk/core/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/core/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Core Aggregator</name>
@@ -44,9 +44,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/core</url>
</scm>
</project>
Modified: trunk/dist/pom.xml
===================================================================
--- trunk/dist/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/dist/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-distribution</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces Distribution Assembler</name>
@@ -191,8 +191,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/examples/core-demo/pom.xml
===================================================================
--- trunk/examples/core-demo/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/examples/core-demo/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>core-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Examples: Core</name>
<properties>
@@ -217,8 +217,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples/core-demo</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples/core-demo</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
Modified: trunk/examples/input-demo/pom.xml
===================================================================
--- trunk/examples/input-demo/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/examples/input-demo/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>input-demo</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Inputs</name>
<packaging>war</packaging>
Modified: trunk/examples/iteration-demo/pom.xml
===================================================================
--- trunk/examples/iteration-demo/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/examples/iteration-demo/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -17,21 +17,21 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>iteration-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Examples: Iteration</name>
<properties>
Modified: trunk/examples/misc-demo/pom.xml
===================================================================
--- trunk/examples/misc-demo/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/examples/misc-demo/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -17,20 +17,20 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>misc-demo</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>RichFaces Examples: Miscellanous</name>
Modified: trunk/examples/output-demo/pom.xml
===================================================================
--- trunk/examples/output-demo/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/examples/output-demo/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>output-demo</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Outputs</name>
<packaging>war</packaging>
Modified: trunk/examples/parent/pom.xml
===================================================================
--- trunk/examples/parent/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/examples/parent/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -17,7 +17,7 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
@@ -29,7 +29,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Examples Parent</name>
@@ -221,8 +221,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/examples/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/examples/pom.xml
===================================================================
--- trunk/examples/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/examples/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -17,7 +17,7 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--
@@ -34,7 +34,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>examples-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Examples: Aggregator</name>
@@ -51,9 +51,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/examples</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/examples</url>
</scm>
</project>
Modified: trunk/examples/repeater-demo/pom.xml
===================================================================
--- trunk/examples/repeater-demo/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/examples/repeater-demo/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -18,21 +18,21 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>repeater-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Repeater</name>
<properties>
Modified: trunk/examples/richfaces-showcase/pom.xml
===================================================================
--- trunk/examples/richfaces-showcase/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/examples/richfaces-showcase/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -7,13 +7,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-showcase</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>Richfaces Examples: Richfaces Showcase Application</name>
@@ -380,8 +380,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples/richfaces...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples/richfaces-sh...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
Modified: trunk/parent/pom.xml
===================================================================
--- trunk/parent/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/parent/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -23,13 +23,13 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Root Parent</name>
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../bom/pom.xml</relativePath>
</parent>
@@ -393,11 +393,11 @@
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/p...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/parent
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/parent
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/parent
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/parent</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/parent</url>
</scm>
</project>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.richfaces</groupId>
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces Aggregator</name>
@@ -59,8 +59,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk</url>
</scm>
</project>
Modified: trunk/ui/common/api/pom.xml
===================================================================
--- trunk/ui/common/api/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/common/api/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: trunk/ui/common/pom.xml
===================================================================
--- trunk/ui/common/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/common/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.common</groupId>
<artifactId>richfaces-ui-common-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Common Aggregator</name>
Modified: trunk/ui/common/ui/pom.xml
===================================================================
--- trunk/ui/common/ui/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/common/ui/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: trunk/ui/core/api/pom.xml
===================================================================
--- trunk/ui/core/api/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/core/api/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: trunk/ui/core/pom.xml
===================================================================
--- trunk/ui/core/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/core/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Core Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/core/ui/pom.xml
===================================================================
--- trunk/ui/core/ui/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/core/ui/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -63,10 +63,10 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/core/ui
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/c...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/core/ui
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/core/ui</url>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/dist/pom.xml
===================================================================
--- trunk/ui/dist/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/dist/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -22,13 +22,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-assembler</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Assembler</name>
@@ -63,9 +63,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/dist/richfaces-components-api/pom.xml
===================================================================
--- trunk/ui/dist/richfaces-components-api/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/dist/richfaces-components-api/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-api</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces UI Components API</name>
@@ -181,8 +181,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/d...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/dist/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/dist/richfaces-...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/dist/richfaces-com...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/dist/richfaces-components-ui/pom.xml
===================================================================
--- trunk/ui/dist/richfaces-components-ui/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/dist/richfaces-components-ui/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces UI Components UI</name>
@@ -243,9 +243,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/d...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/dist/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/dist/richfaces-...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/dist/richfaces-com...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/input/api/pom.xml
===================================================================
--- trunk/ui/input/api/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/input/api/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: trunk/ui/input/pom.xml
===================================================================
--- trunk/ui/input/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/input/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.input</groupId>
<artifactId>richfaces-ui-input-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Input Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/input</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/input</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/input</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/input/ui/pom.xml
===================================================================
--- trunk/ui/input/ui/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/input/ui/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: trunk/ui/iteration/api/pom.xml
===================================================================
--- trunk/ui/iteration/api/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/iteration/api/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -46,9 +46,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/iteration/datas...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/iteration/datascro...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/iteration/pom.xml
===================================================================
--- trunk/ui/iteration/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/iteration/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.iteration</groupId>
<artifactId>richfaces-ui-iteration-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Iteration Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/iteration</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/iteration</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/iteration/ui/pom.xml
===================================================================
--- trunk/ui/iteration/ui/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/iteration/ui/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -57,8 +57,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/iteration/datas...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/iteration/datascro...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/misc/pom.xml
===================================================================
--- trunk/ui/misc/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/misc/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.misc</groupId>
<artifactId>richfaces-ui-misc-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Miscellanous Aggregator</name>
@@ -40,9 +40,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/misc</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/misc</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/misc</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/misc</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/misc/ui/pom.xml
===================================================================
--- trunk/ui/misc/ui/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/misc/ui/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.misc</groupId>
<artifactId>richfaces-ui-misc-ui</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces UI Misc UI</name>
@@ -152,10 +152,10 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/misc/dist/richf...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/m...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/misc/dist/richface...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/misc/...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/output/api/pom.xml
===================================================================
--- trunk/ui/output/api/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/output/api/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -43,10 +43,10 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/o...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/output/panels/api</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output/panels/api
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/outpu...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/output/pom.xml
===================================================================
--- trunk/ui/output/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/output/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.output</groupId>
<artifactId>richfaces-ui-output-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Output Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/output</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/output/ui/pom.xml
===================================================================
--- trunk/ui/output/ui/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/output/ui/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -76,9 +76,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/outpu...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/output/panels/ui</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output/panels/ui</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/parent/pom.xml
===================================================================
--- trunk/ui/parent/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/parent/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces UI Components Parent</name>
<packaging>pom</packaging>
@@ -202,8 +202,8 @@
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/p...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2010-08-22 17:53:48 UTC (rev 18917)
+++ trunk/ui/pom.xml 2010-08-22 17:57:24 UTC (rev 18918)
@@ -17,7 +17,7 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- This aggregator pom, is not released, and is only used to make it easy to build all of the
@@ -32,7 +32,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-aggregator</artifactId>
- <version>4.0.0.20100822-M2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces UI: Aggregator</name>
@@ -46,12 +46,5 @@
<module>input</module>
<module>dist</module>
</modules>
-
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/build/parent/tag...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/build/parent/tags/4...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/modules/build/parent/tags/4.0.0...</url>
- </scm>
</project>
15 years, 1 month
JBoss Rich Faces SVN: r18917 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-08-22 13:53:48 -0400 (Sun, 22 Aug 2010)
New Revision: 18917
Added:
tags/4.0.0.20100822-M2/
Log:
[maven-scm] copy for tag 4.0.0.20100822-M2
Copied: tags/4.0.0.20100822-M2 (from rev 18916, trunk)
15 years, 1 month
JBoss Rich Faces SVN: r18916 - in trunk: archetypes and 53 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-08-22 13:53:34 -0400 (Sun, 22 Aug 2010)
New Revision: 18916
Modified:
trunk/archetypes/pom.xml
trunk/archetypes/richfaces-archetype-simpleapp/pom.xml
trunk/archetypes/richfaces-component-short/pom.xml
trunk/archetypes/richfaces-component/pom.xml
trunk/archetypes/richfaces-components-aggregator/pom.xml
trunk/bom/pom.xml
trunk/cdk/annotations/pom.xml
trunk/cdk/attributes/pom.xml
trunk/cdk/commons/pom.xml
trunk/cdk/dist/pom.xml
trunk/cdk/generator/pom.xml
trunk/cdk/maven-cdk-plugin/pom.xml
trunk/cdk/maven-resources-plugin/pom.xml
trunk/cdk/parent/pom.xml
trunk/cdk/pom.xml
trunk/cdk/xinclude/pom.xml
trunk/core/api/pom.xml
trunk/core/commons/pom.xml
trunk/core/impl/pom.xml
trunk/core/parent/pom.xml
trunk/core/pom.xml
trunk/dist/pom.xml
trunk/examples/core-demo/pom.xml
trunk/examples/input-demo/pom.xml
trunk/examples/iteration-demo/pom.xml
trunk/examples/misc-demo/pom.xml
trunk/examples/output-demo/pom.xml
trunk/examples/parent/pom.xml
trunk/examples/pom.xml
trunk/examples/repeater-demo/pom.xml
trunk/examples/richfaces-showcase/pom.xml
trunk/parent/pom.xml
trunk/pom.xml
trunk/ui/common/api/pom.xml
trunk/ui/common/pom.xml
trunk/ui/common/ui/pom.xml
trunk/ui/core/api/pom.xml
trunk/ui/core/pom.xml
trunk/ui/core/ui/pom.xml
trunk/ui/dist/pom.xml
trunk/ui/dist/richfaces-components-api/pom.xml
trunk/ui/dist/richfaces-components-ui/pom.xml
trunk/ui/input/api/pom.xml
trunk/ui/input/pom.xml
trunk/ui/input/ui/pom.xml
trunk/ui/iteration/api/pom.xml
trunk/ui/iteration/pom.xml
trunk/ui/iteration/ui/pom.xml
trunk/ui/misc/pom.xml
trunk/ui/misc/ui/pom.xml
trunk/ui/output/api/pom.xml
trunk/ui/output/pom.xml
trunk/ui/output/ui/pom.xml
trunk/ui/parent/pom.xml
trunk/ui/pom.xml
Log:
[maven-release-plugin] prepare release 4.0.0.20100822-M2
Modified: trunk/archetypes/pom.xml
===================================================================
--- trunk/archetypes/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/archetypes/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,58 +1,56 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
- Inc. and individual contributors by the @authors tag. See the
- copyright.txt in the distribution for a full listing of
- individual contributors. This is free software; you can
- redistribute it and/or modify it under the terms of the GNU
- Lesser General Public License as published by the Free Software
- Foundation; either version 2.1 of the License, or (at your
- option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU Lesser General Public License
- for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not,
- write to the Free Software Foundation, Inc., 51 Franklin St,
- Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
- http://www.fsf.org.
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
- http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>10</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.archetypes</groupId>
- <artifactId>archetypes-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>RichFaces Archetypes: Aggregator</name>
-
- <modules>
- <module>richfaces-archetype-simpleapp</module>
- <module>richfaces-component</module>
- <module>richfaces-component-short</module>
- <module>richfaces-components-aggregator</module>
- </modules>
-
- <properties>
- <!-- TODO verify if these are needed here - I believe they are inherited from parent -->
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- </properties>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/archetypes</url>
- </scm>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>10</version>
+ <relativePath>../build/parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.richfaces.archetypes</groupId>
+ <artifactId>archetypes-aggregator</artifactId>
+ <version>4.0.0.20100822-M2</version>
+ <packaging>pom</packaging>
+ <name>RichFaces Archetypes: Aggregator</name>
+
+ <modules>
+ <module>richfaces-archetype-simpleapp</module>
+ <module>richfaces-component</module>
+ <module>richfaces-component-short</module>
+ <module>richfaces-components-aggregator</module>
+ </modules>
+
+ <properties>
+ <!-- TODO verify if these are needed here - I believe they are inherited from parent -->
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+ </properties>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/archetypes</url>
+ </scm>
+
+</project>
Modified: trunk/archetypes/richfaces-archetype-simpleapp/pom.xml
===================================================================
--- trunk/archetypes/richfaces-archetype-simpleapp/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/archetypes/richfaces-archetype-simpleapp/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-simpleapp</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Simple Application</name>
@@ -78,9 +78,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes/richfac...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes/richfaces-...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/archetyp...</url>
</scm>
</project>
Modified: trunk/archetypes/richfaces-component/pom.xml
===================================================================
--- trunk/archetypes/richfaces-component/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/archetypes/richfaces-component/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Component</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes/richfac...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes/richfaces-...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/archetyp...</url>
</scm>
</project>
Modified: trunk/archetypes/richfaces-component-short/pom.xml
===================================================================
--- trunk/archetypes/richfaces-component-short/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/archetypes/richfaces-component-short/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component-short</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Component Short</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes/richfac...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes/richfaces-...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/archetyp...</url>
</scm>
</project>
Modified: trunk/archetypes/richfaces-components-aggregator/pom.xml
===================================================================
--- trunk/archetypes/richfaces-components-aggregator/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/archetypes/richfaces-components-aggregator/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-components-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Components Aggregator</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes/richfac...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes/richfaces-...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/archetyp...</url>
</scm>
</project>
Modified: trunk/bom/pom.xml
===================================================================
--- trunk/bom/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/bom/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -17,14 +17,13 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>RichFaces BOM</name>
<parent>
@@ -218,9 +217,9 @@
</dependencyManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/build/bom</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/build/bom</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/build/bom</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/b...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/buil...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/build/bom</url>
</scm>
</project>
Modified: trunk/cdk/annotations/pom.xml
===================================================================
--- trunk/cdk/annotations/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/cdk/annotations/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<description>That project contains annotations for JSF classes</description>
<name>annotations</name>
<dependencies>
Modified: trunk/cdk/attributes/pom.xml
===================================================================
--- trunk/cdk/attributes/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/cdk/attributes/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>attributes</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<description>That project contains JAXB bindings for model classes representing schema attributes data</description>
<name>attributes</name>
Modified: trunk/cdk/commons/pom.xml
===================================================================
--- trunk/cdk/commons/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/cdk/commons/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>commons</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>commons</name>
<build>
<plugins>
Modified: trunk/cdk/dist/pom.xml
===================================================================
--- trunk/cdk/dist/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/cdk/dist/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -4,20 +4,20 @@
<parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>dist</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>JSF Components Development Kit (CDK) distribution assembly</name>
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/cdk/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/cdk/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/cdk/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20100822-M2/cdk/...</url>
</scm>
<build>
<finalName>cdk</finalName>
Modified: trunk/cdk/generator/pom.xml
===================================================================
--- trunk/cdk/generator/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/cdk/generator/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -3,13 +3,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>Java Server Faces component generator</name>
Modified: trunk/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-cdk-plugin/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/cdk/maven-cdk-plugin/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -2,13 +2,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
Modified: trunk/cdk/maven-resources-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-resources-plugin/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/cdk/maven-resources-plugin/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,17 +1,16 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-resources-plugin</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>maven-plugin</packaging>
<name>maven-resources-plugin</name>
<description>Maven plugin for packaging resources with web application</description>
Modified: trunk/cdk/parent/pom.xml
===================================================================
--- trunk/cdk/parent/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/cdk/parent/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -14,7 +13,7 @@
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>JSF Components Development Kit (CDK)</name>
@@ -23,9 +22,9 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/cdk/parent</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/cdk/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/cdk/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/tags/4.0.0.20100822-...</url>
</scm>
<build>
Modified: trunk/cdk/pom.xml
===================================================================
--- trunk/cdk/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/cdk/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-parent</artifactId>
@@ -12,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>JSF Components Development Kit (CDK)</name>
<properties>
@@ -33,9 +32,9 @@
</modules>
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/cdk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/cdk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/cdk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/cdk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20100822-M2/cdk</url>
</scm>
<!-- Minimal build configuration -->
Modified: trunk/cdk/xinclude/pom.xml
===================================================================
--- trunk/cdk/xinclude/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/cdk/xinclude/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -22,13 +22,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>xinclude</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>Cocoon 3: xinclude transformer</name>
<description>Cocoon 3 xinclude transformer with Xpointer scheme support.</description>
Modified: trunk/core/api/pom.xml
===================================================================
--- trunk/core/api/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/core/api/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -82,8 +82,8 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/core/api</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/core/api</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/core/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/core/api</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/core/commons/pom.xml
===================================================================
--- trunk/core/commons/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/core/commons/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -21,13 +21,13 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.commons</groupId>
<artifactId>richfaces-commons-api</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>RichFaces Commons API</name>
<dependencies>
@@ -57,8 +57,8 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/commons/api</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/commons/api</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/commons/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/comm...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/commons/api</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/core/impl/pom.xml
===================================================================
--- trunk/core/impl/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/core/impl/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -253,8 +253,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/core/impl</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/core/impl</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/core/impl</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/core/impl</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/core/parent/pom.xml
===================================================================
--- trunk/core/parent/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/core/parent/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -23,13 +23,13 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>RichFaces Core Parent</name>
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -54,8 +54,8 @@
</plugins>
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/core/parent</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/core/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/core/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/core/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/core/pom.xml
===================================================================
--- trunk/core/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/core/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>RichFaces Core Aggregator</name>
@@ -44,9 +44,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/core</url>
</scm>
</project>
Modified: trunk/dist/pom.xml
===================================================================
--- trunk/dist/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/dist/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-distribution</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>Richfaces Distribution Assembler</name>
@@ -191,8 +191,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/dist</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/examples/core-demo/pom.xml
===================================================================
--- trunk/examples/core-demo/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/examples/core-demo/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -17,23 +17,21 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>core-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>RichFaces Examples: Core</name>
<properties>
@@ -219,8 +217,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples/core-demo</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples/core-demo</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/examples...</url>
</scm>
</project>
Modified: trunk/examples/input-demo/pom.xml
===================================================================
--- trunk/examples/input-demo/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/examples/input-demo/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,176 +1,175 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
- <parent>
- <groupId>org.richfaces.examples</groupId>
- <artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
-
- <groupId>org.richfaces.examples</groupId>
- <artifactId>input-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <name>Richfaces Examples: Inputs</name>
- <packaging>war</packaging>
-
- <build>
- <finalName>${artifactId}-${project.version}</finalName>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.1-beta-1</version>
- <configuration>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>jee6</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.1-alpha-1</version>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <!-- JSF impl should be switchable in example specific parent -->
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.transaction</groupId>
- <artifactId>jta</artifactId>
- <version>1.1</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>release</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <executions>
- <execution>
- <id>jee6</id>
- <phase>package</phase>
- <goals>
- <goal>war</goal>
- </goals>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
- <classifier>jee6</classifier>
- <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</packagingExcludes>
- <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</warSourceExcludes>
- </configuration>
- </execution>
- </executions>
- <configuration>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
- <dependencies>
- <dependency>
- <groupId>org.richfaces.ui.input</groupId>
- <artifactId>richfaces-ui-input-ui</artifactId>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui.core</groupId>
- <artifactId>richfaces-ui-core-ui</artifactId>
- </dependency>
-
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.5.8</version>
- </dependency>
-
- <dependency>
- <groupId>net.sf.ehcache</groupId>
- <artifactId>ehcache</artifactId>
- </dependency>
-
- <!--
- simple logger binding: only messages of level INFO and
- higher are printed
- -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.5.8</version>
- </dependency>
-
- <!-- Log4J dependency used in examples -->
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.14</version>
- </dependency>
-
- <!-- Tests -->
- <dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- <version>5.10</version>
- <classifier>jdk15</classifier>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>richfaces-example-parent</artifactId>
+ <version>4.0.0.20100822-M2</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>input-demo</artifactId>
+ <version>4.0.0.20100822-M2</version>
+ <name>Richfaces Examples: Inputs</name>
+ <packaging>war</packaging>
+
+ <build>
+ <finalName>${artifactId}-${project.version}</finalName>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.1-beta-1</version>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>jee6</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.1-alpha-1</version>
+ <configuration>
+ <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <!-- JSF impl should be switchable in example specific parent -->
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.transaction</groupId>
+ <artifactId>jta</artifactId>
+ <version>1.1</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>release</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>jee6</id>
+ <phase>package</phase>
+ <goals>
+ <goal>war</goal>
+ </goals>
+ <configuration>
+ <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
+ <classifier>jee6</classifier>
+ <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</packagingExcludes>
+ <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</warSourceExcludes>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui.input</groupId>
+ <artifactId>richfaces-ui-input-ui</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui.core</groupId>
+ <artifactId>richfaces-ui-core-ui</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.5.8</version>
+ </dependency>
+
+ <dependency>
+ <groupId>net.sf.ehcache</groupId>
+ <artifactId>ehcache</artifactId>
+ </dependency>
+
+ <!--
+ simple logger binding: only messages of level INFO and
+ higher are printed
+ -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>1.5.8</version>
+ </dependency>
+
+ <!-- Log4J dependency used in examples -->
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+
+ <!-- Tests -->
+ <dependency>
+ <groupId>org.testng</groupId>
+ <artifactId>testng</artifactId>
+ <version>5.10</version>
+ <classifier>jdk15</classifier>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Modified: trunk/examples/iteration-demo/pom.xml
===================================================================
--- trunk/examples/iteration-demo/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/examples/iteration-demo/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -17,23 +17,21 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
- http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>iteration-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>RichFaces Examples: Iteration</name>
<properties>
Modified: trunk/examples/misc-demo/pom.xml
===================================================================
--- trunk/examples/misc-demo/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/examples/misc-demo/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -17,23 +17,20 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
- http://maven.apache.org/xsd/maven-4.0.0.xsd"
->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>misc-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>war</packaging>
<name>RichFaces Examples: Miscellanous</name>
Modified: trunk/examples/output-demo/pom.xml
===================================================================
--- trunk/examples/output-demo/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/examples/output-demo/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,181 +1,179 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
->
-
- <parent>
- <groupId>org.richfaces.examples</groupId>
- <artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
-
- <groupId>org.richfaces.examples</groupId>
- <artifactId>output-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <name>Richfaces Examples: Outputs</name>
- <packaging>war</packaging>
-
- <properties>
- </properties>
-
- <build>
- <finalName>${artifactId}-${project.version}</finalName>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.1-beta-1</version>
- <configuration>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>jee6</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.1-alpha-1</version>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.transaction</groupId>
- <artifactId>jta</artifactId>
- <version>1.1</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>release</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <executions>
- <execution>
- <id>jee6</id>
- <phase>package</phase>
- <goals>
- <goal>war</goal>
- </goals>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
- <classifier>jee6</classifier>
- <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</packagingExcludes>
- <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</warSourceExcludes>
- </configuration>
- </execution>
- </executions>
- <configuration>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
- <dependencies>
- <dependency>
- <groupId>org.richfaces.ui.output</groupId>
- <artifactId>richfaces-ui-output-ui</artifactId>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui.core</groupId>
- <artifactId>richfaces-ui-core-ui</artifactId>
- </dependency>
-
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.5.8</version>
- </dependency>
-
- <dependency>
- <groupId>net.sf.ehcache</groupId>
- <artifactId>ehcache</artifactId>
- </dependency>
-
- <!--
- simple logger binding: only messages of level INFO and
- higher are printed
- -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.5.8</version>
- </dependency>
-
- <!-- Log4J dependency used in examples -->
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.14</version>
- </dependency>
-
- <!-- Tests -->
- <dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- <version>5.10</version>
- <classifier>jdk15</classifier>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>richfaces-example-parent</artifactId>
+ <version>4.0.0.20100822-M2</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>output-demo</artifactId>
+ <version>4.0.0.20100822-M2</version>
+ <name>Richfaces Examples: Outputs</name>
+ <packaging>war</packaging>
+
+ <properties>
+ </properties>
+
+ <build>
+ <finalName>${artifactId}-${project.version}</finalName>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.1-beta-1</version>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>jee6</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.1-alpha-1</version>
+ <configuration>
+ <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.transaction</groupId>
+ <artifactId>jta</artifactId>
+ <version>1.1</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>release</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>jee6</id>
+ <phase>package</phase>
+ <goals>
+ <goal>war</goal>
+ </goals>
+ <configuration>
+ <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
+ <classifier>jee6</classifier>
+ <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</packagingExcludes>
+ <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</warSourceExcludes>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui.output</groupId>
+ <artifactId>richfaces-ui-output-ui</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui.core</groupId>
+ <artifactId>richfaces-ui-core-ui</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.5.8</version>
+ </dependency>
+
+ <dependency>
+ <groupId>net.sf.ehcache</groupId>
+ <artifactId>ehcache</artifactId>
+ </dependency>
+
+ <!--
+ simple logger binding: only messages of level INFO and
+ higher are printed
+ -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>1.5.8</version>
+ </dependency>
+
+ <!-- Log4J dependency used in examples -->
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+
+ <!-- Tests -->
+ <dependency>
+ <groupId>org.testng</groupId>
+ <artifactId>testng</artifactId>
+ <version>5.10</version>
+ <classifier>jdk15</classifier>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Modified: trunk/examples/parent/pom.xml
===================================================================
--- trunk/examples/parent/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/examples/parent/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,231 +1,228 @@
-<?xml version="1.0" encoding="UTF-8"?>
- <!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
- Inc. and individual contributors by the @authors tag. See the
- copyright.txt in the distribution for a full listing of
- individual contributors. This is free software; you can
- redistribute it and/or modify it under the terms of the GNU
- Lesser General Public License as published by the Free Software
- Foundation; either version 2.1 of the License, or (at your
- option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU Lesser General Public License
- for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not,
- write to the Free Software Foundation, Inc., 51 Franklin St,
- Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
- http://www.fsf.org.
- -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
- http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>10</version>
- <relativePath>../../build/parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.examples</groupId>
- <artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>RichFaces Examples Parent</name>
-
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-
- <jetty.port>8080</jetty.port>
- <richfaces.checkstyle.version>2</richfaces.checkstyle.version>
- </properties>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
- <!-- Build -->
- <build>
- <!--
- PluginManagement config for all examples
- -->
- <pluginManagement>
- <plugins>
- <!-- Build -->
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <index>true</index>
- <manifest>
- <addDefaultSpecificationEntries>
- true
- </addDefaultSpecificationEntries>
- <addDefaultImplementationEntries>
- true
- </addDefaultImplementationEntries>
- </manifest>
- <manifestEntries>
- <mode>development</mode>
- <Build-Number>${buildNumber}
- </Build-Number>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.3</version>
- <configuration>
- <configLocation>richfaces-checkstyle/richfaces-checkstyle.xml
- </configLocation>
- </configuration>
- <executions>
- <execution>
- <id>richfaces-checkstyle-report</id>
- <phase>process-sources</phase>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-build-checkstyle</artifactId>
- <version>${richfaces.checkstyle.version}</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <version>6.1.18</version>
- <configuration>
- <scanIntervalSeconds>10</scanIntervalSeconds>
- <connectors>
- <connector
- implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>${jetty.port}</port>
- <maxIdleTime>60000</maxIdleTime>
- </connector>
- </connectors>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <profiles>
- <!--
- The following profiles determine the JSF api/impl
- combinations that will be used in the project builds.
-
- -Djsf_profile=<profile-name> on the mvn command line
- -->
- <profile>
- <id>jsf_ri</id>
- <activation>
- <property>
- <name>!jsf_profile</name>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces</id>
- <activation>
- <property>
- <name>jsf_profile</name>
- <value>myfaces</value>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-impl</artifactId>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jsf_ri_2_1_snapshot</id>
- <activation>
- <property>
- <name>jsf_profile</name>
- <value>jsf_ri_2_1_snapshot</value>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>2.1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>2.1.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces_snapshot</id>
- <activation>
- <property>
- <name>jsf_profile</name>
- <value>myfaces_snapshot</value>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-api</artifactId>
- <version>2.0.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-impl</artifactId>
- <version>2.0.2-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples/parent</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/examples/parent</url>
- </scm>
+<?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org.
+ -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>10</version>
+ <relativePath>../../build/parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>richfaces-example-parent</artifactId>
+ <version>4.0.0.20100822-M2</version>
+ <packaging>pom</packaging>
+ <name>RichFaces Examples Parent</name>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
+ <jetty.port>8080</jetty.port>
+ <richfaces.checkstyle.version>2</richfaces.checkstyle.version>
+ </properties>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-bom</artifactId>
+ <version>${project.version}</version>
+ <scope>import</scope>
+ <type>pom</type>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <!-- Build -->
+ <build>
+ <!--
+ PluginManagement config for all examples
+ -->
+ <pluginManagement>
+ <plugins>
+ <!-- Build -->
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <index>true</index>
+ <manifest>
+ <addDefaultSpecificationEntries>
+ true
+ </addDefaultSpecificationEntries>
+ <addDefaultImplementationEntries>
+ true
+ </addDefaultImplementationEntries>
+ </manifest>
+ <manifestEntries>
+ <mode>development</mode>
+ <Build-Number>${buildNumber}
+ </Build-Number>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <version>2.3</version>
+ <configuration>
+ <configLocation>richfaces-checkstyle/richfaces-checkstyle.xml
+ </configLocation>
+ </configuration>
+ <executions>
+ <execution>
+ <id>richfaces-checkstyle-report</id>
+ <phase>process-sources</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-build-checkstyle</artifactId>
+ <version>${richfaces.checkstyle.version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <version>6.1.18</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <connectors>
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>${jetty.port}</port>
+ <maxIdleTime>60000</maxIdleTime>
+ </connector>
+ </connectors>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ <profiles>
+ <!--
+ The following profiles determine the JSF api/impl
+ combinations that will be used in the project builds.
+
+ -Djsf_profile=<profile-name> on the mvn command line
+ -->
+ <profile>
+ <id>jsf_ri</id>
+ <activation>
+ <property>
+ <name>!jsf_profile</name>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces</id>
+ <activation>
+ <property>
+ <name>jsf_profile</name>
+ <value>myfaces</value>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jsf_ri_2_1_snapshot</id>
+ <activation>
+ <property>
+ <name>jsf_profile</name>
+ <value>jsf_ri_2_1_snapshot</value>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>2.1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>2.1.0-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces_snapshot</id>
+ <activation>
+ <property>
+ <name>jsf_profile</name>
+ <value>myfaces_snapshot</value>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ <version>2.0.2-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ <version>2.0.2-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/examples...</url>
+ </scm>
</project>
\ No newline at end of file
Modified: trunk/examples/pom.xml
===================================================================
--- trunk/examples/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/examples/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,61 +1,59 @@
-<?xml version="1.0" encoding="UTF-8"?>
- <!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
- Inc. and individual contributors by the @authors tag. See the
- copyright.txt in the distribution for a full listing of
- individual contributors. This is free software; you can
- redistribute it and/or modify it under the terms of the GNU
- Lesser General Public License as published by the Free Software
- Foundation; either version 2.1 of the License, or (at your
- option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU Lesser General Public License
- for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not,
- write to the Free Software Foundation, Inc., 51 Franklin St,
- Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
- http://www.fsf.org.
- -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
- http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <!--
- This aggregator pom, is not released, and is only used to make
- it easy to build all of the examples at once from trunk.
- -->
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>10</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.examples</groupId>
- <artifactId>examples-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>RichFaces Examples: Aggregator</name>
-
- <modules>
- <module>parent</module>
- <module>core-demo</module>
- <module>misc-demo</module>
- <module>output-demo</module>
- <module>input-demo</module>
- <module>repeater-demo</module>
- <module>iteration-demo</module>
- <module>richfaces-showcase</module>
- <!--<module>dist</module>-->
- </modules>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/examples</url>
- </scm>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org.
+ -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <!--
+ This aggregator pom, is not released, and is only used to make
+ it easy to build all of the examples at once from trunk.
+ -->
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>10</version>
+ <relativePath>../build/parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>examples-aggregator</artifactId>
+ <version>4.0.0.20100822-M2</version>
+ <packaging>pom</packaging>
+ <name>RichFaces Examples: Aggregator</name>
+
+ <modules>
+ <module>parent</module>
+ <module>core-demo</module>
+ <module>misc-demo</module>
+ <module>output-demo</module>
+ <module>input-demo</module>
+ <module>repeater-demo</module>
+ <module>iteration-demo</module>
+ <module>richfaces-showcase</module>
+ <!--<module>dist</module>-->
+ </modules>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/examples</url>
+ </scm>
+
+</project>
Modified: trunk/examples/repeater-demo/pom.xml
===================================================================
--- trunk/examples/repeater-demo/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/examples/repeater-demo/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -18,24 +18,21 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
- http://maven.apache.org/xsd/maven-4.0.0.xsd"
->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>repeater-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>Richfaces Examples: Repeater</name>
<properties>
Modified: trunk/examples/richfaces-showcase/pom.xml
===================================================================
--- trunk/examples/richfaces-showcase/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/examples/richfaces-showcase/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,20 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-showcase</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>war</packaging>
<name>Richfaces Examples: Richfaces Showcase Application</name>
@@ -88,8 +87,7 @@
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<connectors>
- <connector
- implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>${jetty.port}</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
@@ -382,8 +380,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples/richfaces...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples/richfaces-sh...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/examples...</url>
</scm>
</project>
Modified: trunk/parent/pom.xml
===================================================================
--- trunk/parent/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/parent/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -17,20 +17,19 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>RichFaces Root Parent</name>
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../bom/pom.xml</relativePath>
</parent>
@@ -394,11 +393,11 @@
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/parent
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/p...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/parent
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/parent
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/parent</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/parent</url>
</scm>
</project>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,68 +1,66 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
- http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>10</version>
- <relativePath>build/parent/pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-root</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>Richfaces Aggregator</name>
-
- <modules>
- <module>bom</module>
- <module>parent</module>
- <module>core</module>
- <module>cdk</module>
-
- <!-- richfaces ui -->
- <module>ui</module>
-
- <!-- Remaining -->
- <module>archetypes</module>
- <module>examples</module>
- <!--<module>docs</module>-->
- </modules>
-
- <build>
- <plugins>
- <!-- To trigger the release -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>bootstrap</id>
- <modules>
- <module>build/parent</module>
- <module>build/checkstyle</module>
- <module>build/faces-shade-transformers</module>
- </modules>
- </profile>
- <profile>
- <id>release</id>
- <modules>
- <module>dist</module>
- </modules>
- </profile>
- </profiles>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk</url>
- </scm>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>10</version>
+ <relativePath>build/parent/pom.xml</relativePath>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-root</artifactId>
+ <version>4.0.0.20100822-M2</version>
+ <packaging>pom</packaging>
+ <name>Richfaces Aggregator</name>
+
+ <modules>
+ <module>bom</module>
+ <module>parent</module>
+ <module>core</module>
+ <module>cdk</module>
+
+ <!-- richfaces ui -->
+ <module>ui</module>
+
+ <!-- Remaining -->
+ <module>archetypes</module>
+ <module>examples</module>
+ <!--<module>docs</module>-->
+ </modules>
+
+ <build>
+ <plugins>
+ <!-- To trigger the release -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>bootstrap</id>
+ <modules>
+ <module>build/parent</module>
+ <module>build/checkstyle</module>
+ <module>build/faces-shade-transformers</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>release</id>
+ <modules>
+ <module>dist</module>
+ </modules>
+ </profile>
+ </profiles>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2</url>
+ </scm>
+</project>
Modified: trunk/ui/common/api/pom.xml
===================================================================
--- trunk/ui/common/api/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/common/api/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: trunk/ui/common/pom.xml
===================================================================
--- trunk/ui/common/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/common/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.common</groupId>
<artifactId>richfaces-ui-common-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Common Aggregator</name>
Modified: trunk/ui/common/ui/pom.xml
===================================================================
--- trunk/ui/common/ui/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/common/ui/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: trunk/ui/core/api/pom.xml
===================================================================
--- trunk/ui/core/api/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/core/api/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -15,13 +15,12 @@
USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: trunk/ui/core/pom.xml
===================================================================
--- trunk/ui/core/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/core/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Core Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/core</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/core/ui/pom.xml
===================================================================
--- trunk/ui/core/ui/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/core/ui/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -18,14 +18,12 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -65,10 +63,10 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/core/ui
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/core/ui
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/c...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/core/ui</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/dist/pom.xml
===================================================================
--- trunk/ui/dist/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/dist/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -22,13 +22,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-assembler</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>Richfaces UI Assembler</name>
@@ -63,9 +63,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/dist</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/dist/richfaces-components-api/pom.xml
===================================================================
--- trunk/ui/dist/richfaces-components-api/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/dist/richfaces-components-api/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-api</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>jar</packaging>
<name>Richfaces UI Components API</name>
@@ -181,8 +181,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/dist/richfaces-...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/dist/richfaces-com...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/d...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/dist/...</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/dist/richfaces-components-ui/pom.xml
===================================================================
--- trunk/ui/dist/richfaces-components-ui/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/dist/richfaces-components-ui/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>jar</packaging>
<name>Richfaces UI Components UI</name>
@@ -243,9 +243,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/dist/richfaces-...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/dist/richfaces-com...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/d...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/dist/...</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/input/api/pom.xml
===================================================================
--- trunk/ui/input/api/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/input/api/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -19,13 +19,12 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: trunk/ui/input/pom.xml
===================================================================
--- trunk/ui/input/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/input/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.input</groupId>
<artifactId>richfaces-ui-input-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Input Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/input</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/input</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/input</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/input/ui/pom.xml
===================================================================
--- trunk/ui/input/ui/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/input/ui/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: trunk/ui/iteration/api/pom.xml
===================================================================
--- trunk/ui/iteration/api/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/iteration/api/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -46,9 +46,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/iteration/datas...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/iteration/datascro...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/iteration/pom.xml
===================================================================
--- trunk/ui/iteration/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/iteration/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.iteration</groupId>
<artifactId>richfaces-ui-iteration-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Iteration Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/iteration</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/iteration</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/iteration/ui/pom.xml
===================================================================
--- trunk/ui/iteration/ui/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/iteration/ui/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -57,8 +57,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/iteration/datas...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/iteration/datascro...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/misc/pom.xml
===================================================================
--- trunk/ui/misc/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/misc/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -18,22 +18,20 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.misc</groupId>
<artifactId>richfaces-ui-misc-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Miscellanous Aggregator</name>
@@ -42,9 +40,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/misc</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/misc</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/misc</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/misc</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/misc/ui/pom.xml
===================================================================
--- trunk/ui/misc/ui/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/misc/ui/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -17,21 +17,20 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.misc</groupId>
<artifactId>richfaces-ui-misc-ui</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>jar</packaging>
<name>Richfaces UI Misc UI</name>
@@ -153,10 +152,10 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/misc/dist/richf...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/misc/dist/richface...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/m...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/misc/...</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/output/api/pom.xml
===================================================================
--- trunk/ui/output/api/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/output/api/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -19,13 +19,12 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -44,10 +43,10 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/output/panels/api</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output/panels/api
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/o...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/output/pom.xml
===================================================================
--- trunk/ui/output/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/output/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.output</groupId>
<artifactId>richfaces-ui-output-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Output Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/output</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/output/ui/pom.xml
===================================================================
--- trunk/ui/output/ui/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/output/ui/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -76,9 +76,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/output/panels/ui</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/output/panels/ui</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/parent/pom.xml
===================================================================
--- trunk/ui/parent/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/parent/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -18,22 +18,20 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100822-M2</version>
<name>Richfaces UI Components Parent</name>
<packaging>pom</packaging>
@@ -204,8 +202,8 @@
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/parent</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20100822-M2/ui/p...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20100822-M2/ui/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: trunk/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2010-08-22 17:08:22 UTC (rev 18915)
+++ trunk/ui/pom.xml 2010-08-22 17:53:34 UTC (rev 18916)
@@ -1,53 +1,57 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
- Inc. and individual contributors by the @authors tag. See the
- copyright.txt in the distribution for a full listing of
- individual contributors. This is free software; you can
- redistribute it and/or modify it under the terms of the GNU
- Lesser General Public License as published by the Free Software
- Foundation; either version 2.1 of the License, or (at your
- option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU Lesser General Public License
- for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not,
- write to the Free Software Foundation, Inc., 51 Franklin St,
- Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
- http://www.fsf.org.
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
- http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <!-- This aggregator pom, is not released, and is only used to make it easy to build all of the
- examples at once from trunk. -->
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>10</version>
-<relativePath>../build/parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>RichFaces UI: Aggregator</name>
-
- <modules>
- <module>parent</module>
- <module>common</module>
- <module>core</module>
- <module>iteration</module>
- <module>misc</module>
- <module>output</module>
- <module>input</module>
- <module>dist</module>
- </modules>
-
-</project>
-
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- This aggregator pom, is not released, and is only used to make it easy to build all of the
+ examples at once from trunk. -->
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>10</version>
+<relativePath>../build/parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui-aggregator</artifactId>
+ <version>4.0.0.20100822-M2</version>
+ <packaging>pom</packaging>
+ <name>RichFaces UI: Aggregator</name>
+
+ <modules>
+ <module>parent</module>
+ <module>common</module>
+ <module>core</module>
+ <module>iteration</module>
+ <module>misc</module>
+ <module>output</module>
+ <module>input</module>
+ <module>dist</module>
+ </modules>
+
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/build/parent/tag...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/build/parent/tags/4...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/modules/build/parent/tags/4.0.0...</url>
+ </scm>
+</project>
+
15 years, 1 month
JBoss Rich Faces SVN: r18915 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-08-22 13:08:22 -0400 (Sun, 22 Aug 2010)
New Revision: 18915
Removed:
tags/4.0.0.20100822-M2/
Log:
RFPL-754 removing test M2 build, no dist deployed
15 years, 1 month
JBoss Rich Faces SVN: r18914 - in trunk: archetypes and 22 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-08-22 13:06:52 -0400 (Sun, 22 Aug 2010)
New Revision: 18914
Modified:
trunk/archetypes/pom.xml
trunk/bom/pom.xml
trunk/cdk/maven-resources-plugin/pom.xml
trunk/cdk/parent/pom.xml
trunk/cdk/pom.xml
trunk/examples/core-demo/pom.xml
trunk/examples/input-demo/pom.xml
trunk/examples/iteration-demo/pom.xml
trunk/examples/misc-demo/pom.xml
trunk/examples/output-demo/pom.xml
trunk/examples/parent/pom.xml
trunk/examples/pom.xml
trunk/examples/repeater-demo/pom.xml
trunk/examples/richfaces-showcase/pom.xml
trunk/parent/pom.xml
trunk/pom.xml
trunk/ui/core/api/pom.xml
trunk/ui/core/ui/pom.xml
trunk/ui/input/api/pom.xml
trunk/ui/misc/pom.xml
trunk/ui/misc/ui/pom.xml
trunk/ui/output/api/pom.xml
trunk/ui/parent/pom.xml
trunk/ui/pom.xml
Log:
[maven-release-plugin] rollback the release of 4.0.0.20100822-M2
Modified: trunk/archetypes/pom.xml
===================================================================
--- trunk/archetypes/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/archetypes/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,56 +1,58 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
- Inc. and individual contributors by the @authors tag. See the
- copyright.txt in the distribution for a full listing of
- individual contributors. This is free software; you can
- redistribute it and/or modify it under the terms of the GNU
- Lesser General Public License as published by the Free Software
- Foundation; either version 2.1 of the License, or (at your
- option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU Lesser General Public License
- for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not,
- write to the Free Software Foundation, Inc., 51 Franklin St,
- Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
- http://www.fsf.org.
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>10</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.archetypes</groupId>
- <artifactId>archetypes-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>RichFaces Archetypes: Aggregator</name>
-
- <modules>
- <module>richfaces-archetype-simpleapp</module>
- <module>richfaces-component</module>
- <module>richfaces-component-short</module>
- <module>richfaces-components-aggregator</module>
- </modules>
-
- <properties>
- <!-- TODO verify if these are needed here - I believe they are inherited from parent -->
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- </properties>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/archetypes</url>
- </scm>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>10</version>
+ <relativePath>../build/parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.richfaces.archetypes</groupId>
+ <artifactId>archetypes-aggregator</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>RichFaces Archetypes: Aggregator</name>
+
+ <modules>
+ <module>richfaces-archetype-simpleapp</module>
+ <module>richfaces-component</module>
+ <module>richfaces-component-short</module>
+ <module>richfaces-components-aggregator</module>
+ </modules>
+
+ <properties>
+ <!-- TODO verify if these are needed here - I believe they are inherited from parent -->
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+ </properties>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/archetypes</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/archetypes</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/archetypes</url>
+ </scm>
+
+</project>
Modified: trunk/bom/pom.xml
===================================================================
--- trunk/bom/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/bom/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -17,7 +17,8 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: trunk/cdk/maven-resources-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-resources-plugin/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/cdk/maven-resources-plugin/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,4 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
Modified: trunk/cdk/parent/pom.xml
===================================================================
--- trunk/cdk/parent/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/cdk/parent/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.richfaces</groupId>
Modified: trunk/cdk/pom.xml
===================================================================
--- trunk/cdk/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/cdk/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-parent</artifactId>
Modified: trunk/examples/core-demo/pom.xml
===================================================================
--- trunk/examples/core-demo/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/examples/core-demo/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -17,7 +17,9 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+>
<modelVersion>4.0.0</modelVersion>
Modified: trunk/examples/input-demo/pom.xml
===================================================================
--- trunk/examples/input-demo/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/examples/input-demo/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,175 +1,176 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
- <parent>
- <groupId>org.richfaces.examples</groupId>
- <artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
-
- <groupId>org.richfaces.examples</groupId>
- <artifactId>input-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <name>Richfaces Examples: Inputs</name>
- <packaging>war</packaging>
-
- <build>
- <finalName>${artifactId}-${project.version}</finalName>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.1-beta-1</version>
- <configuration>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>jee6</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.1-alpha-1</version>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <!-- JSF impl should be switchable in example specific parent -->
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.transaction</groupId>
- <artifactId>jta</artifactId>
- <version>1.1</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>release</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <executions>
- <execution>
- <id>jee6</id>
- <phase>package</phase>
- <goals>
- <goal>war</goal>
- </goals>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
- <classifier>jee6</classifier>
- <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</packagingExcludes>
- <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</warSourceExcludes>
- </configuration>
- </execution>
- </executions>
- <configuration>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
- <dependencies>
- <dependency>
- <groupId>org.richfaces.ui.input</groupId>
- <artifactId>richfaces-ui-input-ui</artifactId>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui.core</groupId>
- <artifactId>richfaces-ui-core-ui</artifactId>
- </dependency>
-
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.5.8</version>
- </dependency>
-
- <dependency>
- <groupId>net.sf.ehcache</groupId>
- <artifactId>ehcache</artifactId>
- </dependency>
-
- <!--
- simple logger binding: only messages of level INFO and
- higher are printed
- -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.5.8</version>
- </dependency>
-
- <!-- Log4J dependency used in examples -->
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.14</version>
- </dependency>
-
- <!-- Tests -->
- <dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- <version>5.10</version>
- <classifier>jdk15</classifier>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>richfaces-example-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>input-demo</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <name>Richfaces Examples: Inputs</name>
+ <packaging>war</packaging>
+
+ <build>
+ <finalName>${artifactId}-${project.version}</finalName>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.1-beta-1</version>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>jee6</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.1-alpha-1</version>
+ <configuration>
+ <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <!-- JSF impl should be switchable in example specific parent -->
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.transaction</groupId>
+ <artifactId>jta</artifactId>
+ <version>1.1</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>release</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>jee6</id>
+ <phase>package</phase>
+ <goals>
+ <goal>war</goal>
+ </goals>
+ <configuration>
+ <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
+ <classifier>jee6</classifier>
+ <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</packagingExcludes>
+ <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</warSourceExcludes>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui.input</groupId>
+ <artifactId>richfaces-ui-input-ui</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui.core</groupId>
+ <artifactId>richfaces-ui-core-ui</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.5.8</version>
+ </dependency>
+
+ <dependency>
+ <groupId>net.sf.ehcache</groupId>
+ <artifactId>ehcache</artifactId>
+ </dependency>
+
+ <!--
+ simple logger binding: only messages of level INFO and
+ higher are printed
+ -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>1.5.8</version>
+ </dependency>
+
+ <!-- Log4J dependency used in examples -->
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+
+ <!-- Tests -->
+ <dependency>
+ <groupId>org.testng</groupId>
+ <artifactId>testng</artifactId>
+ <version>5.10</version>
+ <classifier>jdk15</classifier>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Modified: trunk/examples/iteration-demo/pom.xml
===================================================================
--- trunk/examples/iteration-demo/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/examples/iteration-demo/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -17,7 +17,9 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
Modified: trunk/examples/misc-demo/pom.xml
===================================================================
--- trunk/examples/misc-demo/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/examples/misc-demo/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -17,7 +17,10 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd"
+>
<modelVersion>4.0.0</modelVersion>
Modified: trunk/examples/output-demo/pom.xml
===================================================================
--- trunk/examples/output-demo/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/examples/output-demo/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,179 +1,181 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
- <parent>
- <groupId>org.richfaces.examples</groupId>
- <artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
-
- <groupId>org.richfaces.examples</groupId>
- <artifactId>output-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <name>Richfaces Examples: Outputs</name>
- <packaging>war</packaging>
-
- <properties>
- </properties>
-
- <build>
- <finalName>${artifactId}-${project.version}</finalName>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.1-beta-1</version>
- <configuration>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>jee6</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.1-alpha-1</version>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.transaction</groupId>
- <artifactId>jta</artifactId>
- <version>1.1</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>release</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <executions>
- <execution>
- <id>jee6</id>
- <phase>package</phase>
- <goals>
- <goal>war</goal>
- </goals>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
- <classifier>jee6</classifier>
- <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</packagingExcludes>
- <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</warSourceExcludes>
- </configuration>
- </execution>
- </executions>
- <configuration>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
- <dependencies>
- <dependency>
- <groupId>org.richfaces.ui.output</groupId>
- <artifactId>richfaces-ui-output-ui</artifactId>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui.core</groupId>
- <artifactId>richfaces-ui-core-ui</artifactId>
- </dependency>
-
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.5.8</version>
- </dependency>
-
- <dependency>
- <groupId>net.sf.ehcache</groupId>
- <artifactId>ehcache</artifactId>
- </dependency>
-
- <!--
- simple logger binding: only messages of level INFO and
- higher are printed
- -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.5.8</version>
- </dependency>
-
- <!-- Log4J dependency used in examples -->
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.14</version>
- </dependency>
-
- <!-- Tests -->
- <dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- <version>5.10</version>
- <classifier>jdk15</classifier>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+>
+
+ <parent>
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>richfaces-example-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>output-demo</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <name>Richfaces Examples: Outputs</name>
+ <packaging>war</packaging>
+
+ <properties>
+ </properties>
+
+ <build>
+ <finalName>${artifactId}-${project.version}</finalName>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.1-beta-1</version>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>jee6</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.1-alpha-1</version>
+ <configuration>
+ <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.transaction</groupId>
+ <artifactId>jta</artifactId>
+ <version>1.1</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>release</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>jee6</id>
+ <phase>package</phase>
+ <goals>
+ <goal>war</goal>
+ </goals>
+ <configuration>
+ <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
+ <classifier>jee6</classifier>
+ <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</packagingExcludes>
+ <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/slf4j-*</warSourceExcludes>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui.output</groupId>
+ <artifactId>richfaces-ui-output-ui</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui.core</groupId>
+ <artifactId>richfaces-ui-core-ui</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.5.8</version>
+ </dependency>
+
+ <dependency>
+ <groupId>net.sf.ehcache</groupId>
+ <artifactId>ehcache</artifactId>
+ </dependency>
+
+ <!--
+ simple logger binding: only messages of level INFO and
+ higher are printed
+ -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>1.5.8</version>
+ </dependency>
+
+ <!-- Log4J dependency used in examples -->
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+
+ <!-- Tests -->
+ <dependency>
+ <groupId>org.testng</groupId>
+ <artifactId>testng</artifactId>
+ <version>5.10</version>
+ <classifier>jdk15</classifier>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Modified: trunk/examples/parent/pom.xml
===================================================================
--- trunk/examples/parent/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/examples/parent/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,228 +1,231 @@
-<?xml version="1.0" encoding="UTF-8"?>
- <!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
- Inc. and individual contributors by the @authors tag. See the
- copyright.txt in the distribution for a full listing of
- individual contributors. This is free software; you can
- redistribute it and/or modify it under the terms of the GNU
- Lesser General Public License as published by the Free Software
- Foundation; either version 2.1 of the License, or (at your
- option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU Lesser General Public License
- for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not,
- write to the Free Software Foundation, Inc., 51 Franklin St,
- Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
- http://www.fsf.org.
- -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>10</version>
- <relativePath>../../build/parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.examples</groupId>
- <artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>RichFaces Examples Parent</name>
-
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-
- <jetty.port>8080</jetty.port>
- <richfaces.checkstyle.version>2</richfaces.checkstyle.version>
- </properties>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
- <!-- Build -->
- <build>
- <!--
- PluginManagement config for all examples
- -->
- <pluginManagement>
- <plugins>
- <!-- Build -->
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <index>true</index>
- <manifest>
- <addDefaultSpecificationEntries>
- true
- </addDefaultSpecificationEntries>
- <addDefaultImplementationEntries>
- true
- </addDefaultImplementationEntries>
- </manifest>
- <manifestEntries>
- <mode>development</mode>
- <Build-Number>${buildNumber}
- </Build-Number>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.3</version>
- <configuration>
- <configLocation>richfaces-checkstyle/richfaces-checkstyle.xml
- </configLocation>
- </configuration>
- <executions>
- <execution>
- <id>richfaces-checkstyle-report</id>
- <phase>process-sources</phase>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-build-checkstyle</artifactId>
- <version>${richfaces.checkstyle.version}</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <version>6.1.18</version>
- <configuration>
- <scanIntervalSeconds>10</scanIntervalSeconds>
- <connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>${jetty.port}</port>
- <maxIdleTime>60000</maxIdleTime>
- </connector>
- </connectors>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <profiles>
- <!--
- The following profiles determine the JSF api/impl
- combinations that will be used in the project builds.
-
- -Djsf_profile=<profile-name> on the mvn command line
- -->
- <profile>
- <id>jsf_ri</id>
- <activation>
- <property>
- <name>!jsf_profile</name>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces</id>
- <activation>
- <property>
- <name>jsf_profile</name>
- <value>myfaces</value>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-impl</artifactId>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jsf_ri_2_1_snapshot</id>
- <activation>
- <property>
- <name>jsf_profile</name>
- <value>jsf_ri_2_1_snapshot</value>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>2.1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>2.1.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces_snapshot</id>
- <activation>
- <property>
- <name>jsf_profile</name>
- <value>myfaces_snapshot</value>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-api</artifactId>
- <version>2.0.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-impl</artifactId>
- <version>2.0.2-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples/parent</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/examples/parent</url>
- </scm>
+<?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org.
+ -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>10</version>
+ <relativePath>../../build/parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>richfaces-example-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>RichFaces Examples Parent</name>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
+ <jetty.port>8080</jetty.port>
+ <richfaces.checkstyle.version>2</richfaces.checkstyle.version>
+ </properties>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-bom</artifactId>
+ <version>${project.version}</version>
+ <scope>import</scope>
+ <type>pom</type>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <!-- Build -->
+ <build>
+ <!--
+ PluginManagement config for all examples
+ -->
+ <pluginManagement>
+ <plugins>
+ <!-- Build -->
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <index>true</index>
+ <manifest>
+ <addDefaultSpecificationEntries>
+ true
+ </addDefaultSpecificationEntries>
+ <addDefaultImplementationEntries>
+ true
+ </addDefaultImplementationEntries>
+ </manifest>
+ <manifestEntries>
+ <mode>development</mode>
+ <Build-Number>${buildNumber}
+ </Build-Number>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <version>2.3</version>
+ <configuration>
+ <configLocation>richfaces-checkstyle/richfaces-checkstyle.xml
+ </configLocation>
+ </configuration>
+ <executions>
+ <execution>
+ <id>richfaces-checkstyle-report</id>
+ <phase>process-sources</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-build-checkstyle</artifactId>
+ <version>${richfaces.checkstyle.version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <version>6.1.18</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <connectors>
+ <connector
+ implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>${jetty.port}</port>
+ <maxIdleTime>60000</maxIdleTime>
+ </connector>
+ </connectors>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ <profiles>
+ <!--
+ The following profiles determine the JSF api/impl
+ combinations that will be used in the project builds.
+
+ -Djsf_profile=<profile-name> on the mvn command line
+ -->
+ <profile>
+ <id>jsf_ri</id>
+ <activation>
+ <property>
+ <name>!jsf_profile</name>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces</id>
+ <activation>
+ <property>
+ <name>jsf_profile</name>
+ <value>myfaces</value>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jsf_ri_2_1_snapshot</id>
+ <activation>
+ <property>
+ <name>jsf_profile</name>
+ <value>jsf_ri_2_1_snapshot</value>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>2.1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>2.1.0-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces_snapshot</id>
+ <activation>
+ <property>
+ <name>jsf_profile</name>
+ <value>myfaces_snapshot</value>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ <version>2.0.2-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ <version>2.0.2-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/examples/parent</url>
+ </scm>
</project>
\ No newline at end of file
Modified: trunk/examples/pom.xml
===================================================================
--- trunk/examples/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/examples/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,59 +1,61 @@
-<?xml version="1.0" encoding="UTF-8"?>
- <!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
- Inc. and individual contributors by the @authors tag. See the
- copyright.txt in the distribution for a full listing of
- individual contributors. This is free software; you can
- redistribute it and/or modify it under the terms of the GNU
- Lesser General Public License as published by the Free Software
- Foundation; either version 2.1 of the License, or (at your
- option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU Lesser General Public License
- for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not,
- write to the Free Software Foundation, Inc., 51 Franklin St,
- Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
- http://www.fsf.org.
- -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <!--
- This aggregator pom, is not released, and is only used to make
- it easy to build all of the examples at once from trunk.
- -->
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>10</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.examples</groupId>
- <artifactId>examples-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>RichFaces Examples: Aggregator</name>
-
- <modules>
- <module>parent</module>
- <module>core-demo</module>
- <module>misc-demo</module>
- <module>output-demo</module>
- <module>input-demo</module>
- <module>repeater-demo</module>
- <module>iteration-demo</module>
- <module>richfaces-showcase</module>
- <!--<module>dist</module>-->
- </modules>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk/examples</url>
- </scm>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org.
+ -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <!--
+ This aggregator pom, is not released, and is only used to make
+ it easy to build all of the examples at once from trunk.
+ -->
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>10</version>
+ <relativePath>../build/parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>examples-aggregator</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>RichFaces Examples: Aggregator</name>
+
+ <modules>
+ <module>parent</module>
+ <module>core-demo</module>
+ <module>misc-demo</module>
+ <module>output-demo</module>
+ <module>input-demo</module>
+ <module>repeater-demo</module>
+ <module>iteration-demo</module>
+ <module>richfaces-showcase</module>
+ <!--<module>dist</module>-->
+ </modules>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk/examples</url>
+ </scm>
+
+</project>
Modified: trunk/examples/repeater-demo/pom.xml
===================================================================
--- trunk/examples/repeater-demo/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/examples/repeater-demo/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -18,7 +18,10 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd"
+>
<modelVersion>4.0.0</modelVersion>
Modified: trunk/examples/richfaces-showcase/pom.xml
===================================================================
--- trunk/examples/richfaces-showcase/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/examples/richfaces-showcase/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -87,7 +88,8 @@
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <connector
+ implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>${jetty.port}</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
Modified: trunk/parent/pom.xml
===================================================================
--- trunk/parent/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/parent/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -17,7 +17,8 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,66 +1,68 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>10</version>
- <relativePath>build/parent/pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-root</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>Richfaces Aggregator</name>
-
- <modules>
- <module>bom</module>
- <module>parent</module>
- <module>core</module>
- <module>cdk</module>
-
- <!-- richfaces ui -->
- <module>ui</module>
-
- <!-- Remaining -->
- <module>archetypes</module>
- <module>examples</module>
- <!--<module>docs</module>-->
- </modules>
-
- <build>
- <plugins>
- <!-- To trigger the release -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>bootstrap</id>
- <modules>
- <module>build/parent</module>
- <module>build/checkstyle</module>
- <module>build/faces-shade-transformers</module>
- </modules>
- </profile>
- <profile>
- <id>release</id>
- <modules>
- <module>dist</module>
- </modules>
- </profile>
- </profiles>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/trunk</url>
- </scm>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>10</version>
+ <relativePath>build/parent/pom.xml</relativePath>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-root</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>Richfaces Aggregator</name>
+
+ <modules>
+ <module>bom</module>
+ <module>parent</module>
+ <module>core</module>
+ <module>cdk</module>
+
+ <!-- richfaces ui -->
+ <module>ui</module>
+
+ <!-- Remaining -->
+ <module>archetypes</module>
+ <module>examples</module>
+ <!--<module>docs</module>-->
+ </modules>
+
+ <build>
+ <plugins>
+ <!-- To trigger the release -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>bootstrap</id>
+ <modules>
+ <module>build/parent</module>
+ <module>build/checkstyle</module>
+ <module>build/faces-shade-transformers</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>release</id>
+ <modules>
+ <module>dist</module>
+ </modules>
+ </profile>
+ </profiles>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/trunk</url>
+ </scm>
+</project>
Modified: trunk/ui/core/api/pom.xml
===================================================================
--- trunk/ui/core/api/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/ui/core/api/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -15,7 +15,8 @@
USA, or see the FSF site: http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.richfaces.ui</groupId>
Modified: trunk/ui/core/ui/pom.xml
===================================================================
--- trunk/ui/core/ui/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/ui/core/ui/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -18,7 +18,9 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
+>
<parent>
<groupId>org.richfaces.ui</groupId>
Modified: trunk/ui/input/api/pom.xml
===================================================================
--- trunk/ui/input/api/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/ui/input/api/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -19,7 +19,8 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.richfaces.ui</groupId>
Modified: trunk/ui/misc/pom.xml
===================================================================
--- trunk/ui/misc/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/ui/misc/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -18,7 +18,9 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+>
<modelVersion>4.0.0</modelVersion>
Modified: trunk/ui/misc/ui/pom.xml
===================================================================
--- trunk/ui/misc/ui/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/ui/misc/ui/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -17,7 +17,8 @@
Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
Modified: trunk/ui/output/api/pom.xml
===================================================================
--- trunk/ui/output/api/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/ui/output/api/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -19,7 +19,8 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.richfaces.ui</groupId>
Modified: trunk/ui/parent/pom.xml
===================================================================
--- trunk/ui/parent/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/ui/parent/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -18,7 +18,9 @@
http://www.fsf.org.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+>
<modelVersion>4.0.0</modelVersion>
Modified: trunk/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2010-08-22 16:22:09 UTC (rev 18913)
+++ trunk/ui/pom.xml 2010-08-22 17:06:52 UTC (rev 18914)
@@ -1,50 +1,53 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
- Inc. and individual contributors by the @authors tag. See the
- copyright.txt in the distribution for a full listing of
- individual contributors. This is free software; you can
- redistribute it and/or modify it under the terms of the GNU
- Lesser General Public License as published by the Free Software
- Foundation; either version 2.1 of the License, or (at your
- option) any later version. This software is distributed in the
- hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU Lesser General Public License
- for more details. You should have received a copy of the GNU
- Lesser General Public License along with this software; if not,
- write to the Free Software Foundation, Inc., 51 Franklin St,
- Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
- http://www.fsf.org.
--->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <!-- This aggregator pom, is not released, and is only used to make it easy to build all of the
- examples at once from trunk. -->
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>10</version>
-<relativePath>../build/parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>RichFaces UI: Aggregator</name>
-
- <modules>
- <module>parent</module>
- <module>common</module>
- <module>core</module>
- <module>iteration</module>
- <module>misc</module>
- <module>output</module>
- <module>input</module>
- <module>dist</module>
- </modules>
-</project>
-
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- This aggregator pom, is not released, and is only used to make it easy to build all of the
+ examples at once from trunk. -->
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>10</version>
+<relativePath>../build/parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui-aggregator</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>RichFaces UI: Aggregator</name>
+
+ <modules>
+ <module>parent</module>
+ <module>common</module>
+ <module>core</module>
+ <module>iteration</module>
+ <module>misc</module>
+ <module>output</module>
+ <module>input</module>
+ <module>dist</module>
+ </modules>
+
+</project>
+
15 years, 1 month