JBoss Rich Faces SVN: r3396 - trunk/framework/impl/src/main/java/org/ajax4jsf/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-10-16 10:03:46 -0400 (Tue, 16 Oct 2007)
New Revision: 3396
Modified:
trunk/framework/impl/src/main/java/org/ajax4jsf/component/UIDataAdaptor.java
Log:
Missing row availability check after new model key has been set added
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/component/UIDataAdaptor.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/component/UIDataAdaptor.java 2007-10-16 13:11:59 UTC (rev 3395)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/component/UIDataAdaptor.java 2007-10-16 14:03:46 UTC (rev 3396)
@@ -276,6 +276,7 @@
// integer and key value.
localModel.setRowIndex(index);
+ rowAvailable = isRowAvailable();
this._rowKey = localModel.getRowKey();
this._clientId = null;
@@ -337,6 +338,7 @@
localModel.setRowKey(key);
+ rowAvailable = isRowAvailable();
boolean rowSelected = key != null && rowAvailable;
//XXX check for row availability
17 years, 2 months
JBoss Rich Faces SVN: r3395 - branches/3.1.x/ui/tree/src/main/templates.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2007-10-16 09:11:59 -0400 (Tue, 16 Oct 2007)
New Revision: 3395
Modified:
branches/3.1.x/ui/tree/src/main/templates/htmlTreeNode.jspx
Log:
http://jira.jboss.com/jira/browse/RF-1046
Modified: branches/3.1.x/ui/tree/src/main/templates/htmlTreeNode.jspx
===================================================================
--- branches/3.1.x/ui/tree/src/main/templates/htmlTreeNode.jspx 2007-10-16 11:49:43 UTC (rev 3394)
+++ branches/3.1.x/ui/tree/src/main/templates/htmlTreeNode.jspx 2007-10-16 13:11:59 UTC (rev 3395)
@@ -68,8 +68,9 @@
<jsp:scriptlet>
- <![CDATA[
- if (component.getUITree().isLeaf()) {
+ <![CDATA[
+ boolean leaf = component.getUITree().isLeaf();
+ if (leaf) {
]]>
</jsp:scriptlet>
<img id="#{clientId}:handle:img" src="#{spacer}" alt="" class="dr-tree-h-ic-img-md dr-tree-h-ic-img" />
@@ -155,7 +156,7 @@
<jsp:scriptlet>
<![CDATA[
String iconClass = "rich-tree-node-icon";
- if (component.getUITree().isLeaf()) {
+ if (leaf) {
iconClass += "-leaf";
}
variables.setVariable("iconClass",iconClass);
@@ -172,7 +173,7 @@
class="dr-tree-h-ic #{iconClass} #{lineFirst}" id="#{clientId}:icon">
<jsp:scriptlet>
<![CDATA[
- if (component.getUITree().isLeaf()) {
+ if (leaf) {
UIComponent leafFacet = component.getIconLeafFacet();
if (leafFacet != null && leafFacet.isRendered()) {
17 years, 2 months
JBoss Rich Faces SVN: r3394 - trunk/ui/tree/src/test/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2007-10-16 07:49:43 -0400 (Tue, 16 Oct 2007)
New Revision: 3394
Modified:
trunk/ui/tree/src/test/java/org/richfaces/component/TreeComponentTest.java
Log:
Fix JUnit test for Tree component (needed script reference added).
Modified: trunk/ui/tree/src/test/java/org/richfaces/component/TreeComponentTest.java
===================================================================
--- trunk/ui/tree/src/test/java/org/richfaces/component/TreeComponentTest.java 2007-10-16 11:39:12 UTC (rev 3393)
+++ trunk/ui/tree/src/test/java/org/richfaces/component/TreeComponentTest.java 2007-10-16 11:49:43 UTC (rev 3394)
@@ -92,8 +92,8 @@
javaScripts.add("org/richfaces/renderkit/html/scripts/tree-selection.js");
javaScripts.add("org/richfaces/renderkit/html/scripts/tree-item.js");
javaScripts.add("org/richfaces/renderkit/html/scripts/tree-item-dnd.js");
- javaScripts.add("org/richfaces/renderkit/html/scripts/drag-indicator.js");
-
+ javaScripts.add("org/richfaces/renderkit/html/scripts/drag-indicator.js");
+ javaScripts.add("org/richfaces/renderkit/html/scripts/browser_info.js");
}
private static Set cssStyles = new HashSet();
17 years, 2 months
JBoss Rich Faces SVN: r3393 - trunk/ui/tree/src/main/templates.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2007-10-16 07:39:12 -0400 (Tue, 16 Oct 2007)
New Revision: 3393
Modified:
trunk/ui/tree/src/main/templates/htmlTreeNode.jspx
Log:
http://jira.jboss.com/jira/browse/RF-1046
Modified: trunk/ui/tree/src/main/templates/htmlTreeNode.jspx
===================================================================
--- trunk/ui/tree/src/main/templates/htmlTreeNode.jspx 2007-10-16 10:02:47 UTC (rev 3392)
+++ trunk/ui/tree/src/main/templates/htmlTreeNode.jspx 2007-10-16 11:39:12 UTC (rev 3393)
@@ -68,8 +68,9 @@
<jsp:scriptlet>
- <![CDATA[
- if (component.getUITree().isLeaf()) {
+ <![CDATA[
+ boolean leaf = component.getUITree().isLeaf();
+ if (leaf) {
]]>
</jsp:scriptlet>
<img id="#{clientId}:handle:img" src="#{spacer}" alt="" class="dr-tree-h-ic-img-md dr-tree-h-ic-img" />
@@ -155,7 +156,7 @@
<jsp:scriptlet>
<![CDATA[
String iconClass = "rich-tree-node-icon";
- if (component.getUITree().isLeaf()) {
+ if (leaf) {
iconClass += "-leaf";
}
variables.setVariable("iconClass",iconClass);
@@ -172,7 +173,7 @@
class="dr-tree-h-ic #{iconClass} #{lineFirst}" id="#{clientId}:icon">
<jsp:scriptlet>
<![CDATA[
- if (component.getUITree().isLeaf()) {
+ if (leaf) {
UIComponent leafFacet = component.getIconLeafFacet();
if (leafFacet != null && leafFacet.isRendered()) {
17 years, 2 months
JBoss Rich Faces SVN: r3392 - in trunk/samples/richfaces-demo/src/main: webapp/richfaces/poll/examples and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2007-10-16 06:02:47 -0400 (Tue, 16 Oct 2007)
New Revision: 3392
Modified:
trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/ajaxsupport/UserBean.java
trunk/samples/richfaces-demo/src/main/webapp/richfaces/poll/examples/clock.xhtml
Log:
Modified: trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/ajaxsupport/UserBean.java
===================================================================
--- trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/ajaxsupport/UserBean.java 2007-10-16 09:55:27 UTC (rev 3391)
+++ trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/ajaxsupport/UserBean.java 2007-10-16 10:02:47 UTC (rev 3392)
@@ -11,6 +11,7 @@
private String city;
private String zip;
private Date date;
+ private Date pollStartTime;
private boolean pollEnabled;
public UserBean() {
@@ -60,7 +61,13 @@
}
public Date getDate() {
- return new Date();
+ Date date = new Date();
+ if (null==pollStartTime){
+ pollStartTime = new Date();
+ return date;
+ }
+ if ((date.getTime()-pollStartTime.getTime())>=60000) setPollEnabled(false);
+ return date;
}
public void setDate(Date date) {
@@ -72,6 +79,7 @@
}
public void setPollEnabled(boolean pollEnabled) {
+ if (pollEnabled) setPollStartTime(null);
this.pollEnabled = pollEnabled;
}
@@ -98,5 +106,13 @@
public void setZip(String zip) {
this.zip = zip;
}
+
+ public Date getPollStartTime() {
+ return pollStartTime;
+ }
+
+ public void setPollStartTime(Date pollStartTime) {
+ this.pollStartTime = pollStartTime;
+ }
}
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/poll/examples/clock.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/poll/examples/clock.xhtml 2007-10-16 09:55:27 UTC (rev 3391)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/poll/examples/clock.xhtml 2007-10-16 10:02:47 UTC (rev 3392)
@@ -2,25 +2,29 @@
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
- xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<rich:separator height="1"/>
<a4j:region>
<h:form>
- <a4j:poll id="poll" interval="500" enabled="#{userBean.pollEnabled}" reRender="serverDate"/>
+ <a4j:poll id="poll" interval="500" enabled="#{userBean.pollEnabled}" reRender="poll,grid"/>
</h:form>
</a4j:region>
<h:form>
- <h:panelGrid columns="2" width="80%">
- <a4j:commandButton style="width:120px" id="control"
- value="#{userBean.pollEnabled?'Stop':'Start'} Polling"
- reRender="poll, control">
- <a4j:actionparam name="polling" value="#{!userBean.pollEnabled}"
- assignTo="#{userBean.pollEnabled}"/>
- </a4j:commandButton>
- <h:outputText id="serverDate" style="font-size:16px" value="Server Date: #{userBean.date}"/>
- </h:panelGrid>
+ <h:panelGrid columns="2" width="80%" id="grid">
+ <h:panelGrid columns="1">
+ <h:outputText value="Polling Inactive" rendered="#{not userBean.pollEnabled}"></h:outputText>
+ <h:outputText value="Polling Active" rendered="#{userBean.pollEnabled}"></h:outputText>
+ <a4j:commandButton style="width:120px" id="control"
+ value="#{userBean.pollEnabled?'Stop':'Start'} Polling"
+ reRender="poll, grid">
+ <a4j:actionparam name="polling" value="#{!userBean.pollEnabled}"
+ assignTo="#{userBean.pollEnabled}"/>
+ </a4j:commandButton>
+ </h:panelGrid>
+ <h:outputText id="serverDate" style="font-size:16px" value="Server Date: #{userBean.date}"/>
+ </h:panelGrid>
</h:form>
<rich:separator height="1" style="padding-top:10px"/>
</ui:composition>
\ No newline at end of file
17 years, 2 months
JBoss Rich Faces SVN: r3391 - trunk/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/html.
by richfaces-svn-commits@lists.jboss.org
Author: maksimkaszynski
Date: 2007-10-16 05:55:27 -0400 (Tue, 16 Oct 2007)
New Revision: 3391
Modified:
trunk/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/html/HTMLElement.java
trunk/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/html/HTMLTags.java
Log:
added style to passThru attributes
Modified: trunk/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/html/HTMLElement.java
===================================================================
--- trunk/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/html/HTMLElement.java 2007-10-16 01:39:55 UTC (rev 3390)
+++ trunk/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/html/HTMLElement.java 2007-10-16 09:55:27 UTC (rev 3391)
@@ -48,7 +48,7 @@
private static final String PASS_THRU_ATTR = "x:passThruWithExclusions";
- private static final List<String> DEFAULT_EXCLUSIONS = Arrays.asList("class", "id", "style" );
+ private static final List<String> DEFAULT_EXCLUSIONS = Arrays.asList("class", "id");
private static final String TEMPLATE = A4JRendererElementsFactory.TEMPLATES_TEMPLATECOMPILER_PATH
+ "/HTMLElement.vm";
Modified: trunk/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/html/HTMLTags.java
===================================================================
--- trunk/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/html/HTMLTags.java 2007-10-16 01:39:55 UTC (rev 3390)
+++ trunk/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/html/HTMLTags.java 2007-10-16 09:55:27 UTC (rev 3391)
@@ -28,6 +28,7 @@
import java.util.List;
import java.util.Map;
import java.util.Set;
+import java.util.TreeSet;
import java.util.Map.Entry;
import org.richfaces.dtd.DocumentDefinition;
@@ -81,6 +82,8 @@
Map<String, List<String>> m =
(Map<String, List<String>>) stream2.readObject();
+ Set<String> newAttrs = new TreeSet<String>();
+
Set<Entry<String,List<String>>> entrySet = m.entrySet();
for (Entry<String, List<String>> entry : entrySet) {
String element = entry.getKey();
@@ -91,9 +94,13 @@
if (attributeList != null && attributes != null) {
attributes.removeAll(attributeList);
}
+ newAttrs.addAll(attributes);
+
System.out.println(element + attributes);
}
+
+ System.out.println(newAttrs);
}
17 years, 2 months
JBoss Rich Faces SVN: r3390 - in trunk/samples/richfaces-demo/src/main: webapp/richfaces and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: SergeySmirnov
Date: 2007-10-15 21:39:55 -0400 (Mon, 15 Oct 2007)
New Revision: 3390
Added:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery/
trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery/examples/
trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery/examples/fishEye.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery/usage.xhtml
Modified:
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
trunk/samples/richfaces-demo/src/main/webapp/templates/main.xhtml
Log:
jQuery demo is added
Modified: trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
===================================================================
--- trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2007-10-16 00:38:15 UTC (rev 3389)
+++ trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2007-10-16 01:39:55 UTC (rev 3390)
@@ -14,7 +14,8 @@
dataGrid= richDataIterators, Data Grid, /images/ico_DataTable.gif, /images/cn_DataGrid.gif, RichFacesComponentsLibrary.html#dataGrid, jbossrichfaces/freezone/docs/tlddoc/rich/dataGrid.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataGrid.html, /richfaces/dataGrid.jsf
dataList= richDataIterators, Data List, /images/ico_DataTable.gif, /images/cn_DataList.gif, RichFacesComponentsLibrary.html#dataList, jbossrichfaces/freezone/docs/tlddoc/rich/dataList.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataList.html, /richfaces/dataLists.jsf
dataOrderedList= richDataIterators, Data Ordered List, /images/ico_DataTable.gif, /images/cn_DataOrderedList.gif, RichFacesComponentsLibrary.html#dataOrderedList, jbossrichfaces/freezone/docs/tlddoc/rich/dataOrderedList.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/taglib/DataOrderedListTag.html, /richfaces/dataLists.jsf
-gmap= richMisc, Google Map, /images/ico_GoogleMap.gif, /images/cn_GoogleMap.gif, RichFacesComponentsLibrary.html#gmap, jbossrichfaces/freezone/docs/tlddoc/rich/gmap.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIGmap.html, /richfaces/gmap.jsf
+gmap= richMisc, Google Map, /images/ico_GoogleMap.gif, /images/cn_GoogleMap.gif, RichFacesComponentsLibrary.html#gmap, jbossrichfaces/freezone/docs/tlddoc/rich/gmap.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIGmap.html, /richfaces/gmap.jsf
+jQuery= richMisc, jQuery, /images/ico_common.gif, /images/cn_jQuery.gif, RichFacesComponentsLibrary.html#jQuery, jbossrichfaces/freezone/docs/tlddoc/rich/jQuery.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIJQuery.html, /richfaces/jQuery.jsf
paint2d= richOutputs, Paint2D, /images/ico_Paint2D.gif, /images/cn_Paint2D.gif, RichFacesComponentsLibrary.html#paint2D, jbossrichfaces/freezone/docs/tlddoc/rich/paint2D.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIPaint2D.html, /richfaces/paint2D.jsf
toolBar= richOutputs, Tool Bar, /images/ico_ToolBar.gif, /images/cn_ToolBar.gif, RichFacesComponentsLibrary.html#toolBar, jbossrichfaces/freezone/docs/tlddoc/rich/toolBar.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIToolBar.html, /richfaces/toolBar.jsf
toolTip= richOutputs, ToolTip, /images/ico_panel.gif, /images/cn_ToolTip.gif, RichFacesComponentsLibrary.html#toolTip, jbossrichfaces/freezone/docs/tlddoc/rich/toolTip.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIToolTip.html, /richfaces/toolTip.jsf
Added: trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery/examples/fishEye.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery/examples/fishEye.xhtml (rev 0)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery/examples/fishEye.xhtml 2007-10-16 01:39:55 UTC (rev 3390)
@@ -0,0 +1,13 @@
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:rich="http://richfaces.org/rich">
+
+ <rich:separator lineType="solid" height="1" />
+
+ // TODO jQuery example
+
+ <rich:separator height="1" style="padding-top:10px" />
+</ui:composition>
\ No newline at end of file
Added: trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery/usage.xhtml (rev 0)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery/usage.xhtml 2007-10-16 01:39:55 UTC (rev 3390)
@@ -0,0 +1,58 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:rich="http://richfaces.org/rich">
+ <ui:composition template="/templates/component-sample.xhtml">
+ <ui:define name="sample">
+
+ <p>rich:jQuery integrates jQuery javascript framework into the JavaServer
+ Faces application. The component allows to apply the styles and behaviors
+ on the DOM elements, including the result of JSF components rendering,
+ dynamically. For more information about jQuery framework and its features,
+ you can read at <a href="http://jquery.com/">http://jquery.com</a>
+ </p>
+ <p>Integrated jQuery works is non-conflict with prototype.js library used
+ widely in the RichFaces library. This means that $() function is delegated
+ back to the prototype.js. Use jQuery() function instead to refer to the
+ jQuery objects if needs. Read more about using jQuery with other libraries
+ at <a href="http://docs.jquery.com/Using_jQuery_with_Other_Libraries">
+ http://docs.jquery.com/Using_jQuery_with_Other_Libraries</a>
+ </p>
+
+
+ <div class="sample-container" >
+
+ <ui:include src="/richfaces/jQuery/examples/fishEye.xhtml"/>
+ <ui:include src="/templates/include/sourceview.xhtml">
+ <ui:param name="sourcepath" value="/richfaces/jQuery/examples/fishEye.xhtml"/>
+ </ui:include>
+ </div>
+ <p>
+ rich:jQuery can be used in two major modes:
+ <ul>
+ <li> as a once time query applied immediately or on document ready event</li>
+ <li> as a javascript function that can be invoked from the custom javascript</li>
+ </ul>
+ The mode is chosen with timing attribute that can have the following options:
+ <ul>
+ <li>immediate - applying the query immediately </li>
+ <li>onload - applying the query when the document is loaded.</li>
+ <li>onJScall - applying the query by invoked the javascript function defined with the name attribute</li>
+ </ul>
+ </p>
+ <p>
+ Defining the name attribute is mandatory in case timing="onJScall".
+ If name attribute is defined when timing equals to immediate or onload,
+ the query is applied according to this value, but you still have an
+ opportunity to invoke it by function name.<br/>
+ The selector attribute define the object or list of object, the query
+ defined with the query attribute will be applied to.
+ </p>
+
+ </ui:define>
+
+ </ui:composition>
+</html>
\ No newline at end of file
Added: trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery.xhtml (rev 0)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/jQuery.xhtml 2007-10-16 01:39:55 UTC (rev 3390)
@@ -0,0 +1,23 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:rich="http://richfaces.org/rich">
+<ui:composition template="/templates/main.xhtml">
+ <ui:define name="title">RichFaces - Open Source Rich JSF Components - jQuery Extension</ui:define>
+ <ui:define name="body">
+
+ <rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+
+ <rich:tab label="Usage">
+ <ui:include src="/richfaces/jQuery/usage.xhtml"/>
+ </rich:tab>
+ <ui:include src="/templates/include/tagInfo.xhtml">
+ <ui:param name="path" value="rich/jQuery"/>
+ </ui:include>
+ </rich:tabPanel>
+
+ </ui:define>
+</ui:composition>
+</html>
Modified: trunk/samples/richfaces-demo/src/main/webapp/templates/main.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/templates/main.xhtml 2007-10-16 00:38:15 UTC (rev 3389)
+++ trunk/samples/richfaces-demo/src/main/webapp/templates/main.xhtml 2007-10-16 01:39:55 UTC (rev 3390)
@@ -12,11 +12,12 @@
<ui:insert name="title"/>
</title>
<link rel="STYLESHEET" type="text/css" href="${facesContext.externalContext.requestContextPath}/css/common.css"/>
+
<ui:include src="/templates/include/dynamic-css.xhtml" />
</head>
<body>
-<span style="display:none">${a4j.version}</span>
+
<ui:include src="/templates/include/header.xhtml" />
<table class="left_menu" cellpadding="0" cellspacing="0" border="0">
<tbody>
@@ -44,35 +45,18 @@
<td width="100%" class="content_container_pdddings">
<!-- tabpanel begin -->
<ui:insert name="body">Body</ui:insert>
-<!-- tabpanel end -->
+<!-- tabpanel end -->
+ <rich:spacer style="height:10px;" />
+ <rich:separator style="height:1px" />
+ <div style="font-size:10px;float:right">${a4j.version}</div>
+ <div style="font-size:10px;float:none">
+ <a href="http://jboss.com/index.html?module=bb&op=viewtopic&t=104575"
+ style="color:#000">RichFaces. Most Important Links</a>
+ </div>
</td>
</tr>
</tbody>
</table>
- <a4j:log hotkey="M"/>
+
</body>
</html>
-<!--
-<table style="height: 100%; width: 100%">
- <tr>
- <td colspan="2" style="height: 50px">
- </td>
- </tr>
- <tr>
- <td style="width: 200px; padding:2px; vertical-align:top">
- <rich:panel style="height:95%;">
- <ui:include src="/templates/include/components-navigation.xhtml" />
- </rich:panel>
- </td>
- <td style="padding:2px; vertical-align:top">
- </td>
- </tr>
- <tr>
- <td colspan="2" style="height:50px">
- <ui:include src="/templates/include/footer.xhtml" />
- </td>
- </tr>
-</table>
-</body>
-</html>
--->
\ No newline at end of file
17 years, 2 months
JBoss Rich Faces SVN: r3389 - in tags: 3.1.2.CR2 and 122 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-10-15 20:38:15 -0400 (Mon, 15 Oct 2007)
New Revision: 3389
Added:
tags/3.1.2.CR2/
Modified:
tags/3.1.2.CR2/cdk/generator/pom.xml
tags/3.1.2.CR2/cdk/maven-archetype-jsf-component/pom.xml
tags/3.1.2.CR2/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.1.2.CR2/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.1.2.CR2/cdk/maven-cdk-plugin/pom.xml
tags/3.1.2.CR2/cdk/pom.xml
tags/3.1.2.CR2/docs/pom.xml
tags/3.1.2.CR2/docs/userguide/en/pom.xml
tags/3.1.2.CR2/docs/userguide/pom.xml
tags/3.1.2.CR2/docs/xslt/en/pom.xml
tags/3.1.2.CR2/docs/xslt/pom.xml
tags/3.1.2.CR2/extensions/gwt/pom.xml
tags/3.1.2.CR2/extensions/pom.xml
tags/3.1.2.CR2/extensions/portlet/pom.xml
tags/3.1.2.CR2/extensions/seam/pom.xml
tags/3.1.2.CR2/extensions/trinidad/pom.xml
tags/3.1.2.CR2/framework/api-parent/pom.xml
tags/3.1.2.CR2/framework/api/pom.xml
tags/3.1.2.CR2/framework/impl-parent/pom.xml
tags/3.1.2.CR2/framework/impl/pom.xml
tags/3.1.2.CR2/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.1.2.CR2/framework/pom.xml
tags/3.1.2.CR2/framework/test/pom.xml
tags/3.1.2.CR2/pom.xml
tags/3.1.2.CR2/samples/ajaxPortlet/pom.xml
tags/3.1.2.CR2/samples/calendar-sample/pom.xml
tags/3.1.2.CR2/samples/dataFilterSliderDemo/pom.xml
tags/3.1.2.CR2/samples/dataTableDemo/pom.xml
tags/3.1.2.CR2/samples/datascroller-sample/pom.xml
tags/3.1.2.CR2/samples/dragDropDemo/pom.xml
tags/3.1.2.CR2/samples/dropdownmenu-sample/pom.xml
tags/3.1.2.CR2/samples/effect-sample/pom.xml
tags/3.1.2.CR2/samples/gmap-sample/pom.xml
tags/3.1.2.CR2/samples/inputNumberSliderDemo/pom.xml
tags/3.1.2.CR2/samples/inputNumberSpinnerDemo/pom.xml
tags/3.1.2.CR2/samples/jQuery-sample/pom.xml
tags/3.1.2.CR2/samples/local-value-demo/pom.xml
tags/3.1.2.CR2/samples/modalpanel-sample/pom.xml
tags/3.1.2.CR2/samples/panel-sample/pom.xml
tags/3.1.2.CR2/samples/panelbar-sample/pom.xml
tags/3.1.2.CR2/samples/panelmenu-sample/pom.xml
tags/3.1.2.CR2/samples/pom.xml
tags/3.1.2.CR2/samples/portal-echo/pom.xml
tags/3.1.2.CR2/samples/rich-message-demo/pom.xml
tags/3.1.2.CR2/samples/richfaces-art-datatable/pom.xml
tags/3.1.2.CR2/samples/richfaces-demo/pom.xml
tags/3.1.2.CR2/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.1.2.CR2/samples/richfaces-ear-demo/pom.xml
tags/3.1.2.CR2/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.1.2.CR2/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.1.2.CR2/samples/scrollableDataTableDemo/pom.xml
tags/3.1.2.CR2/samples/seamEAR/ear/pom.xml
tags/3.1.2.CR2/samples/seamEAR/ejbs/pom.xml
tags/3.1.2.CR2/samples/seamEAR/pom.xml
tags/3.1.2.CR2/samples/seamEAR/primary-source/pom.xml
tags/3.1.2.CR2/samples/seamEAR/projects/logging/pom.xml
tags/3.1.2.CR2/samples/seamEAR/projects/pom.xml
tags/3.1.2.CR2/samples/seamEAR/wars/pom.xml
tags/3.1.2.CR2/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.1.2.CR2/samples/seamIntegration/pom.xml
tags/3.1.2.CR2/samples/separator-sample/pom.xml
tags/3.1.2.CR2/samples/simpleTogglePanel-sample/pom.xml
tags/3.1.2.CR2/samples/skins/pom.xml
tags/3.1.2.CR2/samples/suggestionbox-sample/pom.xml
tags/3.1.2.CR2/samples/tabPanelDemo/pom.xml
tags/3.1.2.CR2/samples/togglePanel-sample/pom.xml
tags/3.1.2.CR2/samples/tomahawkCompability/pom.xml
tags/3.1.2.CR2/samples/toolBarDemo/pom.xml
tags/3.1.2.CR2/samples/tooltip-sample/pom.xml
tags/3.1.2.CR2/samples/tree-demo/pom.xml
tags/3.1.2.CR2/samples/treeModelDemo/pom.xml
tags/3.1.2.CR2/samples/useCases/pom.xml
tags/3.1.2.CR2/samples/virtualEarth-sample/pom.xml
tags/3.1.2.CR2/sandbox/api/pom.xml
tags/3.1.2.CR2/sandbox/impl/pom.xml
tags/3.1.2.CR2/sandbox/pom.xml
tags/3.1.2.CR2/sandbox/samples/dialog-window-sample/pom.xml
tags/3.1.2.CR2/sandbox/samples/panel2-sample/pom.xml
tags/3.1.2.CR2/sandbox/samples/pom.xml
tags/3.1.2.CR2/sandbox/samples/rich-message-demo/pom.xml
tags/3.1.2.CR2/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.1.2.CR2/sandbox/ui/dialog-window/pom.xml
tags/3.1.2.CR2/sandbox/ui/panel2/pom.xml
tags/3.1.2.CR2/sandbox/ui/pom.xml
tags/3.1.2.CR2/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.1.2.CR2/sandbox/ui/state/pom.xml
tags/3.1.2.CR2/test-applications/facelets/pom.xml
tags/3.1.2.CR2/test-applications/jsp/pom.xml
tags/3.1.2.CR2/test-applications/pom.xml
tags/3.1.2.CR2/ui/assembly/pom.xml
tags/3.1.2.CR2/ui/calendar/pom.xml
tags/3.1.2.CR2/ui/core/pom.xml
tags/3.1.2.CR2/ui/create.bat
tags/3.1.2.CR2/ui/create.sh
tags/3.1.2.CR2/ui/dataFilterSlider/pom.xml
tags/3.1.2.CR2/ui/dataTable/pom.xml
tags/3.1.2.CR2/ui/datascroller/pom.xml
tags/3.1.2.CR2/ui/drag-drop/pom.xml
tags/3.1.2.CR2/ui/dropdown-menu/pom.xml
tags/3.1.2.CR2/ui/effect/pom.xml
tags/3.1.2.CR2/ui/gmap/pom.xml
tags/3.1.2.CR2/ui/inputnumber-slider/pom.xml
tags/3.1.2.CR2/ui/inputnumber-spinner/pom.xml
tags/3.1.2.CR2/ui/insert/pom.xml
tags/3.1.2.CR2/ui/jQuery/pom.xml
tags/3.1.2.CR2/ui/menu-components/pom.xml
tags/3.1.2.CR2/ui/message/pom.xml
tags/3.1.2.CR2/ui/modal-panel/pom.xml
tags/3.1.2.CR2/ui/paint2D/pom.xml
tags/3.1.2.CR2/ui/panel/pom.xml
tags/3.1.2.CR2/ui/panelbar/pom.xml
tags/3.1.2.CR2/ui/panelmenu/pom.xml
tags/3.1.2.CR2/ui/pom.xml
tags/3.1.2.CR2/ui/scrollableDataTable/pom.xml
tags/3.1.2.CR2/ui/separator/pom.xml
tags/3.1.2.CR2/ui/simpleTogglePanel/pom.xml
tags/3.1.2.CR2/ui/spacer/pom.xml
tags/3.1.2.CR2/ui/suggestionbox/pom.xml
tags/3.1.2.CR2/ui/tabPanel/pom.xml
tags/3.1.2.CR2/ui/togglePanel/pom.xml
tags/3.1.2.CR2/ui/toolBar/pom.xml
tags/3.1.2.CR2/ui/tooltip/pom.xml
tags/3.1.2.CR2/ui/tree/pom.xml
tags/3.1.2.CR2/ui/treeModel/pom.xml
tags/3.1.2.CR2/ui/virtualEarth/pom.xml
Log:
Tag Richfaces 3.1.2 release candidate 2
Copied: tags/3.1.2.CR2 (from rev 3388, branches/3.1.x)
Modified: tags/3.1.2.CR2/cdk/generator/pom.xml
===================================================================
--- branches/3.1.x/cdk/generator/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/cdk/generator/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: tags/3.1.2.CR2/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/3.1.x/cdk/maven-archetype-jsf-component/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/cdk/maven-archetype-jsf-component/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/3.1.x/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
Modified: tags/3.1.2.CR2/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/3.1.x/cdk/maven-archetype-jsfwebapp/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/cdk/maven-archetype-jsfwebapp/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/3.1.x/cdk/maven-cdk-plugin/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/cdk/maven-cdk-plugin/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/cdk/pom.xml
===================================================================
--- branches/3.1.x/cdk/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/cdk/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.1.2.CR2/docs/pom.xml
===================================================================
--- branches/3.1.x/docs/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/docs/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,12 +3,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.1.2.CR2/docs/userguide/en/pom.xml
===================================================================
--- branches/3.1.x/docs/userguide/en/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/docs/userguide/en/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>jdocbook</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.1.2.CR2/docs/userguide/pom.xml
===================================================================
--- branches/3.1.x/docs/userguide/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/docs/userguide/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.1.2.CR2/docs/xslt/en/pom.xml
===================================================================
--- branches/3.1.x/docs/xslt/en/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/docs/xslt/en/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>xslt</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.xslt</groupId>
<artifactId>en</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>jar</packaging>
<name>Documentation stylesheets (English translation)</name>
<description>
Modified: tags/3.1.2.CR2/docs/xslt/pom.xml
===================================================================
--- branches/3.1.x/docs/xslt/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/docs/xslt/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>xslt</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>pom</packaging>
<name>Documentation stylesheets</name>
<description>Docbook documentation stylesheets</description>
Modified: tags/3.1.2.CR2/extensions/gwt/pom.xml
===================================================================
--- branches/3.1.x/extensions/gwt/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/extensions/gwt/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>master</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.1.2.CR2/extensions/pom.xml
===================================================================
--- branches/3.1.x/extensions/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/extensions/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.1.2.CR2/extensions/portlet/pom.xml
===================================================================
--- branches/3.1.x/extensions/portlet/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/extensions/portlet/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.extensions</groupId>
<artifactId>portlet</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<scope>test</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/extensions/seam/pom.xml
===================================================================
--- branches/3.1.x/extensions/seam/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/extensions/seam/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.1.2.CR2/extensions/trinidad/pom.xml
===================================================================
--- branches/3.1.x/extensions/trinidad/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/extensions/trinidad/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.1.2.CR2/framework/api/pom.xml
===================================================================
--- branches/3.1.x/framework/api/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/framework/api/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<build>
<plugins>
<plugin>
Modified: tags/3.1.2.CR2/framework/api-parent/pom.xml
===================================================================
--- branches/3.1.x/framework/api-parent/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/framework/api-parent/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<packaging>pom</packaging>
<artifactId>api-parent</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>Java Server Faces AJAX framework API Dependencies</name>
<properties>
<jsfVersion>1.1</jsfVersion>
Modified: tags/3.1.2.CR2/framework/impl/pom.xml
===================================================================
--- branches/3.1.x/framework/impl/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/framework/impl/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,19 +3,19 @@
<parent>
<artifactId>impl-parent</artifactId>
<groupId>org.richfaces.framework</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<relativePath>../impl-parent/pom.xml</relativePath>
</parent>
-->
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>Java Server Faces AJAX framework implementation</name>
<build>
<resources>
@@ -189,7 +189,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<profiles>
Modified: tags/3.1.2.CR2/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/richfaces/VersionBean.java 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/framework/impl/src/main/java/org/richfaces/VersionBean.java 2007-10-16 00:38:15 UTC (rev 3389)
@@ -37,7 +37,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "2-SNAPSHOT" ;
+ public static final String REVISION = "2.CR2" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.1.2.CR2/framework/impl-parent/pom.xml
===================================================================
--- branches/3.1.x/framework/impl-parent/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/framework/impl-parent/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -5,12 +5,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>impl-parent</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<properties>
Modified: tags/3.1.2.CR2/framework/pom.xml
===================================================================
--- branches/3.1.x/framework/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/framework/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<dependencies />
Modified: tags/3.1.2.CR2/framework/test/pom.xml
===================================================================
--- branches/3.1.x/framework/test/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/framework/test/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>htmlunit</groupId>
Modified: tags/3.1.2.CR2/pom.xml
===================================================================
--- branches/3.1.x/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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/branches/3.1.x</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.1.x</developerConnection>
- <url>https://svn.jboss.org/repos/richfaces/branches/3.1.x</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/3.1.2.CR2</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.1.2.CR2</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/branches/3.1.2.CR2</url>
</scm>
<profiles>
<profile>
Modified: tags/3.1.2.CR2/samples/ajaxPortlet/pom.xml
===================================================================
--- branches/3.1.x/samples/ajaxPortlet/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/ajaxPortlet/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -5,12 +5,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>portalAjaxSample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR2/samples/calendar-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/calendar-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/calendar-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,29 +3,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>calendar-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>calendar-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>calendar</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/dataFilterSliderDemo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/dataFilterSliderDemo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,29 +2,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>dataFilterSliderDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>dataFilterSliderDemo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataFilterSlider</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/samples/dataTableDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/dataTableDemo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/dataTableDemo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>dataTableDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/datascroller-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/datascroller-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/datascroller-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>datascroller-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/dragDropDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/dragDropDemo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/dragDropDemo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>dragDropDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/dropdownmenu-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/dropdownmenu-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>dropdownmenu-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/effect-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/effect-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/effect-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>effect-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>effect Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>effect</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/samples/gmap-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/gmap-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/gmap-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>gmap-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>gmap-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>gmap</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/inputNumberSliderDemo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/inputNumberSliderDemo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>inputNumberSliderDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/inputNumberSpinnerDemo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/inputNumberSpinnerDemo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>inputNumberSpinnerDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/jQuery-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/jQuery-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/jQuery-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>jQuery-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>jQuery-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/samples/local-value-demo/pom.xml
===================================================================
--- branches/3.1.x/samples/local-value-demo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/local-value-demo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,24 +2,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>local-value-demo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/modalpanel-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/modalpanel-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,24 +2,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>modalpanel-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>modalpanel-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>modal-panel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/samples/panel-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/panel-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/panel-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,24 +2,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>panel-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>panel-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/samples/panelbar-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/panelbar-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/panelbar-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>panelbar-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/panelmenu-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/panelmenu-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,24 +3,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>panelmenu-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>panelmenu-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panelmenu</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/samples/pom.xml
===================================================================
--- branches/3.1.x/samples/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,14 +3,14 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR2/samples/portal-echo/pom.xml
===================================================================
--- branches/3.1.x/samples/portal-echo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/portal-echo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -5,13 +5,13 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>portal-echo</artifactId>
<packaging>war</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<description>Ajax JSF sample portlet</description>
<build>
<defaultGoal>package</defaultGoal>
Modified: tags/3.1.2.CR2/samples/rich-message-demo/pom.xml
===================================================================
--- branches/3.1.x/samples/rich-message-demo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/rich-message-demo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,29 +3,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>rich-message-demo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>rich-message-demo</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-art-datatable/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/richfaces-art-datatable/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,19 +3,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>richfaces-art-datatable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/samples/richfaces-demo/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-demo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/richfaces-demo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>richfaces-demo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>richfaces-demo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -24,7 +24,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-ear-demo/ejb/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/richfaces-ear-demo/ejb/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -4,14 +4,14 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR2/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-ear-demo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/richfaces-ear-demo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -4,14 +4,14 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<build>
<pluginManagement>
<plugins>
Modified: tags/3.1.2.CR2/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -4,32 +4,32 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>ejb</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>ejb</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<type>ejb-client</type>
</dependency>
<dependency>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
<artifactId>webapp</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<type>war</type>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/3.1.x/samples/richfaces-ear-demo/webapp/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/richfaces-ear-demo/webapp/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -4,14 +4,14 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<type>ejb-client</type>
<scope>provided</scope>
<optional>true</optional>
Modified: tags/3.1.2.CR2/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/scrollableDataTableDemo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/scrollableDataTableDemo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -4,34 +4,34 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>scrollableDataTable Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/ear/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/seamEAR/ear/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -6,18 +6,18 @@
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>ear</artifactId>
<packaging>ear</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>ear assembly</name>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<dependencies>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR2/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/ejbs/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/seamEAR/ejbs/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -6,12 +6,12 @@
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>ejbs</artifactId>
<packaging>ejb</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>enterprise java beans</name>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<dependencies>
<dependency>
@@ -32,7 +32,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<exclusions>
<exclusion>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR2/samples/seamEAR/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/seamEAR/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -6,12 +6,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
-->
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>primary-source</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples.seamEAR.wars</groupId>
<artifactId>seamWebapp</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>ejbs</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<type>ejb</type>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/primary-source/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/seamEAR/primary-source/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.1.2.CR2/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/projects/logging/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/seamEAR/projects/logging/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
</project>
Modified: tags/3.1.2.CR2/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/projects/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/seamEAR/projects/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -1,14 +1,14 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.seamEAR</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<artifactId>projects</artifactId>
<packaging>pom</packaging>
<name>sub projects</name>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.1.2.CR2/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/wars/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/seamEAR/wars/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -4,11 +4,11 @@
<artifactId>wars</artifactId>
<packaging>pom</packaging>
<name>wars</name>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.1.2.CR2/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/3.1.x/samples/seamEAR/wars/seamWebapp/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/seamEAR/wars/seamWebapp/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -42,17 +42,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.1.2.CR2/samples/seamIntegration/pom.xml
===================================================================
--- branches/3.1.x/samples/seamIntegration/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/seamIntegration/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<build>
<finalName>seamIntegration</finalName>
<plugins>
Modified: tags/3.1.2.CR2/samples/separator-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/separator-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/separator-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>separator-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/simpleTogglePanel-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/simpleTogglePanel-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>simpleTogglePanel-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/skins/pom.xml
===================================================================
--- branches/3.1.x/samples/skins/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/skins/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.1.2.CR2/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/suggestionbox-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/suggestionbox-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>suggestionbox-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/tabPanelDemo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/tabPanelDemo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tabPanelDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/togglePanel-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/togglePanel-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>togglePanel-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>panel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/3.1.x/samples/tomahawkCompability/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/tomahawkCompability/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tomahawkCompability</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>tomahawkCompability Maven Webapp</name>
<properties>
Modified: tags/3.1.2.CR2/samples/toolBarDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/toolBarDemo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/toolBarDemo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,12 +2,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>toolBarDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/samples/tooltip-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/tooltip-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/tooltip-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,24 +3,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tooltip-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>tooltip-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tooltip</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/samples/tree-demo/pom.xml
===================================================================
--- branches/3.1.x/samples/tree-demo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/tree-demo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,29 +2,29 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>tree-demo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>tree-demo Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/samples/treeModelDemo/pom.xml
===================================================================
--- branches/3.1.x/samples/treeModelDemo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/treeModelDemo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,24 +3,24 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>treeModelDemo</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>Tree Model Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>treeModel</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/samples/useCases/pom.xml
===================================================================
--- branches/3.1.x/samples/useCases/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/useCases/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -5,12 +5,12 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>useCases</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>useCases Maven Webapp</name>
<build>
Modified: tags/3.1.2.CR2/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/3.1.x/samples/virtualEarth-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/samples/virtualEarth-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -4,19 +4,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>virtualEarth-sample</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<packaging>war</packaging>
<name>gmap-sample Maven Webapp</name>
<dependencies>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>virtualEarth</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.1.2.CR2/sandbox/api/pom.xml
===================================================================
--- branches/3.1.x/sandbox/api/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/api/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,18 +2,18 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<dependencies>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR2/sandbox/impl/pom.xml
===================================================================
--- branches/3.1.x/sandbox/impl/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/impl/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.1.2.CR2/sandbox/pom.xml
===================================================================
--- branches/3.1.x/sandbox/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.1.2.CR2/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/3.1.x/sandbox/samples/dialog-window-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/samples/dialog-window-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/3.1.x/sandbox/samples/panel2-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/samples/panel2-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -15,12 +15,12 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>panel2</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/sandbox/samples/pom.xml
===================================================================
--- branches/3.1.x/sandbox/samples/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/samples/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.1.2.CR2/sandbox/samples/rich-message-demo/pom.xml
===================================================================
--- branches/3.1.x/sandbox/samples/rich-message-demo/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/samples/rich-message-demo/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/3.1.x/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/ui/dialog-window/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/panel2/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/ui/panel2/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/sandbox/ui/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/ui/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.1.2.CR2/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/simpleTogglePanel2/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/ui/simpleTogglePanel2/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/sandbox/ui/state/pom.xml
===================================================================
--- branches/3.1.x/sandbox/ui/state/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/sandbox/ui/state/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/test-applications/facelets/pom.xml
===================================================================
--- branches/3.1.x/test-applications/facelets/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/test-applications/facelets/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.1.2.CR2/test-applications/jsp/pom.xml
===================================================================
--- branches/3.1.x/test-applications/jsp/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/test-applications/jsp/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.1.2.CR2/test-applications/pom.xml
===================================================================
--- branches/3.1.x/test-applications/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/test-applications/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<relativePath>../samples</relativePath>
</parent>
@@ -43,11 +43,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.1.2-SNAPSHOT</rfVersion>
+ <rfVersion>3.1.2.CR2</rfVersion>
</properties>
<modules>
Modified: tags/3.1.2.CR2/ui/assembly/pom.xml
===================================================================
--- branches/3.1.x/ui/assembly/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/assembly/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.1.2.CR2/ui/calendar/pom.xml
===================================================================
--- branches/3.1.x/ui/calendar/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/calendar/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/core/pom.xml
===================================================================
--- branches/3.1.x/ui/core/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/core/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR2/ui/create.bat
===================================================================
--- branches/3.1.x/ui/create.bat 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/create.bat 2007-10-16 00:38:15 UTC (rev 3389)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.1.2-SNAPSHOT -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.CR2 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/create.sh
===================================================================
--- branches/3.1.x/ui/create.sh 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/create.sh 2007-10-16 00:38:15 UTC (rev 3389)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component \
- -DarchetypeVersion=3.1.2-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=$1
+ -DarchetypeVersion=3.1.2.CR2 -DgroupId=org.richfaces.ui -DartifactId=$1
Modified: tags/3.1.2.CR2/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/3.1.x/ui/dataFilterSlider/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/dataFilterSlider/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/dataTable/pom.xml
===================================================================
--- branches/3.1.x/ui/dataTable/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/dataTable/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
-->
</dependencies>
Modified: tags/3.1.2.CR2/ui/datascroller/pom.xml
===================================================================
--- branches/3.1.x/ui/datascroller/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/datascroller/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/drag-drop/pom.xml
===================================================================
--- branches/3.1.x/ui/drag-drop/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/drag-drop/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
-->
</dependencies>
Modified: tags/3.1.2.CR2/ui/dropdown-menu/pom.xml
===================================================================
--- branches/3.1.x/ui/dropdown-menu/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/dropdown-menu/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/effect/pom.xml
===================================================================
--- branches/3.1.x/ui/effect/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/effect/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR2/ui/gmap/pom.xml
===================================================================
--- branches/3.1.x/ui/gmap/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/gmap/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR2/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/3.1.x/ui/inputnumber-slider/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/inputnumber-slider/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR2/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/3.1.x/ui/inputnumber-spinner/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/inputnumber-spinner/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.1.2.CR2/ui/insert/pom.xml
===================================================================
--- branches/3.1.x/ui/insert/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/insert/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR2/ui/jQuery/pom.xml
===================================================================
--- branches/3.1.x/ui/jQuery/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/jQuery/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR2/ui/menu-components/pom.xml
===================================================================
--- branches/3.1.x/ui/menu-components/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/menu-components/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/message/pom.xml
===================================================================
--- branches/3.1.x/ui/message/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/message/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/modal-panel/pom.xml
===================================================================
--- branches/3.1.x/ui/modal-panel/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/modal-panel/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR2/ui/paint2D/pom.xml
===================================================================
--- branches/3.1.x/ui/paint2D/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/paint2D/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR2/ui/panel/pom.xml
===================================================================
--- branches/3.1.x/ui/panel/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/panel/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/panelbar/pom.xml
===================================================================
--- branches/3.1.x/ui/panelbar/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/panelbar/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.1.2.CR2/ui/panelmenu/pom.xml
===================================================================
--- branches/3.1.x/ui/panelmenu/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/panelmenu/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/pom.xml
===================================================================
--- branches/3.1.x/ui/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.1.2.CR2/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/scrollableDataTable/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<name>Scrollable Data Table</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -71,12 +71,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<scope>test</scope>
</dependency>
</dependencies>
Modified: tags/3.1.2.CR2/ui/separator/pom.xml
===================================================================
--- branches/3.1.x/ui/separator/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/separator/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.1.2.CR2/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/3.1.x/ui/simpleTogglePanel/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/simpleTogglePanel/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/spacer/pom.xml
===================================================================
--- branches/3.1.x/ui/spacer/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/spacer/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/suggestionbox/pom.xml
===================================================================
--- branches/3.1.x/ui/suggestionbox/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/suggestionbox/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/tabPanel/pom.xml
===================================================================
--- branches/3.1.x/ui/tabPanel/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/tabPanel/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/togglePanel/pom.xml
===================================================================
--- branches/3.1.x/ui/togglePanel/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/togglePanel/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/toolBar/pom.xml
===================================================================
--- branches/3.1.x/ui/toolBar/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/toolBar/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/tooltip/pom.xml
===================================================================
--- branches/3.1.x/ui/tooltip/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/tooltip/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/tree/pom.xml
===================================================================
--- branches/3.1.x/ui/tree/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/tree/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/treeModel/pom.xml
===================================================================
--- branches/3.1.x/ui/treeModel/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/treeModel/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.1.2.CR2/ui/virtualEarth/pom.xml
===================================================================
--- branches/3.1.x/ui/virtualEarth/pom.xml 2007-10-16 00:23:45 UTC (rev 3388)
+++ tags/3.1.2.CR2/ui/virtualEarth/pom.xml 2007-10-16 00:38:15 UTC (rev 3389)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</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.2-SNAPSHOT</version>
+ <version>3.1.2.CR2</version>
<executions>
<execution>
<phase>generate-sources</phase>
17 years, 2 months
JBoss Rich Faces SVN: r3388 - branches/3.1.x.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-10-15 20:23:45 -0400 (Mon, 15 Oct 2007)
New Revision: 3388
Modified:
branches/3.1.x/markRelease.sh
Log:
remove console input
Modified: branches/3.1.x/markRelease.sh
===================================================================
--- branches/3.1.x/markRelease.sh 2007-10-16 00:21:38 UTC (rev 3387)
+++ branches/3.1.x/markRelease.sh 2007-10-16 00:23:45 UTC (rev 3388)
@@ -5,7 +5,9 @@
-DbranchName=$1 -DupdateBranchVersions=true \
-DupdateVersionsToSnapshot=false \
-DupdateWorkingCopyVersions=false \
- -DtagBase=https://svn.jboss.org/repos/richfaces/tags
+ -DtagBase=https://svn.jboss.org/repos/richfaces/tags <<-EOF
+$1
+EOF
find . -name pom.xml.branch -execdir mv pom.xml.branch pom.xml ';'
#mvn install
#cd ..
17 years, 2 months
JBoss Rich Faces SVN: r3387 - in trunk/framework: impl/src/main/java/org/ajax4jsf/context and 5 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-10-15 20:21:38 -0400 (Mon, 15 Oct 2007)
New Revision: 3387
Added:
trunk/framework/impl/src/main/java/org/ajax4jsf/context/ContextInitParameters.java
trunk/framework/impl/src/test/java/org/ajax4jsf/util/LRUMapTest.java
trunk/framework/test/src/test/java/org/ajax4jsf/application/AjaxStateHolderTest.java
trunk/framework/test/src/test/java/org/ajax4jsf/context/
trunk/framework/test/src/test/java/org/ajax4jsf/context/InitParametersTest.java
Modified:
trunk/framework/impl/src/main/java/org/ajax4jsf/application/AjaxStateHolder.java
trunk/framework/impl/src/main/java/org/ajax4jsf/application/AjaxStateManager.java
trunk/framework/impl/src/main/java/org/ajax4jsf/util/LRUMap.java
Log:
Create unit tests for AjaxStateManager classes.
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/application/AjaxStateHolder.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/application/AjaxStateHolder.java 2007-10-15 22:11:20 UTC (rev 3386)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/application/AjaxStateHolder.java 2007-10-16 00:21:38 UTC (rev 3387)
@@ -9,7 +9,10 @@
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
+import org.ajax4jsf.context.ContextInitParameters;
import org.ajax4jsf.util.LRUMap;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
/**
* @author asmirnov
@@ -17,6 +20,7 @@
*/
public class AjaxStateHolder implements Serializable {
+ private static final Log _log = LogFactory.getLog(AjaxStateHolder.class);
/**
*
*/
@@ -25,50 +29,97 @@
private final LRUMap views;
- private AjaxStateHolder(int capacity) {
+ private final int numberOfViews;
+
+ private AjaxStateHolder(int capacity, int numberOfViews) {
views = new LRUMap(capacity);
+ this.numberOfViews = numberOfViews;
}
public static AjaxStateHolder getInstance(FacesContext context) {
+ if (null == context) {
+ throw new NullPointerException(
+ "FacesContext parameter for get view states object is null");
+ }
ExternalContext externalContext = context.getExternalContext();
Object session = externalContext.getSession(true);
Map sessionMap = externalContext.getSessionMap();
+ if (_log.isDebugEnabled()) {
+ _log.debug("Request for a view states holder instance");
+ }
AjaxStateHolder instance = null;
synchronized (session) {
instance = (AjaxStateHolder) sessionMap.get(STATE_HOLDER);
if (null == instance) {
// Create and store in session new state holder.
- // TODO - make size parameter configurable
- instance = new AjaxStateHolder(
- AjaxStateManager.DEFAULT_NUMBER_OF_VIEWS);
+ int numbersOfViewsInSession = ContextInitParameters
+ .getNumbersOfViewsInSession(context);
+ int numbersOfLogicalViews = ContextInitParameters
+ .getNumbersOfLogicalViews(context);
+ if (_log.isDebugEnabled()) {
+ _log
+ .debug("No AjaxStateHolder instance in session, create new for hold "
+ + numbersOfViewsInSession
+ + " viewId and "
+ + numbersOfLogicalViews
+ + " logical views for each");
+ }
+ instance = new AjaxStateHolder(numbersOfViewsInSession,
+ numbersOfLogicalViews);
sessionMap.put(STATE_HOLDER, instance);
}
}
return instance;
}
- public synchronized Object getState(String viewId, Object sequence) {
+ public Object getState(String viewId, Object sequence) {
+ if (null == viewId) {
+ throw new NullPointerException(
+ "viewId parameter for get saved view state is null");
+ }
Object state = null;
- LRUMap viewVersions = (LRUMap) views.get(viewId);
- if (null != viewVersions) {
- if (null != sequence) {
- state = viewVersions.get(sequence);
+ synchronized (views) {
+ LRUMap viewVersions = (LRUMap) views.get(viewId);
+ if (null != viewVersions) {
+ if (null != sequence) {
+ state = viewVersions.get(sequence);
+ }
+ if (null == state) {
+ if (_log.isDebugEnabled()) {
+ _log.debug("No saved view state for sequence "+sequence+", use most recent");
+ }
+ state = viewVersions.getMostRecent();
+ }
+ } else if (_log.isDebugEnabled()) {
+ _log.debug("No saved view states for viewId "+viewId);
}
- if (null == state) {
- state = viewVersions.values().iterator().next();
- }
}
return state;
}
- public synchronized void saveState(String viewId, Object sequence,
- Object state) {
- LRUMap viewVersions = (LRUMap) views.get(viewId);
- if (null == viewVersions) {
- // TODO - make size parameter configurable
- viewVersions = new LRUMap(AjaxStateManager.DEFAULT_NUMBER_OF_VIEWS);
- views.put(viewId, viewVersions);
+ public void saveState(String viewId, Object sequence, Object state) {
+ if (null == viewId) {
+ throw new NullPointerException(
+ "viewId parameter for save view state is null");
}
- viewVersions.put(sequence, state);
+ if (null == sequence) {
+ throw new NullPointerException(
+ "sequence parameter for save view state is null");
+ }
+ if (null != state) {
+ if (_log.isDebugEnabled()) {
+ _log.debug("Save new viewState in session for viewId "+viewId+" and sequence "+sequence);
+ }
+ synchronized (views) {
+ LRUMap viewVersions = (LRUMap) views.get(viewId);
+ if (null == viewVersions) {
+ // TODO - make size parameter configurable
+ viewVersions = new LRUMap(this.numberOfViews);
+ views.put(viewId, viewVersions);
+ }
+ viewVersions.put(sequence, state);
+ }
+
+ }
}
}
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/application/AjaxStateManager.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/application/AjaxStateManager.java 2007-10-15 22:11:20 UTC (rev 3386)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/application/AjaxStateManager.java 2007-10-16 00:21:38 UTC (rev 3387)
@@ -59,7 +59,7 @@
private static final Class[] STATE_MANAGER_ARGUMENTS = new Class[] { StateManager.class };
- protected static final int DEFAULT_NUMBER_OF_VIEWS = 16;
+ public static final int DEFAULT_NUMBER_OF_VIEWS = 16;
private static final String VIEW_STATES_MAP = AjaxStateManager.class
.getName()
Added: trunk/framework/impl/src/main/java/org/ajax4jsf/context/ContextInitParameters.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/context/ContextInitParameters.java (rev 0)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/context/ContextInitParameters.java 2007-10-16 00:21:38 UTC (rev 3387)
@@ -0,0 +1,103 @@
+/**
+ *
+ */
+package org.ajax4jsf.context;
+
+import javax.faces.FacesException;
+import javax.faces.context.ExternalContext;
+import javax.faces.context.FacesContext;
+
+import org.ajax4jsf.application.AjaxStateManager;
+
+/**
+ * This class hold all methods for get application init parameters. Created for
+ * single access point to all parameters - simplest for a documentation.
+ *
+ * @author asmirnov
+ *
+ */
+public class ContextInitParameters {
+
+ /**
+ *
+ */
+ private ContextInitParameters() {
+ // this is a only static methods for a access to Web app Init
+ // parameters. Do not Instantiate !
+ }
+
+ public static final String[] NUMBER_OF_VIEWS_IN_SESSION = {"com.sun.faces.numberOfViewsInSession"};
+ public static final String[] NUMBER_OF_LOGICAL_VIEWS_IN_SESSION = {"com.sun.faces.numberOfLogicalViews"};
+
+ /**
+ * Get number of views for store in session by {@link AjaxStateManager}
+ * @param context - current faces context.
+ * @return
+ */
+ public static int getNumbersOfViewsInSession(FacesContext context) {
+ return getInteger(context, NUMBER_OF_VIEWS_IN_SESSION,
+ AjaxStateManager.DEFAULT_NUMBER_OF_VIEWS);
+ }
+
+ /**
+ * Get number of logical views for store in session for every viewId by {@link AjaxStateManager}
+ * @param context - current faces context.
+ * @return
+ */
+ public static int getNumbersOfLogicalViews(FacesContext context) {
+ return getInteger(context, NUMBER_OF_LOGICAL_VIEWS_IN_SESSION,
+ AjaxStateManager.DEFAULT_NUMBER_OF_VIEWS);
+ }
+
+ static int getInteger(FacesContext context, String[] paramNames,
+ int defaulValue) {
+ String initParameter = getInitParameter(context,paramNames);
+ if (null == initParameter) {
+ return defaulValue;
+ } else {
+ try {
+ return Integer.parseInt(initParameter);
+
+ } catch (NumberFormatException e) {
+ throw new FacesException("Context parameter " + paramNames
+ + " must have integer value");
+ }
+ }
+ }
+
+ static String getString(FacesContext context, String[] paramNames,
+ String defaulValue) {
+ String initParameter = getInitParameter(context,paramNames);
+ if (null == initParameter) {
+ return defaulValue;
+ } else {
+ return initParameter;
+ }
+ }
+
+ static boolean getBoolean(FacesContext context, String[] paramNames,
+ boolean defaulValue) {
+ String initParameter = getInitParameter(context,paramNames);
+ if (null == initParameter) {
+ return defaulValue;
+ } else if("true".equalsIgnoreCase(initParameter) || "yes".equalsIgnoreCase(initParameter)) {
+ return true;
+ } else if("false".equalsIgnoreCase(initParameter) || "no".equalsIgnoreCase(initParameter)) {
+ return false;
+ } else {
+ throw new FacesException("Illegal value ["+initParameter+"] for a init parameter +"+paramNames+", only logical values 'true' or 'false' is allowed");
+ }
+ }
+
+ static String getInitParameter(FacesContext context,
+ String[] paramNames) {
+ ExternalContext externalContext = context.getExternalContext();
+ String value = null;
+ for (int i = 0; i < paramNames.length && null == value; i++) {
+ value = externalContext.getInitParameter(paramNames[i]);
+ }
+ return value;
+ }
+
+
+}
Property changes on: trunk/framework/impl/src/main/java/org/ajax4jsf/context/ContextInitParameters.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Date Revision Author
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/util/LRUMap.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/util/LRUMap.java 2007-10-15 22:11:20 UTC (rev 3386)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/util/LRUMap.java 2007-10-16 00:21:38 UTC (rev 3387)
@@ -4,6 +4,7 @@
package org.ajax4jsf.util;
import java.io.Serializable;
+import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map.Entry;
@@ -20,13 +21,32 @@
private static final long serialVersionUID = -7232885382582796665L;
private int capacity;
+
+ /**
+ * @param capacity - maximal cache capacity.
+ */
public LRUMap(int capacity) {
super(capacity, 1.0f,true);
this.capacity = capacity;
}
- protected boolean removeEldestEntry(Entry arg0) {
+
+ protected boolean removeEldestEntry(Entry entry) {
// Remove last entry if size exceeded.
return size()>capacity;
}
+
+ /**
+ * Get most recent used element
+ * @return the most Recent value
+ */
+ public Object getMostRecent() {
+ Iterator iterator = values().iterator();
+ Object mostRecent=null;
+ while (iterator.hasNext()) {
+ mostRecent = iterator.next();
+
+ }
+ return mostRecent;
+ }
}
Added: trunk/framework/impl/src/test/java/org/ajax4jsf/util/LRUMapTest.java
===================================================================
--- trunk/framework/impl/src/test/java/org/ajax4jsf/util/LRUMapTest.java (rev 0)
+++ trunk/framework/impl/src/test/java/org/ajax4jsf/util/LRUMapTest.java 2007-10-16 00:21:38 UTC (rev 3387)
@@ -0,0 +1,97 @@
+/**
+ *
+ */
+package org.ajax4jsf.util;
+
+import java.util.Iterator;
+import java.util.Map.Entry;
+
+import junit.framework.TestCase;
+
+/**
+ * @author asmirnov
+ *
+ */
+public class LRUMapTest extends TestCase {
+
+ /**
+ * @param name
+ */
+ public LRUMapTest(String name) {
+ super(name);
+ }
+
+ /* (non-Javadoc)
+ * @see junit.framework.TestCase#setUp()
+ */
+ protected void setUp() throws Exception {
+ super.setUp();
+ }
+
+ /* (non-Javadoc)
+ * @see junit.framework.TestCase#tearDown()
+ */
+ protected void tearDown() throws Exception {
+ super.tearDown();
+ }
+
+ /**
+ * Test method for {@link org.ajax4jsf.util.LRUMap#LRUMap(int)}.
+ */
+ public void testLRUMap() {
+ LRUMap map = new LRUMap(5);
+ for (int i = 0; i < 10; i++) {
+ map.put(new Integer(i), "Val"+(new Integer(i)));
+ }
+ assertEquals(map.size(), 5);
+ }
+
+ /**
+ * Test method for {@link org.ajax4jsf.util.LRUMap#removeEldestEntry(java.util.Map.Entry)}.
+ */
+ public void testRemoveEldestEntryEntry() {
+
+ LRUMap map = new LRUMap(5){
+ protected boolean removeEldestEntry(Entry arg0) {
+ boolean eldestEntry = super.removeEldestEntry(arg0);
+ assertTrue(eldestEntry ^ size()<=5);
+ return false;
+ }
+ };
+ for (int i = 0; i < 10; i++) {
+ map.put(new Integer(i), "Val"+(new Integer(i)));
+ }
+ }
+
+ /**
+ * Test method for {@link java.util.HashMap#put(K, V)}.
+ */
+ public void testPut() {
+ LRUMap map = new LRUMap(5);
+ for (int i = 0; i < 10; i++) {
+ map.put(new Integer(i), "Val"+(new Integer(i)));
+ }
+ assertEquals(map.size(), 5);
+ Iterator iterator = map.values().iterator();
+ for (int i = 5; i < 10; i++) {
+ assertTrue(iterator.hasNext());
+ assertEquals("Val"+(new Integer(i)), iterator.next());
+ }
+ assertFalse(iterator.hasNext());
+ }
+
+ public void testGetMostRecent() throws Exception {
+ LRUMap map = new LRUMap(5);
+ for (int i = 0; i < 10; i++) {
+ String last = "Val"+(new Integer(i));
+ map.put(new Integer(i), last);
+ assertSame(last, map.getMostRecent());
+ }
+ assertEquals(map.size(), 5);
+ for (int i = 5; i < 10; i++) {
+ Object lastGet = map.get(new Integer(i));
+ assertSame(lastGet, map.getMostRecent());
+ }
+
+ }
+}
Property changes on: trunk/framework/impl/src/test/java/org/ajax4jsf/util/LRUMapTest.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Date Revision Author
Added: trunk/framework/test/src/test/java/org/ajax4jsf/application/AjaxStateHolderTest.java
===================================================================
--- trunk/framework/test/src/test/java/org/ajax4jsf/application/AjaxStateHolderTest.java (rev 0)
+++ trunk/framework/test/src/test/java/org/ajax4jsf/application/AjaxStateHolderTest.java 2007-10-16 00:21:38 UTC (rev 3387)
@@ -0,0 +1,68 @@
+/**
+ *
+ */
+package org.ajax4jsf.application;
+
+import org.ajax4jsf.tests.AbstractAjax4JsfTestCase;
+
+/**
+ * @author asmirnov
+ *
+ */
+public class AjaxStateHolderTest extends AbstractAjax4JsfTestCase {
+
+ /**
+ * @param name
+ */
+ public AjaxStateHolderTest(String name) {
+ super(name);
+ }
+
+ /* (non-Javadoc)
+ * @see org.ajax4jsf.tests.AbstractAjax4JsfTestCase#setUp()
+ */
+ public void setUp() throws Exception {
+ super.setUp();
+ }
+
+ /* (non-Javadoc)
+ * @see org.ajax4jsf.tests.AbstractAjax4JsfTestCase#tearDown()
+ */
+ public void tearDown() throws Exception {
+ super.tearDown();
+ }
+
+ /**
+ * Test method for {@link org.ajax4jsf.application.AjaxStateHolder#getInstance(javax.faces.context.FacesContext)}.
+ */
+ public void testGetInstance() {
+ AjaxStateHolder ajaxStateHolder = AjaxStateHolder.getInstance(facesContext);
+ assertNotNull(ajaxStateHolder);
+ AjaxStateHolder ajaxStateHolder2 = AjaxStateHolder.getInstance(facesContext);
+ assertSame(ajaxStateHolder, ajaxStateHolder2);
+ }
+
+ /**
+ * Test method for {@link org.ajax4jsf.application.AjaxStateHolder#getState(java.lang.String, java.lang.Object)}.
+ */
+ public void testGetState() {
+ Object state = new Object();
+ Object state2 = new Object();
+ AjaxStateHolder ajaxStateHolder = AjaxStateHolder.getInstance(facesContext);
+ assertNull(ajaxStateHolder.getState("foo", "_id1"));
+ ajaxStateHolder.saveState("foo", "_id1", state);
+ ajaxStateHolder.saveState("foo", "_id2", state2);
+ assertNull(ajaxStateHolder.getState("bar", "_id1"));
+ assertSame(state2,ajaxStateHolder.getState("foo",null));
+ assertSame(state,ajaxStateHolder.getState("foo","_id1"));
+ assertSame(state,ajaxStateHolder.getState("foo","_id3"));
+ Object state3 = new Object();
+ Object state4 = new Object();
+ ajaxStateHolder.saveState("bar", "_id1", state3);
+ ajaxStateHolder.saveState("bar", "_id2", state4);
+ assertSame(state3,ajaxStateHolder.getState("bar","_id1"));
+ assertSame(state,ajaxStateHolder.getState("foo","_id3"));
+ }
+
+
+}
Property changes on: trunk/framework/test/src/test/java/org/ajax4jsf/application/AjaxStateHolderTest.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Date Revision Author
Added: trunk/framework/test/src/test/java/org/ajax4jsf/context/InitParametersTest.java
===================================================================
--- trunk/framework/test/src/test/java/org/ajax4jsf/context/InitParametersTest.java (rev 0)
+++ trunk/framework/test/src/test/java/org/ajax4jsf/context/InitParametersTest.java 2007-10-16 00:21:38 UTC (rev 3387)
@@ -0,0 +1,132 @@
+/**
+ *
+ */
+package org.ajax4jsf.context;
+
+import java.util.Map;
+
+import javax.faces.FacesException;
+
+import org.ajax4jsf.application.AjaxStateManager;
+import org.ajax4jsf.tests.AbstractAjax4JsfTestCase;
+
+/**
+ * @author asmirnov
+ *
+ */
+public class InitParametersTest extends AbstractAjax4JsfTestCase {
+
+ private static final String STRING_PARAM = "init";
+ private static final int INT_PARAM = 367;
+ private static final String NO = "no";
+ private static final String TRUE = "true";
+ private static final String ORG_AJAX4JSF_STRING = "org.ajax4jsf.STRING";
+ private static final String ORG_AJAX4JSF_INT = "org.ajax4jsf.INT";
+ private static final String ORG_AJAX4JSF_FALSE = "org.ajax4jsf.FALSE";
+ private static final String ORG_AJAX4JSF_TRUE = "org.ajax4jsf.TRUE";
+
+ /**
+ * @param name
+ */
+ public InitParametersTest(String name) {
+ super(name);
+ }
+
+ /* (non-Javadoc)
+ * @see org.ajax4jsf.tests.AbstractAjax4JsfTestCase#setUp()
+ */
+ public void setUp() throws Exception {
+ super.setUp();
+ servletContext.addInitParameter(ORG_AJAX4JSF_TRUE, TRUE);
+ servletContext.addInitParameter(ORG_AJAX4JSF_FALSE, NO);
+ servletContext.addInitParameter(ORG_AJAX4JSF_INT, String.valueOf(INT_PARAM));
+ servletContext.addInitParameter(ORG_AJAX4JSF_STRING, STRING_PARAM);
+ }
+
+ /* (non-Javadoc)
+ * @see org.ajax4jsf.tests.AbstractAjax4JsfTestCase#tearDown()
+ */
+ public void tearDown() throws Exception {
+ super.tearDown();
+ }
+
+ /**
+ * Test method for {@link org.ajax4jsf.context.ContextInitParameters#getNumbersOfViewsInSession(javax.faces.context.FacesContext)}.
+ */
+ public void testGetNumbersOfViewsInSession() {
+ assertEquals(AjaxStateManager.DEFAULT_NUMBER_OF_VIEWS, ContextInitParameters.getNumbersOfViewsInSession(facesContext));
+ }
+
+ /**
+ * Test method for {@link org.ajax4jsf.context.ContextInitParameters#getNumbersOfLogicalViews(javax.faces.context.FacesContext)}.
+ */
+ public void testGetNumbersOfLogicalViews() {
+ assertEquals(AjaxStateManager.DEFAULT_NUMBER_OF_VIEWS, ContextInitParameters.getNumbersOfLogicalViews(facesContext));
+ }
+
+ /**
+ * Test method for {@link org.ajax4jsf.context.ContextInitParameters#getInteger(javax.faces.context.FacesContext, java.lang.String[], int)}.
+ */
+ public void testGetInteger() {
+ String[] params = {"foo.bar",ORG_AJAX4JSF_INT};
+ int value = ContextInitParameters.getInteger(facesContext, params, 12);
+ assertEquals(INT_PARAM, value);
+ String[] params2 = {"foo.bar"};
+ value = ContextInitParameters.getInteger(facesContext, params2, 12);
+ assertEquals(12, value);
+ String[] params3 = {"foo.bar",ORG_AJAX4JSF_STRING};
+ try {
+ value = ContextInitParameters.getInteger(facesContext, params3, 12);
+ } catch (FacesException e) {
+ return;
+ }
+ assertFalse("No exception on invalid parameter",true);
+ }
+
+ /**
+ * Test method for {@link org.ajax4jsf.context.ContextInitParameters#getString(javax.faces.context.FacesContext, java.lang.String[], java.lang.String)}.
+ */
+ public void testGetString() {
+ String[] params = {"foo.bar",ORG_AJAX4JSF_STRING};
+ String value = ContextInitParameters.getString(facesContext, params, "foo");
+ assertEquals(STRING_PARAM, value);
+ String[] params2 = {"foo.bar"};
+ value = ContextInitParameters.getString(facesContext, params2, "foo");
+ assertEquals("foo", value);
+ }
+
+ /**
+ * Test method for {@link org.ajax4jsf.context.ContextInitParameters#getBoolean(javax.faces.context.FacesContext, java.lang.String[], boolean)}.
+ */
+ public void testGetBoolean() {
+ String[] params = {"foo.bar",ORG_AJAX4JSF_TRUE};
+ boolean value = ContextInitParameters.getBoolean(facesContext, params, false);
+ assertTrue(value);
+ String[] params2 = {"foo.bar"};
+ value = ContextInitParameters.getBoolean(facesContext, params2, true);
+ assertTrue(value);
+ String[] params3 = {"foo.bar",ORG_AJAX4JSF_FALSE};
+ value = ContextInitParameters.getBoolean(facesContext, params3, true);
+ assertFalse(value);
+ String[] params4 = {"foo.bar",ORG_AJAX4JSF_STRING};
+ try {
+ value = ContextInitParameters.getBoolean(facesContext, params4, false);
+ } catch (FacesException e) {
+ return;
+ }
+ assertFalse("No exception on invalid parameter",true);
+ }
+
+ /**
+ * Test method for {@link org.ajax4jsf.context.ContextInitParameters#getInitParameter(javax.faces.context.FacesContext, java.lang.String[])}.
+ */
+ public void testGetInitParameter() {
+ String[] params = {"foo.bar",ORG_AJAX4JSF_STRING};
+ String value = ContextInitParameters.getInitParameter(facesContext, params);
+ assertEquals(STRING_PARAM, value);
+ String[] params2 = {"foo.bar"};
+ value = ContextInitParameters.getInitParameter(facesContext, params2);
+ assertNull(value);
+ }
+
+}
Property changes on: trunk/framework/test/src/test/java/org/ajax4jsf/context/InitParametersTest.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Date Revision Author
17 years, 2 months