JBoss Rich Faces SVN: r21503 - trunk/ui/input/ui/src/test/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2011-02-07 09:13:21 -0500 (Mon, 07 Feb 2011)
New Revision: 21503
Modified:
trunk/ui/input/ui/src/test/java/org/richfaces/renderkit/AutocompleteRendererTest.java
Log:
RF-10164: test is fixed
Modified: trunk/ui/input/ui/src/test/java/org/richfaces/renderkit/AutocompleteRendererTest.java
===================================================================
--- trunk/ui/input/ui/src/test/java/org/richfaces/renderkit/AutocompleteRendererTest.java 2011-02-07 13:50:27 UTC (rev 21502)
+++ trunk/ui/input/ui/src/test/java/org/richfaces/renderkit/AutocompleteRendererTest.java 2011-02-07 14:13:21 UTC (rev 21503)
@@ -1,13 +1,8 @@
package org.richfaces.renderkit;
-import java.io.File;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-import java.io.StringReader;
-import java.net.URISyntaxException;
-import java.util.List;
-
+import com.gargoylesoftware.htmlunit.html.HtmlElement;
+import com.gargoylesoftware.htmlunit.html.HtmlInput;
+import com.gargoylesoftware.htmlunit.html.HtmlPage;
import org.custommonkey.xmlunit.Diff;
import org.custommonkey.xmlunit.Difference;
import org.custommonkey.xmlunit.DifferenceListener;
@@ -18,9 +13,9 @@
import org.richfaces.renderkit.html.RendererTestBase;
import org.xml.sax.SAXException;
-import com.gargoylesoftware.htmlunit.html.HtmlElement;
-import com.gargoylesoftware.htmlunit.html.HtmlInput;
-import com.gargoylesoftware.htmlunit.html.HtmlPage;
+import java.io.*;
+import java.net.URISyntaxException;
+import java.util.List;
public class AutocompleteRendererTest extends RendererTestBase {
@@ -55,10 +50,10 @@
Assert.assertNotNull(input);
input.type("al");
- //try 7 times to wait .5 second each for filling the page.
+ //try 7 times to wait 5 second each for filling the page.
for (int i = 0; i < 7; i++) {
synchronized (page) {
- page.wait(500);
+ page.wait(5000);
}
}
15 years, 2 months
JBoss Rich Faces SVN: r21502 - in branches/4.0.0.M6/examples/richfaces-showcase/src/main: resources/org/richfaces/demo/data/common and 6 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2011-02-07 08:50:27 -0500 (Mon, 07 Feb 2011)
New Revision: 21502
Modified:
branches/4.0.0.M6/examples/richfaces-showcase/src/main/java/org/richfaces/demo/tables/CarsBean.java
branches/4.0.0.M6/examples/richfaces-showcase/src/main/resources/org/richfaces/demo/data/common/navigation.xml
branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/WEB-INF/web.xml
branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/dataTableEdit.xhtml
branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/dataTableEdit-sample.xhtml
branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/graphValidator/samples/graphValidator-sample.xhtml
branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/message/samples/message-sample.xhtml
branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/messages/samples/messages-sample.xhtml
Log:
merged from trunk.
"Messages and Object validator pre-release polishing.
(replacing re-render to ajaxRendered)"
Modified: branches/4.0.0.M6/examples/richfaces-showcase/src/main/java/org/richfaces/demo/tables/CarsBean.java
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/src/main/java/org/richfaces/demo/tables/CarsBean.java 2011-02-07 13:38:59 UTC (rev 21501)
+++ branches/4.0.0.M6/examples/richfaces-showcase/src/main/java/org/richfaces/demo/tables/CarsBean.java 2011-02-07 13:50:27 UTC (rev 21502)
@@ -34,7 +34,7 @@
private List<InventoryVendorList> inventoryVendorLists = null;
private int currentCarIndex;
private InventoryItem editedCar;
- private int page;
+ private int page = 1;
public void remove() {
allInventoryItems.remove(allInventoryItems.get(currentCarIndex));
Modified: branches/4.0.0.M6/examples/richfaces-showcase/src/main/resources/org/richfaces/demo/data/common/navigation.xml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/src/main/resources/org/richfaces/demo/data/common/navigation.xml 2011-02-07 13:38:59 UTC (rev 21501)
+++ branches/4.0.0.M6/examples/richfaces-showcase/src/main/resources/org/richfaces/demo/data/common/navigation.xml 2011-02-07 13:50:27 UTC (rev 21502)
@@ -189,7 +189,7 @@
</sample>
</samples>
</demo>
- <!-- demo new="true">
+ <demo new="true">
<id>graphValidator</id>
<name>rich:graphValidator</name>
<samples>
@@ -198,7 +198,7 @@
<name>Object validation using rich:graphValidator</name>
</sample>
</samples>
- </demo-->
+ </demo>
<demo new="true">
<id>message</id>
<name>rich:message</name>
Modified: branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/WEB-INF/web.xml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/WEB-INF/web.xml 2011-02-07 13:38:59 UTC (rev 21501)
+++ branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/WEB-INF/web.xml 2011-02-07 13:50:27 UTC (rev 21502)
@@ -25,7 +25,7 @@
</context-param>
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
- <param-value>client</param-value>
+ <param-value>server</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
Modified: branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/dataTableEdit.xhtml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/dataTableEdit.xhtml 2011-02-07 13:38:59 UTC (rev 21501)
+++ branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/dataTableEdit.xhtml 2011-02-07 13:50:27 UTC (rev 21502)
@@ -1,12 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:a4j="http://richfaces.org/a4j">
-
- <ui:composition>
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:a4j="http://richfaces.org/a4j">
+
+<ui:composition>
<ui:include src="#{demoNavigator.sampleIncludeURI}" />
-
- </ui:composition>
+ <ui:include src="/templates/includes/source-view.xhtml">
+ <ui:param name="src" value="#{demoNavigator.sampleIncludeURI}" />
+ <ui:param name="sourceType" value="xhtml" />
+ <ui:param name="openLabel" value="View Source" />
+ <ui:param name="hideLabel" value="Hide Source" />
+ </ui:include>
+ <ui:include src="/templates/includes/source-view.xhtml">
+ <ui:param name="src"
+ value="/WEB-INF/src/org/richfaces/demo/tables/CarsBean.java" />
+ <ui:param name="sourceType" value="java" />
+ <ui:param name="openLabel" value="View CarsBean Source" />
+ <ui:param name="hideLabel" value="Hide CarsBean Source" />
+ </ui:include>
+
+</ui:composition>
</html>
\ No newline at end of file
Modified: branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/dataTableEdit-sample.xhtml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/dataTableEdit-sample.xhtml 2011-02-07 13:38:59 UTC (rev 21501)
+++ branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/dataTableEdit-sample.xhtml 2011-02-07 13:50:27 UTC (rev 21502)
@@ -16,9 +16,6 @@
<h:form id="form">
<rich:dataTable value="#{carsBean.allInventoryItems}" var="car"
iterationStatusVar="it" id="table" rows="15">
- <f:facet name="noData">
- Nothing found
- </f:facet>
<rich:column>
<f:facet name="header">#</f:facet>
#{it.index}
@@ -80,7 +77,7 @@
<a4j:commandButton value="Delete" onclick="remove(); return false;" />
</rich:popupPanel>
- <rich:popupPanel header="Edit Car Details" id="editPane" domElementAttachment="parent">
+ <rich:popupPanel header="Edit Car Details" id="editPane" domElementAttachment="parent" width="400" height="170">
<h:panelGrid columns="3" id="editGrid">
<h:outputText value="Vendor" />
<h:outputText value="#{carsBean.editedCar.vendor}" />
@@ -91,22 +88,29 @@
<h:outputText value="Price" />
<h:inputText value="#{carsBean.editedCar.price}" required="true"
requiredMessage="Price is required" id="price"
- validatorMessage="Should be a valid price" label="Price field" />
+ converterMessage="Should be a valid price"
+ validatorMessage="Should be a valid price" label="Price field">
+ <f:validateDoubleRange/>
+ </h:inputText>
<rich:message id="priceMsg" for="price" ajaxRendered="true"/>
<h:outputText value="Mileage" />
<h:inputText value="#{carsBean.editedCar.mileage}" id="mage"
- validatorMessage="Should be a valid mileage" label="Mileage field" />
+ converterMessage="Should be a valid mileage"
+ validatorMessage="Should be a valid mileage" label="Mileage field" >
+ <f:validateDoubleRange/>
+ </h:inputText>
<rich:message id="madeMsg" for="mage" ajaxRendered="true"/>
<h:outputText value="VIN" />
<h:inputText value="#{carsBean.editedCar.vin}" id="vin"
required="true" validatorMessage="Not a valid 17-digit VIN"
+ converterMessage="Not a valid 17-digit VIN"
requiredMessage="VIN is required">
<f:validateLength minimum="17" maximum="17" />
</h:inputText>
<rich:message id="vinMsg" for="vin" ajaxRendered="true"/>
</h:panelGrid>
<a4j:commandButton value="Store" action="#{carsBean.store}"
- render="#{facesContext.maximumSeverity==null?'table':'priceMsg,vinMsg,madeMsg'}" execute="@form"
+ render="table" execute="editPane"
oncomplete="if (#{facesContext.maximumSeverity==null}) {#{rich:component('editPane')}.hide();}" />
<a4j:commandButton value="Cancel"
onclick="#{rich:component('editPane')}.hide(); return false;" />
Modified: branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/graphValidator/samples/graphValidator-sample.xhtml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/graphValidator/samples/graphValidator-sample.xhtml 2011-02-07 13:38:59 UTC (rev 21501)
+++ branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/graphValidator/samples/graphValidator-sample.xhtml 2011-02-07 13:50:27 UTC (rev 21502)
@@ -16,34 +16,33 @@
}
</style>
<h:form id="graphValidatorForm2">
- <a4j:region renderRegionOnly="true">
- <rich:graphValidator summary="Invalid values: "
- value="#{dayStatistics}">
- <table>
- <thead>
+ <rich:graphValidator summary="Invalid values: "
+ value="#{dayStatistics}">
+ <table>
+ <thead>
+ <tr>
+ <th>Activity</th>
+ <th>Time</th>
+ </tr>
+ </thead>
+ <tbody>
+ <a4j:repeat value="#{dayStatistics.dayPasstimes}" var="pt"
+ id="table">
<tr>
- <th>Activity</th>
- <th>Time</th>
+ <td align="center" width="100px"><h:outputText
+ value="#{pt.title}" /></td>
+ <td align="center" width="100px"><rich:inputNumberSpinner
+ minValue="0" maxValue="24" value="#{pt.time}" id="time">
+ </rich:inputNumberSpinner></td>
+ <td><rich:message for="time" ajaxRendered="true"/></td>
</tr>
- </thead>
- <tbody>
- <a4j:repeat value="#{dayStatistics.dayPasstimes}" var="pt"
- id="table">
- <tr>
- <td align="center" width="100px"><h:outputText
- value="#{pt.title}" /></td>
- <td align="center" width="100px"><rich:inputNumberSpinner
- minValue="0" maxValue="24" value="#{pt.time}" id="time">
- </rich:inputNumberSpinner></td>
- <td><rich:message for="time" /></td>
- </tr>
- </a4j:repeat>
- </tbody>
- </table>
- </rich:graphValidator>
- <a4j:commandButton value="Store my details"
- actionListener="#{dayStatistics.store}" reRender="panel" />
- <rich:messages infoClass="green" errorClass="red" />
- </a4j:region>
+ </a4j:repeat>
+ </tbody>
+ </table>
+ </rich:graphValidator>
+ <a4j:commandButton value="Store my details"
+ actionListener="#{dayStatistics.store}" />
+ <br />
+ <rich:messages infoClass="green" errorClass="red" ajaxRendered="true" />
</h:form>
</ui:composition>
\ No newline at end of file
Modified: branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/message/samples/message-sample.xhtml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/message/samples/message-sample.xhtml 2011-02-07 13:38:59 UTC (rev 21501)
+++ branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/message/samples/message-sample.xhtml 2011-02-07 13:50:27 UTC (rev 21502)
@@ -17,28 +17,27 @@
value="#{userBean.name}">
<f:validateLength minimum="3" />
</h:inputText>
- <rich:message for="name"/>
+ <rich:message for="name" ajaxRendered="true"/>
<h:outputText value="Job:" />
<h:inputText label="Job" id="job" required="true"
value="#{userBean.job}">
<f:validateLength minimum="3" maximum="50" />
</h:inputText>
- <rich:message for="job"/>
+ <rich:message for="job" ajaxRendered="true"/>
<h:outputText value="Address:" />
<h:inputText label="Address" id="address" required="true"
value="#{userBean.address}">
<f:validateLength minimum="10" />
</h:inputText>
- <rich:message for="address"/>
+ <rich:message for="address" ajaxRendered="true"/>
<h:outputText value="Zip:" />
<h:inputText label="Zip" id="zip" required="true"
value="#{userBean.zip}">
<f:validateLength minimum="4" maximum="9" />
</h:inputText>
- <rich:message for="zip"/>
+ <rich:message for="zip" ajaxRendered="true"/>
<f:facet name="footer">
- <a4j:commandButton value="Ajax Validate" render="@form"/>
- <h:commandButton value="Common Validate" />
+ <a4j:commandButton value="Ajax Validate"/>
</f:facet>
</h:panelGrid>
</h:form>
Modified: branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/messages/samples/messages-sample.xhtml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/messages/samples/messages-sample.xhtml 2011-02-07 13:38:59 UTC (rev 21501)
+++ branches/4.0.0.M6/examples/richfaces-showcase/src/main/webapp/richfaces/messages/samples/messages-sample.xhtml 2011-02-07 13:50:27 UTC (rev 21502)
@@ -11,8 +11,7 @@
</f:facet>
<h:form>
- <rich:messages
- showSummary="true" showDetail="true"/>
+ <rich:messages ajaxRendered="true"/>
<h:panelGrid columns="2">
<h:outputText value="Name:" />
<h:inputText label="Name" id="name" required="true"
@@ -35,8 +34,7 @@
<f:validateLength minimum="4" maximum="9" />
</h:inputText>
<f:facet name="footer">
- <a4j:commandButton value="Ajax Validate" render="@form"/>
- <h:commandButton value="Common Validate"/>
+ <a4j:commandButton value="Ajax Validate"/>
</f:facet>
</h:panelGrid>
</h:form>
15 years, 2 months
JBoss Rich Faces SVN: r21501 - in modules/tests/metamer/trunk: ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/a4jCommandButton and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2011-02-07 08:38:59 -0500 (Mon, 07 Feb 2011)
New Revision: 21501
Modified:
modules/tests/metamer/trunk/application/src/main/resources/org/richfaces/tests/metamer/bean/A4JCommandButtonBean.properties
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/a4jCommandButton/TestA4JCommandButton.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTabPanel/TestRichTabPanel.java
Log:
* fixed tests for tab panel and command button
Modified: modules/tests/metamer/trunk/application/src/main/resources/org/richfaces/tests/metamer/bean/A4JCommandButtonBean.properties
===================================================================
--- modules/tests/metamer/trunk/application/src/main/resources/org/richfaces/tests/metamer/bean/A4JCommandButtonBean.properties 2011-02-07 13:30:27 UTC (rev 21500)
+++ modules/tests/metamer/trunk/application/src/main/resources/org/richfaces/tests/metamer/bean/A4JCommandButtonBean.properties 2011-02-07 13:38:59 UTC (rev 21501)
@@ -11,5 +11,6 @@
attr.type.submit=submit
attr.type.button=button
attr.type.reset=reset
+attr.type.image=image
attr.type.nonvalid=nonvalid
attr.type.null=
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/a4jCommandButton/TestA4JCommandButton.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/a4jCommandButton/TestA4JCommandButton.java 2011-02-07 13:30:27 UTC (rev 21500)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/a4jCommandButton/TestA4JCommandButton.java 2011-02-07 13:38:59 UTC (rev 21501)
@@ -399,9 +399,9 @@
AttributeLocator attr = button.getAttribute(Attribute.TYPE);
JQueryLocator typeInput = pjq("select[id$=typeInput]");
- selenium.select(typeInput, optionLabel("nonvalid"));
+ selenium.select(typeInput, optionLabel("image"));
selenium.waitForPageToLoad();
- assertEquals(selenium.getAttribute(attr), "submit", "Button's type");
+ assertEquals(selenium.getAttribute(attr), "image", "Button's type");
selenium.select(typeInput, optionLabel("reset"));
selenium.waitForPageToLoad();
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTabPanel/TestRichTabPanel.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTabPanel/TestRichTabPanel.java 2011-02-07 13:30:27 UTC (rev 21500)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTabPanel/TestRichTabPanel.java 2011-02-07 13:38:59 UTC (rev 21501)
@@ -262,6 +262,7 @@
}
@Test
+ @IssueTracking("https://issues.jboss.org/browse/RF-10310")
public void testAjaxEvents() {
selenium.type(pjq("input[type=text][id$=onbeginInput]"), "metamerEvents += \"begin \"");
selenium.waitForPageToLoad();
15 years, 2 months
JBoss Rich Faces SVN: r21500 - in trunk/examples/richfaces-showcase/src/main: resources/org/richfaces/demo/data/common and 6 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2011-02-07 08:30:27 -0500 (Mon, 07 Feb 2011)
New Revision: 21500
Modified:
trunk/examples/richfaces-showcase/src/main/java/org/richfaces/demo/tables/CarsBean.java
trunk/examples/richfaces-showcase/src/main/resources/org/richfaces/demo/data/common/navigation.xml
trunk/examples/richfaces-showcase/src/main/webapp/WEB-INF/web.xml
trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/dataTableEdit.xhtml
trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/dataTableEdit-sample.xhtml
trunk/examples/richfaces-showcase/src/main/webapp/richfaces/graphValidator/samples/graphValidator-sample.xhtml
trunk/examples/richfaces-showcase/src/main/webapp/richfaces/message/samples/message-sample.xhtml
trunk/examples/richfaces-showcase/src/main/webapp/richfaces/messages/samples/messages-sample.xhtml
Log:
Messages and Object validator pre-release polishing.
(replacing re-render to ajaxRendered)
Modified: trunk/examples/richfaces-showcase/src/main/java/org/richfaces/demo/tables/CarsBean.java
===================================================================
--- trunk/examples/richfaces-showcase/src/main/java/org/richfaces/demo/tables/CarsBean.java 2011-02-07 13:00:15 UTC (rev 21499)
+++ trunk/examples/richfaces-showcase/src/main/java/org/richfaces/demo/tables/CarsBean.java 2011-02-07 13:30:27 UTC (rev 21500)
@@ -34,7 +34,7 @@
private List<InventoryVendorList> inventoryVendorLists = null;
private int currentCarIndex;
private InventoryItem editedCar;
- private int page;
+ private int page = 1;
public void remove() {
allInventoryItems.remove(allInventoryItems.get(currentCarIndex));
Modified: trunk/examples/richfaces-showcase/src/main/resources/org/richfaces/demo/data/common/navigation.xml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/resources/org/richfaces/demo/data/common/navigation.xml 2011-02-07 13:00:15 UTC (rev 21499)
+++ trunk/examples/richfaces-showcase/src/main/resources/org/richfaces/demo/data/common/navigation.xml 2011-02-07 13:30:27 UTC (rev 21500)
@@ -189,7 +189,7 @@
</sample>
</samples>
</demo>
- <!-- demo new="true">
+ <demo new="true">
<id>graphValidator</id>
<name>rich:graphValidator</name>
<samples>
@@ -198,7 +198,7 @@
<name>Object validation using rich:graphValidator</name>
</sample>
</samples>
- </demo-->
+ </demo>
<demo new="true">
<id>message</id>
<name>rich:message</name>
Modified: trunk/examples/richfaces-showcase/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/WEB-INF/web.xml 2011-02-07 13:00:15 UTC (rev 21499)
+++ trunk/examples/richfaces-showcase/src/main/webapp/WEB-INF/web.xml 2011-02-07 13:30:27 UTC (rev 21500)
@@ -25,7 +25,7 @@
</context-param>
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
- <param-value>client</param-value>
+ <param-value>server</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/dataTableEdit.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/dataTableEdit.xhtml 2011-02-07 13:00:15 UTC (rev 21499)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/dataTableEdit.xhtml 2011-02-07 13:30:27 UTC (rev 21500)
@@ -1,12 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:a4j="http://richfaces.org/a4j">
-
- <ui:composition>
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:a4j="http://richfaces.org/a4j">
+
+<ui:composition>
<ui:include src="#{demoNavigator.sampleIncludeURI}" />
-
- </ui:composition>
+ <ui:include src="/templates/includes/source-view.xhtml">
+ <ui:param name="src" value="#{demoNavigator.sampleIncludeURI}" />
+ <ui:param name="sourceType" value="xhtml" />
+ <ui:param name="openLabel" value="View Source" />
+ <ui:param name="hideLabel" value="Hide Source" />
+ </ui:include>
+ <ui:include src="/templates/includes/source-view.xhtml">
+ <ui:param name="src"
+ value="/WEB-INF/src/org/richfaces/demo/tables/CarsBean.java" />
+ <ui:param name="sourceType" value="java" />
+ <ui:param name="openLabel" value="View CarsBean Source" />
+ <ui:param name="hideLabel" value="Hide CarsBean Source" />
+ </ui:include>
+
+</ui:composition>
</html>
\ No newline at end of file
Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/dataTableEdit-sample.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/dataTableEdit-sample.xhtml 2011-02-07 13:00:15 UTC (rev 21499)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/dataTableEdit-sample.xhtml 2011-02-07 13:30:27 UTC (rev 21500)
@@ -16,9 +16,6 @@
<h:form id="form">
<rich:dataTable value="#{carsBean.allInventoryItems}" var="car"
iterationStatusVar="it" id="table" rows="15">
- <f:facet name="noData">
- Nothing found
- </f:facet>
<rich:column>
<f:facet name="header">#</f:facet>
#{it.index}
@@ -80,7 +77,7 @@
<a4j:commandButton value="Delete" onclick="remove(); return false;" />
</rich:popupPanel>
- <rich:popupPanel header="Edit Car Details" id="editPane" domElementAttachment="parent">
+ <rich:popupPanel header="Edit Car Details" id="editPane" domElementAttachment="parent" width="400" height="170">
<h:panelGrid columns="3" id="editGrid">
<h:outputText value="Vendor" />
<h:outputText value="#{carsBean.editedCar.vendor}" />
@@ -91,22 +88,29 @@
<h:outputText value="Price" />
<h:inputText value="#{carsBean.editedCar.price}" required="true"
requiredMessage="Price is required" id="price"
- validatorMessage="Should be a valid price" label="Price field" />
+ converterMessage="Should be a valid price"
+ validatorMessage="Should be a valid price" label="Price field">
+ <f:validateDoubleRange/>
+ </h:inputText>
<rich:message id="priceMsg" for="price" ajaxRendered="true"/>
<h:outputText value="Mileage" />
<h:inputText value="#{carsBean.editedCar.mileage}" id="mage"
- validatorMessage="Should be a valid mileage" label="Mileage field" />
+ converterMessage="Should be a valid mileage"
+ validatorMessage="Should be a valid mileage" label="Mileage field" >
+ <f:validateDoubleRange/>
+ </h:inputText>
<rich:message id="madeMsg" for="mage" ajaxRendered="true"/>
<h:outputText value="VIN" />
<h:inputText value="#{carsBean.editedCar.vin}" id="vin"
required="true" validatorMessage="Not a valid 17-digit VIN"
+ converterMessage="Not a valid 17-digit VIN"
requiredMessage="VIN is required">
<f:validateLength minimum="17" maximum="17" />
</h:inputText>
<rich:message id="vinMsg" for="vin" ajaxRendered="true"/>
</h:panelGrid>
<a4j:commandButton value="Store" action="#{carsBean.store}"
- render="#{facesContext.maximumSeverity==null?'table':'priceMsg,vinMsg,madeMsg'}" execute="@form"
+ render="table" execute="editPane"
oncomplete="if (#{facesContext.maximumSeverity==null}) {#{rich:component('editPane')}.hide();}" />
<a4j:commandButton value="Cancel"
onclick="#{rich:component('editPane')}.hide(); return false;" />
Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/graphValidator/samples/graphValidator-sample.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/graphValidator/samples/graphValidator-sample.xhtml 2011-02-07 13:00:15 UTC (rev 21499)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/graphValidator/samples/graphValidator-sample.xhtml 2011-02-07 13:30:27 UTC (rev 21500)
@@ -16,34 +16,33 @@
}
</style>
<h:form id="graphValidatorForm2">
- <a4j:region renderRegionOnly="true">
- <rich:graphValidator summary="Invalid values: "
- value="#{dayStatistics}">
- <table>
- <thead>
+ <rich:graphValidator summary="Invalid values: "
+ value="#{dayStatistics}">
+ <table>
+ <thead>
+ <tr>
+ <th>Activity</th>
+ <th>Time</th>
+ </tr>
+ </thead>
+ <tbody>
+ <a4j:repeat value="#{dayStatistics.dayPasstimes}" var="pt"
+ id="table">
<tr>
- <th>Activity</th>
- <th>Time</th>
+ <td align="center" width="100px"><h:outputText
+ value="#{pt.title}" /></td>
+ <td align="center" width="100px"><rich:inputNumberSpinner
+ minValue="0" maxValue="24" value="#{pt.time}" id="time">
+ </rich:inputNumberSpinner></td>
+ <td><rich:message for="time" ajaxRendered="true"/></td>
</tr>
- </thead>
- <tbody>
- <a4j:repeat value="#{dayStatistics.dayPasstimes}" var="pt"
- id="table">
- <tr>
- <td align="center" width="100px"><h:outputText
- value="#{pt.title}" /></td>
- <td align="center" width="100px"><rich:inputNumberSpinner
- minValue="0" maxValue="24" value="#{pt.time}" id="time">
- </rich:inputNumberSpinner></td>
- <td><rich:message for="time" /></td>
- </tr>
- </a4j:repeat>
- </tbody>
- </table>
- </rich:graphValidator>
- <a4j:commandButton value="Store my details"
- actionListener="#{dayStatistics.store}" reRender="panel" />
- <rich:messages infoClass="green" errorClass="red" />
- </a4j:region>
+ </a4j:repeat>
+ </tbody>
+ </table>
+ </rich:graphValidator>
+ <a4j:commandButton value="Store my details"
+ actionListener="#{dayStatistics.store}" />
+ <br />
+ <rich:messages infoClass="green" errorClass="red" ajaxRendered="true" />
</h:form>
</ui:composition>
\ No newline at end of file
Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/message/samples/message-sample.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/message/samples/message-sample.xhtml 2011-02-07 13:00:15 UTC (rev 21499)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/message/samples/message-sample.xhtml 2011-02-07 13:30:27 UTC (rev 21500)
@@ -17,28 +17,27 @@
value="#{userBean.name}">
<f:validateLength minimum="3" />
</h:inputText>
- <rich:message for="name"/>
+ <rich:message for="name" ajaxRendered="true"/>
<h:outputText value="Job:" />
<h:inputText label="Job" id="job" required="true"
value="#{userBean.job}">
<f:validateLength minimum="3" maximum="50" />
</h:inputText>
- <rich:message for="job"/>
+ <rich:message for="job" ajaxRendered="true"/>
<h:outputText value="Address:" />
<h:inputText label="Address" id="address" required="true"
value="#{userBean.address}">
<f:validateLength minimum="10" />
</h:inputText>
- <rich:message for="address"/>
+ <rich:message for="address" ajaxRendered="true"/>
<h:outputText value="Zip:" />
<h:inputText label="Zip" id="zip" required="true"
value="#{userBean.zip}">
<f:validateLength minimum="4" maximum="9" />
</h:inputText>
- <rich:message for="zip"/>
+ <rich:message for="zip" ajaxRendered="true"/>
<f:facet name="footer">
- <a4j:commandButton value="Ajax Validate" render="@form"/>
- <h:commandButton value="Common Validate" />
+ <a4j:commandButton value="Ajax Validate"/>
</f:facet>
</h:panelGrid>
</h:form>
Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/messages/samples/messages-sample.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/messages/samples/messages-sample.xhtml 2011-02-07 13:00:15 UTC (rev 21499)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/messages/samples/messages-sample.xhtml 2011-02-07 13:30:27 UTC (rev 21500)
@@ -11,8 +11,7 @@
</f:facet>
<h:form>
- <rich:messages
- showSummary="true" showDetail="true"/>
+ <rich:messages ajaxRendered="true"/>
<h:panelGrid columns="2">
<h:outputText value="Name:" />
<h:inputText label="Name" id="name" required="true"
@@ -35,8 +34,7 @@
<f:validateLength minimum="4" maximum="9" />
</h:inputText>
<f:facet name="footer">
- <a4j:commandButton value="Ajax Validate" render="@form"/>
- <h:commandButton value="Common Validate"/>
+ <a4j:commandButton value="Ajax Validate"/>
</f:facet>
</h:panelGrid>
</h:form>
15 years, 2 months
JBoss Rich Faces SVN: r21499 - branches/enterprise/3.3.X/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2011-02-07 08:00:15 -0500 (Mon, 07 Feb 2011)
New Revision: 21499
Modified:
branches/enterprise/3.3.X/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SelectionRendererContributor.java
Log:
RF-10417
Modified: branches/enterprise/3.3.X/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SelectionRendererContributor.java
===================================================================
--- branches/enterprise/3.3.X/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SelectionRendererContributor.java 2011-02-07 11:59:55 UTC (rev 21498)
+++ branches/enterprise/3.3.X/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SelectionRendererContributor.java 2011-02-07 13:00:15 UTC (rev 21499)
@@ -156,7 +156,11 @@
int shiftRowIndex = clientSelection.getShiftRowIndex();
if (shiftRowIndex != -1) {
int rows = grid.getRows();
- grid.setShiftRowIndex(grid.getFirst() + (rows + shiftRowIndex - clientRowIndex) % rows);
+ if (rows > 0)
+ grid.setShiftRowIndex(grid.getFirst() + (rows + shiftRowIndex - clientRowIndex) % rows);
+ else {
+ grid.setShiftRowIndex(grid.getFirst() + shiftRowIndex - clientRowIndex);
+ }
}
ScrollableDataTableRendererState.restoreState(context);
}
15 years, 2 months
JBoss Rich Faces SVN: r21498 - branches/enterprise/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2011-02-07 06:59:55 -0500 (Mon, 07 Feb 2011)
New Revision: 21498
Modified:
branches/enterprise/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
Log:
http://jira.jboss.org/browse/RF-10435
Modified: branches/enterprise/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2011-02-07 11:58:40 UTC (rev 21497)
+++ branches/enterprise/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2011-02-07 11:59:55 UTC (rev 21498)
@@ -5,16 +5,15 @@
$super(listId, parentListId, selectFirstOnUpdate, null, this.classes, width, height, itemsText, onlistcall, null /* onlistclose */, fieldId, shadowId, showDelay, hideDelay);
this.wrappingItems(value);
this.isListOpened = false;
+ if (Richfaces.browser.isIE6 && !this.iframe) {
+ this.createIframe(this.listParent.parentNode, this.width, this.list.id, "");
+ }
},
setPosition : function($super, fieldTop, fieldLeft, fieldHeight) {
var field = this.fieldElem;
field.show();
- if (Richfaces.browser.isIE6 && !this.iframe) {
- this.createIframe(this.listParent.parentNode, this.width, this.list.id, "");
- }
-
$super(fieldTop, fieldLeft, field.offsetHeight);
},
15 years, 2 months
JBoss Rich Faces SVN: r21497 - branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2011-02-07 06:58:40 -0500 (Mon, 07 Feb 2011)
New Revision: 21497
Modified:
branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
Log:
http://jira.jboss.org/browse/RF-10435
Modified: branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
===================================================================
--- branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2011-02-07 01:28:16 UTC (rev 21496)
+++ branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2011-02-07 11:58:40 UTC (rev 21497)
@@ -7,16 +7,15 @@
$super(id, null, classes, options, fieldElemIdSuffix);
this.wrappingItems(value);
this.isListOpened = false;
+ if (Richfaces.browser.isIE6 && !this.iframe) {
+ this.createIframe(this.listParent.parentNode, this.listWidth, this.list.id, "");
+ }
},
setPosition : function($super, fieldTop, fieldLeft, fieldHeight) {
var field = this.fieldElem;
field.show();
- if (Richfaces.browser.isIE6 && !this.iframe) {
- this.createIframe(this.listParent.parentNode, this.listWidth, this.list.id, "");
- }
-
$super(fieldTop, fieldLeft, field.offsetHeight);
},
15 years, 2 months
JBoss Rich Faces SVN: r21496 - modules/docs/trunk/Component_Reference/src/main/docbook/en-US.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2011-02-06 20:28:16 -0500 (Sun, 06 Feb 2011)
New Revision: 21496
Modified:
modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Menus_and_toolbars.xml
modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Panels_and_containers.xml
Log:
Completed class and icon renaming as per RFPL-1084
Modified: modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Menus_and_toolbars.xml
===================================================================
--- modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Menus_and_toolbars.xml 2011-02-06 18:14:39 UTC (rev 21495)
+++ modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Menus_and_toolbars.xml 2011-02-07 01:28:16 UTC (rev 21496)
@@ -470,7 +470,7 @@
<section id="sect-Component_Reference-richpanelMenu-Appearance">
<title>Appearance</title>
<para>
- Icons for the panel menu can be chosen from a set of standard icons. Icons can be set for the top panel menu, child panel menus, and child item. There are three different menu states that the icon represents, as well as icons for both the left and right side of the item title:
+ Icons for the panel menu can be chosen from a set of standard icons. Icons can be set for the top panel menu, child panel menus, and child item. There are three different menu states that the icon represents, as well as icons for both the left and right side of the item title. The icons can also be managed using facets.
</para>
<variablelist>
<varlistentry>
@@ -478,7 +478,7 @@
<term><varname>topGroupExpandedRightIcon</varname></term>
<listitem>
<para>
- These attributes determine the icons for the top level menu when it is expanded.
+ These attributes determine the icons for the top level menu when it is expanded. The related facet is the <literal>topGroupExpandedClass</literal> facet.
</para>
</listitem>
</varlistentry>
@@ -487,7 +487,7 @@
<term><varname>topGroupCollapsedRightIcon</varname></term>
<listitem>
<para>
- These attributes determine the icons for the top level menu when it is collapsed.
+ These attributes determine the icons for the top level menu when it is collapsed. The related facet is the <literal>topGroupCollapsedClass</literal> facet.
</para>
</listitem>
</varlistentry>
@@ -496,16 +496,34 @@
<term><varname>topGroupDisabledRightIcon</varname></term>
<listitem>
<para>
- These attributes determine the icons for the top level menu when it is disabled.
+ These attributes determine the icons for the top level menu when it is disabled. The related facet is the <literal>topGroupDisabledClass</literal> facet.
</para>
</listitem>
</varlistentry>
<varlistentry>
+ <term><varname>topItemLeftIcon</varname></term>
+ <term><varname>topItemRightIcon</varname></term>
+ <listitem>
+ <para>
+ These attributes determine the icons for a top level menu item. The related facet is the <literal>topItemClass</literal> facet.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><varname>topItemDisabledLeftIcon</varname></term>
+ <term><varname>topItemDisabledRightIcon</varname></term>
+ <listitem>
+ <para>
+ These attributes determine the icons for a top level menu item when it is disabled. The related facet is the <literal>topItemDisabledClass</literal> facet.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
<term><varname>groupExpandedLeftIcon</varname></term>
<term><varname>groupExpandedRightIcon</varname></term>
<listitem>
<para>
- These attributes determine the icons for sub-menus that are not the top-level menu when they are expanded.
+ These attributes determine the icons for sub-menus that are not the top-level menu when they are expanded. The related facet is the <literal>groupExpandedClass</literal> facet.
</para>
</listitem>
</varlistentry>
@@ -514,7 +532,7 @@
<term><varname>groupCollapsedRightIcon</varname></term>
<listitem>
<para>
- These attributes determine the icons for sub-menus that are not the top-level menu when they are collapsed.
+ These attributes determine the icons for sub-menus that are not the top-level menu when they are collapsed. The related facet is the <literal>groupCollapsedClass</literal> facet.
</para>
</listitem>
</varlistentry>
@@ -523,7 +541,7 @@
<term><varname>groupDisabledRightIcon</varname></term>
<listitem>
<para>
- These attributes determine the icons for sub-menus that are not the top-level menu when they are disabled.
+ These attributes determine the icons for sub-menus that are not the top-level menu when they are disabled. The related facet is the <literal>groupDisabledClass</literal> facet.
</para>
</listitem>
</varlistentry>
@@ -532,7 +550,7 @@
<term><varname>itemRightIcon</varname></term>
<listitem>
<para>
- These attributes determine the icons for items in the menus.
+ These attributes determine the icons for items in the menus. The related facet is the <literal>itemClass</literal> facet.
</para>
</listitem>
</varlistentry>
@@ -541,7 +559,7 @@
<term><varname>itemDisabledRightIcon</varname></term>
<listitem>
<para>
- These attributes determine the icons for items in the menus when they are disabled.
+ These attributes determine the icons for items in the menus when they are disabled. The related facet is the <literal>itemDisabledClass</literal> facet.
</para>
</listitem>
</varlistentry>
@@ -637,8 +655,9 @@
<section id="sect-Component_Reference-richpanelMenuGroup-Appearance">
<title>Appearance</title>
<para>
- Icons for the menu group can be chosen from a set of standard icons. There are three different menu states that the icon represents, as well as icons for both the left and right side of the item title:
+ Icons for the menu group are inherited from the parent <sgmltag><rich:panelMenu></sgmltag> component. Refer to <xref linkend="sect-Component_Reference-richpanelMenu-Appearance" /> for details on icon attributes and facets. Alternatively, the menu group's icons can be re-defined at the <sgmltag><rich:panelMenuGroup></sgmltag> component level, and these settings will be used instead of the parent component's settings.
</para>
+ <!--
<variablelist>
<varlistentry>
<term><varname>leftExpandedIcon</varname></term>
@@ -686,6 +705,7 @@
<title>Using custom icons</title>
<programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-richpanelMenuGroup-Using_custom_icons.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
</example>
+ -->
</section>
<section id="sect-Component_Reference-richpanelMenuGroup-Submission_modes">
@@ -744,6 +764,10 @@
<section id="sect-Component_Reference-richpanelMenuItem-Appearance">
<title>Appearance</title>
<para>
+ Icons for the menu item are inherited from the parent <sgmltag><rich:panelMenu></sgmltag> or <sgmltag><rich:panelMenuGroup></sgmltag> component. Refer to <xref linkend="sect-Component_Reference-richpanelMenu-Appearance" /> for details on icon attributes and facets. Alternatively, the menu item's icons can be re-defined at the <sgmltag><rich:panelMenuItem></sgmltag> component level, and these settings will be used instead of the parent component's settings.
+ </para>
+ <!--
+ <para>
Icons for menu items can be chosen from a set of standard icons. There are two different menu states that the icon represents, as well as icons for both the left and right side of the item title:
</para>
<variablelist>
@@ -786,6 +810,7 @@
<para>
Any icons specified by child <sgmltag><rich:panelMenuGroup></sgmltag> and <sgmltag><rich:panelMenuItem></sgmltag> components overwrite the icons declared with the parent <sgmltag><rich:panelMenu></sgmltag> component.
</para>
+ -->
</section>
<section id="sect-Component_Reference-richpanelMenuItem-Submission_modes">
Modified: modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Panels_and_containers.xml
===================================================================
--- modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Panels_and_containers.xml 2011-02-06 18:14:39 UTC (rev 21495)
+++ modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Panels_and_containers.xml 2011-02-07 01:28:16 UTC (rev 21496)
@@ -402,7 +402,7 @@
<section id="sect-Component_Reference-richcollapsiblePanel-Appearance">
<title>Appearance</title>
<para>
- The appearance of the <sgmltag><rich:collapsiblePanel></sgmltag> component can be customized using facets. The <literal>headerExpanded</literal> and <literal>headerCollapsed</literal> facets are used to style the appearance of the panel when it is expanded and collapsed respectively. The <literal>expandControl</literal> facet styles the control in the panel header used for expanding, and the <literal>collapseControl</literal> facet styles the control for collapsing.
+ The appearance of the <sgmltag><rich:collapsiblePanel></sgmltag> component can be customized using facets. The <literal>headerExpandedClass</literal> and <literal>headerCollapsedClass</literal> facets are used to style the appearance of the panel when it is expanded and collapsed respectively. The <literal>expandControl</literal> facet styles the control in the panel header used for expanding, and the <literal>collapseControl</literal> facet styles the control for collapsing.
</para>
</section>
15 years, 2 months
JBoss Rich Faces SVN: r21495 - 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-06 13:14:39 -0500 (Sun, 06 Feb 2011)
New Revision: 21495
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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/archetypes/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -30,7 +30,7 @@
<groupId>org.richfaces.archetypes</groupId>
<artifactId>archetypes-aggregator</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-gae</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-simpleapp</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/archetypes/richfaces-component/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component-short</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-components-aggregator</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/bom/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -18,7 +18,7 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20110206-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.20110206-M6/b...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/buil...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/cdk/annotations/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/cdk/attributes/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/cdk/commons/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/cdk/dist/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -4,20 +4,20 @@
<parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/cdk/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/cdk/generator/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -3,13 +3,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -2,13 +2,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -4,13 +4,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/cdk/parent/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/cdk/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/tags/4.0.0.20110206-...</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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/cdk/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>aggregator</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/cdk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/cdk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/cdk/xinclude/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -22,13 +22,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/core/api/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/core/impl/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/core/parent/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -23,13 +23,13 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/core/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-aggregator</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/dist/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/core-demo/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/dnd-demo/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/input-demo/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/irc-client/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -6,14 +6,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/iteration-demo/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/misc-demo/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/output-demo/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/parent/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -34,7 +34,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>examples-aggregator</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/push-demo/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/repeater-demo/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -25,14 +25,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/richfaces-showcase/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -7,13 +7,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/template/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -3,14 +3,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/examples/validator-demo/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/parent/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -18,13 +18,13 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20110206-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.20110206-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.20110206-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.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-aggregator</artifactId>
- <version>4.0.0.20110206-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.20110206-M6</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/common/api/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/common/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/common/ui/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/core/api/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/core/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/core/ui/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/dist/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -22,13 +22,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/d...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/d...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/dnd/api/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/dnd/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/dnd/ui/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/input/api/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/input/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/input/ui/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/iteration/api/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/iteration/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/iteration/ui/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/misc/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/misc</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/misc/ui/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-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.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/output/api/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-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.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/output/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/output/ui/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/parent/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/p...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-aggregator</artifactId>
- <version>4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/validator/api/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/validator/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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-06 18:13:49 UTC (rev 21494)
+++ branches/4.0.0.M6/ui/validator/ui/pom.xml 2011-02-06 18:14:39 UTC (rev 21495)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110206-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.20110206-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110206-M6/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110206-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: r21494 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2011-02-06 13:13:49 -0500 (Sun, 06 Feb 2011)
New Revision: 21494
Added:
tags/4.0.0.20110206-M6/
Log:
[maven-scm] copy for tag 4.0.0.20110206-M6
Copied: tags/4.0.0.20110206-M6 (from rev 21493, branches/4.0.0.M6)
15 years, 2 months