JBoss Rich Faces SVN: r21583 - in trunk: core/impl/src/test/resources/javascript and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2011-02-10 01:56:41 -0500 (Thu, 10 Feb 2011)
New Revision: 21583
Added:
trunk/examples/core-demo/src/main/java/org/richfaces/demo/AttachQueueBean.java
Modified:
trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js
trunk/core/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js
trunk/examples/core-demo/src/main/webapp/attachQueue.xhtml
Log:
https://issues.jboss.org/browse/RF-10421 a4j:attachQueue - @requestGroupId doesn't work
Modified: trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js
===================================================================
--- trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js 2011-02-10 04:31:43 UTC (rev 21582)
+++ trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js 2011-02-10 06:56:41 UTC (rev 21583)
@@ -121,15 +121,15 @@
}
}
- if (typeof this.queueOptions.requestGroupId == "undefined") {
- this.queueOptions.requestGroupId = typeof this.source == "string" ? this.source : this.source.id;
+ if (typeof this.queueOptions.requestGroupingId == "undefined") {
+ this.queueOptions.requestGroupingId = typeof this.source == "string" ? this.source : this.source.id;
}
// copy of event should be created otherwise IE will fail
this.event = $.extend({}, event);
- //requestGroupId is mutable, thus we need special field for it
- this.requestGroupId = this.queueOptions.requestGroupId;
+ //requestGroupingId is mutable, thus we need special field for it
+ this.requestGroupingId = this.queueOptions.requestGroupingId;
this.eventsCount = 1;
};
@@ -140,15 +140,15 @@
},
getRequestGroupId: function() {
- return this.requestGroupId;
+ return this.requestGroupingId;
},
setRequestGroupId: function(id) {
- this.requestGroupId = id;
+ this.requestGroupingId = id;
},
resetRequestGroupId: function() {
- this.requestGroupId = undefined;
+ this.requestGroupingId = undefined;
},
setReadyToSubmit: function(isReady) {
@@ -306,7 +306,7 @@
var pushEntry = function (entry) {
items.push(entry);
- log.debug("New request added to queue. Queue requestGroupId changed to " + entry.getRequestGroupId());
+ log.debug("New request added to queue. Queue requestGroupingId changed to " + entry.getRequestGroupId());
// call event handlers
callEventHandler("onrequestqueue", entry);
}
@@ -362,12 +362,12 @@
* */
push: function (source, event, options) {
var entry = new QueueEntry(this, source, event, options);
- var requestGroupId = entry.getRequestGroupId();
+ var requestGroupingId = entry.getRequestGroupId();
var lastEntry = getLastEntry();
if (lastEntry) {
- if (lastEntry.getRequestGroupId() == requestGroupId) {
+ if (lastEntry.getRequestGroupId() == requestGroupingId) {
log.debug("Similar request currently in queue");
log.debug("Combine similar requests and reset timer");
Modified: trunk/core/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js
===================================================================
--- trunk/core/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js 2011-02-10 04:31:43 UTC (rev 21582)
+++ trunk/core/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js 2011-02-10 06:56:41 UTC (rev 21583)
@@ -96,7 +96,7 @@
jsf.ajax.eventHandlers[i]({type:"event", status:"success"});
}
equals(typeof options.queueId, "undefined", "options.queueId");
- equals(typeof options.requestGroupId, "undefined", "options.requestGroupId");
+ equals(typeof options.requestGroupingId, "undefined", "options.requestGroupingId");
equals(options.param, "value", "options.param");
}
@@ -106,7 +106,7 @@
'</table>'+
'</form>');
- var options1 = {param:"value1", requestGroupId: 999};
+ var options1 = {param:"value1", requestGroupingId: 999};
RichFaces.queue.setQueueOptions({'testQueueId1': options1});
document.getElementById("testButton2").click({type:"onclick"});
RichFaces.queue.clear();
@@ -121,7 +121,7 @@
jsf.ajax.eventHandlers[i]({type:"event", status:"success"});
}
equals(typeof options.queueId, "undefined", "options.queueId");
- equals(typeof options.requestGroupId, "undefined", "options.requestGroupId");
+ equals(typeof options.requestGroupingId, "undefined", "options.requestGroupingId");
equals(options.param, "newValue", "options.param");
}
@@ -131,8 +131,8 @@
'</table>'+
'</form>');
- var options1 = {queueId: 'testQueueId2', param:"value1", requestGroupId: 888};
- var options2 = {param:"value1", requestGroupId: 777};
+ var options1 = {queueId: 'testQueueId2', param:"value1", requestGroupingId: 888};
+ var options2 = {param:"value1", requestGroupingId: 777};
RichFaces.queue.setQueueOptions({'testQueueId1': options1, 'testQueueId2': options2});
document.getElementById("testButton3").click({type:"onclick"});
@@ -181,8 +181,8 @@
Timer.endSimulation();
});
- //jsf.ajax.request - equal requestGroupId
- test("jsf.ajax.request - equal requestGroupId", function() {
+ //jsf.ajax.request - equal requestGroupingId
+ test("jsf.ajax.request - equal requestGroupingId", function() {
Timer.beginSimulation();
var time;
var newTime;
@@ -217,7 +217,7 @@
'</table>'+
'</form>');
- var options1 = {requestGroupId: 888, requestDelay:1000};
+ var options1 = {requestGroupingId: 888, requestDelay:1000};
RichFaces.queue.setQueueOptions({'testQueueId1': options1});
window.setTimeout(onTimeOut, 2000);
@@ -228,8 +228,8 @@
Timer.endSimulation();
});
- //jsf.ajax.request - not equal requestGroupId
- test("jsf.ajax.request - not equal requestGroupId", function() {
+ //jsf.ajax.request - not equal requestGroupingId
+ test("jsf.ajax.request - not equal requestGroupingId", function() {
Timer.beginSimulation();
var time;
var newTime;
@@ -275,8 +275,8 @@
'</table>'+
'</form>');
- var options1 = {requestGroupId: 888, requestDelay:1000};
- var options2 = {requestGroupId: 999, requestDelay:1000};
+ var options1 = {requestGroupingId: 888, requestDelay:1000};
+ var options2 = {requestGroupingId: 999, requestDelay:1000};
RichFaces.queue.setQueueOptions({'testQueueId1': options1, 'testQueueId2': options2});
window.setTimeout(onTimeOut, 2000);
Added: trunk/examples/core-demo/src/main/java/org/richfaces/demo/AttachQueueBean.java
===================================================================
--- trunk/examples/core-demo/src/main/java/org/richfaces/demo/AttachQueueBean.java (rev 0)
+++ trunk/examples/core-demo/src/main/java/org/richfaces/demo/AttachQueueBean.java 2011-02-10 06:56:41 UTC (rev 21583)
@@ -0,0 +1,39 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright ${year}, 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.
+ */
+package org.richfaces.demo;
+
+import javax.faces.bean.ManagedBean;
+import javax.faces.bean.SessionScoped;
+
+@ManagedBean
+@SessionScoped
+public class AttachQueueBean {
+ String name;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+}
Modified: trunk/examples/core-demo/src/main/webapp/attachQueue.xhtml
===================================================================
--- trunk/examples/core-demo/src/main/webapp/attachQueue.xhtml 2011-02-10 04:31:43 UTC (rev 21582)
+++ trunk/examples/core-demo/src/main/webapp/attachQueue.xhtml 2011-02-10 06:56:41 UTC (rev 21583)
@@ -9,8 +9,29 @@
<h:head>
</h:head>
<h:body>
+ <a4j:queue requestDelay="750"></a4j:queue>
<h:form id="form">
+ <h:panelGrid columns="2">
+ <a4j:commandButton value="Set Name to Alex" render="rep ">
+ <a4j:attachQueue requestGroupingId="group1" requestDelay="5000"/>
+ <a4j:param name="username" value="Alex" assignTo="#{attachQueueBean.name}" />
+ <a4j:param name="username" value="Alex" assignTo="#{attachQueueBean.name1}" />
+ </a4j:commandButton>
+
+ <a4j:commandButton value="Set Name to John" render="rep ">
+ <a4j:attachQueue requestGroupingId="group1" requestDelay="5000" />
+ <a4j:param name="username" value="John" assignTo="#{attachQueueBean.name1}" />
+ </a4j:commandButton>
+ </h:panelGrid>
+
+ <div>
+ <h:outputText id="rep" value="Selected Name:#{attachQueueBean.name}" />
+ <h:outputText id="rep" value="Selected Name:#{attachQueueBean.name}" />
+ <h:outputText id="rep" value="Selected Name:#{attachQueueBean.name}" />
+
+ </div>
+
<a4j:ajax>
<h:inputText />
15 years, 2 months
JBoss Rich Faces SVN: r21582 - in modules/docs/trunk/Component_Reference/src/main/docbook/en-US: images and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2011-02-09 23:31:43 -0500 (Wed, 09 Feb 2011)
New Revision: 21582
Added:
modules/docs/trunk/Component_Reference/src/main/docbook/en-US/images/figu-Component_Reference-richdragIndicator-An_empty_drag_indicator.png
Modified:
modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Drag_and_drop.xml
Log:
Updated drag and drop docs as per RFPL-1035
Modified: modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Drag_and_drop.xml
===================================================================
--- modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Drag_and_drop.xml 2011-02-09 20:15:39 UTC (rev 21581)
+++ modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Drag_and_drop.xml 2011-02-10 04:31:43 UTC (rev 21582)
@@ -15,137 +15,229 @@
Read this chapter for details on adding drag and drop support to controls.
</para>
- <!-- <rich:dragBehavior> -->
- <section id="sect-Component_Reference-Drag_and_drop-richdragBehavior">
- <title><sgmltag><rich:dragBehavior></sgmltag></title>
+ <!-- <rich:dragSource> -->
+ <section id="sect-Component_Reference-Drag_and_drop-richdragSource">
+ <title><sgmltag><rich:dragSource></sgmltag></title>
<para>
- The <sgmltag><rich:dragBehavior></sgmltag> behavior can be added to a component to indicate it is capable of being dragged by the user. The dragged item can then be dropped into a compatible drop area, designated using the <sgmltag><rich:dropBehavior></sgmltag> behavior.
+ The <sgmltag><rich:dragSource></sgmltag> behavior can be added to a component to indicate it is capable of being dragged by the user. The dragged item can then be dropped into a compatible drop area, designated using the <sgmltag><rich:dropTarget></sgmltag> behavior.
</para>
- <section id="sect-Component_Reference-richdragBehavior-Basic_usage">
+ <section id="sect-Component_Reference-richdragSource-Basic_usage">
<title>Basic usage</title>
<para>
- To add drag support to a component, attach the <sgmltag><rich:dragBehavior></sgmltag> behavior as a child element.
+ To add drag support to a component, attach the <sgmltag><rich:dragSource></sgmltag> behavior as a child element.
</para>
<para>
- The <varname>type</varname> attribute must be specified, and can be any identifying string. Dragged items can only be dropped in drop zones where the <varname>type</varname> attribute of the <sgmltag><rich:dragBehavior></sgmltag> behavior is listed in the <varname>acceptedTypes</varname> attribute of the <sgmltag><rich:dropBehavior></sgmltag> behavior.
+ The <varname>type</varname> attribute must be specified, and can be any identifying string. Dragged items can only be dropped in drop zones where the <varname>type</varname> attribute of the <sgmltag><rich:dragSource></sgmltag> behavior is listed in the <varname>acceptedTypes</varname> attribute of the <sgmltag><rich:dropTarget></sgmltag> behavior.
</para>
</section>
- <section id="sect-Component_Reference-richdragBehavior-Dragging_bound_data">
- <title>Dragging bound data</title>
+ <section id="sect-Component_Reference-richdragSource-Dragging_an_object">
+ <title>Dragging an object</title>
<para>
+ Use the <varname>dragIndicator</varname> parameter to customize the appearance of a dragged object while it is being dragged. The <varname>dragIndicator</varname> parameter must point to the <varname>id</varname> identifier of a <sgmltag><rich:dragIndicator></sgmltag> component.
+ </para>
+ <para>
To bind data to the dragged object, use the <varname>dragValue</varname> attribute. The <varname>dragValue</varname> attribute specifies an item in a data model, which is then bound to the parent component when it is dragged. This facilitates handling event data during a drop event.
</para>
</section>
- <section id="sect-Component_Reference-richdragBehavior-Reference_data">
+ <section id="sect-Component_Reference-richdragSource-Reference_data">
<title>Reference data</title>
<itemizedlist>
<listitem>
<para>
- <parameter>component-type</parameter>: <classname>org.richfaces.DragBehavior</classname>
+ <parameter>component-type</parameter>: <classname>org.richfaces.DragSource</classname>
</para>
</listitem>
<listitem>
<para>
- <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlDragBehavior</classname>
+ <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlDragSource</classname>
</para>
</listitem>
<listitem>
<para>
- <parameter>component-family</parameter>: <classname>org.richfaces.DragBehavior</classname>
+ <parameter>component-family</parameter>: <classname>org.richfaces.DragSource</classname>
</para>
</listitem>
<listitem>
<para>
- <parameter>renderer-type</parameter>: <classname>org.richfaces.DragBehaviorRenderer</classname>
+ <parameter>renderer-type</parameter>: <classname>org.richfaces.DragSourceRenderer</classname>
</para>
</listitem>
<listitem>
<para>
- <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.DragBehaviorTag</classname>
+ <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.DragSourceTag</classname>
</para>
</listitem>
</itemizedlist>
</section>
</section>
- <!-- <rich:dropBehavior> -->
- <section id="sect-Component_Reference-Drag_and_drop-richdropBehavior">
- <title><sgmltag><rich:dropBehavior></sgmltag></title>
+ <!-- <rich:dropTarget> -->
+ <section id="sect-Component_Reference-Drag_and_drop-richdropTarget">
+ <title><sgmltag><rich:dropTarget></sgmltag></title>
<para>
- The <sgmltag><rich:dropBehavior></sgmltag> behavior can be added to a component so that the component can accept dragged items. The dragged items must support the <sgmltag><rich:dragBehavior></sgmltag> behavior, and be of a compatible drop type.
+ The <sgmltag><rich:dropTarget></sgmltag> behavior can be added to a component so that the component can accept dragged items. The dragged items must support the <sgmltag><rich:dragSource></sgmltag> behavior, and be of a compatible drop type.
</para>
- <section id="sect-Component_Reference-richdropBehavior-Basic_usage">
+ <section id="sect-Component_Reference-richdropTarget-Basic_usage">
<title>Basic usage</title>
<para>
- To allow dragged items to be dropped on a component, attach the <sgmltag><rich:dropBehavior></sgmltag> behavior as a child element to the component.
+ To allow dragged items to be dropped on a component, attach the <sgmltag><rich:dropTarget></sgmltag> behavior as a child element to the component.
</para>
<para>
- The <varname>acceptedTypes</varname> attribute must be specified. The <varname>acceptedTypes</varname> attribute is a comma-separated list of strings that match the types of dragged items. Dragged items can only be dropped in drop zones where the <varname>type</varname> attribute of the <sgmltag><rich:dragBehavior></sgmltag> behavior is listed in the <varname>acceptedTypes</varname> attribute of the <sgmltag><rich:dropBehavior></sgmltag> behavior.
+ The <varname>acceptedTypes</varname> attribute must be specified. The <varname>acceptedTypes</varname> attribute is a comma-separated list of strings that match the types of dragged items. Dragged items can only be dropped in drop zones where the <varname>type</varname> attribute of the <sgmltag><rich:dragSource></sgmltag> behavior is listed in the <varname>acceptedTypes</varname> attribute of the <sgmltag><rich:dropTarget></sgmltag> behavior.
</para>
+ <para>
+ The <varname>acceptedTypes</varname> attribute can optionally be set to either <literal>@none</literal> or <literal>@all</literal>. If set to <literal>@none</literal>, the component will not accept any type of dropped object. If set to <literal>@all</literal>, the component accepts all dropped objects. If the <varname>acceptedTypes</varname> attribute is not specified, the default value is <literal>null</literal>, which is the same as a <literal>@none</literal> setting.
+ </para>
</section>
- <section id="sect-Component_Reference-richdropBehavior-Handling_dropped_data">
+ <section id="sect-Component_Reference-richdropTarget-Handling_dropped_data">
<title>Handling dropped data</title>
<para>
To provide additional parameters for a drop event, use the <varname>dropValue</varname> attribute.
</para>
<para>
- The <sgmltag><rich:dropBehavior></sgmltag> behavior raises the <varname>DropEvent</varname> server-side event when an object is dropped. The event uses the following parameters:
+ The <sgmltag><rich:dropTarget></sgmltag> behavior raises the <varname>DropEvent</varname> server-side event when an object is dropped. The event uses the following parameters:
</para>
<itemizedlist>
<listitem>
<para>
- The <parameter>dragComponent</parameter> identifies the component being dragged (the parent of the <sgmltag><rich:dragBehavior></sgmltag> behavior).
+ The <parameter>dragSource</parameter> identifies the component being dragged (the parent of the <sgmltag><rich:dragSource></sgmltag> behavior).
</para>
</listitem>
<listitem>
<para>
- The <parameter>dropComponent</parameter> parameter identifies the drop zone component (the parent of the <sgmltag><rich:dropBehavior></sgmltag> behavior).
+ The <parameter>dragValue</parameter> parameter is the content of the <sgmltag><rich:dragSource></sgmltag> behavior's <varname>dragValue</varname> attribute.
</para>
</listitem>
<listitem>
<para>
- The <parameter>dragSource</parameter> parameter is the content of the <sgmltag><rich:dragBehavior></sgmltag> behavior's <varname>dragValue</varname> attribute.
+ The <parameter>dropValue</parameter> parameter is the content of the <sgmltag><rich:dropTarget></sgmltag> behavior's <varname>dropValue</varname> attribute.
</para>
</listitem>
+ </itemizedlist>
+ </section>
+
+ <section id="sect-Component_Reference-richdropTarget-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
<listitem>
<para>
- The <parameter>dropSource</parameter> parameter is the content of the <sgmltag><rich:dropBehavior></sgmltag> behavior's <varname>dropValue</varname> attribute.
+ <parameter>component-type</parameter>: <classname>org.richfaces.DropTarget</classname>
</para>
</listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlDropTarget</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.richfaces.DropTarget</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.richfaces.DropTargetRenderer</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.DropTargetTag</classname>
+ </para>
+ </listitem>
</itemizedlist>
</section>
+ </section>
+
+ <section id="sect-Component_Reference-Drag_and_drop-richdragIndicator">
+ <title><sgmltag><rich:dragIndicator></sgmltag></title>
+ <para>
+ The <sgmltag><rich:dragIndicator></sgmltag> component defines a graphical element to display under the mouse cursor during a drag-and-drop operation.
+ </para>
+
+ <section id="sect-Component_Reference-richdragIndicator-Basic_usage">
+ <title>Basic usage</title>
+ <para>
+ If included without any attributes specified, the drag indicator will appear as an empty dotted outline, as shown in
+ </para>
+ <figure id="figu-Component_Reference-richdragIndicator-An_empty_drag_indicator">
+ <title>An empty drag indicator</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/figu-Component_Reference-richdragIndicator-An_empty_drag_indicator.png" format="PNG" />
+ </imageobject>
+ <textobject>
+ <para>
+ An empty drag indicator appears as an empty dotted outline.
+ </para>
+ </textobject>
+ </mediaobject>
+ </figure>
+ </section>
+
+ <section id="sect-Component_Reference-richdragIndicator-Styling_the_indicator">
+ <title>Styling the indicator</title>
+ <para>
+ The drag indicator can be styled depending on the current state of the dragged element. There are three attributes for different states. The attributes reference the CSS class to use for styling the drag indicator when the dragged element is in the relevant state.
+ </para>
+ <variablelist>
+ <varlistentry>
+ <term><varname>acceptClass</varname></term>
+ <listitem>
+ <para>
+ The <varname>acceptClass</varname> attribute specifies the style when the dragged element is over an acceptable drop target. It indicates that the <varname>type</varname> attribute of the element's <sgmltag><rich:dragSource></sgmltag> behavior matches <varname>acceptedTypes</varname> attribute of the drop target's <sgmltag><rich:dropTarget></sgmltag> behavior.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><varname>rejectClass</varname></term>
+ <listitem>
+ <para>
+ The <varname>rejectClass</varname> attribute specifies the style when the dragged element is over a drop target that is not acceptable. It indicates that the <varname>type</varname> attribute of the element's <sgmltag><rich:dragSource></sgmltag> behavior is not found in the <varname>acceptedTypes</varname> attribute of the drop target's <sgmltag><rich:dropTarget></sgmltag> behavior.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><varname>draggingClass</varname></term>
+ <listitem>
+ <para>
+ The <varname>draggingClass</varname> attribute specifies the style when the dragged element is being dragged. It indicates that the dragged element is not over a drop target.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </section>
- <section id="sect-Component_Reference-richdropBehavior-Reference_data">
+ <section id="sect-Component_Reference-richdragIndicator-Reference_data">
<title>Reference data</title>
<itemizedlist>
<listitem>
<para>
- <parameter>component-type</parameter>: <classname>org.richfaces.DropBehavior</classname>
+ <parameter>component-type</parameter>: <classname>org.richfaces.DragIndicator</classname>
</para>
</listitem>
<listitem>
<para>
- <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlDropBehavior</classname>
+ <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlDragIndicator</classname>
</para>
</listitem>
<listitem>
<para>
- <parameter>component-family</parameter>: <classname>org.richfaces.DropBehavior</classname>
+ <parameter>component-family</parameter>: <classname>org.richfaces.DragIndicator</classname>
</para>
</listitem>
<listitem>
<para>
- <parameter>renderer-type</parameter>: <classname>org.richfaces.DropBehaviorRenderer</classname>
+ <parameter>renderer-type</parameter>: <classname>org.richfaces.DragIndicatorRenderer</classname>
</para>
</listitem>
<listitem>
<para>
- <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.DropBehaviorTag</classname>
+ <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.DragIndicatorTag</classname>
</para>
</listitem>
</itemizedlist>
Added: modules/docs/trunk/Component_Reference/src/main/docbook/en-US/images/figu-Component_Reference-richdragIndicator-An_empty_drag_indicator.png
===================================================================
(Binary files differ)
Property changes on: modules/docs/trunk/Component_Reference/src/main/docbook/en-US/images/figu-Component_Reference-richdragIndicator-An_empty_drag_indicator.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 2 months
JBoss Rich Faces SVN: r21581 - in branches/4.0.0.M6: archetypes and 64 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2011-02-09 15:15:39 -0500 (Wed, 09 Feb 2011)
New Revision: 21581
Modified:
branches/4.0.0.M6/archetypes/pom.xml
branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml
branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml
branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml
branches/4.0.0.M6/archetypes/richfaces-component/pom.xml
branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml
branches/4.0.0.M6/bom/pom.xml
branches/4.0.0.M6/cdk/annotations/pom.xml
branches/4.0.0.M6/cdk/attributes/pom.xml
branches/4.0.0.M6/cdk/commons/pom.xml
branches/4.0.0.M6/cdk/dist/pom.xml
branches/4.0.0.M6/cdk/generator/pom.xml
branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml
branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml
branches/4.0.0.M6/cdk/parent/pom.xml
branches/4.0.0.M6/cdk/pom.xml
branches/4.0.0.M6/cdk/xinclude/pom.xml
branches/4.0.0.M6/core/api/pom.xml
branches/4.0.0.M6/core/impl/pom.xml
branches/4.0.0.M6/core/parent/pom.xml
branches/4.0.0.M6/core/pom.xml
branches/4.0.0.M6/dist/pom.xml
branches/4.0.0.M6/examples/core-demo/pom.xml
branches/4.0.0.M6/examples/dnd-demo/pom.xml
branches/4.0.0.M6/examples/input-demo/pom.xml
branches/4.0.0.M6/examples/irc-client/pom.xml
branches/4.0.0.M6/examples/iteration-demo/pom.xml
branches/4.0.0.M6/examples/misc-demo/pom.xml
branches/4.0.0.M6/examples/output-demo/pom.xml
branches/4.0.0.M6/examples/parent/pom.xml
branches/4.0.0.M6/examples/pom.xml
branches/4.0.0.M6/examples/push-demo/pom.xml
branches/4.0.0.M6/examples/repeater-demo/pom.xml
branches/4.0.0.M6/examples/richfaces-showcase/pom.xml
branches/4.0.0.M6/examples/template/pom.xml
branches/4.0.0.M6/examples/validator-demo/pom.xml
branches/4.0.0.M6/parent/pom.xml
branches/4.0.0.M6/pom.xml
branches/4.0.0.M6/ui/common/api/pom.xml
branches/4.0.0.M6/ui/common/pom.xml
branches/4.0.0.M6/ui/common/ui/pom.xml
branches/4.0.0.M6/ui/core/api/pom.xml
branches/4.0.0.M6/ui/core/pom.xml
branches/4.0.0.M6/ui/core/ui/pom.xml
branches/4.0.0.M6/ui/dist/pom.xml
branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml
branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml
branches/4.0.0.M6/ui/dnd/api/pom.xml
branches/4.0.0.M6/ui/dnd/pom.xml
branches/4.0.0.M6/ui/dnd/ui/pom.xml
branches/4.0.0.M6/ui/input/api/pom.xml
branches/4.0.0.M6/ui/input/pom.xml
branches/4.0.0.M6/ui/input/ui/pom.xml
branches/4.0.0.M6/ui/iteration/api/pom.xml
branches/4.0.0.M6/ui/iteration/pom.xml
branches/4.0.0.M6/ui/iteration/ui/pom.xml
branches/4.0.0.M6/ui/misc/pom.xml
branches/4.0.0.M6/ui/misc/ui/pom.xml
branches/4.0.0.M6/ui/output/api/pom.xml
branches/4.0.0.M6/ui/output/pom.xml
branches/4.0.0.M6/ui/output/ui/pom.xml
branches/4.0.0.M6/ui/parent/pom.xml
branches/4.0.0.M6/ui/pom.xml
branches/4.0.0.M6/ui/validator/api/pom.xml
branches/4.0.0.M6/ui/validator/pom.xml
branches/4.0.0.M6/ui/validator/ui/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: branches/4.0.0.M6/archetypes/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/archetypes/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -30,7 +30,7 @@
<groupId>org.richfaces.archetypes</groupId>
<artifactId>archetypes-aggregator</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Archetypes: Aggregator</name>
@@ -49,9 +49,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetypes</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetypes</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-gae</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: GAE Application</name>
@@ -93,9 +93,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-simpleapp</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Simple Application</name>
@@ -92,9 +92,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-component/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-component/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/archetypes/richfaces-component/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component-short</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-components-aggregator</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/bom/pom.xml
===================================================================
--- branches/4.0.0.M6/bom/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/bom/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -18,7 +18,7 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces BOM</name>
<parent>
@@ -227,9 +227,9 @@
</dependencyManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/b...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/buil...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/build/bom</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/build/bom</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/build/bom</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/build/bom</url>
</scm>
</project>
Modified: branches/4.0.0.M6/cdk/annotations/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/annotations/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/cdk/annotations/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<description>That project contains annotations for JSF classes</description>
<name>annotations</name>
<dependencies>
Modified: branches/4.0.0.M6/cdk/attributes/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/attributes/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/cdk/attributes/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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: branches/4.0.0.M6/cdk/commons/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/commons/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/cdk/commons/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>commons</name>
<build>
<plugins>
Modified: branches/4.0.0.M6/cdk/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/dist/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/cdk/dist/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -4,20 +4,20 @@
<parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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.20110209-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/cdk/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20110209-M6/cdk/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M6/cdk/dist</url>
</scm>
<build>
<finalName>cdk</finalName>
Modified: branches/4.0.0.M6/cdk/generator/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/generator/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/cdk/generator/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -3,13 +3,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Java Server Faces component generator</name>
Modified: branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -2,13 +2,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
Modified: branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -4,13 +4,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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: branches/4.0.0.M6/cdk/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/parent/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/cdk/parent/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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.20110209-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/cdk/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/tags/4.0.0.20110209-...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/pa...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/branches/4.0.0.M6/cd...</url>
</scm>
<build>
Modified: branches/4.0.0.M6/cdk/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/cdk/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>aggregator</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6/cdk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/cdk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20110209-M6/cdk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M6/cdk</url>
</scm>
<!-- Minimal build configuration -->
Modified: branches/4.0.0.M6/cdk/xinclude/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/xinclude/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/cdk/xinclude/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -22,13 +22,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Cocoon 3: xinclude transformer</name>
<description>Cocoon 3 xinclude transformer with Xpointer scheme support.</description>
Modified: branches/4.0.0.M6/core/api/pom.xml
===================================================================
--- branches/4.0.0.M6/core/api/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/core/api/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -80,8 +80,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/core/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/api</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/api</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/api</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/impl/pom.xml
===================================================================
--- branches/4.0.0.M6/core/impl/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/core/impl/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -237,8 +237,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/core/impl</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/impl</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/impl</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/impl</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/core/parent/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/core/parent/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -23,13 +23,13 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -46,8 +46,8 @@
</dependencyManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/core/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/p...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/pom.xml
===================================================================
--- branches/4.0.0.M6/core/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/core/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-aggregator</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Core Aggregator</name>
@@ -43,9 +43,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core</url>
</scm>
</project>
Modified: branches/4.0.0.M6/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/dist/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/dist/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces Distribution Assembler</name>
@@ -187,8 +187,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6</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: branches/4.0.0.M6/examples/core-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/core-demo/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/core-demo/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Examples: Core</name>
<properties>
@@ -193,8 +193,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/core...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/dnd-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/dnd-demo/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/dnd-demo/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>dnd-demo</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: DND</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/input-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/input-demo/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/input-demo/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Inputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/irc-client/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/irc-client/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/irc-client/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -6,14 +6,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>irc-client</artifactId>
<name>Richfaces Examples: Richfaces IRC Client Application</name>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<url>http://jboss.org/richfaces</url>
Modified: branches/4.0.0.M6/examples/iteration-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/iteration-demo/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/iteration-demo/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Examples: Iteration</name>
<properties>
Modified: branches/4.0.0.M6/examples/misc-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/misc-demo/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/misc-demo/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>RichFaces Examples: Miscellanous</name>
Modified: branches/4.0.0.M6/examples/output-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/output-demo/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/output-demo/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Outputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/parent/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/parent/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Examples Parent</name>
@@ -250,8 +250,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/examples/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -34,7 +34,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>examples-aggregator</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Examples: Aggregator</name>
@@ -55,9 +55,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/examples</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/push-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/push-demo/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/push-demo/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>push-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Examples: Push</name>
<properties>
@@ -196,8 +196,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/push...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/repeater-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/repeater-demo/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/repeater-demo/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -25,14 +25,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Repeater</name>
<properties>
Modified: branches/4.0.0.M6/examples/richfaces-showcase/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/richfaces-showcase/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -7,13 +7,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>Richfaces Examples: Richfaces Showcase Application</name>
@@ -445,8 +445,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/rich...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/template/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/template/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/template/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -3,14 +3,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.examples</groupId>
<artifactId>template</artifactId>
<packaging>war</packaging>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>examples template</name>
<dependencies>
<dependency>
Modified: branches/4.0.0.M6/examples/validator-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/validator-demo/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/examples/validator-demo/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>validator-demo</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Validators</name>
<packaging>war</packaging>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.examples</groupId>
<artifactId>template</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
Modified: branches/4.0.0.M6/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/parent/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/parent/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -18,13 +18,13 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../bom/pom.xml</relativePath>
</parent>
@@ -400,11 +400,11 @@
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/p...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/parent
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/parent
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/parent
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/parent</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/parent</url>
</scm>
</project>
Modified: branches/4.0.0.M6/pom.xml
===================================================================
--- branches/4.0.0.M6/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-aggregator</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/common/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/api/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/common/api/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/common/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/common/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Common Aggregator</name>
Modified: branches/4.0.0.M6/ui/common/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/ui/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/common/ui/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/core/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/api/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/core/api/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/core/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/core/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/core</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/core/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/ui/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/core/ui/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -61,10 +61,10 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/cor...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/c...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/core/ui
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/core/ui</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/core/ui</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/dist/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -22,13 +22,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces UI Components API</name>
@@ -180,8 +180,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/d...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/dist/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dis...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist/r...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist/richf...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/d...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/dist/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dis...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist/r...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist/richf...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/api/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/dnd/api/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -64,9 +64,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/outpu...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/dnd/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.dnd</groupId>
<artifactId>richfaces-ui-dnd-aggregator</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Drag-n-Drop Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/ui/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/dnd/ui/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -77,9 +77,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/outpu...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/input/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/api/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/input/api/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/input/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/input/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/input</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/input</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/input</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/input</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/input/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/ui/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/input/ui/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/iteration/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/api/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/iteration/api/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -54,9 +54,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/ite...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iterat...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/iteration/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/iteration/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/ite...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iteration</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/iteration/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/ui/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/iteration/ui/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -60,8 +60,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/ite...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iterat...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/misc/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/misc/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/misc/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/misc</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/misc</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/misc</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/misc</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/misc</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/misc/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/misc/ui/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/misc/ui/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces UI Misc UI</name>
@@ -155,10 +155,10 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/mis...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/m...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/misc/d...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/misc/...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/misc/dist/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/api/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/output/api/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -51,10 +51,10 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/outpu...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/output/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</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.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/ui/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/output/ui/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/outpu...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/parent/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/parent/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</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.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces UI Components Parent</name>
<packaging>pom</packaging>
@@ -194,8 +194,8 @@
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/p...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-aggregator</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces UI: Aggregator</name>
@@ -49,8 +49,8 @@
</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>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/build/parent/bra...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/build/parent/branch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/modules/build/parent/branches/4...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/validator/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/api/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/validator/api/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -60,9 +60,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/valid...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/val...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/valida...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator/api</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/validator/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/validator/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.validator</groupId>
@@ -38,8 +38,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/valid...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/val...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/validator</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/validator/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/ui/pom.xml 2011-02-09 20:14:24 UTC (rev 21580)
+++ branches/4.0.0.M6/ui/validator/ui/pom.xml 2011-02-09 20:15:39 UTC (rev 21581)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110209-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -131,8 +131,8 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/valid...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/val...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/valida...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator/ui</url>
</scm>
</project>
15 years, 2 months
JBoss Rich Faces SVN: r21580 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2011-02-09 15:14:24 -0500 (Wed, 09 Feb 2011)
New Revision: 21580
Added:
tags/4.0.0.20110209-M6/
Log:
[maven-scm] copy for tag 4.0.0.20110209-M6
Copied: tags/4.0.0.20110209-M6 (from rev 21579, branches/4.0.0.M6)
15 years, 2 months
JBoss Rich Faces SVN: r21579 - in branches/4.0.0.M6: archetypes and 64 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2011-02-09 15:14:09 -0500 (Wed, 09 Feb 2011)
New Revision: 21579
Modified:
branches/4.0.0.M6/archetypes/pom.xml
branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml
branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml
branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml
branches/4.0.0.M6/archetypes/richfaces-component/pom.xml
branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml
branches/4.0.0.M6/bom/pom.xml
branches/4.0.0.M6/cdk/annotations/pom.xml
branches/4.0.0.M6/cdk/attributes/pom.xml
branches/4.0.0.M6/cdk/commons/pom.xml
branches/4.0.0.M6/cdk/dist/pom.xml
branches/4.0.0.M6/cdk/generator/pom.xml
branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml
branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml
branches/4.0.0.M6/cdk/parent/pom.xml
branches/4.0.0.M6/cdk/pom.xml
branches/4.0.0.M6/cdk/xinclude/pom.xml
branches/4.0.0.M6/core/api/pom.xml
branches/4.0.0.M6/core/impl/pom.xml
branches/4.0.0.M6/core/parent/pom.xml
branches/4.0.0.M6/core/pom.xml
branches/4.0.0.M6/dist/pom.xml
branches/4.0.0.M6/examples/core-demo/pom.xml
branches/4.0.0.M6/examples/dnd-demo/pom.xml
branches/4.0.0.M6/examples/input-demo/pom.xml
branches/4.0.0.M6/examples/irc-client/pom.xml
branches/4.0.0.M6/examples/iteration-demo/pom.xml
branches/4.0.0.M6/examples/misc-demo/pom.xml
branches/4.0.0.M6/examples/output-demo/pom.xml
branches/4.0.0.M6/examples/parent/pom.xml
branches/4.0.0.M6/examples/pom.xml
branches/4.0.0.M6/examples/push-demo/pom.xml
branches/4.0.0.M6/examples/repeater-demo/pom.xml
branches/4.0.0.M6/examples/richfaces-showcase/pom.xml
branches/4.0.0.M6/examples/template/pom.xml
branches/4.0.0.M6/examples/validator-demo/pom.xml
branches/4.0.0.M6/parent/pom.xml
branches/4.0.0.M6/pom.xml
branches/4.0.0.M6/ui/common/api/pom.xml
branches/4.0.0.M6/ui/common/pom.xml
branches/4.0.0.M6/ui/common/ui/pom.xml
branches/4.0.0.M6/ui/core/api/pom.xml
branches/4.0.0.M6/ui/core/pom.xml
branches/4.0.0.M6/ui/core/ui/pom.xml
branches/4.0.0.M6/ui/dist/pom.xml
branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml
branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml
branches/4.0.0.M6/ui/dnd/api/pom.xml
branches/4.0.0.M6/ui/dnd/pom.xml
branches/4.0.0.M6/ui/dnd/ui/pom.xml
branches/4.0.0.M6/ui/input/api/pom.xml
branches/4.0.0.M6/ui/input/pom.xml
branches/4.0.0.M6/ui/input/ui/pom.xml
branches/4.0.0.M6/ui/iteration/api/pom.xml
branches/4.0.0.M6/ui/iteration/pom.xml
branches/4.0.0.M6/ui/iteration/ui/pom.xml
branches/4.0.0.M6/ui/misc/pom.xml
branches/4.0.0.M6/ui/misc/ui/pom.xml
branches/4.0.0.M6/ui/output/api/pom.xml
branches/4.0.0.M6/ui/output/pom.xml
branches/4.0.0.M6/ui/output/ui/pom.xml
branches/4.0.0.M6/ui/parent/pom.xml
branches/4.0.0.M6/ui/pom.xml
branches/4.0.0.M6/ui/validator/api/pom.xml
branches/4.0.0.M6/ui/validator/pom.xml
branches/4.0.0.M6/ui/validator/ui/pom.xml
Log:
[maven-release-plugin] prepare release 4.0.0.20110209-M6
Modified: branches/4.0.0.M6/archetypes/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/archetypes/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -30,7 +30,7 @@
<groupId>org.richfaces.archetypes</groupId>
<artifactId>archetypes-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<packaging>pom</packaging>
<name>RichFaces Archetypes: Aggregator</name>
@@ -49,9 +49,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetypes</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetypes</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-gae</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: GAE Application</name>
@@ -93,9 +93,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Simple Application</name>
@@ -92,9 +92,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-component/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-component/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/archetypes/richfaces-component/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</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/branches/4.0.0.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</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/branches/4.0.0.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</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/branches/4.0.0.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/bom/pom.xml
===================================================================
--- branches/4.0.0.M6/bom/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/bom/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -18,7 +18,7 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<name>RichFaces BOM</name>
<parent>
@@ -227,9 +227,9 @@
</dependencyManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/build/bom</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/build/bom</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/build/bom</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/b...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/buil...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/build/bom</url>
</scm>
</project>
Modified: branches/4.0.0.M6/cdk/annotations/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/annotations/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/cdk/annotations/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<description>That project contains annotations for JSF classes</description>
<name>annotations</name>
<dependencies>
Modified: branches/4.0.0.M6/cdk/attributes/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/attributes/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/cdk/attributes/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<description>That project contains JAXB bindings for model classes representing schema attributes data</description>
<name>attributes</name>
Modified: branches/4.0.0.M6/cdk/commons/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/commons/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/cdk/commons/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<name>commons</name>
<build>
<plugins>
Modified: branches/4.0.0.M6/cdk/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/dist/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/cdk/dist/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -4,20 +4,20 @@
<parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<name>JSF Components Development Kit (CDK) distribution assembly</name>
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M6/cdk/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/cdk/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20110209-M6/cdk/...</url>
</scm>
<build>
<finalName>cdk</finalName>
Modified: branches/4.0.0.M6/cdk/generator/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/generator/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/cdk/generator/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -3,13 +3,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<name>Java Server Faces component generator</name>
Modified: branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -2,13 +2,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
Modified: branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -4,13 +4,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<packaging>maven-plugin</packaging>
<name>maven-resources-plugin</name>
<description>Maven plugin for packaging resources with web application</description>
Modified: branches/4.0.0.M6/cdk/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/parent/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/cdk/parent/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -13,7 +13,7 @@
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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/branches/4.0.0.M6/cdk/pa...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/branches/4.0.0.M6/cd...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/cdk/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/tags/4.0.0.20110209-...</url>
</scm>
<build>
Modified: branches/4.0.0.M6/cdk/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/cdk/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -11,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.20110209-M6</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/branches/4.0.0.M6/cdk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M6/cdk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/cdk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/cdk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20110209-M6/cdk</url>
</scm>
<!-- Minimal build configuration -->
Modified: branches/4.0.0.M6/cdk/xinclude/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/xinclude/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/cdk/xinclude/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -22,13 +22,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<name>Cocoon 3: xinclude transformer</name>
<description>Cocoon 3 xinclude transformer with Xpointer scheme support.</description>
Modified: branches/4.0.0.M6/core/api/pom.xml
===================================================================
--- branches/4.0.0.M6/core/api/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/core/api/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -80,8 +80,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/api</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/api</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/core/api</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/impl/pom.xml
===================================================================
--- branches/4.0.0.M6/core/impl/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/core/impl/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -237,8 +237,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/impl</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/impl</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/impl</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/core/impl</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/core/parent/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/core/parent/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -46,8 +46,8 @@
</dependencyManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/p...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/core/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/pom.xml
===================================================================
--- branches/4.0.0.M6/core/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/core/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<packaging>pom</packaging>
<name>RichFaces Core Aggregator</name>
@@ -43,9 +43,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/core</url>
</scm>
</project>
Modified: branches/4.0.0.M6/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/dist/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/dist/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<packaging>pom</packaging>
<name>Richfaces Distribution Assembler</name>
@@ -187,8 +187,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.20110209-M6</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/examples/core-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/core-demo/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/core-demo/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<name>RichFaces Examples: Core</name>
<properties>
@@ -193,8 +193,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/core...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/examples...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/dnd-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/dnd-demo/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/dnd-demo/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>dnd-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<name>Richfaces Examples: DND</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/input-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/input-demo/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/input-demo/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>input-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<name>Richfaces Examples: Inputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/irc-client/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/irc-client/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/irc-client/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -6,14 +6,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>irc-client</artifactId>
<name>Richfaces Examples: Richfaces IRC Client Application</name>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<packaging>war</packaging>
<url>http://jboss.org/richfaces</url>
Modified: branches/4.0.0.M6/examples/iteration-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/iteration-demo/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/iteration-demo/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<name>RichFaces Examples: Iteration</name>
<properties>
Modified: branches/4.0.0.M6/examples/misc-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/misc-demo/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/misc-demo/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<packaging>war</packaging>
<name>RichFaces Examples: Miscellanous</name>
Modified: branches/4.0.0.M6/examples/output-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/output-demo/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/output-demo/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>output-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<name>Richfaces Examples: Outputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/parent/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/parent/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<packaging>pom</packaging>
<name>RichFaces Examples Parent</name>
@@ -250,8 +250,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/examples...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/examples/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -34,7 +34,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>examples-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<packaging>pom</packaging>
<name>RichFaces Examples: Aggregator</name>
@@ -55,9 +55,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/examples</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/push-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/push-demo/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/push-demo/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>push-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<name>RichFaces Examples: Push</name>
<properties>
@@ -196,8 +196,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/push...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/examples...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/repeater-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/repeater-demo/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/repeater-demo/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -25,14 +25,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<name>Richfaces Examples: Repeater</name>
<properties>
Modified: branches/4.0.0.M6/examples/richfaces-showcase/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/richfaces-showcase/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -7,13 +7,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<packaging>war</packaging>
<name>Richfaces Examples: Richfaces Showcase Application</name>
@@ -445,8 +445,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/rich...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/examples...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/template/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/template/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/template/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -3,14 +3,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.examples</groupId>
<artifactId>template</artifactId>
<packaging>war</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<name>examples template</name>
<dependencies>
<dependency>
Modified: branches/4.0.0.M6/examples/validator-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/validator-demo/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/examples/validator-demo/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>validator-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<name>Richfaces Examples: Validators</name>
<packaging>war</packaging>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.examples</groupId>
<artifactId>template</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<type>war</type>
</dependency>
<dependency>
Modified: branches/4.0.0.M6/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/parent/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/parent/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -18,13 +18,13 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<relativePath>../bom/pom.xml</relativePath>
</parent>
@@ -400,11 +400,11 @@
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/parent
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/p...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/parent
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/parent
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/parent</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/parent</url>
</scm>
</project>
Modified: branches/4.0.0.M6/pom.xml
===================================================================
--- branches/4.0.0.M6/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<packaging>pom</packaging>
<name>Richfaces Aggregator</name>
@@ -59,8 +59,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/common/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/api/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/common/api/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/common/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/common/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Common Aggregator</name>
Modified: branches/4.0.0.M6/ui/common/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/ui/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/common/ui/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/core/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/api/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/core/api/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/core/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/core/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</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/branches/4.0.0.M6/ui/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/core</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/core/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/ui/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/core/ui/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -61,10 +61,10 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/cor...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/core/ui
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/c...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/core/ui</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/core/ui</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/dist/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -22,13 +22,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<packaging>pom</packaging>
<name>Richfaces UI Assembler</name>
@@ -63,9 +63,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/dist</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</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.20110209-M6</version>
<packaging>jar</packaging>
<name>Richfaces UI Components API</name>
@@ -180,8 +180,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dis...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist/r...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist/richf...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/d...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/dist/...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</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.20110209-M6</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/branches/4.0.0.M6/ui/dis...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist/r...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist/richf...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/d...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/dist/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/api/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/dnd/api/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -64,9 +64,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/dnd/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.dnd</groupId>
<artifactId>richfaces-ui-dnd-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Drag-n-Drop Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/ui/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/dnd/ui/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -77,9 +77,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/input/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/api/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/input/api/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/input/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/input/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</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/branches/4.0.0.M6/ui/input</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/input</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/input</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/input</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/input/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/ui/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/input/ui/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/iteration/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/api/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/iteration/api/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -54,9 +54,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/ite...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iterat...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/iteration/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/iteration/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</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/branches/4.0.0.M6/ui/ite...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iteration</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/iteration/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/ui/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/iteration/ui/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -60,8 +60,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/ite...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iterat...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/misc/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/misc/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/misc/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</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/branches/4.0.0.M6/ui/misc</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/misc</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/misc</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/misc</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/misc</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/misc/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/misc/ui/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/misc/ui/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</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.20110209-M6</version>
<packaging>jar</packaging>
<name>Richfaces UI Misc UI</name>
@@ -155,10 +155,10 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/mis...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/misc/d...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/m...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/misc/dist/...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/misc/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/api/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/output/api/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -51,10 +51,10 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/output/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</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/branches/4.0.0.M6/ui/output</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/ui/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/output/ui/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -76,9 +76,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/parent/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/parent/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</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.20110209-M6</version>
<name>Richfaces UI Components Parent</name>
<packaging>pom</packaging>
@@ -194,8 +194,8 @@
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/parent</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/p...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<packaging>pom</packaging>
<name>RichFaces UI: Aggregator</name>
@@ -49,8 +49,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/build/parent/bra...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/build/parent/branch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/modules/build/parent/branches/4...</url>
+ <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>
Modified: branches/4.0.0.M6/ui/validator/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/api/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/validator/api/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -60,9 +60,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/val...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/valida...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/v...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/valid...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/validator/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/validator/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.validator</groupId>
@@ -38,8 +38,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/val...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/validator</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/v...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/valid...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/validator/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/ui/pom.xml 2011-02-09 18:56:07 UTC (rev 21578)
+++ branches/4.0.0.M6/ui/validator/ui/pom.xml 2011-02-09 20:14:09 UTC (rev 21579)
@@ -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.20110209-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -131,8 +131,8 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/val...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/valida...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator/ui</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110209-M6/ui/v...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110209-M6/ui/valid...</url>
</scm>
</project>
15 years, 2 months
JBoss Rich Faces SVN: r21578 - trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2011-02-09 13:56:07 -0500 (Wed, 09 Feb 2011)
New Revision: 21578
Modified:
trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/TooltipRenderer.java
Log:
RF-10475: NPE is fixed
Modified: trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/TooltipRenderer.java
===================================================================
--- trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/TooltipRenderer.java 2011-02-09 18:18:17 UTC (rev 21577)
+++ trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/TooltipRenderer.java 2011-02-09 18:56:07 UTC (rev 21578)
@@ -23,32 +23,32 @@
package org.richfaces.renderkit.html;
-import static org.richfaces.renderkit.HtmlConstants.CLASS_ATTRIBUTE;
-import static org.richfaces.renderkit.HtmlConstants.ID_ATTRIBUTE;
-import static org.richfaces.renderkit.RenderKitUtils.renderPassThroughAttributes;
-import static org.richfaces.renderkit.html.TogglePanelRenderer.addEventOption;
-import static org.richfaces.renderkit.html.TogglePanelRenderer.getAjaxOptions;
-
-import java.io.IOException;
-import java.util.HashMap;
-import java.util.Map;
-
-import javax.faces.application.ResourceDependencies;
-import javax.faces.application.ResourceDependency;
-import javax.faces.component.UIComponent;
-import javax.faces.context.FacesContext;
-import javax.faces.context.PartialResponseWriter;
-import javax.faces.context.ResponseWriter;
-
import org.ajax4jsf.javascript.JSObject;
import org.richfaces.TooltipMode;
import org.richfaces.cdk.annotations.JsfRenderer;
import org.richfaces.component.AbstractTooltip;
+import org.richfaces.component.Positioning;
import org.richfaces.context.ExtendedPartialViewContext;
import org.richfaces.renderkit.HtmlConstants;
import org.richfaces.renderkit.MetaComponentRenderer;
import org.richfaces.renderkit.util.RendererUtils;
+import javax.faces.application.ResourceDependencies;
+import javax.faces.application.ResourceDependency;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.context.PartialResponseWriter;
+import javax.faces.context.ResponseWriter;
+import java.io.IOException;
+import java.util.HashMap;
+import java.util.Map;
+
+import static org.richfaces.renderkit.HtmlConstants.CLASS_ATTRIBUTE;
+import static org.richfaces.renderkit.HtmlConstants.ID_ATTRIBUTE;
+import static org.richfaces.renderkit.RenderKitUtils.renderPassThroughAttributes;
+import static org.richfaces.renderkit.html.TogglePanelRenderer.addEventOption;
+import static org.richfaces.renderkit.html.TogglePanelRenderer.getAjaxOptions;
+
/**
* @author amarkhel
* @since 2010-10-24
@@ -177,8 +177,8 @@
Map<String, Object> options = new HashMap<String, Object>();
options.put("ajax", getAjaxOptions(context, tooltip));
- options.put("jointPoint", tooltip.getJointPoint().getValue());
- options.put("direction", tooltip.getDirection().getValue());
+ options.put("jointPoint", tooltip.getJointPoint() != null ? tooltip.getJointPoint().getValue() : Positioning.DEFAULT);
+ options.put("direction", tooltip.getDirection() != null ? tooltip.getDirection().getValue() : Positioning.DEFAULT);
options.put("attached", tooltip.isAttached());
options.put("offset", getOffset(tooltip));
options.put("mode", tooltip.getMode());
15 years, 2 months
JBoss Rich Faces SVN: r21577 - trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2011-02-09 13:18:17 -0500 (Wed, 09 Feb 2011)
New Revision: 21577
Modified:
trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/calendar.js
Log:
https://jira.jboss.org/browse/RF-10459
Modified: trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/calendar.js
===================================================================
--- trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/calendar.js 2011-02-09 17:56:14 UTC (rev 21576)
+++ trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/calendar.js 2011-02-09 18:18:17 UTC (rev 21577)
@@ -273,8 +273,11 @@
"datemouseout", "datemouseover", "show", "hide", "timeselect", "beforetimeselect"];
var updateDefaultLabel = function (value) {
- if (!this.selectedDate) {
- var field = rf.getDomElement(this.INPUT_DATE_ID);
+ var field = rf.getDomElement(this.INPUT_DATE_ID);
+ if (
+ (field.value == this.options.defaultLabel && !value) ||
+ (value == this.options.defaultLabel && !field.value)
+ ) {
field.value = value;
if (value) {
$(field).addClass("rf-cal-dflt-lbl");
15 years, 2 months
JBoss Rich Faces SVN: r21576 - trunk/ui/iteration/ui/src/main/resources/META-INF/resources/org.richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2011-02-09 12:56:14 -0500 (Wed, 09 Feb 2011)
New Revision: 21576
Modified:
trunk/ui/iteration/ui/src/main/resources/META-INF/resources/org.richfaces/datatable.js
trunk/ui/iteration/ui/src/main/resources/META-INF/resources/org.richfaces/extendedDataTable.js
Log:
RF-10404
Modified: trunk/ui/iteration/ui/src/main/resources/META-INF/resources/org.richfaces/datatable.js
===================================================================
--- trunk/ui/iteration/ui/src/main/resources/META-INF/resources/org.richfaces/datatable.js 2011-02-09 17:55:54 UTC (rev 21575)
+++ trunk/ui/iteration/ui/src/main/resources/META-INF/resources/org.richfaces/datatable.js 2011-02-09 17:56:14 UTC (rev 21576)
@@ -47,10 +47,18 @@
invoke.call(this,null,createParameters.call(this,richfaces.ui.DataTable.SORTING, columnId, direction, isClear));
},
+ clearSorting: function() {
+ this.sort("", "", true);
+ },
+
filter: function(columnId, filterValue, isClear) {
invoke.call(this,null,createParameters.call(this,richfaces.ui.DataTable.FILTERING, columnId, filterValue, isClear));
},
+ clearFiltering: function() {
+ this.filter("", "", true);
+ },
+
expandAllSubTables: function() {
this.invokeOnSubTables('expand');
},
Modified: trunk/ui/iteration/ui/src/main/resources/META-INF/resources/org.richfaces/extendedDataTable.js
===================================================================
--- trunk/ui/iteration/ui/src/main/resources/META-INF/resources/org.richfaces/extendedDataTable.js 2011-02-09 17:55:54 UTC (rev 21575)
+++ trunk/ui/iteration/ui/src/main/resources/META-INF/resources/org.richfaces/extendedDataTable.js 2011-02-09 17:56:14 UTC (rev 21576)
@@ -227,7 +227,7 @@
filterValue = "";
}
var map = {};
- map[id + "rich:filtering"] = colunmId + ":" + filterValue + ":" + isClear;
+ map[this.id + "rich:filtering"] = colunmId + ":" + filterValue + ":" + isClear;
this.ajaxFunction(null, map); // TODO Maybe, event model should be used here.
},
@@ -237,7 +237,7 @@
sort: function(colunmId, sortOrder, isClear) {
if (typeof(sortOrder) == "string") {
- sortOrder = sortOrder.toUpperCase();
+ sortOrder = sortOrder.toLowerCase();
}
var map = {}
map[this.id + "rich:sorting"] = colunmId + ":" + sortOrder + ":" + isClear;
15 years, 2 months
JBoss Rich Faces SVN: r21575 - in trunk/ui/input/ui/src: main/templates and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2011-02-09 12:55:54 -0500 (Wed, 09 Feb 2011)
New Revision: 21575
Modified:
trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/Autocomplete.ecss
trunk/ui/input/ui/src/main/templates/autocomplete.template.xml
trunk/ui/input/ui/src/test/resources/org/richfaces/renderkit/autocompleteDivLayoutClientMode.xmlunit.xml
trunk/ui/input/ui/src/test/resources/org/richfaces/renderkit/autocompleteListLayoutClientMode.xmlunit.xml
Log:
RF-10389
Modified: trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/Autocomplete.ecss
===================================================================
--- trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/Autocomplete.ecss 2011-02-09 17:23:35 UTC (rev 21574)
+++ trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/Autocomplete.ecss 2011-02-09 17:55:54 UTC (rev 21575)
@@ -5,15 +5,18 @@
}
input.rf-au-inp {
- border-width: 0px;
- width: 100%;
- padding-left: 0px;
- padding-right: 0px;
+ background-color: '#{richSkin.controlBackgroundColor}';
+ background-image: url("#{resource['org.richfaces.renderkit.html.images.InputBackgroundImage']}");
+ background-position:1px 1px;
+ background-repeat:no-repeat;
+ border: 0px;
+ margin: 0px;
+ padding: 0px;
+ vertical-align: top;
+ width: 182px;
}
.rf-au-fld{
- width: 200px;
- position: inline-block;
border-width: 1px;
border-style: solid;
border-color: '#{richSkin.panelBorderColor}';
@@ -25,7 +28,9 @@
}
.rf-au-fld-btn{
- position : relative; overflow : hidden; text-align : left; padding-right : 21px;
+ display: inline-block;
+ font-size: 1px;
+ white-space: nowrap;
}
.rf-au-btn{
@@ -33,38 +38,26 @@
background-repeat: repeat-x;
background-position: top left;
background-color: '#{richSkin.headerBackgroundColor}';
- text-align: center;
- border-left-style: solid;
border-left-width: 1px;
+ border-left-style: solid;
border-left-color: '#{richSkin.panelBorderColor}';
- width: 15px;
- position: absolute;
- top: 0px;
- right: 0px;
- height: 15px;
- padding-top: 1px;
- cursor: pointer;
+ display: inline-block;
+ vertical-align: top;
}
-.rf-au-btn-dis{
- background-color: '#{richSkin.headerBackgroundColor}';
- cursor: default;
-}
-
-.rf-au-btn-arrow{
+.rf-au-btn-arrow, .rf-au-btn-arrow-dis{
background-position: center;
background-repeat: no-repeat;
- background-image: "url(#{resource['org.richfaces.renderkit.html.images.ComboDownButton']})";
+ background-image: "url(#{resource['org.richfaces:combo_down_button.gif']})";
+ cursor: pointer;
width: 15px;
- height: 15px;
+ height: 16px;
+ display: inline-block;
}
.rf-au-btn-arrow-dis{
- background-position: center;
- background-repeat: no-repeat;
background-image: "url(#{resource['org.richfaces.renderkit.html.images.ComboDisabledDownButton']})";
- width: 15px;
- height: 15px;
+ cursor: default;
}
.rf-au-lst-cord{
Modified: trunk/ui/input/ui/src/main/templates/autocomplete.template.xml
===================================================================
--- trunk/ui/input/ui/src/main/templates/autocomplete.template.xml 2011-02-09 17:23:35 UTC (rev 21574)
+++ trunk/ui/input/ui/src/main/templates/autocomplete.template.xml 2011-02-09 17:55:54 UTC (rev 21575)
@@ -19,7 +19,7 @@
<cdk:object type="java.lang.Object" name="disabled" value="#{component.attributes['disabled']}" />
<div id="#{clientId}" class="rf-au-fld">
<input id="#{clientId}Value" name="#{clientId}Value" type="hidden"/>
- <div class="#{component.attributes['showButton'] ? 'rf-au-fld-btn' : ''}">
+ <span class="#{component.attributes['showButton'] ? 'rf-au-fld-btn' : ''}">
<input onclick="#{component.attributes['onclick']}"
ondblclick="#{component.attributes['ondblclick']}"
onmouseup="#{component.attributes['onmouseup']}"
@@ -31,18 +31,11 @@
onkeydown="#{component.attributes['onkeydown']}"
onkeypress="#{component.attributes['onkeypress']}" id="#{clientId}Input" value="#{component.attributes['value']}" disabled="#{disabled}" name="#{clientId}Input" type="text" class="rf-au-fnt rf-au-inp" autocomplete="off"/>
<c:if test="#{component.attributes['showButton']}">
- <c:if test="#{component.attributes['disabled']}">
- <div id="#{clientId}Button" class="rf-au-btn rf-au-btn-dis">
- <div class="rf-au-btn-arrow-dis"></div>
- </div>
+ <span id="#{clientId}Button" class="rf-au-btn">
+ <span class="rf-au-btn-arrow#{component.attributes['disabled'] ? '-dis' : ''}"></span>
+ </span>
</c:if>
- <c:if test="#{!component.attributes['disabled']}">
- <div id="#{clientId}Button" class="rf-au-btn">
- <div class="rf-au-btn-arrow"></div>
- </div>
- </c:if>
- </c:if>
- </div>
+ </span>
<div onclick="#{component.attributes['onlistclick']}"
ondblclick="#{component.attributes['onlistdblclick']}"
Modified: trunk/ui/input/ui/src/test/resources/org/richfaces/renderkit/autocompleteDivLayoutClientMode.xmlunit.xml
===================================================================
--- trunk/ui/input/ui/src/test/resources/org/richfaces/renderkit/autocompleteDivLayoutClientMode.xmlunit.xml 2011-02-09 17:23:35 UTC (rev 21574)
+++ trunk/ui/input/ui/src/test/resources/org/richfaces/renderkit/autocompleteDivLayoutClientMode.xmlunit.xml 2011-02-09 17:55:54 UTC (rev 21575)
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<div class="rf-au-fld" id="form:myAutocomplete">
<input id="form:myAutocompleteValue" name="form:myAutocompleteValue" type="hidden"/>
- <div class="rf-au-fld-btn">
+ <span class="rf-au-fld-btn">
<input autocomplete="off" class="rf-au-fnt rf-au-inp" id="form:myAutocompleteInput" name="form:myAutocomplete" type="text"/>
- <div class="rf-au-btn" id="form:myAutocompleteButton">
- <div class="rf-au-btn-arrow">
- </div>
- </div>
- </div>
+ <span class="rf-au-btn" id="form:myAutocompleteButton">
+ <span class="rf-au-btn-arrow">
+ </span>
+ </span>
+ </span>
<div class="rf-au-lst-cord" id="form:myAutocompleteList">
<div class="rf-au-shdw">
<div class="rf-au-shdw-t">
Modified: trunk/ui/input/ui/src/test/resources/org/richfaces/renderkit/autocompleteListLayoutClientMode.xmlunit.xml
===================================================================
--- trunk/ui/input/ui/src/test/resources/org/richfaces/renderkit/autocompleteListLayoutClientMode.xmlunit.xml 2011-02-09 17:23:35 UTC (rev 21574)
+++ trunk/ui/input/ui/src/test/resources/org/richfaces/renderkit/autocompleteListLayoutClientMode.xmlunit.xml 2011-02-09 17:55:54 UTC (rev 21575)
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<div class="rf-au-fld" id="form:myAutocomplete">
<input id="form:myAutocompleteValue" name="form:myAutocompleteValue" type="hidden"/>
- <div class="rf-au-fld-btn">
+ <span class="rf-au-fld-btn">
<input autocomplete="off" class="rf-au-fnt rf-au-inp" id="form:myAutocompleteInput" name="form:myAutocomplete" type="text"/>
- <div class="rf-au-btn" id="form:myAutocompleteButton">
- <div class="rf-au-btn-arrow">
- </div>
- </div>
- </div>
+ <span class="rf-au-btn" id="form:myAutocompleteButton">
+ <span class="rf-au-btn-arrow">
+ </span>
+ </span>
+ </span>
<div class="rf-au-lst-cord" id="form:myAutocompleteList">
<div class="rf-au-shdw">
<div class="rf-au-shdw-t">
15 years, 2 months
JBoss Rich Faces SVN: r21574 - in modules/tests/metamer/trunk: application/src/main/webapp/components/richSelect and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2011-02-09 12:23:35 -0500 (Wed, 09 Feb 2011)
New Revision: 21574
Modified:
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSelectBean.java
modules/tests/metamer/trunk/application/src/main/webapp/components/richSelect/simple.xhtml
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/AbstractMetamerTest.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richSelect/TestRichSelect.java
Log:
* added 9 new tests for rich:select
Modified: modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSelectBean.java
===================================================================
--- modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSelectBean.java 2011-02-09 17:15:10 UTC (rev 21573)
+++ modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSelectBean.java 2011-02-09 17:23:35 UTC (rev 21574)
@@ -77,7 +77,11 @@
// TODO has to be tested in another way
attributes.remove("converter");
+ attributes.remove("converterMessage");
+ attributes.remove("required");
+ attributes.remove("requiredMessage");
attributes.remove("validator");
+ attributes.remove("validatorMessage");
attributes.remove("valueChangeListener");
}
Modified: modules/tests/metamer/trunk/application/src/main/webapp/components/richSelect/simple.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richSelect/simple.xhtml 2011-02-09 17:15:10 UTC (rev 21573)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richSelect/simple.xhtml 2011-02-09 17:23:35 UTC (rev 21574)
@@ -40,10 +40,12 @@
</ui:define>
<ui:define name="component">
+ <h:selectOneMenu immediate="true" value=""
<rich:select id="select"
changedStateClass="#{richSelectBean.attributes['changedStateClass'].value}"
converterMessage="#{richSelectBean.attributes['converterMessage'].value}"
defaultLabel="#{richSelectBean.attributes['defaultLabel'].value}"
+ disabled="#{richSelectBean.attributes['disabled'].value}"
disabledStateClass="#{richSelectBean.attributes['disabledStateClass'].value}"
editStateClass="#{richSelectBean.attributes['editStateClass'].value}"
enableManualInput="#{richSelectBean.attributes['enableManualInput'].value}"
@@ -52,6 +54,8 @@
listClass="#{richSelectBean.attributes['listClass'].value}"
listHeight="#{richSelectBean.attributes['listHeight'].value}"
listWidth="#{richSelectBean.attributes['listWidth'].value}"
+ maxListHeight="#{richSelectBean.attributes['maxListHeight'].value}"
+ minListHeight="#{richSelectBean.attributes['minListHeight'].value}"
onblur="#{richSelectBean.attributes['onblur'].value}"
onchange="#{richSelectBean.attributes['onchange'].value}"
onclick="#{richSelectBean.attributes['onclick'].value}"
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/AbstractMetamerTest.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/AbstractMetamerTest.java 2011-02-09 17:15:10 UTC (rev 21573)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/AbstractMetamerTest.java 2011-02-09 17:23:35 UTC (rev 21574)
@@ -81,17 +81,15 @@
protected TextRetriever retrieveRenderChecker = retrieveText.locator(jq("#renderChecker"));
protected TextRetriever retrieveStatusChecker = retrieveText.locator(jq("#statusCheckerOutput"));
protected PhaseInfo phaseInfo = new PhaseInfo();
-
protected LocatorReference<JQueryLocator> attributesRoot = new LocatorReference<JQueryLocator>(
- pjq("span[id$=:attributes:panel]"));
-
+ pjq("span[id$=:attributes:panel]"));
/**
* timeout in miliseconds
*/
public static final long TIMEOUT = 5000;
@Inject
- @Templates({ "plain", "richDataTable1,redDiv", "richDataTable2,redDiv", "a4jRepeat1", "a4jRepeat2", "hDataTable1",
- "hDataTable2", "uiRepeat1", "uiRepeat2" })
+ @Templates({"plain", "richDataTable1,redDiv", "richDataTable2,redDiv", "a4jRepeat1", "a4jRepeat2", "hDataTable1",
+ "hDataTable2", "uiRepeat1", "uiRepeat2"})
private TemplatesList template;
/**
@@ -201,7 +199,7 @@
selenium.fireEvent(element, event);
waitGui.failWith("Attribute on" + attributeName + " does not work correctly").until(
- new EventFiredCondition(event));
+ new EventFiredCondition(event));
}
/**
@@ -244,10 +242,8 @@
* name of the attribute that will be set (e.g. styleClass, headerClass, itemContentClass)
*/
protected void testStyleClass(ExtendedLocator<JQueryLocator> element, String attribute) {
- ElementLocator<?> classInput = ref(attributesRoot, "input[id$=" + attribute + "Input]");
final String styleClass = "metamer-ftest-class";
-
- selenium.type(classInput, styleClass);
+ selenium.type(ref(attributesRoot, "input[id$=" + attribute + "Input]"), styleClass);
selenium.waitForPageToLoad();
JQueryLocator elementWhichHasntThatClass = jq(element.getRawLocator() + ":not(.{0})").format(styleClass);
@@ -269,9 +265,9 @@
public void testRequestEventsAfter(String... events) {
String[] actualEvents = selenium.getEval(new JavaScript("window.metamerEvents")).split(" ");
assertEquals(
- actualEvents,
- events,
- format("The events ({0}) don't came in right order ({1})", Arrays.deepToString(actualEvents),
+ actualEvents,
+ events,
+ format("The events ({0}) don't came in right order ({1})", Arrays.deepToString(actualEvents),
Arrays.deepToString(events)));
}
@@ -370,7 +366,7 @@
selenium.waitForPageToLoad();
assertTrue(selenium.getAttribute(attr).contains(value), "Attribute " + attribute + " should contain \"" + value
- + "\".");
+ + "\".");
}
/**
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richSelect/TestRichSelect.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richSelect/TestRichSelect.java 2011-02-09 17:15:10 UTC (rev 21573)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richSelect/TestRichSelect.java 2011-02-09 17:23:35 UTC (rev 21574)
@@ -30,6 +30,7 @@
import static org.testng.Assert.assertTrue;
import java.net.URL;
+import javax.faces.event.PhaseId;
import org.jboss.test.selenium.css.CssProperty;
import org.jboss.test.selenium.dom.Event;
@@ -140,6 +141,21 @@
}
@Test
+ @IssueTracking("https://issues.jboss.org/browse/RF-10479")
+ public void testChangedStateClass() {
+ selenium.type(pjq("input[id$=changedStateClassInput]"), "metamer-ftest-class");
+ selenium.waitForPageToLoad();
+
+ selenium.mouseDown(button);
+ selenium.mouseUp(button);
+ selenium.click(options.format(10));
+ guardXhr(selenium).fireEvent(input, Event.BLUR);
+ waitGui.failWith("Bean was not updated").until(textEquals.locator(output).text("Hawaii"));
+
+ assertTrue(selenium.belongsClass(select, "metamer-ftest-class"), "Attribute changedStateClass doesn't work.");
+ }
+
+ @Test
public void testDefaultLabel() {
selenium.type(pjq("input[type=text][id$=defaultLabelInput]"), "new label");
selenium.waitForPageToLoad();
@@ -157,6 +173,40 @@
}
@Test
+ public void testDisabled() {
+ selenium.click(pjq("input[type=radio][name$=disabledInput][value=true]"));
+ selenium.waitForPageToLoad();
+
+ selenium.type(pjq("input[type=text][id$=valueInput]"), "Hawaii");
+ selenium.waitForPageToLoad();
+
+ assertTrue(selenium.isElementPresent(select), "Inplace input is not on the page.");
+ assertTrue(selenium.isElementPresent(button), "Button should be present on the page.");
+ assertTrue(selenium.isElementPresent(input), "Input should be present on the page.");
+ assertEquals(selenium.getValue(input), "Hawaii", "Value of input");
+ assertFalse(selenium.isVisible(popup), "Popup should not be visible on the page.");
+ assertTrue(selenium.belongsClass(button, "rf-sel-btn-dis"), "Button should contain class rf-sel-btn-dis.");
+ AttributeLocator disabledAttr = input.getAttribute(new Attribute("disabled"));
+ assertTrue(selenium.isAttributePresent(disabledAttr), "Input should be disabled.");
+ assertEquals(selenium.getAttribute(disabledAttr), "disabled", "Input should be disabled.");
+ }
+
+ @Test
+ @IssueTracking("https://issues.jboss.org/browse/RF-10479")
+ public void testDisabledStateClass() {
+ selenium.click(pjq("input[type=radio][name$=disabledInput][value=true]"));
+ selenium.waitForPageToLoad();
+
+ testStyleClass(select, "disabledStateClass");
+ }
+
+ @Test
+ @IssueTracking("https://issues.jboss.org/browse/RF-10479")
+ public void testEditStateClass() {
+ testStyleClass(select, "editStateClass");
+ }
+
+ @Test
@IssueTracking("https://issues.jboss.org/browse/RF-9855")
public void testEnableManualInput() {
selenium.click(pjq("input[type=radio][name$=enableManualInputInput][value=false]"));
@@ -177,6 +227,23 @@
}
@Test
+ public void testImmediate() {
+ selenium.click(pjq("input[type=radio][name$=immediateInput][value=true]"));
+ selenium.waitForPageToLoad();
+
+ String reqTime = selenium.getText(time);
+ selenium.mouseDown(button);
+ selenium.mouseUp(button);
+ selenium.click(options.format(10));
+ guardXhr(selenium).fireEvent(input, Event.BLUR);
+ waitGui.failWith("Page was not updated").waitForChange(reqTime, retrieveText.locator(time));
+
+ phaseInfo.assertPhases(PhaseId.RESTORE_VIEW, PhaseId.APPLY_REQUEST_VALUES, PhaseId.PROCESS_VALIDATIONS,
+ PhaseId.UPDATE_MODEL_VALUES, PhaseId.INVOKE_APPLICATION, PhaseId.RENDER_RESPONSE);
+ phaseInfo.assertListener(PhaseId.APPLY_REQUEST_VALUES, "value changed: -> Hawaii");
+ }
+
+ @Test
public void testItemClass() {
final String value = "metamer-ftest-class";
selenium.type(pjq("input[type=text][id$=itemClassInput]"), value);
@@ -232,6 +299,42 @@
}
@Test
+ public void testMaxListHeight() {
+ selenium.type(pjq("input[type=text][id$=maxListHeightInput]"), "300px");
+ selenium.waitForPageToLoad();
+
+ String height = selenium.getStyle(jq("div.rf-sel-lst-scrl"), new CssProperty("max-height"));
+ assertEquals(height, "300px", "Height of list did not change");
+
+ selenium.type(pjq("input[type=text][id$=maxListHeightInput]"), "");
+ selenium.waitForPageToLoad();
+
+ selenium.mouseDown(button);
+ selenium.mouseUp(button);
+ assertTrue(selenium.isVisible(popup), "Popup should be displayed.");
+
+ assertEquals(selenium.getElementHeight(jq("div.rf-sel-lst-scrl")), 100, "Height of list did not change");
+ }
+
+ @Test
+ public void testMinListHeight() {
+ selenium.type(pjq("input[type=text][id$=minListHeightInput]"), "300px");
+ selenium.waitForPageToLoad();
+
+ String height = selenium.getStyle(jq("div.rf-sel-lst-scrl"), new CssProperty("min-height"));
+ assertEquals(height, "300px", "Height of list did not change");
+
+ selenium.type(pjq("input[type=text][id$=minListHeightInput]"), "");
+ selenium.waitForPageToLoad();
+
+ selenium.mouseDown(button);
+ selenium.mouseUp(button);
+ assertTrue(selenium.isVisible(popup), "Popup should be displayed.");
+
+ assertEquals(selenium.getElementHeight(jq("div.rf-sel-lst-scrl")), 100, "Height of list did not change");
+ }
+
+ @Test
public void testOnblur() {
testFireEvent(Event.BLUR, input);
}
@@ -367,6 +470,12 @@
}
@Test
+ @IssueTracking("https://issues.jboss.org/browse/RF-10479")
+ public void testReadyStateClass() {
+ testStyleClass(select, "readyStateClass");
+ }
+
+ @Test
public void testRendered() {
selenium.click(pjq("input[type=radio][name$=renderedInput][value=false]"));
selenium.waitForPageToLoad();
@@ -474,4 +583,12 @@
waitGui.failWith("Bean was not updated").until(textEquals.locator(output).text("Hawaii"));
}
+
+ @Test
+ public void testValue() {
+ selenium.type(pjq("input[type=text][id$=valueInput]"), "North Carolina");
+ selenium.waitForPageToLoad();
+
+ assertEquals(selenium.getValue(input), "North Carolina", "Input should contain selected value.");
+ }
}
15 years, 2 months