JBoss Rich Faces SVN: r4167 - branches/3.1.x/sandbox/ui/listShuttle/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-11-21 20:47:39 -0500 (Wed, 21 Nov 2007)
New Revision: 4167
Modified:
branches/3.1.x/sandbox/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java
Log:
Model handling corrected in UIOrderingList
Value holders made Serializable
OrderingList.js updated to be compatible with TEXTAREA tags
a4j:repeat resurrected for orderingListDemo
Modified: branches/3.1.x/sandbox/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java
===================================================================
--- branches/3.1.x/sandbox/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java 2007-11-22 01:47:36 UTC (rev 4166)
+++ branches/3.1.x/sandbox/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java 2007-11-22 01:47:39 UTC (rev 4167)
@@ -4,6 +4,7 @@
package org.richfaces.component;
+import java.io.Serializable;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.Map;
@@ -32,7 +33,11 @@
public static final String COMPONENT_FAMILY = "org.richfaces.ListShuttle";
- public static final class SubmittedValue {
+ public static final class SubmittedValue implements Serializable {
+ /**
+ *
+ */
+ private static final long serialVersionUID = 5655312942714191981L;
//ListShuttleRowKey -> ListShuttleRowKey
private Map translationTable = new LinkedHashMap();
private Set selectedItems = new HashSet();
18 years, 5 months
JBoss Rich Faces SVN: r4166 - branches/3.1.x/samples/orderingListDemo/src/main/webapp/pages.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-11-21 20:47:36 -0500 (Wed, 21 Nov 2007)
New Revision: 4166
Modified:
branches/3.1.x/samples/orderingListDemo/src/main/webapp/pages/index.jsp
Log:
Model handling corrected in UIOrderingList
Value holders made Serializable
OrderingList.js updated to be compatible with TEXTAREA tags
a4j:repeat resurrected for orderingListDemo
Modified: branches/3.1.x/samples/orderingListDemo/src/main/webapp/pages/index.jsp
===================================================================
--- branches/3.1.x/samples/orderingListDemo/src/main/webapp/pages/index.jsp 2007-11-22 01:09:25 UTC (rev 4165)
+++ branches/3.1.x/samples/orderingListDemo/src/main/webapp/pages/index.jsp 2007-11-22 01:47:36 UTC (rev 4166)
@@ -26,6 +26,10 @@
</head>
<body>
<f:view>
+ <a4j:outputPanel ajaxRendered="true">
+ <h:messages />
+ </a4j:outputPanel>
+
<h:form id="form" >
<h:selectOneRadio binding="#{skinBean.component}" />
<h:commandLink action="#{skinBean.change}" value="set skin" />
@@ -33,7 +37,7 @@
<a4j:status startText="START" startStyle="color: red;"
stopText="STOP" stopStyle="color: green;" />
<br />
- <h:panelGrid columns="2" columnClasses="columnClass">
+ <%--h:panelGrid columns="2" columnClasses="columnClass">
<h:panelGroup>
<ol:orderingList id="orderingList1"
value="#{demoBean.items}" var="item"
@@ -176,11 +180,43 @@
</h:column>
</ol:orderingList>
</h:panelGroup>
- </h:panelGrid>
+ </h:panelGrid--%>
<h3>Ordering lists within a4j:repeat</h3>
<a4j:commandButton reRender="repeat" value="Rerender a4j:repeat" />
+ <h:commandButton value="Clear list" action="#{demoBean.clear}"></h:commandButton>
+ <h:panelGrid columns="3" >
+ <a4j:repeat value="#{bean.lists}" var="list" id="repeat">
+ <ol:orderingList value="#{list.items}" var="item" >
+ <h:column>
+ <f:facet name="header">
+ <h:outputText value="Name" />
+ </f:facet>
+ <h:inputText value="#{item.name}" />
+ </h:column>
+ <h:column>
+ <f:facet name="header">
+ <h:outputText value="Price" />
+ </f:facet>
+ <h:outputText value="#{item.price}" />
+ </h:column>
+ <h:column>
+ <f:facet name="header">
+ <h:outputText value="Ajax Action" />
+ </f:facet>
+ <a4j:commandButton value="Ajax Action" reRender="actionResult"
+ action="#{item.action}" />
+ </h:column>
+ <h:column>
+ <f:facet name="header">
+ <h:outputText value="Server Action" />
+ </f:facet>
+ <h:commandLink value="Server Action" action="#{item.action}" />
+ </h:column>
+ </ol:orderingList>
- <h:commandButton value="Clear list" action="#{demoBean.clear}"></h:commandButton>
+ <h:inputText value="123"/>
+ </a4j:repeat>
+ </h:panelGrid>
</h:form>
</f:view>
</body>
18 years, 5 months
JBoss Rich Faces SVN: r4165 - in trunk/samples/seamPortletEar: seamBookingPortlet/src/main/webapp/WEB-INF and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-11-21 20:09:25 -0500 (Wed, 21 Nov 2007)
New Revision: 4165
Modified:
trunk/samples/seamPortletEar/seamBooking/src/main/resources/META-INF/persistence.xml
trunk/samples/seamPortletEar/seamBookingPortlet/src/main/webapp/WEB-INF/components.xml
trunk/samples/seamPortletEar/seamBookingPortlet/src/main/webapp/WEB-INF/web.xml
Log:
Got Seam boking portlet running !
Modified: trunk/samples/seamPortletEar/seamBooking/src/main/resources/META-INF/persistence.xml
===================================================================
--- trunk/samples/seamPortletEar/seamBooking/src/main/resources/META-INF/persistence.xml 2007-11-22 00:19:28 UTC (rev 4164)
+++ trunk/samples/seamPortletEar/seamBooking/src/main/resources/META-INF/persistence.xml 2007-11-22 01:09:25 UTC (rev 4165)
@@ -12,6 +12,7 @@
<!-- These are the default for JBoss EJB3, but not for HEM: -->
<property name="hibernate.cache.provider_class" value="org.hibernate.cache.HashtableCacheProvider"/>
<property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup"/>
+ <property name="jboss.entity.manager.factory.jndi.name" value="java:/seamBookingEntityManagerFactory"/>
</properties>
</persistence-unit>
</persistence>
\ No newline at end of file
Modified: trunk/samples/seamPortletEar/seamBookingPortlet/src/main/webapp/WEB-INF/components.xml
===================================================================
--- trunk/samples/seamPortletEar/seamBookingPortlet/src/main/webapp/WEB-INF/components.xml 2007-11-22 00:19:28 UTC (rev 4164)
+++ trunk/samples/seamPortletEar/seamBookingPortlet/src/main/webapp/WEB-INF/components.xml 2007-11-22 01:09:25 UTC (rev 4165)
@@ -1,23 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<components xmlns="http://jboss.com/products/seam/components"
xmlns:core="http://jboss.com/products/seam/core"
+ xmlns:drools="http://jboss.com/products/seam/drools"
+ xmlns:persistence="http://jboss.com/products/seam/persistence"
xmlns:security="http://jboss.com/products/seam/security"
+ xmlns:web="http://jboss.com/products/seam/web"
+ xmlns:mail="http://jboss.com/products/seam/mail"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:transaction="http://jboss.com/products/seam/transaction"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
- "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.0.xsd
- http://jboss.com/products/seam/transaction http://jboss.com/products/seam/transaction-2.0.xsd
+ "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.0.xsd
+ http://jboss.com/products/seam/persistence http://jboss.com/products/seam/persistence-2.0.xsd
+ http://jboss.com/products/seam/drools http://jboss.com/products/seam/drools-2.0.xsd
http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.0.xsd
+ http://jboss.com/products/seam/web http://jboss.com/products/seam/web-2.0.xsd
+ http://jboss.com/products/seam/mail http://jboss.com/products/seam/mail-2.0.xsd
http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.0.xsd">
+
<core:init jndi-pattern="seamEAR/#{ejbName}/local" debug="true"/>
<core:manager conversation-timeout="120000"
concurrent-request-timeout="500"
conversation-id-parameter="cid"/>
- <transaction:ejb-transaction/>
+ <persistence:managed-persistence-context name="entityManager"
+ auto-create="true"
+ persistence-unit-jndi-name="java:/seamBookingEntityManagerFactory"/>
- <security:identity authenticate-method="#{authenticator.authenticate}"/>
+ <!--<transaction:ejb-transaction/>
+ --><security:identity authenticate-method="#{authenticator.authenticate}"/>
+
</components>
Modified: trunk/samples/seamPortletEar/seamBookingPortlet/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/samples/seamPortletEar/seamBookingPortlet/src/main/webapp/WEB-INF/web.xml 2007-11-22 00:19:28 UTC (rev 4164)
+++ trunk/samples/seamPortletEar/seamBookingPortlet/src/main/webapp/WEB-INF/web.xml 2007-11-22 01:09:25 UTC (rev 4165)
@@ -38,7 +38,10 @@
<filter-mapping>
<filter-name>Seam Filter</filter-name>
- <url-pattern>/*</url-pattern>
+ <servlet-name>FacesServlet</servlet-name>
+ <dispatcher>FORWARD</dispatcher>
+ <dispatcher>REQUEST</dispatcher>
+ <dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<!-- JSF -->
@@ -54,14 +57,14 @@
</context-param>
<servlet>
- <servlet-name>Faces Servlet</servlet-name>
+ <servlet-name>FacesServlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
- <servlet-name>Faces Servlet</servlet-name>
- <url-pattern>*.seam</url-pattern>
+ <servlet-name>FacesServlet</servlet-name>
+ <url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
18 years, 5 months
JBoss Rich Faces SVN: r4164 - branches/3.1.x/sandbox/ui.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-11-21 19:19:28 -0500 (Wed, 21 Nov 2007)
New Revision: 4164
Modified:
branches/3.1.x/sandbox/ui/pom.xml
Log:
context menu added to pom.xml
Modified: branches/3.1.x/sandbox/ui/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/pom.xml 2007-11-21 23:54:08 UTC (rev 4163)
+++ branches/3.1.x/sandbox/ui/pom.xml 2007-11-22 00:19:28 UTC (rev 4164)
@@ -13,7 +13,8 @@
<modules>
<module>panel2</module>
<module>simpleTogglePanel2</module>
- <module>listShuttle</module>
+ <module>contextMenu</module>
+<module>listShuttle</module>
<module>state</module>
</modules>
</project>
\ No newline at end of file
18 years, 5 months
JBoss Rich Faces SVN: r4163 - branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-11-21 18:54:08 -0500 (Wed, 21 Nov 2007)
New Revision: 4163
Modified:
branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss
Log:
disabled buttons got proper coloring
Modified: branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss 2007-11-21 23:30:09 UTC (rev 4162)
+++ branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss 2007-11-21 23:54:08 UTC (rev 4163)
@@ -207,6 +207,7 @@
<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListHeaderGradient" />
</u:style>
<u:style name="background-color" skin="headerBackgroundColor" />
+ <u:style name="color" skin="tabDisabledTextColor"/>
</u:selector>
<u:selector name=".ol_button_light">
18 years, 5 months
JBoss Rich Faces SVN: r4162 - trunk/framework/impl/src/main/java/org/ajax4jsf/webapp/nekko.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-11-21 18:30:09 -0500 (Wed, 21 Nov 2007)
New Revision: 4162
Modified:
trunk/framework/impl/src/main/java/org/ajax4jsf/webapp/nekko/NekkoParser.java
Log:
Fix <title>/<script>/<link> tags order
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/webapp/nekko/NekkoParser.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/webapp/nekko/NekkoParser.java 2007-11-21 23:19:28 UTC (rev 4161)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/webapp/nekko/NekkoParser.java 2007-11-21 23:30:09 UTC (rev 4162)
@@ -362,8 +362,14 @@
} else if ("head".equalsIgnoreCase(element.rawname)) {
haveHead = true;
super.startElement(element, attributes, augs);
- insertResources();
+ // insertResources();
return;
+ } else if (haveHead) {
+ // <title> or <base> in the head
+ if (!("title".equalsIgnoreCase(element.rawname) || "base"
+ .equalsIgnoreCase(element.rawname))) {
+ insertResources();
+ }
} else {
if (!haveHtml) {
insertStartElement("html");
@@ -464,7 +470,13 @@
}
}
if (!headParsed) {
- if ("head".equalsIgnoreCase(name.rawname)) {
+ if (haveHead) {
+ // <title> or <base> in the head
+ if (!("title".equalsIgnoreCase(name.rawname) || "base"
+ .equalsIgnoreCase(name.rawname))) {
+ insertResources();
+ }
+ } else if ("head".equalsIgnoreCase(name.rawname)) {
haveHead = true;
super.startElement(name, attributes, augmentation);
insertResources();
18 years, 5 months
JBoss Rich Faces SVN: r4161 - in branches/3.1.x/ui/orderingList/src/main: resources/org/richfaces/renderkit/html/scripts and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-11-21 18:19:28 -0500 (Wed, 21 Nov 2007)
New Revision: 4161
Modified:
branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java
branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/LayoutManager.js
branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/OrderingList.js
branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/SelectItem.js
branches/3.1.x/ui/orderingList/src/main/templates/org/richfaces/htmlOrderingList.jspx
Log:
http://jira.jboss.com/jira/browse/RF-1395
Modified: branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java 2007-11-21 23:19:14 UTC (rev 4160)
+++ branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java 2007-11-21 23:19:28 UTC (rev 4161)
@@ -10,6 +10,9 @@
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
+import org.ajax4jsf.component.UIDataAdaptor;
+import org.ajax4jsf.renderkit.ComponentVariables;
+import org.ajax4jsf.renderkit.ComponentsVariableResolver;
import org.ajax4jsf.renderkit.RendererUtils.HTML;
import org.richfaces.component.UIOrderingList;
import org.richfaces.component.UIOrderingList.ItemState;
@@ -24,6 +27,10 @@
public abstract class OrderingListRendererBase extends OrderingComponentRendererBase {
+ private static final String SELECTION_STATE_VAR_NAME = "selectionState";
+
+ private static final String ITEM_STATE_VAR_NAME = "itemState";
+
public OrderingListRendererBase() {
super(MESSAGE_BUNDLE_NAME);
}
@@ -179,53 +186,30 @@
return true;
}
- private static final ThreadLocal itemStates = new ThreadLocal();
-
public void encodeBegin(FacesContext context, UIComponent component)
throws IOException {
- itemStates.set(((UIOrderingList) component).getItemState());
+ ComponentVariables variables = ComponentsVariableResolver.getVariables(this, component);
+ variables.setVariable(ITEM_STATE_VAR_NAME, ((UIOrderingList) component).getItemState());
+ variables.setVariable(SELECTION_STATE_VAR_NAME, new OrderingListSelectionState());
+
super.encodeBegin(context, component);
}
- public void encodeEnd(FacesContext context, UIComponent component)
- throws IOException {
- try {
- super.encodeEnd(context, component);
- } finally {
- itemStates.set(null);
- }
- }
-
public void encodeControlsFacets(FacesContext context, UIOrderingList orderingList)
throws IOException {
String clientId = orderingList.getClientId(context);
ResponseWriter writer = context.getResponseWriter();
- Object key = orderingList.getRowKey();
- boolean selectedFirst = false;
- boolean selectedLast = false;
-
- try {
- ItemState state = (ItemState) itemStates.get();
-
- orderingList.setRowKey(new Integer(0));
- selectedFirst = state.isSelected();
- orderingList.setRowKey(new Integer(orderingList.getModelSize() - 1));
- selectedLast = state.isSelected();
- } finally {
- try {
- orderingList.setRowKey(key);
- } catch (Exception e) {
- context.getExternalContext().log(e.getLocalizedMessage(), e);
- }
- }
-
//proper assumption about helpers ordering
int divider = HELPERS.length / 2;
+ ComponentVariables variables = ComponentsVariableResolver.getVariables(this, orderingList);
+ OrderingListSelectionState selectionState = (OrderingListSelectionState) variables.getVariable(SELECTION_STATE_VAR_NAME);
+
for (int i = 0; i < HELPERS.length; i++) {
- boolean enabled = i < divider ? !selectedFirst : !selectedLast;
- if (i % 2 == 0) {
+ boolean boundarySelection = i < divider ? selectionState.isFirstSelected() : selectionState.isLastSelected();
+ boolean enabled = selectionState.isSelected() && !boundarySelection;
+ if (i % 2 == 1) {
enabled = !enabled;
}
@@ -237,6 +221,41 @@
}
}
+ private static final class OrderingListSelectionState {
+
+ private boolean firstSelected = false;
+ private boolean firstSelectedLatch = false;
+
+ private boolean selectedLatch = false;
+
+ private boolean lastSelected = false;
+
+ public void addState(boolean selected) {
+ if (!firstSelectedLatch) {
+ firstSelected = selected;
+ firstSelectedLatch = true;
+ }
+
+ if (selected) {
+ selectedLatch = true;
+ }
+
+ lastSelected = selected;
+ }
+
+ public boolean isFirstSelected() {
+ return firstSelected;
+ }
+
+ public boolean isSelected() {
+ return selectedLatch;
+ }
+
+ public boolean isLastSelected() {
+ return lastSelected;
+ }
+ };
+
public void encodeOneRow(FacesContext context, TableHolder holder)
throws IOException {
ResponseWriter writer = context.getResponseWriter();
@@ -248,17 +267,23 @@
StringBuffer rowClassName = new StringBuffer("ol_normal rich-ordering-list-row");
StringBuffer cellClassName = new StringBuffer("ol_cell rich-ordering-list-cell");
- ItemState state = (ItemState) itemStates.get();
+ ComponentVariables variables = ComponentsVariableResolver.getVariables(this, table);
+ ItemState state = (ItemState) variables.getVariable(ITEM_STATE_VAR_NAME);
+
if (state.isActive()) {
rowClassName.append(" ol_active rich-ordering-list-row-active");
cellClassName.append(" rich-ordering-list-cell-active");
}
- if (state.isSelected()) {
+ boolean selected = state.isSelected();
+ if (selected) {
rowClassName.append(" ol_select rich-ordering-list-row-selected");
cellClassName.append(" rich-ordering-list-cell-selected");
}
+
+ OrderingListSelectionState selectionState = (OrderingListSelectionState) variables.getVariable(SELECTION_STATE_VAR_NAME);
+ selectionState.addState(selected);
writer.writeAttribute("class", rowClassName.toString(), null);
Modified: branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/LayoutManager.js
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/LayoutManager.js 2007-11-21 23:19:14 UTC (rev 4160)
+++ branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/LayoutManager.js 2007-11-21 23:19:28 UTC (rev 4161)
@@ -19,24 +19,28 @@
LayoutManager.STYLE_CONTENTTD_PADDING = 4;
LayoutManager.prototype.widthSynchronization = function() {
- var contentCells = this.contentTable.tBodies[0].rows[0].cells;
- if (!this.headerTable || !this.headerTable.tHead)
- return ;
- var headerCells = this.headerTable.tHead.rows[0].cells;
- var width;
- for (var i = 0; i < contentCells.length; i++) {
- width = contentCells[i].offsetWidth - LayoutManager.STYLE_CONTENTTD_BORDER - LayoutManager.STYLE_CONTENTTD_PADDING;
- if (i == contentCells.length - 1) {
- width = width + LayoutManager.SCROLL_WIDTH + "px";
- headerCells[i].firstChild.style.width = width;
- headerCells[i].style.width = width;
- } else {
- width = width + "px";
- headerCells[i].firstChild.style.width = width;
- headerCells[i].style.width = width;
+ var rows = this.contentTable.tBodies[0].rows;
+ if (rows && rows[0]) {
+ //table can be empty
+ var contentCells = rows[0].cells;
+ if (!this.headerTable || !this.headerTable.tHead)
+ return ;
+ var headerCells = this.headerTable.tHead.rows[0].cells;
+ var width;
+ for (var i = 0; i < contentCells.length; i++) {
+ width = contentCells[i].offsetWidth - LayoutManager.STYLE_CONTENTTD_BORDER - LayoutManager.STYLE_CONTENTTD_PADDING;
+ if (i == contentCells.length - 1) {
+ width = width + LayoutManager.SCROLL_WIDTH + "px";
+ headerCells[i].firstChild.style.width = width;
+ headerCells[i].style.width = width;
+ } else {
+ width = width + "px";
+ headerCells[i].firstChild.style.width = width;
+ headerCells[i].style.width = width;
+ }
}
+ this.headerTable.style.width = this.contentTable.offsetWidth + LayoutManager.SCROLL_WIDTH;
}
- this.headerTable.style.width = this.contentTable.offsetWidth + LayoutManager.SCROLL_WIDTH;
}
LayoutManager.prototype.scrollHandler = function(obj) {
Modified: branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/OrderingList.js
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/OrderingList.js 2007-11-21 23:19:14 UTC (rev 4160)
+++ branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/OrderingList.js 2007-11-21 23:19:28 UTC (rev 4161)
@@ -8,7 +8,9 @@
}
-Shuttle = function(containerId, contentTableId, headerTableId, focusKeeperId, valueKeeperId,
+Richfaces.OrderingList = Class.create();
+
+Richfaces.OrderingList.prototype.initialize = function(containerId, contentTableId, headerTableId, focusKeeperId, valueKeeperId,
ids, onclickControlId, onorderchanged) {
this.container = document.getElementById(containerId);
this.shuttleTable = document.getElementById(contentTableId);
@@ -19,7 +21,7 @@
this.retrieveShuttleItems(containerId);
this.shuttle = null;
- this.sortOrder = Shuttle.ASC;
+ this.sortOrder = Richfaces.OrderingList.ASC;
this.activeItem = null;
@@ -43,38 +45,38 @@
Richfaces.disableSelectionText(this.container);
}
-Shuttle.ASC = "acs";
-Shuttle.DESC = "desc";
+Richfaces.OrderingList.ASC = "acs";
+Richfaces.OrderingList.DESC = "desc";
-Shuttle.CONTROL_SET = ["A", "INPUT", "TEXTAREA", "SELECT", "BUTTON"];
+Richfaces.OrderingList.CONTROL_SET = ["A", "INPUT", "TEXTAREA", "SELECT", "BUTTON"];
-Shuttle.ORDERING_LIST_CLASSES = {
+Richfaces.OrderingList.ORDERING_LIST_CLASSES = {
normal : "ol_internal_tab rich-ordering-list-items",
disabled : "ol_internal_tab rich-ordering-list-disabled",
active : "ol_internal_tab rich-ordering-list-active"
}
-Shuttle.ACTIVITY_MARKER = "a";
-Shuttle.SELECTION_MARKER = "s";
-Shuttle.ITEM_SEPARATOR = ",";
+Richfaces.OrderingList.ACTIVITY_MARKER = "a";
+Richfaces.OrderingList.SELECTION_MARKER = "s";
+Richfaces.OrderingList.ITEM_SEPARATOR = ",";
-Shuttle.HANDLERS = {
+Richfaces.OrderingList.HANDLERS = {
first: function (e) { this.moveSelectedItems("first", e);return false; },
last: function (e) { this.moveSelectedItems("last", e);return false; },
up: function (e) { this.moveSelectedItems("up", e);return false; },
down: function (e) { this.moveSelectedItems("down", e);return false; }
};
-Shuttle.prototype.init = function(containerId, contentTableId, headerTableId, ids, onclickControlId) {
+Richfaces.OrderingList.prototype.init = function(containerId, contentTableId, headerTableId, ids, onclickControlId) {
var obj = this;
this.setFocus();
- Shuttle.addEventListener(this.focusKeeper, "blur", function (e) {obj.focusListener(e);});
+ Richfaces.OrderingList.addEventListener(this.focusKeeper, "blur", function (e) {obj.focusListener(e);});
for (var i = 0; i < ids.length; i++) {
var id = ids[i];
var node = document.getElementById(containerId + id[0]);
var disNode = document.getElementById(containerId + id[1]);
if (node && disNode) {
- Shuttle.addClickListener(node, Shuttle.HANDLERS[id[0]].bindAsEventListener(this));
+ Richfaces.OrderingList.addClickListener(node, Richfaces.OrderingList.HANDLERS[id[0]].bindAsEventListener(this));
this.controlList[i] = new Control(node, disNode, false, false, id[0]);
}
}
@@ -83,14 +85,14 @@
this.shuttleTop = LayoutManager.getElemXY(this.shuttleTable).top;
}
-Shuttle.prototype.isListActive = function() {
+Richfaces.OrderingList.prototype.isListActive = function() {
if ((this.activeItem != null || this.selectedItems.length != 0) && this.focusKeeper.focused) {
return true;
}
return false;
}
-Shuttle.prototype.controlListManager = function() {
+Richfaces.OrderingList.prototype.controlListManager = function() {
this.selectedItems.sort(this.compareByRowIndex);
var control;
//FIXME
@@ -105,7 +107,7 @@
}
}
-Shuttle.prototype.controlsProcessing = function(disabledControls) {
+Richfaces.OrderingList.prototype.controlsProcessing = function(disabledControls) {
for (var i = 0; i < this.controlList.length; i++) {
control = this.controlList[i];
if (control != null) {
@@ -115,7 +117,7 @@
}
}
-Shuttle.prototype.retrieveShuttleItems = function(containerId) {
+Richfaces.OrderingList.prototype.retrieveShuttleItems = function(containerId) {
var rows = this.shuttleTbody.rows;
this.shuttleItems = new Array();
var id;
@@ -135,18 +137,18 @@
}
}
-Shuttle.prototype.sort = function() {
- if (this.sortOrder == Shuttle.ASC) {
+Richfaces.OrderingList.prototype.sort = function() {
+ if (this.sortOrder == Richfaces.OrderingList.ASC) {
this.shuttleItems.sort(this.compareByLabel);
- this.sortOrder = Shuttle.DESC;
+ this.sortOrder = Richfaces.OrderingList.DESC;
} else {
this.shuttleItems.reverse();
- this.sortOrder = Shuttle.ASC;
+ this.sortOrder = Richfaces.OrderingList.ASC;
}
this.rebuild();
}
-Shuttle.prototype.moveSelectedItems = function(action, event) {
+Richfaces.OrderingList.prototype.moveSelectedItems = function(action, event) {
event = window.event||event;
var rows = this.shuttleTbody.rows;
var item;
@@ -195,7 +197,7 @@
}
}
-Shuttle.prototype.getExtremeItem = function(position) {
+Richfaces.OrderingList.prototype.getExtremeItem = function(position) {
var extremeItem = this.selectedItems[0];
var currentItem;
@@ -214,7 +216,7 @@
return extremeItem;
}
-Shuttle.prototype.getEventTargetRow = function(event) {
+Richfaces.OrderingList.prototype.getEventTargetRow = function(event) {
var activeElem;
if (event.rangeParent) {
//activeElem = event.rangeParent.parentNode;
@@ -227,7 +229,7 @@
return;
}
- if (activeElem.tagName && Shuttle.CONTROL_SET.indexOf(activeElem.tagName) != -1) {
+ if (activeElem.tagName && Richfaces.OrderingList.CONTROL_SET.indexOf(activeElem.tagName) != -1) {
return;
}
@@ -241,7 +243,7 @@
return activeElem;
}
-Shuttle.prototype.onclickHandler = function(event) {
+Richfaces.OrderingList.prototype.onclickHandler = function(event) {
var activeElem = this.getEventTargetRow(event);
if (activeElem != null) {
@@ -266,7 +268,7 @@
}
}
-Shuttle.prototype.onkeydownHandler = function(event) {
+Richfaces.OrderingList.prototype.onkeydownHandler = function(event) {
var action = null;
switch (event.keyCode) {
case 34 : action = 'last'; this.moveSelectedItems(action ,event); break; //page down
@@ -290,7 +292,7 @@
case 65 : // Ctrl + A
if (event.ctrlKey) {
this.selectAll();
- Shuttle.stopPropogation(event);
+ Richfaces.OrderingList.stopPropogation(event);
}
Richfaces.SelectItems.doActive(this.activeItem);
this.saveState();
@@ -301,7 +303,7 @@
// this.autoScrolling(action, event);
}
-Shuttle.stopPropogation = function(event) {
+Richfaces.OrderingList.stopPropogation = function(event) {
if (event.stopPropagation) {
event.preventDefault();
event.stopPropagation();
@@ -311,7 +313,7 @@
}
}
-Shuttle.prototype.invertSelection = function(event) {
+Richfaces.OrderingList.prototype.invertSelection = function(event) {
var eventItem = this.activeItem;
var eventShuttleItem = this.getSelectItemByNode(eventItem);
if (eventShuttleItem._selected) {
@@ -323,7 +325,7 @@
}
}
-Shuttle.prototype.moveActiveItem = function(action, event) {
+Richfaces.OrderingList.prototype.moveActiveItem = function(action, event) {
var item = this.activeItem;
var rows = this.shuttleTbody.rows;
if ((action == 'up') && (item.rowIndex > 0)) {
@@ -337,7 +339,7 @@
this.controlListManager();
}
-Shuttle.prototype.changeActiveItems = function(newItem, item) {
+Richfaces.OrderingList.prototype.changeActiveItems = function(newItem, item) {
var shuttleItem = this.getSelectItemByNode(item);
var newShuttleItem = this.getSelectItemByNode(newItem);
@@ -349,7 +351,7 @@
this.selectedItems.push(newItem);
}
-Shuttle.prototype.selectAll = function() {
+Richfaces.OrderingList.prototype.selectAll = function() {
var startIndex = 0;
var endIndex = this.shuttleItems.length - 1;
this.selectItemRange(startIndex, endIndex);
@@ -358,7 +360,7 @@
/**
* Click handler
*/
-Shuttle.prototype.selectionItem = function(activeItem) {
+Richfaces.OrderingList.prototype.selectionItem = function(activeItem) {
var markedItem = this.getSelectItemByNode(activeItem);
var markedShuttleItem = activeItem;
@@ -376,7 +378,7 @@
/**
* CTRL+Click handler
*/
-Shuttle.prototype.addSelectedItem = function(activeItem) {
+Richfaces.OrderingList.prototype.addSelectedItem = function(activeItem) {
var markedItem = this.getSelectItemByNode(activeItem);
var markedShuttleItem = activeItem;
@@ -398,7 +400,7 @@
/**
* Shift+Click handler
*/
-Shuttle.prototype.selectItemGroup = function(currentItem) {
+Richfaces.OrderingList.prototype.selectItemGroup = function(currentItem) {
//FIXME
var activeItemIndex = this.activeItem.rowIndex;
var startIndex;
@@ -417,7 +419,7 @@
this.selectItemRange(startIndex, endIndex);
}
-Shuttle.prototype.selectItemRange = function(startIndex, endIndex) {
+Richfaces.OrderingList.prototype.selectItemRange = function(startIndex, endIndex) {
var rows = this.shuttleTbody.rows;
for (var i = startIndex; i <= endIndex; i++) {
Richfaces.SelectItems.doSelect(rows[i]);
@@ -426,7 +428,7 @@
}
}
-Shuttle.prototype.resetMarked = function() {
+Richfaces.OrderingList.prototype.resetMarked = function() {
var rows = this.shuttleTbody.rows;
for (var i = 0; i < rows.length; i++) {
var shuttleItem = rows[i];
@@ -436,7 +438,7 @@
this.selectedItems.length = 0;
}
-Shuttle.prototype.getSelectItemByNode = function(selectItemNode) {
+Richfaces.OrderingList.prototype.getSelectItemByNode = function(selectItemNode) {
for (var i = 0; i < this.shuttleItems.length; i++) {
var item = this.shuttleItems[i];
if (selectItemNode.rowIndex == item._node.rowIndex) {
@@ -446,7 +448,7 @@
return null;
}
-Shuttle.prototype.autoScrolling = function(action, event) {
+Richfaces.OrderingList.prototype.autoScrolling = function(action, event) {
this.selectedItems.sort(this.compareByRowIndex);
var increment;
var scrollTop = this.shuttleTable.parentNode.scrollTop;
@@ -464,7 +466,7 @@
this.shuttleTable.parentNode.scrollTop += increment;
}
}
- Shuttle.stopPropogation(event);
+ Richfaces.OrderingList.stopPropogation(event);
}
/*Shuttle.prototype.init = function() {
@@ -514,55 +516,55 @@
selectItem._node = tr;
}*/
-Shuttle.prototype.toString = function() {
+Richfaces.OrderingList.prototype.toString = function() {
var result = new Array();
for (var i = 0; i < this.shuttleItems.length; i++) {
var item = this.shuttleItems[i];
result.push(item._id);
if (item._selected) {
- result.push(Shuttle.SELECTION_MARKER);
+ result.push(Richfaces.OrderingList.SELECTION_MARKER);
}
if (this.activeItem && (this.activeItem.rowIndex == item._node.rowIndex)) {
- result.push(Shuttle.ACTIVITY_MARKER);
+ result.push(Richfaces.OrderingList.ACTIVITY_MARKER);
}
if (i != (this.shuttleItems.length - 1)) {
- result.push(Shuttle.ITEM_SEPARATOR);
+ result.push(Richfaces.OrderingList.ITEM_SEPARATOR);
}
}
return result.join("");
}
-Shuttle.prototype.saveState = function() {
+Richfaces.OrderingList.prototype.saveState = function() {
if (this.activeItem != null || (this.selectedItems.length > 0)) {
this.valueKeeper.value = this.toString();
}
}
-Shuttle.prototype.compareByLabel = function(obj1, obj2) {
+Richfaces.OrderingList.prototype.compareByLabel = function(obj1, obj2) {
obj1 = obj1._label;
obj2 = obj2._label;
- return Shuttle.compare(obj1, obj2);
+ return Richfaces.OrderingList.compare(obj1, obj2);
}
-Shuttle.prototype.compareByRowIndex = function(obj1, obj2) {
+Richfaces.OrderingList.prototype.compareByRowIndex = function(obj1, obj2) {
obj1 = obj1.rowIndex;
obj2 = obj2.rowIndex;
- return Shuttle.compare(obj1, obj2);
+ return Richfaces.OrderingList.compare(obj1, obj2);
}
-Shuttle.compare = function(obj1, obj2) {
+Richfaces.OrderingList.compare = function(obj1, obj2) {
return ((obj1 == obj2) ? 0 : ((obj1 < obj2) ? -1 : 1));
}
-Shuttle.prototype.setFocus = function() {
+Richfaces.OrderingList.prototype.setFocus = function() {
this.focusKeeper.focus();
this.focusKeeper.focused = true;
if (this.isListActive()) {
- this.shuttleTable.className = Shuttle.ORDERING_LIST_CLASSES.active;
+ this.shuttleTable.className = Richfaces.OrderingList.ORDERING_LIST_CLASSES.active;
}
}
-Shuttle.prototype.focusListener = function(e) {
+Richfaces.OrderingList.prototype.focusListener = function(e) {
e = e || window.event;
this.focusKeeper.focusused = false;
if (this.activeItem != null) {
@@ -572,10 +574,10 @@
Richfaces.SelectItems.doNormal(this.activeItem);
}
}
- this.shuttleTable.className = Shuttle.ORDERING_LIST_CLASSES.normal;
+ this.shuttleTable.className = Richfaces.OrderingList.ORDERING_LIST_CLASSES.normal;
}
-Shuttle.addEventListener = function(elem, event, func) {
+Richfaces.OrderingList.addEventListener = function(elem, event, func) {
if (window.attachEvent) {
elem.attachEvent("on" + event, func);
} else {
@@ -583,7 +585,7 @@
}
}
-Shuttle.addClickListener = function(elem, func) {
- Shuttle.addEventListener(elem, "click", func);
+Richfaces.OrderingList.addClickListener = function(elem, func) {
+ Richfaces.OrderingList.addEventListener(elem, "click", func);
}
Modified: branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/SelectItem.js
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/SelectItem.js 2007-11-21 23:19:14 UTC (rev 4160)
+++ branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/SelectItem.js 2007-11-21 23:19:28 UTC (rev 4161)
@@ -59,7 +59,7 @@
},
compareStates : function(row, className) {
- if (row.className == className) {
+ if (row.className.indexOf(className) != -1) {
return true;
}
return false;
Modified: branches/3.1.x/ui/orderingList/src/main/templates/org/richfaces/htmlOrderingList.jspx
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/templates/org/richfaces/htmlOrderingList.jspx 2007-11-21 23:19:14 UTC (rev 4160)
+++ branches/3.1.x/ui/orderingList/src/main/templates/org/richfaces/htmlOrderingList.jspx 2007-11-21 23:19:28 UTC (rev 4161)
@@ -68,19 +68,13 @@
<f:clientId var="cId"/>
<script type="text/javascript">
var clientId = '#{cId}';
- Event.onReady(init);
-
-
- function init() {
- try {
+ Event.onReady(function() {
var cotrolsIdPrefix = [['up', 'disup'], ['down', 'disdown'], ['last', 'dislast'], ['first','disfirst']];
var shuttle = new Richfaces.OrderingList('#{cId}', '#{cId}internal_tab', '#{cId}internal_header_tab', '#{cId}focusKeeper', '#{cId}valueKeeper', cotrolsIdPrefix, '#{cId}sortLabel', function() {#{component.attributes['onorderchanged']}});
var layoutManager = new LayoutManager('#{clientId}internal_header_tab', '#{clientId}internal_tab');
layoutManager.widthSynchronization();
- } catch (e) {
- alert(e);
- }
- }
+ });
+
//setTimeout(init, 0);
</script>
</div>
18 years, 5 months
JBoss Rich Faces SVN: r4160 - in branches/3.1.x/samples/orderingListDemo/src/main: webapp/pages and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-11-21 18:19:14 -0500 (Wed, 21 Nov 2007)
New Revision: 4160
Modified:
branches/3.1.x/samples/orderingListDemo/src/main/java/org/richfaces/Bean.java
branches/3.1.x/samples/orderingListDemo/src/main/java/org/richfaces/OrderingListDemoBean.java
branches/3.1.x/samples/orderingListDemo/src/main/webapp/pages/index.jsp
Log:
http://jira.jboss.com/jira/browse/RF-1395
Modified: branches/3.1.x/samples/orderingListDemo/src/main/java/org/richfaces/Bean.java
===================================================================
--- branches/3.1.x/samples/orderingListDemo/src/main/java/org/richfaces/Bean.java 2007-11-21 19:50:03 UTC (rev 4159)
+++ branches/3.1.x/samples/orderingListDemo/src/main/java/org/richfaces/Bean.java 2007-11-21 23:19:14 UTC (rev 4160)
@@ -93,8 +93,11 @@
}
private void queueEvent(PhaseId phaseId) {
- new Event(this, getList().getRowData(),
- getList().getClientId(FacesContext.getCurrentInstance()), phaseId).queue();
+ UIOrderingList list = getList();
+ if (list.isRowAvailable()) {
+ new Event(this, list.getRowData(),
+ getList().getClientId(FacesContext.getCurrentInstance()), phaseId).queue();
+ }
}
public void processDecodes(FacesContext context) {
@@ -126,9 +129,12 @@
System.out.println(cid + " !!! " + ((Event) event).getClientId());
}
- Object rd = getList().getRowData();
- if (!rd.equals(((Event) event).getValue())) {
- System.out.println(rd + " !!! " + ((Event) event).getValue());
+ UIOrderingList list = getList();
+ if (list.isRowAvailable()) {
+ Object rd = list.getRowData();
+ if (!rd.equals(((Event) event).getValue())) {
+ System.out.println(rd + " !!! " + ((Event) event).getValue());
+ }
}
} else {
super.broadcast(event);
Modified: branches/3.1.x/samples/orderingListDemo/src/main/java/org/richfaces/OrderingListDemoBean.java
===================================================================
--- branches/3.1.x/samples/orderingListDemo/src/main/java/org/richfaces/OrderingListDemoBean.java 2007-11-21 19:50:03 UTC (rev 4159)
+++ branches/3.1.x/samples/orderingListDemo/src/main/java/org/richfaces/OrderingListDemoBean.java 2007-11-21 23:19:14 UTC (rev 4160)
@@ -103,5 +103,7 @@
this.onbottomclick = onbottomclick;
}
-
+ public void clear() {
+ this.items.clear();
+ }
}
Modified: branches/3.1.x/samples/orderingListDemo/src/main/webapp/pages/index.jsp
===================================================================
--- branches/3.1.x/samples/orderingListDemo/src/main/webapp/pages/index.jsp 2007-11-21 19:50:03 UTC (rev 4159)
+++ branches/3.1.x/samples/orderingListDemo/src/main/webapp/pages/index.jsp 2007-11-21 23:19:14 UTC (rev 4160)
@@ -178,7 +178,9 @@
</h:panelGroup>
</h:panelGrid>
<h3>Ordering lists within a4j:repeat</h3>
- <a4j:commandButton reRender="repeat" value="Rerender a4j:repeat" />
+ <a4j:commandButton reRender="repeat" value="Rerender a4j:repeat" />
+
+ <h:commandButton value="Clear list" action="#{demoBean.clear}"></h:commandButton>
</h:form>
</f:view>
</body>
18 years, 5 months
JBoss Rich Faces SVN: r4159 - in tags/3.1.2.SP1: cdk and 120 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-11-21 14:50:03 -0500 (Wed, 21 Nov 2007)
New Revision: 4159
Modified:
tags/3.1.2.SP1/cdk/generator/pom.xml
tags/3.1.2.SP1/cdk/maven-archetype-jsf-component/pom.xml
tags/3.1.2.SP1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.1.2.SP1/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.1.2.SP1/cdk/maven-cdk-plugin/pom.xml
tags/3.1.2.SP1/cdk/pom.xml
tags/3.1.2.SP1/docs/pom.xml
tags/3.1.2.SP1/docs/userguide/en/pom.xml
tags/3.1.2.SP1/docs/userguide/pom.xml
tags/3.1.2.SP1/docs/xslt/en/pom.xml
tags/3.1.2.SP1/docs/xslt/pom.xml
tags/3.1.2.SP1/extensions/gwt/pom.xml
tags/3.1.2.SP1/extensions/pom.xml
tags/3.1.2.SP1/extensions/portlet/pom.xml
tags/3.1.2.SP1/extensions/seam/pom.xml
tags/3.1.2.SP1/extensions/trinidad/pom.xml
tags/3.1.2.SP1/framework/api-parent/pom.xml
tags/3.1.2.SP1/framework/api/pom.xml
tags/3.1.2.SP1/framework/impl-parent/pom.xml
tags/3.1.2.SP1/framework/impl/pom.xml
tags/3.1.2.SP1/framework/pom.xml
tags/3.1.2.SP1/framework/test/pom.xml
tags/3.1.2.SP1/pom.xml
tags/3.1.2.SP1/samples/ajaxPortlet/pom.xml
tags/3.1.2.SP1/samples/calendar-sample/pom.xml
tags/3.1.2.SP1/samples/dataFilterSliderDemo/pom.xml
tags/3.1.2.SP1/samples/dataTableDemo/pom.xml
tags/3.1.2.SP1/samples/datascroller-sample/pom.xml
tags/3.1.2.SP1/samples/dragDropDemo/pom.xml
tags/3.1.2.SP1/samples/dropdownmenu-sample/pom.xml
tags/3.1.2.SP1/samples/effect-sample/pom.xml
tags/3.1.2.SP1/samples/gmap-sample/pom.xml
tags/3.1.2.SP1/samples/inputNumberSliderDemo/pom.xml
tags/3.1.2.SP1/samples/inputNumberSpinnerDemo/pom.xml
tags/3.1.2.SP1/samples/jQuery-sample/pom.xml
tags/3.1.2.SP1/samples/local-value-demo/pom.xml
tags/3.1.2.SP1/samples/modalpanel-sample/pom.xml
tags/3.1.2.SP1/samples/panel-sample/pom.xml
tags/3.1.2.SP1/samples/panelbar-sample/pom.xml
tags/3.1.2.SP1/samples/panelmenu-sample/pom.xml
tags/3.1.2.SP1/samples/pom.xml
tags/3.1.2.SP1/samples/portal-echo/pom.xml
tags/3.1.2.SP1/samples/rich-message-demo/pom.xml
tags/3.1.2.SP1/samples/richfaces-art-datatable/pom.xml
tags/3.1.2.SP1/samples/richfaces-demo/pom.xml
tags/3.1.2.SP1/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.1.2.SP1/samples/richfaces-ear-demo/pom.xml
tags/3.1.2.SP1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.1.2.SP1/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.1.2.SP1/samples/scrollableDataTableDemo/pom.xml
tags/3.1.2.SP1/samples/seamEAR/ear/pom.xml
tags/3.1.2.SP1/samples/seamEAR/ejbs/pom.xml
tags/3.1.2.SP1/samples/seamEAR/pom.xml
tags/3.1.2.SP1/samples/seamEAR/primary-source/pom.xml
tags/3.1.2.SP1/samples/seamEAR/projects/logging/pom.xml
tags/3.1.2.SP1/samples/seamEAR/projects/pom.xml
tags/3.1.2.SP1/samples/seamEAR/wars/pom.xml
tags/3.1.2.SP1/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.1.2.SP1/samples/seamIntegration/pom.xml
tags/3.1.2.SP1/samples/separator-sample/pom.xml
tags/3.1.2.SP1/samples/simpleTogglePanel-sample/pom.xml
tags/3.1.2.SP1/samples/skins/pom.xml
tags/3.1.2.SP1/samples/suggestionbox-sample/pom.xml
tags/3.1.2.SP1/samples/tabPanelDemo/pom.xml
tags/3.1.2.SP1/samples/togglePanel-sample/pom.xml
tags/3.1.2.SP1/samples/tomahawkCompability/pom.xml
tags/3.1.2.SP1/samples/toolBarDemo/pom.xml
tags/3.1.2.SP1/samples/tooltip-sample/pom.xml
tags/3.1.2.SP1/samples/tree-demo/pom.xml
tags/3.1.2.SP1/samples/treeModelDemo/pom.xml
tags/3.1.2.SP1/samples/useCases/pom.xml
tags/3.1.2.SP1/samples/virtualEarth-sample/pom.xml
tags/3.1.2.SP1/sandbox/api/pom.xml
tags/3.1.2.SP1/sandbox/impl/pom.xml
tags/3.1.2.SP1/sandbox/pom.xml
tags/3.1.2.SP1/sandbox/samples/dialog-window-sample/pom.xml
tags/3.1.2.SP1/sandbox/samples/panel2-sample/pom.xml
tags/3.1.2.SP1/sandbox/samples/pom.xml
tags/3.1.2.SP1/sandbox/samples/rich-message-demo/pom.xml
tags/3.1.2.SP1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.1.2.SP1/sandbox/ui/dialog-window/pom.xml
tags/3.1.2.SP1/sandbox/ui/panel2/pom.xml
tags/3.1.2.SP1/sandbox/ui/pom.xml
tags/3.1.2.SP1/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.1.2.SP1/sandbox/ui/state/pom.xml
tags/3.1.2.SP1/test-applications/facelets/pom.xml
tags/3.1.2.SP1/test-applications/jsp/pom.xml
tags/3.1.2.SP1/test-applications/pom.xml
tags/3.1.2.SP1/ui/assembly/pom.xml
tags/3.1.2.SP1/ui/calendar/pom.xml
tags/3.1.2.SP1/ui/core/pom.xml
tags/3.1.2.SP1/ui/create.bat
tags/3.1.2.SP1/ui/create.sh
tags/3.1.2.SP1/ui/dataFilterSlider/pom.xml
tags/3.1.2.SP1/ui/dataTable/pom.xml
tags/3.1.2.SP1/ui/datascroller/pom.xml
tags/3.1.2.SP1/ui/drag-drop/pom.xml
tags/3.1.2.SP1/ui/dropdown-menu/pom.xml
tags/3.1.2.SP1/ui/effect/pom.xml
tags/3.1.2.SP1/ui/gmap/pom.xml
tags/3.1.2.SP1/ui/inputnumber-slider/pom.xml
tags/3.1.2.SP1/ui/inputnumber-spinner/pom.xml
tags/3.1.2.SP1/ui/insert/pom.xml
tags/3.1.2.SP1/ui/jQuery/pom.xml
tags/3.1.2.SP1/ui/menu-components/pom.xml
tags/3.1.2.SP1/ui/message/pom.xml
tags/3.1.2.SP1/ui/modal-panel/pom.xml
tags/3.1.2.SP1/ui/paint2D/pom.xml
tags/3.1.2.SP1/ui/panel/pom.xml
tags/3.1.2.SP1/ui/panelbar/pom.xml
tags/3.1.2.SP1/ui/panelmenu/pom.xml
tags/3.1.2.SP1/ui/pom.xml
tags/3.1.2.SP1/ui/scrollableDataTable/pom.xml
tags/3.1.2.SP1/ui/separator/pom.xml
tags/3.1.2.SP1/ui/simpleTogglePanel/pom.xml
tags/3.1.2.SP1/ui/spacer/pom.xml
tags/3.1.2.SP1/ui/suggestionbox/pom.xml
tags/3.1.2.SP1/ui/tabPanel/pom.xml
tags/3.1.2.SP1/ui/togglePanel/pom.xml
tags/3.1.2.SP1/ui/toolBar/pom.xml
tags/3.1.2.SP1/ui/tooltip/pom.xml
tags/3.1.2.SP1/ui/tree/pom.xml
tags/3.1.2.SP1/ui/treeModel/pom.xml
tags/3.1.2.SP1/ui/virtualEarth/pom.xml
Log:
correct version number in the pom's
Modified: tags/3.1.2.SP1/cdk/generator/pom.xml
===================================================================
--- tags/3.1.2.SP1/cdk/generator/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/cdk/generator/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: tags/3.1.2.SP1/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- tags/3.1.2.SP1/cdk/maven-archetype-jsf-component/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/cdk/maven-archetype-jsf-component/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.1.2.SP1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
Modified: tags/3.1.2.SP1/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- tags/3.1.2.SP1/cdk/maven-archetype-jsfwebapp/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/cdk/maven-archetype-jsfwebapp/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- tags/3.1.2.SP1/cdk/maven-cdk-plugin/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/cdk/maven-cdk-plugin/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/cdk/pom.xml
===================================================================
--- tags/3.1.2.SP1/cdk/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/cdk/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.1.2.SP1/docs/pom.xml
===================================================================
--- tags/3.1.2.SP1/docs/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/docs/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,12 +3,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.1.2.SP1/docs/userguide/en/pom.xml
===================================================================
--- tags/3.1.2.SP1/docs/userguide/en/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/docs/userguide/en/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>jdocbook</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.1.2.SP1/docs/userguide/pom.xml
===================================================================
--- tags/3.1.2.SP1/docs/userguide/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/docs/userguide/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.1.2.SP1/docs/xslt/en/pom.xml
===================================================================
--- tags/3.1.2.SP1/docs/xslt/en/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/docs/xslt/en/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>xslt</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.xslt</groupId>
<artifactId>en</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>jar</packaging>
<name>Documentation stylesheets (English translation)</name>
<description>
Modified: tags/3.1.2.SP1/docs/xslt/pom.xml
===================================================================
--- tags/3.1.2.SP1/docs/xslt/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/docs/xslt/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>xslt</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>pom</packaging>
<name>Documentation stylesheets</name>
<description>Docbook documentation stylesheets</description>
Modified: tags/3.1.2.SP1/extensions/gwt/pom.xml
===================================================================
--- tags/3.1.2.SP1/extensions/gwt/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/extensions/gwt/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,7 +3,7 @@
<parent>
<artifactId>master</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.1.2.SP1/extensions/pom.xml
===================================================================
--- tags/3.1.2.SP1/extensions/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/extensions/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.1.2.SP1/extensions/portlet/pom.xml
===================================================================
--- tags/3.1.2.SP1/extensions/portlet/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/extensions/portlet/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.extensions</groupId>
<artifactId>portlet</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>ajax4jsf portlet brige</name>
<url>http://labs.jboss.com/wiki/Ajax4jsf/a4j-portlet</url>
<dependencies>
@@ -56,12 +56,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<scope>test</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/extensions/seam/pom.xml
===================================================================
--- tags/3.1.2.SP1/extensions/seam/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/extensions/seam/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.1.2.SP1/extensions/trinidad/pom.xml
===================================================================
--- tags/3.1.2.SP1/extensions/trinidad/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/extensions/trinidad/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.1.2.SP1/framework/api/pom.xml
===================================================================
--- tags/3.1.2.SP1/framework/api/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/framework/api/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<build>
<plugins>
<plugin>
Modified: tags/3.1.2.SP1/framework/api-parent/pom.xml
===================================================================
--- tags/3.1.2.SP1/framework/api-parent/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/framework/api-parent/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<packaging>pom</packaging>
<artifactId>api-parent</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>Java Server Faces AJAX framework API Dependencies</name>
<properties>
<jsfVersion>1.1</jsfVersion>
Modified: tags/3.1.2.SP1/framework/impl/pom.xml
===================================================================
--- tags/3.1.2.SP1/framework/impl/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/framework/impl/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>Java Server Faces AJAX framework implementation</name>
<build>
<resources>
@@ -181,7 +181,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<profiles>
Modified: tags/3.1.2.SP1/framework/impl-parent/pom.xml
===================================================================
--- tags/3.1.2.SP1/framework/impl-parent/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/framework/impl-parent/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -5,12 +5,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>impl-parent</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>pom</packaging>
<name>
Java Server Faces AJAX framework implementation parent file
@@ -203,7 +203,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<properties>
Modified: tags/3.1.2.SP1/framework/pom.xml
===================================================================
--- tags/3.1.2.SP1/framework/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/framework/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<dependencies />
Modified: tags/3.1.2.SP1/framework/test/pom.xml
===================================================================
--- tags/3.1.2.SP1/framework/test/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/framework/test/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>htmlunit</groupId>
Modified: tags/3.1.2.SP1/pom.xml
===================================================================
--- tags/3.1.2.SP1/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
@@ -129,9 +129,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/3.1.3.SP1</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/3.1.3.SP1</developerConnection>
- <url>https://svn.jboss.org/repos/richfaces/tags/3.1.3.SP1</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/3.1.2.SP1</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/3.1.2.SP1</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/tags/3.1.2.SP1</url>
</scm>
<profiles>
<profile>
Modified: tags/3.1.2.SP1/samples/ajaxPortlet/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/ajaxPortlet/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/ajaxPortlet/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -5,12 +5,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>portalAjaxSample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<description>Ajax JSF sample portlet</description>
<build>
@@ -27,7 +27,7 @@
<dependency>
<groupId>org.richfaces.extensions</groupId>
<artifactId>portlet</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.SP1/samples/calendar-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/calendar-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/calendar-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,29 +3,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>calendar-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>calendar-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>calendar</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/dataFilterSliderDemo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/dataFilterSliderDemo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,29 +2,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>dataFilterSliderDemo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>dataFilterSliderDemo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataFilterSlider</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/samples/dataTableDemo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/dataTableDemo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/dataTableDemo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>dataTableDemo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<url>http://maven.apache.org</url>
@@ -18,12 +18,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/datascroller-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/datascroller-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/datascroller-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>datascroller-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>datascroller</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/dragDropDemo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/dragDropDemo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/dragDropDemo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>dragDropDemo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>Drag/Drop demo app</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/dropdownmenu-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/dropdownmenu-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/dropdownmenu-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>dropdownmenu-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,17 +17,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dropdown-menu</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/effect-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/effect-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/effect-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>effect-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>effect Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>effect</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/samples/gmap-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/gmap-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/gmap-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>gmap-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>gmap-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>gmap</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/inputNumberSliderDemo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/inputNumberSliderDemo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>inputNumberSliderDemo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-slider</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/inputNumberSpinnerDemo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/inputNumberSpinnerDemo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>inputNumberSpinnerDemo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/jQuery-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/jQuery-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/jQuery-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>jQuery-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>jQuery-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/samples/local-value-demo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/local-value-demo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/local-value-demo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,24 +2,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>local-value-demo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>richfaces-local-value-demo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/samples/modalpanel-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/modalpanel-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/modalpanel-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,24 +2,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>modalpanel-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>modalpanel-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>modal-panel</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/samples/panel-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/panel-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/panel-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,24 +2,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>panel-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>panel-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panel</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/samples/panelbar-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/panelbar-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/panelbar-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>panelbar-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panelbar</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/panelmenu-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/panelmenu-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/panelmenu-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,24 +3,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>panelmenu-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>panelmenu-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panelmenu</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/samples/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,14 +3,14 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
<packaging>pom</packaging>
<name>RichFaces Components Examples</name>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<url>http://labs.jboss.com/jbossrichfaces/samples</url>
<properties>
<!-- -->
@@ -67,12 +67,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
@@ -361,7 +361,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.SP1/samples/portal-echo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/portal-echo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/portal-echo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -5,13 +5,13 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>portal-echo</artifactId>
<packaging>war</packaging>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<description>Ajax JSF sample portlet</description>
<build>
<defaultGoal>package</defaultGoal>
Modified: tags/3.1.2.SP1/samples/rich-message-demo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/rich-message-demo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/rich-message-demo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,29 +3,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>rich-message-demo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>rich-message-demo</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/samples/richfaces-art-datatable/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/richfaces-art-datatable/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/richfaces-art-datatable/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,19 +3,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>richfaces-art-datatable</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>richfaces-art-datatableDemo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/samples/richfaces-demo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/richfaces-demo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/richfaces-demo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>richfaces-demo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>richfaces-demo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -24,7 +24,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/richfaces-ear-demo/ejb/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/richfaces-ear-demo/ejb/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -4,14 +4,14 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>ejb</artifactId>
<packaging>ejb</packaging>
<name>ejb</name>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
@@ -23,7 +23,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.SP1/samples/richfaces-ear-demo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/richfaces-ear-demo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/richfaces-ear-demo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -4,14 +4,14 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>richfaces-ear-demo</artifactId>
<name>JSF 1.2/Jee5 enterprise application demo</name>
<packaging>pom</packaging>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<build>
<pluginManagement>
<plugins>
Modified: tags/3.1.2.SP1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -4,32 +4,32 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>richfacesEAR</artifactId>
<name>richfacesEAR</name>
<packaging>ear</packaging>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>ejb</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>ejb</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<type>ejb-client</type>
</dependency>
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>webapp</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<type>war</type>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/richfaces-ear-demo/webapp/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/richfaces-ear-demo/webapp/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -4,14 +4,14 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>webapp</artifactId>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<url>http://maven.apache.org</url>
<build>
<finalName>webapp</finalName>
@@ -48,17 +48,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<optional>true</optional>
</dependency>
<dependency>
@@ -71,7 +71,7 @@
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>ejb</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<type>ejb-client</type>
<scope>provided</scope>
<optional>true</optional>
Modified: tags/3.1.2.SP1/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/scrollableDataTableDemo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/scrollableDataTableDemo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -4,34 +4,34 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>scrollableDataTable Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/samples/seamEAR/ear/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/seamEAR/ear/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/seamEAR/ear/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -6,18 +6,18 @@
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>ear</artifactId>
<packaging>ear</packaging>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>ear assembly</name>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<dependencies>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.SP1/samples/seamEAR/ejbs/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/seamEAR/ejbs/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/seamEAR/ejbs/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -6,12 +6,12 @@
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>ejbs</artifactId>
<packaging>ejb</packaging>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>enterprise java beans</name>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<dependencies>
<dependency>
@@ -32,7 +32,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.SP1/samples/seamEAR/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/seamEAR/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/seamEAR/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -6,12 +6,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
-->
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<artifactId>seamEAR</artifactId>
<packaging>pom</packaging>
<name>seam EAR project</name>
@@ -58,23 +58,23 @@
org.richfaces.samples.seamEAR.projects
</groupId>
<artifactId>logging</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>primary-source</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples.seamEAR.wars</groupId>
<artifactId>seamWebapp</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>ejbs</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<type>ejb</type>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/samples/seamEAR/primary-source/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/seamEAR/primary-source/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/seamEAR/primary-source/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.1.2.SP1/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/seamEAR/projects/logging/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/seamEAR/projects/logging/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
</project>
Modified: tags/3.1.2.SP1/samples/seamEAR/projects/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/seamEAR/projects/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/seamEAR/projects/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -1,14 +1,14 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.seamEAR</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<artifactId>projects</artifactId>
<packaging>pom</packaging>
<name>sub projects</name>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.1.2.SP1/samples/seamEAR/wars/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/seamEAR/wars/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/seamEAR/wars/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -4,11 +4,11 @@
<artifactId>wars</artifactId>
<packaging>pom</packaging>
<name>wars</name>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.1.2.SP1/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/seamEAR/wars/seamWebapp/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/seamEAR/wars/seamWebapp/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -42,17 +42,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.1.2.SP1/samples/seamIntegration/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/seamIntegration/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/seamIntegration/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamIntegration</artifactId>
<packaging>war</packaging>
<name>seamIntegration Maven Webapp</name>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<build>
<finalName>seamIntegration</finalName>
<plugins>
Modified: tags/3.1.2.SP1/samples/separator-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/separator-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/separator-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>separator-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>separator</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/simpleTogglePanel-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/simpleTogglePanel-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>simpleTogglePanel-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>simpleTogglePanel</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/skins/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/skins/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/skins/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.1.2.SP1/samples/suggestionbox-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/suggestionbox-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/suggestionbox-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>suggestionbox-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>suggestionbox-sample Maven Webapp</name>
<build>
@@ -17,17 +17,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/tabPanelDemo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/tabPanelDemo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/tabPanelDemo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tabPanelDemo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,22 +17,22 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tabPanel</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panel</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/togglePanel-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/togglePanel-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/togglePanel-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>togglePanel-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,17 +17,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>togglePanel</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panel</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/tomahawkCompability/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/tomahawkCompability/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/tomahawkCompability/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tomahawkCompability</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>tomahawkCompability Maven Webapp</name>
<properties>
Modified: tags/3.1.2.SP1/samples/toolBarDemo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/toolBarDemo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/toolBarDemo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>toolBarDemo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>webapp Maven Webapp</name>
<build>
@@ -17,12 +17,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>toolBar</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/samples/tooltip-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/tooltip-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/tooltip-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,24 +3,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tooltip-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>tooltip-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tooltip</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/samples/tree-demo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/tree-demo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/tree-demo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,29 +2,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tree-demo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>tree-demo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/samples/treeModelDemo/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/treeModelDemo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/treeModelDemo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,24 +3,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>treeModelDemo</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>Tree Model Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>treeModel</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/samples/useCases/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/useCases/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/useCases/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -5,12 +5,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>useCases</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>useCases Maven Webapp</name>
<build>
Modified: tags/3.1.2.SP1/samples/virtualEarth-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/samples/virtualEarth-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/samples/virtualEarth-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -4,19 +4,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>virtualEarth-sample</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<packaging>war</packaging>
<name>gmap-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>virtualEarth</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.SP1/sandbox/api/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/api/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/api/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,18 +2,18 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<dependencies>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.SP1/sandbox/impl/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/impl/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/impl/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.SP1/sandbox/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.1.2.SP1/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/samples/dialog-window-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/samples/dialog-window-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -15,12 +15,12 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>dialog-window</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/samples/panel2-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/samples/panel2-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -15,12 +15,12 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>panel2</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/sandbox/samples/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/samples/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/samples/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.1.2.SP1/sandbox/samples/rich-message-demo/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/samples/rich-message-demo/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/samples/rich-message-demo/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.demo</groupId>
@@ -13,17 +13,17 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>message</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,12 +16,12 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>simpleTogglePanel2</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/sandbox/ui/dialog-window/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/ui/dialog-window/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/ui/dialog-window/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/sandbox/ui/panel2/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/ui/panel2/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/ui/panel2/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/sandbox/ui/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/ui/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/ui/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.1.2.SP1/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/ui/simpleTogglePanel2/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/ui/simpleTogglePanel2/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/sandbox/ui/state/pom.xml
===================================================================
--- tags/3.1.2.SP1/sandbox/ui/state/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/sandbox/ui/state/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/test-applications/facelets/pom.xml
===================================================================
--- tags/3.1.2.SP1/test-applications/facelets/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/test-applications/facelets/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.1.2.SP1/test-applications/jsp/pom.xml
===================================================================
--- tags/3.1.2.SP1/test-applications/jsp/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/test-applications/jsp/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.1.2.SP1/test-applications/pom.xml
===================================================================
--- tags/3.1.2.SP1/test-applications/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/test-applications/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<relativePath>../samples</relativePath>
</parent>
@@ -43,11 +43,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.1.3.SP1</rfVersion>
+ <rfVersion>3.1.2.SP1</rfVersion>
</properties>
<modules>
Modified: tags/3.1.2.SP1/ui/assembly/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/assembly/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/assembly/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.1.2.SP1/ui/calendar/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/calendar/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/calendar/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/core/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/core/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/core/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.SP1/ui/create.bat
===================================================================
--- tags/3.1.2.SP1/ui/create.bat 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/create.bat 2007-11-21 19:50:03 UTC (rev 4159)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.1.3.SP1 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.1.2.SP1 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/create.sh
===================================================================
--- tags/3.1.2.SP1/ui/create.sh 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/create.sh 2007-11-21 19:50:03 UTC (rev 4159)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component \
- -DarchetypeVersion=3.1.3.SP1 -DgroupId=org.richfaces.ui -DartifactId=$1
+ -DarchetypeVersion=3.1.2.SP1 -DgroupId=org.richfaces.ui -DartifactId=$1
Modified: tags/3.1.2.SP1/ui/dataFilterSlider/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/dataFilterSlider/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/dataFilterSlider/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/dataTable/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/dataTable/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/dataTable/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.1.2.SP1/ui/datascroller/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/datascroller/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/datascroller/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/drag-drop/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/drag-drop/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/drag-drop/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.1.2.SP1/ui/dropdown-menu/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/dropdown-menu/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/dropdown-menu/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/effect/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/effect/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/effect/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.SP1/ui/gmap/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/gmap/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/gmap/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.SP1/ui/inputnumber-slider/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/inputnumber-slider/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/inputnumber-slider/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.SP1/ui/inputnumber-spinner/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/inputnumber-spinner/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/inputnumber-spinner/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.1.2.SP1/ui/insert/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/insert/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/insert/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.SP1/ui/jQuery/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/jQuery/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/jQuery/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.SP1/ui/menu-components/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/menu-components/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/menu-components/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/message/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/message/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/message/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/modal-panel/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/modal-panel/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/modal-panel/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.SP1/ui/paint2D/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/paint2D/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/paint2D/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.SP1/ui/panel/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/panel/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/panel/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/panelbar/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/panelbar/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/panelbar/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.SP1/ui/panelmenu/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/panelmenu/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/panelmenu/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -131,12 +131,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.1.2.SP1/ui/scrollableDataTable/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/scrollableDataTable/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/scrollableDataTable/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<name>Scrollable Data Table</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -71,12 +71,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<scope>test</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.SP1/ui/separator/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/separator/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/separator/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.1.2.SP1/ui/simpleTogglePanel/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/simpleTogglePanel/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/simpleTogglePanel/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/spacer/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/spacer/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/spacer/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/suggestionbox/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/suggestionbox/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/suggestionbox/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/tabPanel/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/tabPanel/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/tabPanel/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/togglePanel/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/togglePanel/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/togglePanel/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/toolBar/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/toolBar/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/toolBar/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/tooltip/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/tooltip/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/tooltip/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/tree/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/tree/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/tree/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/treeModel/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/treeModel/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/treeModel/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.SP1/ui/virtualEarth/pom.xml
===================================================================
--- tags/3.1.2.SP1/ui/virtualEarth/pom.xml 2007-11-21 19:04:35 UTC (rev 4158)
+++ tags/3.1.2.SP1/ui/virtualEarth/pom.xml 2007-11-21 19:50:03 UTC (rev 4159)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.3.SP1</version>
+ <version>3.1.2.SP1</version>
<executions>
<execution>
<phase>generate-sources</phase>
18 years, 5 months
JBoss Rich Faces SVN: r4158 - trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2007-11-21 14:04:35 -0500 (Wed, 21 Nov 2007)
New Revision: 4158
Modified:
trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/RendererUtils.java
Log:
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/RendererUtils.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/RendererUtils.java 2007-11-21 19:04:08 UTC (rev 4157)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/RendererUtils.java 2007-11-21 19:04:35 UTC (rev 4158)
@@ -878,6 +878,8 @@
onEventDefinition.addToBody(script);
writer.writeText(eventName + ": "
+ onEventDefinition.toScript(), null);
+ }else{
+ writer.writeText(eventName + ": ''", null);
}
}
}
\ No newline at end of file
18 years, 5 months