JBoss Rich Faces SVN: r19944 - trunk/core/impl/src/main/java/org/richfaces/context.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-11-04 20:09:58 -0400 (Thu, 04 Nov 2010)
New Revision: 19944
Modified:
trunk/core/impl/src/main/java/org/richfaces/context/ComponentCallback.java
trunk/core/impl/src/main/java/org/richfaces/context/ExecuteComponentCallback.java
trunk/core/impl/src/main/java/org/richfaces/context/PartialViewContextImpl.java
trunk/core/impl/src/main/java/org/richfaces/context/RenderComponentCallback.java
Log:
https://jira.jboss.org/browse/RF-9342
https://jira.jboss.org/browse/RF-9428
Modified: trunk/core/impl/src/main/java/org/richfaces/context/ComponentCallback.java
===================================================================
--- trunk/core/impl/src/main/java/org/richfaces/context/ComponentCallback.java 2010-11-04 21:35:17 UTC (rev 19943)
+++ trunk/core/impl/src/main/java/org/richfaces/context/ComponentCallback.java 2010-11-05 00:09:58 UTC (rev 19944)
@@ -43,22 +43,17 @@
*/
abstract class ComponentCallback implements VisitCallback {
- private Collection<String> componentIds = new LinkedHashSet<String>();
+ protected final FacesContext facesContext;
private final String behaviorEvent;
- private final String defaultIdAttribute;
- ComponentCallback(String behaviorEvent, String defaultIdAttribute) {
+ ComponentCallback(FacesContext facesContext, String behaviorEvent) {
super();
+ this.facesContext = facesContext;
this.behaviorEvent = behaviorEvent;
- this.defaultIdAttribute = defaultIdAttribute;
}
- protected String getDefaultComponentId() {
- return null;
- }
-
private AjaxClientBehavior findBehavior(UIComponent target) {
if ((behaviorEvent == null) || !(target instanceof ClientBehaviorHolder)) {
return null;
@@ -82,32 +77,22 @@
return null;
}
- protected abstract Object getBehaviorAttributeValue(AjaxClientBehavior behavior);
-
- protected abstract Object getAttributeValue(UIComponent component);
-
- protected void doVisit(FacesContext context, UIComponent target, AjaxClientBehavior behavior) {
- Object attributeObject;
-
- if (behavior == null) {
- attributeObject = getAttributeValue(target);
- } else {
- attributeObject = getBehaviorAttributeValue(behavior);
- }
-
+ protected Collection<String> resolveComponents(Object value, UIComponent target, String defaultValue) {
//TODO - unit tests check for "@none" element
- Collection<String> attributeIds = CoreAjaxRendererUtils.asIdsSet(attributeObject);
- if (attributeIds == null) {
- attributeIds = new LinkedHashSet<String>();
+ Collection<String> ids = CoreAjaxRendererUtils.asIdsSet(value);
+ if (ids == null) {
+ ids = new LinkedHashSet<String>(1);
}
- if (attributeIds.isEmpty() && defaultIdAttribute != null) {
+ if (ids.isEmpty() && defaultValue != null) {
// asSet() returns copy of original set and we're free to modify it
- attributeIds.add(defaultIdAttribute);
+ ids.add(defaultValue);
}
- componentIds.addAll(CoreRendererUtils.INSTANCE.findComponentsFor(context, target, attributeIds));
+ return CoreRendererUtils.INSTANCE.findComponentsFor(facesContext, target, ids);
}
+
+ protected abstract void doVisit(UIComponent target, AjaxClientBehavior behavior);
public final VisitResult visit(VisitContext visitContext, UIComponent target) {
AjaxClientBehavior ajaxBehavior = null;
@@ -116,13 +101,9 @@
ajaxBehavior = findBehavior(target);
}
- doVisit(visitContext.getFacesContext(), target, ajaxBehavior);
+ doVisit(target, ajaxBehavior);
return VisitResult.COMPLETE;
}
- public Collection<String> getComponentIds() {
- return componentIds;
- }
-
}
Modified: trunk/core/impl/src/main/java/org/richfaces/context/ExecuteComponentCallback.java
===================================================================
--- trunk/core/impl/src/main/java/org/richfaces/context/ExecuteComponentCallback.java 2010-11-04 21:35:17 UTC (rev 19943)
+++ trunk/core/impl/src/main/java/org/richfaces/context/ExecuteComponentCallback.java 2010-11-05 00:09:58 UTC (rev 19944)
@@ -21,7 +21,11 @@
package org.richfaces.context;
+import java.util.Collection;
+import java.util.Collections;
+
import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
import org.ajax4jsf.component.AjaxClientBehavior;
import org.richfaces.component.AjaxContainer;
@@ -30,19 +34,30 @@
* @author akolonitsky
* @since Oct 13, 2009
*/
-class ExecuteComponentCallback extends ComponentCallback {
+class ExecuteComponentCallback extends RenderComponentCallback {
- ExecuteComponentCallback(String behaviorEvent) {
- super(behaviorEvent, AjaxContainer.META_CLIENT_ID);
+ private Collection<String> executeIds = null;
+
+ ExecuteComponentCallback(FacesContext facesContext, String behaviorEvent) {
+ super(facesContext, behaviorEvent);
}
@Override
- public Object getAttributeValue(UIComponent component) {
- return component.getAttributes().get("execute");
+ protected void doVisit(UIComponent target, AjaxClientBehavior behavior) {
+ super.doVisit(target, behavior);
+
+ Object value;
+ if (behavior != null) {
+ value = behavior.getExecute();
+ } else {
+ value = target.getAttributes().get("execute");
+ }
+
+ executeIds = resolveComponents(value, target, AjaxContainer.META_CLIENT_ID);
}
-
- @Override
- protected Object getBehaviorAttributeValue(AjaxClientBehavior behavior) {
- return behavior.getExecute();
+
+ public Collection<String> getExecuteIds() {
+ return (executeIds != null) ? executeIds : Collections.<String>emptySet();
}
+
}
Modified: trunk/core/impl/src/main/java/org/richfaces/context/PartialViewContextImpl.java
===================================================================
--- trunk/core/impl/src/main/java/org/richfaces/context/PartialViewContextImpl.java 2010-11-04 21:35:17 UTC (rev 19943)
+++ trunk/core/impl/src/main/java/org/richfaces/context/PartialViewContextImpl.java 2010-11-05 00:09:58 UTC (rev 19944)
@@ -71,8 +71,11 @@
private FacesContext facesContext;
private Collection<String> executeIds = null;
+
private Collection<String> renderIds = null;
+ private Collection<String> componentRenderIds = null;
+
private Boolean renderAll = null;
private String activatorComponentId = null;
@@ -84,6 +87,12 @@
private PartialViewContext wrappedViewContext;
+ private String onbeforedomupdate;
+
+ private String oncomplete;
+
+ private Object responseData;
+
public PartialViewContextImpl(PartialViewContext wrappedViewContext, FacesContext facesContext) {
super();
@@ -98,7 +107,7 @@
if (detectContextMode() == ContextMode.DIRECT) {
if (executeIds == null) {
executeIds = new LinkedHashSet<String>();
- setupExecuteIds(executeIds);
+ visitActivatorAtExecute();
}
return executeIds;
@@ -237,7 +246,7 @@
PartialViewContext pvc = facesContext.getPartialViewContext();
UIViewRoot viewRoot = facesContext.getViewRoot();
Collection<String> phaseIds = pvc.getRenderIds();
- setupRenderIds(phaseIds);
+ visitActivatorAtRender(phaseIds);
try {
PartialResponseWriter writer = pvc.getPartialResponseWriter();
@@ -285,14 +294,28 @@
}
}
- private void setupExecuteIds(Collection<String> ids) {
- ExecuteComponentCallback callback = new ExecuteComponentCallback(behaviorEvent);
+ private void setupExecuteCallbackData(ExecuteComponentCallback callback) {
+ executeIds.addAll(callback.getExecuteIds());
- if (visitActivatorComponent(activatorComponentId, callback)) {
- ids.addAll(callback.getComponentIds());
+ setupRenderCallbackData(callback);
+ }
+
+ private void setupRenderCallbackData(RenderComponentCallback callback) {
+ componentRenderIds = callback.getRenderIds();
+ onbeforedomupdate = callback.getOnbeforedomupdate();
+ oncomplete = callback.getOncomplete();
+ responseData = callback.getData();
+ limitRender = callback.isLimitRender();
+ }
+
+ private void visitActivatorAtExecute() {
+ ExecuteComponentCallback callback = new ExecuteComponentCallback(facesContext, behaviorEvent);
- if (!ids.contains(ALL)) {
- addImplicitExecuteIds(ids);
+ if (visitActivatorComponent(activatorComponentId, callback, EnumSet.of(VisitHint.SKIP_UNRENDERED))) {
+ setupExecuteCallbackData(callback);
+
+ if (!executeIds.contains(ALL)) {
+ addImplicitExecuteIds(executeIds);
}
} else {
//TODO - log or exception?
@@ -300,26 +323,30 @@
}
}
- private void setupRenderIds(Collection<String> ids) {
+ private void visitActivatorAtRender(Collection<String> ids) {
if (!isRenderAll()) {
- RenderComponentCallback callback = new RenderComponentCallback(behaviorEvent);
+ RenderComponentCallback callback = new RenderComponentCallback(facesContext, behaviorEvent);
- if (visitActivatorComponent(activatorComponentId, callback)) {
- ids.addAll(callback.getComponentIds());
- limitRender = callback.isLimitRender();
-
- if (!Boolean.TRUE.equals(renderAll) && !ids.contains(ALL)) {
- addImplicitRenderIds(ids, limitRender);
-
- //TODO - review
- AjaxContext ajaxContext = AjaxContext.getCurrentInstance();
- ajaxContext.setOnbeforedomupdate(callback.getOnbeforedomupdate());
- ajaxContext.appendOncomplete(callback.getOncomplete());
- ajaxContext.setResponseData(callback.getData());
- }
+ if (visitActivatorComponent(activatorComponentId, callback, EnumSet.noneOf(VisitHint.class))) {
+ setupRenderCallbackData(callback);
} else {
//TODO - the same as for "execute"
}
+
+ //take collection value stored during execute
+ if (componentRenderIds != null) {
+ ids.addAll(componentRenderIds);
+ }
+
+ if (!Boolean.TRUE.equals(renderAll) && !ids.contains(ALL)) {
+ addImplicitRenderIds(ids, limitRender);
+
+ //TODO - review
+ AjaxContext ajaxContext = AjaxContext.getCurrentInstance();
+ ajaxContext.setOnbeforedomupdate(onbeforedomupdate);
+ ajaxContext.appendOncomplete(oncomplete);
+ ajaxContext.setResponseData(responseData);
+ }
}
}
@@ -407,10 +434,9 @@
}
}
- private boolean visitActivatorComponent(String componentActivatorId, VisitCallback visitCallback) {
+ private boolean visitActivatorComponent(String componentActivatorId, VisitCallback visitCallback, Set<VisitHint> visitHints) {
Set<String> idsToVisit = Collections.singleton(componentActivatorId);
- Set<VisitHint> visitHints = EnumSet.of(VisitHint.SKIP_UNRENDERED);
VisitContext visitContext = new ExecuteExtendedVisitContext(facesContext, idsToVisit, visitHints);
boolean visitResult = facesContext.getViewRoot().visitTree(visitContext, visitCallback);
Modified: trunk/core/impl/src/main/java/org/richfaces/context/RenderComponentCallback.java
===================================================================
--- trunk/core/impl/src/main/java/org/richfaces/context/RenderComponentCallback.java 2010-11-04 21:35:17 UTC (rev 19943)
+++ trunk/core/impl/src/main/java/org/richfaces/context/RenderComponentCallback.java 2010-11-05 00:09:58 UTC (rev 19944)
@@ -21,6 +21,9 @@
package org.richfaces.context;
+import java.util.Collection;
+import java.util.Collections;
+
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
@@ -33,6 +36,8 @@
*/
class RenderComponentCallback extends ComponentCallback {
+ private Collection<String> renderIds = null;
+
private boolean limitRender = false;
private String oncomplete;
@@ -41,8 +46,8 @@
private Object data;
- RenderComponentCallback(String behaviorEvent) {
- super(behaviorEvent, null);
+ RenderComponentCallback(FacesContext facesContext, String behaviorEvent) {
+ super(facesContext, behaviorEvent);
}
public boolean isLimitRender() {
@@ -61,31 +66,28 @@
return data;
}
+ public Collection<String> getRenderIds() {
+ return (renderIds != null) ? renderIds : Collections.<String>emptySet();
+ }
+
@Override
- protected void doVisit(FacesContext context, UIComponent target, AjaxClientBehavior behavior) {
- super.doVisit(context, target, behavior);
-
- limitRender = CoreAjaxRendererUtils.isAjaxLimitRender(target);
- onbeforedomupdate = CoreAjaxRendererUtils.getAjaxOnBeforeDomUpdate(target);
- oncomplete = CoreAjaxRendererUtils.getAjaxOncomplete(target);
- data = CoreAjaxRendererUtils.getAjaxData(target);
-
+ protected void doVisit(UIComponent target, AjaxClientBehavior behavior) {
+ Object renderValue;
if (behavior != null) {
+ renderValue = behavior.getRender();
limitRender = behavior.isLimitRender();
onbeforedomupdate = behavior.getOnbeforedomupdate();
oncomplete = behavior.getOncomplete();
data = behavior.getData();
+ } else {
+ renderValue = target.getAttributes().get("render");
+ limitRender = CoreAjaxRendererUtils.isAjaxLimitRender(target);
+ onbeforedomupdate = CoreAjaxRendererUtils.getAjaxOnBeforeDomUpdate(target);
+ oncomplete = CoreAjaxRendererUtils.getAjaxOncomplete(target);
+ data = CoreAjaxRendererUtils.getAjaxData(target);
}
+
+ renderIds = resolveComponents(renderValue, target, null);
}
- @Override
- public Object getAttributeValue(UIComponent component) {
- return component.getAttributes().get("render");
- }
-
- @Override
- protected Object getBehaviorAttributeValue(AjaxClientBehavior behavior) {
- return behavior.getRender();
- }
-
}
14 years, 2 months
JBoss Rich Faces SVN: r19943 - in branches/enterprise/3.3.X: cdk and 215 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-11-04 17:35:17 -0400 (Thu, 04 Nov 2010)
New Revision: 19943
Modified:
branches/enterprise/3.3.X/cdk/generator/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml
branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml
branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml
branches/enterprise/3.3.X/cdk/pom.xml
branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml
branches/enterprise/3.3.X/docs/cdkguide/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/docs/common-resources/pom.xml
branches/enterprise/3.3.X/docs/faq/en/pom.xml
branches/enterprise/3.3.X/docs/faq/pom.xml
branches/enterprise/3.3.X/docs/highlight/pom.xml
branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml
branches/enterprise/3.3.X/docs/migrationguide/pom.xml
branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml
branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml
branches/enterprise/3.3.X/docs/pom.xml
branches/enterprise/3.3.X/docs/userguide/en/pom.xml
branches/enterprise/3.3.X/docs/userguide/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml
branches/enterprise/3.3.X/extensions/gwt/pom.xml
branches/enterprise/3.3.X/extensions/pom.xml
branches/enterprise/3.3.X/extensions/seam/pom.xml
branches/enterprise/3.3.X/extensions/trinidad/pom.xml
branches/enterprise/3.3.X/framework/api/pom.xml
branches/enterprise/3.3.X/framework/impl/pom.xml
branches/enterprise/3.3.X/framework/jsf-test/pom.xml
branches/enterprise/3.3.X/framework/pom.xml
branches/enterprise/3.3.X/framework/test/pom.xml
branches/enterprise/3.3.X/pom.xml
branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml
branches/enterprise/3.3.X/samples/calendar-sample/pom.xml
branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml
branches/enterprise/3.3.X/samples/columnsDemo/pom.xml
branches/enterprise/3.3.X/samples/combobox-sample/pom.xml
branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml
branches/enterprise/3.3.X/samples/createProject.sh
branches/enterprise/3.3.X/samples/darkX/pom.xml
branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml
branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml
branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml
branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml
branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml
branches/enterprise/3.3.X/samples/editor-sample/pom.xml
branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml
branches/enterprise/3.3.X/samples/effect-sample/pom.xml
branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml
branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml
branches/enterprise/3.3.X/samples/functions-demo/pom.xml
branches/enterprise/3.3.X/samples/glassX/pom.xml
branches/enterprise/3.3.X/samples/gmap-sample/pom.xml
branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml
branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml
branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml
branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml
branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml
branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml
branches/enterprise/3.3.X/samples/jira-data/pom.xml
branches/enterprise/3.3.X/samples/laguna/pom.xml
branches/enterprise/3.3.X/samples/layout-sample/pom.xml
branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml
branches/enterprise/3.3.X/samples/local-value-demo/pom.xml
branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml
branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml
branches/enterprise/3.3.X/samples/panel-sample/pom.xml
branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml
branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml
branches/enterprise/3.3.X/samples/pickList-sample/pom.xml
branches/enterprise/3.3.X/samples/pom.xml
branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml
branches/enterprise/3.3.X/samples/queue-sample/pom.xml
branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml
branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml
branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml
branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml
branches/enterprise/3.3.X/samples/seamIntegration/pom.xml
branches/enterprise/3.3.X/samples/separator-sample/pom.xml
branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml
branches/enterprise/3.3.X/samples/skins/pom.xml
branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml
branches/enterprise/3.3.X/samples/state-sample/pom.xml
branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml
branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml
branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml
branches/enterprise/3.3.X/samples/themes/pom.xml
branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml
branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml
branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml
branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml
branches/enterprise/3.3.X/samples/tree-demo/pom.xml
branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml
branches/enterprise/3.3.X/samples/violetRays/pom.xml
branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml
branches/enterprise/3.3.X/sandbox/api/pom.xml
branches/enterprise/3.3.X/sandbox/cdk/pom.xml
branches/enterprise/3.3.X/sandbox/impl/pom.xml
branches/enterprise/3.3.X/sandbox/pom.xml
branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml
branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/pom.xml
branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml
branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml
branches/enterprise/3.3.X/sandbox/ui/create.bat
branches/enterprise/3.3.X/sandbox/ui/create.sh
branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml
branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml
branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml
branches/enterprise/3.3.X/sandbox/ui/pom.xml
branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml
branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml
branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml
branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml
branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml
branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml
branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml
branches/enterprise/3.3.X/test-applications/ajaxTest/src/main/java/org/richfaces/Bean.java
branches/enterprise/3.3.X/test-applications/ajaxTest/src/main/webapp/repeater.xhtml
branches/enterprise/3.3.X/test-applications/automator/pom.xml
branches/enterprise/3.3.X/test-applications/facelets/pom.xml
branches/enterprise/3.3.X/test-applications/jsp/pom.xml
branches/enterprise/3.3.X/test-applications/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml
branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml
branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml
branches/enterprise/3.3.X/test-applications/seamApp/pom.xml
branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml
branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml
branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml
branches/enterprise/3.3.X/ui/assembly/pom.xml
branches/enterprise/3.3.X/ui/beanValidator/pom.xml
branches/enterprise/3.3.X/ui/calendar/pom.xml
branches/enterprise/3.3.X/ui/colorPicker/pom.xml
branches/enterprise/3.3.X/ui/columns/pom.xml
branches/enterprise/3.3.X/ui/combobox/pom.xml
branches/enterprise/3.3.X/ui/componentControl/pom.xml
branches/enterprise/3.3.X/ui/contextMenu/pom.xml
branches/enterprise/3.3.X/ui/core/pom.xml
branches/enterprise/3.3.X/ui/create.bat
branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml
branches/enterprise/3.3.X/ui/dataTable/pom.xml
branches/enterprise/3.3.X/ui/datascroller/pom.xml
branches/enterprise/3.3.X/ui/drag-drop/pom.xml
branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml
branches/enterprise/3.3.X/ui/editor/pom.xml
branches/enterprise/3.3.X/ui/effect/pom.xml
branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml
branches/enterprise/3.3.X/ui/fileUpload/pom.xml
branches/enterprise/3.3.X/ui/functions/pom.xml
branches/enterprise/3.3.X/ui/gmap/pom.xml
branches/enterprise/3.3.X/ui/hotKey/pom.xml
branches/enterprise/3.3.X/ui/inplaceInput/pom.xml
branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml
branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml
branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml
branches/enterprise/3.3.X/ui/insert/pom.xml
branches/enterprise/3.3.X/ui/jQuery/pom.xml
branches/enterprise/3.3.X/ui/layout/pom.xml
branches/enterprise/3.3.X/ui/listShuttle/pom.xml
branches/enterprise/3.3.X/ui/menu-components/pom.xml
branches/enterprise/3.3.X/ui/message/pom.xml
branches/enterprise/3.3.X/ui/modal-panel/pom.xml
branches/enterprise/3.3.X/ui/orderingList/pom.xml
branches/enterprise/3.3.X/ui/paint2D/pom.xml
branches/enterprise/3.3.X/ui/panel/pom.xml
branches/enterprise/3.3.X/ui/panelbar/pom.xml
branches/enterprise/3.3.X/ui/panelmenu/pom.xml
branches/enterprise/3.3.X/ui/pickList/pom.xml
branches/enterprise/3.3.X/ui/pom.xml
branches/enterprise/3.3.X/ui/progressBAR/pom.xml
branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml
branches/enterprise/3.3.X/ui/separator/pom.xml
branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml
branches/enterprise/3.3.X/ui/spacer/pom.xml
branches/enterprise/3.3.X/ui/state/pom.xml
branches/enterprise/3.3.X/ui/suggestionbox/pom.xml
branches/enterprise/3.3.X/ui/tabPanel/pom.xml
branches/enterprise/3.3.X/ui/togglePanel/pom.xml
branches/enterprise/3.3.X/ui/toolBar/pom.xml
branches/enterprise/3.3.X/ui/tooltip/pom.xml
branches/enterprise/3.3.X/ui/tree/pom.xml
branches/enterprise/3.3.X/ui/treeModel/pom.xml
branches/enterprise/3.3.X/ui/treeTable/pom.xml
branches/enterprise/3.3.X/ui/virtualEarth/pom.xml
Log:
increase version to 3.3.1.SP3-SNAPSHOT
Modified: branches/enterprise/3.3.X/cdk/generator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/generator/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/generator/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.1.SP1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.SP3-SNAPSHOT</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<!-- Required for JSF -->
Modified: branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Modified: branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>maven-resource-dependency-plugin</name>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/cdk/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/cdkguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/cdkguide/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/common-resources/en/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Documentation common resources (en)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<extensions>
<extension>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/common-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/common-resources/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: branches/enterprise/3.3.X/docs/faq/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/en/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/faq/en/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/faq/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/faq/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/highlight/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/highlight/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/highlight/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/migrationguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/migrationguide/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: branches/enterprise/3.3.X/docs/userguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/userguide/en/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/userguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/docs/userguide/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/examples/photoalbum/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<distributionManagement>
<downloadUrl>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/extensions/gwt/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/gwt/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/extensions/gwt/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: branches/enterprise/3.3.X/extensions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/extensions/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: branches/enterprise/3.3.X/extensions/seam/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/seam/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/extensions/seam/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: branches/enterprise/3.3.X/extensions/trinidad/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/trinidad/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/extensions/trinidad/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: branches/enterprise/3.3.X/framework/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/api/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/framework/api/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: branches/enterprise/3.3.X/framework/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/impl/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/framework/impl/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<resources>
<resource>
@@ -161,7 +161,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/framework/jsf-test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/jsf-test/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/framework/jsf-test/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/framework/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/framework/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: branches/enterprise/3.3.X/framework/test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/test/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/framework/test/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/pom.xml
===================================================================
--- branches/enterprise/3.3.X/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<dependencies />
<build>
Modified: branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -52,7 +52,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version> </dependency>
+ <version>3.3.1.SP3-SNAPSHOT</version> </dependency>
-->
<dependency>
<groupId>org.hibernate</groupId>
@@ -75,7 +75,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: branches/enterprise/3.3.X/samples/calendar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/calendar-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/calendar-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -35,7 +35,7 @@
<groupId>org.richfaces.framework
</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples
@@ -46,17 +46,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/samples/columnsDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/columnsDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/columnsDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/combobox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/combobox-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/combobox-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/createProject.sh
===================================================================
--- branches/enterprise/3.3.X/samples/createProject.sh 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/createProject.sh 2010-11-04 21:35:17 UTC (rev 19943)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -Dversion=3.3.1.SP1-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.1.SP3-SNAPSHOT -Dversion=3.3.1.SP3-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: branches/enterprise/3.3.X/samples/darkX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/darkX/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/darkX/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/editor-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editor-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/editor-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/samples/effect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/effect-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/effect-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/functions-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/functions-demo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/functions-demo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/glassX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/glassX/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/glassX/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/samples/gmap-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/gmap-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/gmap-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/jira-data/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jira-data/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/jira-data/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/laguna/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/laguna/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/laguna/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: branches/enterprise/3.3.X/samples/layout-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/layout-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/layout-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,22 +34,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/local-value-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/local-value-demo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/local-value-demo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/panel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panel-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/panel-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/pickList-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pickList-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/pickList-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/queue-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/queue-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/queue-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -207,22 +207,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -312,12 +312,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/seamEAR/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
</project>
Modified: branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modules>
<module>logging</module>
Modified: branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamIntegration/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamIntegration/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/seamIntegration/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/separator-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/separator-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/separator-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/skins/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/skins/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/skins/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency-->
<dependency>
Modified: branches/enterprise/3.3.X/samples/state-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/state-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/state-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/themes/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/themes/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/themes/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tree-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tree-demo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/tree-demo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/violetRays/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/violetRays/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/violetRays/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/sandbox/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/api/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/api/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/cdk/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/cdk/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/enterprise/3.3.X/sandbox/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/impl/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/impl/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<configuration>
<scriptFilePath>scripts/custom-dependencies.js</scriptFilePath>
<styleFilePath>css/custom-dependencies.xcss</styleFilePath>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/samples/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
Modified: branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/create.bat 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/create.bat 2010-11-04 21:35:17 UTC (rev 19943)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/create.sh
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/create.sh 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/create.sh 2010-11-04 21:35:17 UTC (rev 19943)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -65,10 +65,15 @@
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
- <artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <artifactId>richfaces-ui</artifactId>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.3.Final</version>
+ </dependency>
+ <dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>1.0</version>
Modified: branches/enterprise/3.3.X/test-applications/ajaxTest/src/main/java/org/richfaces/Bean.java
===================================================================
--- branches/enterprise/3.3.X/test-applications/ajaxTest/src/main/java/org/richfaces/Bean.java 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/ajaxTest/src/main/java/org/richfaces/Bean.java 2010-11-04 21:35:17 UTC (rev 19943)
@@ -1,16 +1,49 @@
package org.richfaces;
-
import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
public class Bean implements Serializable {
- private String text;
-
- public Bean() {}
-
- public String getText() { return text;}
-
- public void setText(String name) { this.text = name; }
-
+ private String text;
+ private CombinedDataModel tasks;
+ private List<TaskImpl> taskList;
+
+ public Bean() {
+ }
+
+ public String getText() {
+ return text;
+ }
+
+ public void setText(String name) {
+ this.text = name;
+ }
+
+ public CombinedDataModel getTasks() {
+ if (taskList == null) {
+ taskList = new ArrayList<TaskImpl>(1000);
+ for(int i=0;i<1000;i++){
+ TaskImpl task = new TaskImpl();
+ task.setId("ID"+i);
+ task.setAssignedTo("nobody");
+ task.setExpanded(i%3==0);
+ task.setName("Test task N "+i);
+ ArrayList<SubTask> subtasks = new ArrayList<SubTask>(10);
+ for(int j=0;j<10;j++){
+ SubTask subTask = new SubTask();
+ subTask.setId("SUD"+i+":"+j);
+ subTask.setAssignedTo("guest");
+ subTask.setName("Test subTask N "+j);
+ subtasks.add(subTask);
+ }
+ task.setSubtasks(subtasks);
+ taskList.add(task);
+ }
+ }
+
+ return new CombinedDataModel(taskList);
+ }
+
}
Modified: branches/enterprise/3.3.X/test-applications/ajaxTest/src/main/webapp/repeater.xhtml
===================================================================
--- branches/enterprise/3.3.X/test-applications/ajaxTest/src/main/webapp/repeater.xhtml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/ajaxTest/src/main/webapp/repeater.xhtml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,14 +2,40 @@
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:f="http://java.sun.com/jsf/core"
- xmlns:h="http://java.sun.com/jsf/html">
- <head><title>Simple repeater in seam</title></head>
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:rich="http://richfaces.org/rich">
+ <head><title>Scrollable table with subitems.</title></head>
<body>
<h:form id="ajaxForm">
<h:inputText id="text" value="#{bean.text}">
+ <a4j:queue name="tasksScroller" requestDelay="200" ignoreDupResponce="true"/>
<a4j:support reRender="out" event="onkeyup"></a4j:support>
</h:inputText>
<h:outputText id="out" value="#{bean.text}"></h:outputText>
+ <rich:scrollableDataTable rowKeyVar="rkv" frozenColCount="1" height="400px"
+ width="700px" id="taskList" rows="40" columnClasses="col"
+ value="#{bean.tasks}" var="task" eventsQueue="tasksScroller" >
+
+ <rich:column id="control">
+ <f:facet name="header"><h:outputText styleClass="headerText" value="Expand/Collapse" /></f:facet>
+ <a4j:commandLink value="Expand" action="#{task.expand}" rendered="#{task.showExpand}" reRender="taskList"/>
+ <a4j:commandLink value="Collapse" action="#{task.collapse}" rendered="#{task.showCollapse}" reRender="taskList"/>
+ <h:outputText value="-" rendered="#{task.subtask}" />
+ <h:selectBooleanCheckbox value="#{task.checked}" />
+ </rich:column>
+ <rich:column id="id">
+ <f:facet name="header"><h:outputText styleClass="headerText" value="Task ID" /></f:facet>
+ <h:outputText value="#{task.id}" />
+ </rich:column>
+ <rich:column id="assignedTo">
+ <f:facet name="header"><h:outputText styleClass="headerText" value="Assigned to" /></f:facet>
+ <h:outputText value="#{task.assignedTo}" />
+ </rich:column>
+ <rich:column width="200px" id="name">
+ <f:facet name="header"><h:outputText styleClass="headerText" value="Task name" /></f:facet>
+ <h:outputText value="#{task.name}" />
+ </rich:column>
+ </rich:scrollableDataTable>
</h:form>
</body>
</html>
Modified: branches/enterprise/3.3.X/test-applications/automator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/automator/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/automator/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/test-applications/facelets/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/facelets/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/facelets/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/test-applications/jsp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/jsp/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/jsp/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/test-applications/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<relativePath>../samples</relativePath>
</parent>
@@ -20,11 +20,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.1.SP1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.SP3-SNAPSHOT</rfVersion>
</properties>
<modules>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Regresion Area:Seam Application</name>
<repositories>
@@ -22,7 +22,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.1.SP1-SNAPSHOT</richversion>
+ <richversion>3.3.1.SP3-SNAPSHOT</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -8,7 +8,7 @@
<name>richfaces-docs</name>
<properties>
<projectName>richfaces-docs</projectName>
- <richfacesVersion>3.3.1.SP1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.SP3-SNAPSHOT</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<droolsVersion>4.0.0</droolsVersion>
Modified: branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -47,7 +47,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
Modified: branches/enterprise/3.3.X/test-applications/seamApp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seamApp/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/seamApp/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.1.SP1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.SP3-SNAPSHOT</rfVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.2.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.2.GA/jboss-4.2.2.GA/server/default/</jbossDeployDir>
Modified: branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -197,7 +197,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: branches/enterprise/3.3.X/ui/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/assembly/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/assembly/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: branches/enterprise/3.3.X/ui/beanValidator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/beanValidator/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/beanValidator/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -3,19 +3,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: branches/enterprise/3.3.X/ui/calendar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/calendar/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/calendar/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/colorPicker/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/colorPicker/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/colorPicker/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -12,7 +12,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/columns/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/columns/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/columns/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/enterprise/3.3.X/ui/combobox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/combobox/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/combobox/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/ui/componentControl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/componentControl/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/componentControl/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/contextMenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/contextMenu/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/contextMenu/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/core/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/core/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/core/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/ui/create.bat 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/create.bat 2010-11-04 21:35:17 UTC (rev 19943)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-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.3.1.SP3-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/dataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataTable/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/dataTable/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
-->
</dependencies>
Modified: branches/enterprise/3.3.X/ui/datascroller/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/datascroller/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/datascroller/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/drag-drop/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/drag-drop/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/drag-drop/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
-->
</dependencies>
Modified: branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/editor/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/editor/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/editor/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -62,7 +62,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: branches/enterprise/3.3.X/ui/effect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/effect/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/effect/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,45 +64,45 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/fileUpload/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/fileUpload/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/fileUpload/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/functions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/functions/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/functions/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/gmap/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/gmap/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/gmap/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/hotKey/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/hotKey/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/hotKey/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/inplaceInput/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceInput/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/inplaceInput/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/enterprise/3.3.X/ui/insert/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/insert/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/insert/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/jQuery/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/jQuery/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/jQuery/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/layout/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/layout/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/layout/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/ui/listShuttle/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/listShuttle/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/listShuttle/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/enterprise/3.3.X/ui/menu-components/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/menu-components/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/menu-components/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/message/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/message/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/message/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/modal-panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/modal-panel/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/modal-panel/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/orderingList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/orderingList/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/orderingList/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/paint2D/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/paint2D/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/paint2D/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panel/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/panel/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/panelbar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelbar/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/panelbar/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/panelmenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelmenu/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/panelmenu/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/pickList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pickList/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/pickList/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -138,12 +138,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: branches/enterprise/3.3.X/ui/progressBAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/progressBAR/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/progressBAR/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/separator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/separator/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/separator/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/spacer/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/spacer/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/spacer/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/state/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/state/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/state/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/suggestionbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/suggestionbox/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/suggestionbox/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/tabPanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tabPanel/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/tabPanel/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/togglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/togglePanel/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/togglePanel/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/toolBar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/toolBar/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/toolBar/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/tooltip/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tooltip/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/tooltip/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/tree/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tree/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/tree/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/treeModel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeModel/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/treeModel/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeTable/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/treeTable/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/virtualEarth/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/virtualEarth/pom.xml 2010-11-04 18:52:44 UTC (rev 19942)
+++ branches/enterprise/3.3.X/ui/virtualEarth/pom.xml 2010-11-04 21:35:17 UTC (rev 19943)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</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.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
14 years, 2 months
JBoss Rich Faces SVN: r19942 - trunk/cdk/generator/src/main/resources/META-INF/schema.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-11-04 14:52:44 -0400 (Thu, 04 Nov 2010)
New Revision: 19942
Modified:
trunk/cdk/generator/src/main/resources/META-INF/schema/cdk-template.xsd
Log:
https://jira.jboss.org/browse/RF-9546
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/cdk-template.xsd
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/cdk-template.xsd 2010-11-04 18:32:30 UTC (rev 19941)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/cdk-template.xsd 2010-11-04 18:52:44 UTC (rev 19942)
@@ -584,28 +584,116 @@
</xs:element>
<xs:element name="import">
+ <xs:annotation>
+ <xs:documentation>
+ <p>Part of <composite:interface> section to specify additional Java imports.</p>
+ <p>Examples:
+ <ul>
+ <li><code><![CDATA[<cdk:import package="javax.faces.component" names="UIInput UIOutput" />]]></code></li>
+ <li><code><![CDATA[<cdk:import package="java.util" names="*" />]]></code></li>
+ <li><code><![CDATA[<cdk:import package="java.lang" names="String.valueOf" static="true" />]]></code></li>
+ </ul>
+ </p>
+ </xs:documentation>
+ </xs:annotation>
+
<xs:complexType>
- <xs:attribute type="xs:string" use="required" name="package" />
- <xs:attribute type="xs:NMTOKENS" name="names" />
- <xs:attribute type="xs:boolean" name="static" />
+ <xs:attribute type="xs:string" use="required" name="package">
+ <xs:annotation>
+ <xs:documentation><p>Base name of the package to be imported.</p></xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
+ <xs:attribute type="xs:NMTOKENS" name="names">
+ <xs:annotation>
+ <xs:documentation><p>Space-separated list of names to be imported.</p></xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
+ <xs:attribute type="xs:boolean" name="static">
+ <xs:annotation>
+ <xs:documentation><p>Defines whether the import is static.</p></xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="scriptObject">
+ <xs:annotation>
+ <xs:documentation>
+ <p>Handy tag for JavaScript hash objects creation. NB: default and empty values are not added to the result hash.</p>
+ <p>Example usage:
+ <code><pre><![CDATA[<cdk:scriptObject name="myHash">
+ <cdk:scriptOption name="showSomething" value="#{isShowSomething(component)}" />
+ ...
+ </cdk:scriptObject>
+
+ <script ...>
+ new Component(#{toScriptArgs(clientId, myHash)});]]></pre></code>
+ </p>
+ </xs:documentation>
+ </xs:annotation>
<xs:complexType>
- <xs:attribute type="xs:string" name="name" use="required" />
- <xs:attribute type="c:elStrictExpression" name="base" />
+ <xs:attribute type="xs:string" name="name" use="required">
+ <xs:annotation>
+ <xs:documentation><p>Name of Java variable under which <code>Map<String, String></code>
+ representing the hash is available.</p></xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
+ <xs:attribute type="c:elStrictExpression" name="base">
+ <xs:annotation>
+ <xs:documentation><p>Optional base hash (<code>Map<String, String></code>) to be extended from.</p></xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="scriptOption">
+ <xs:annotation>
+ <xs:documentation>
+ <p>Represents single object in the JavaScript hash. Should be enclosed into <code><cdk:scriptObject></code> tag.</p>
+ </xs:documentation>
+ </xs:annotation>
<xs:complexType>
- <xs:attribute type="xs:NMTOKENS" name="attributes" />
- <xs:attribute type="xs:NMTOKENS" name="variables" />
- <xs:attribute type="xs:string" name="name" />
- <xs:attribute type="c:elFreeformExpression" name="value" />
- <xs:attribute type="c:literalExpression" name="defaultValue" />
+ <xs:attribute type="xs:NMTOKENS" name="attributes">
+ <xs:annotation>
+ <xs:documentation><p>Space-separated list of attributes to be added to the hash.</p></xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
+ <xs:attribute type="xs:NMTOKENS" name="variables">
+ <xs:annotation>
+ <xs:documentation><p>Space-separated list of Java variables to be added to the hash.</p></xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
+ <xs:attribute type="xs:string" name="name">
+ <xs:annotation>
+ <xs:documentation><p>Key of the current option in hash.</p></xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
+ <xs:attribute type="c:elFreeformExpression" name="value">
+ <xs:annotation>
+ <xs:documentation><p>Value of the current option in hash.</p></xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
+ <xs:attribute type="c:literalExpression" name="defaultValue">
+ <xs:annotation>
+ <xs:documentation><p><b>Literal</b> (i.e. non-EL) expression representing default option value.
+ Should be valid Java expression.</p></xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
<xs:attribute name="wrapper">
+ <xs:annotation>
+ <xs:documentation>
+ <p>Optional wrapper around value.</p>
+ <p>Currently supported are:
+ <ul>
+ <li><code>noop</code>: <i>(default)</i> <code>value -> value</code></li>
+ <li><code>asArray</code>: <code>'rowClassA rowClassA1, rowClassB rowClassB1' -> ['rowClassA rowClassA1', 'rowClassB rowClassB1']</code></li>
+ <li><code>eventHandler</code>: <code>value -> <pre><![CDATA[function (event) {
+ value
+ }]]></pre></code></li>
+ </ul>
+ </p>
+ </xs:documentation>
+ </xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="noop" />
14 years, 2 months
JBoss Rich Faces SVN: r19941 - sandbox/trunk/cdk/xsd2javadoc/src/main/resources.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-11-04 14:32:30 -0400 (Thu, 04 Nov 2010)
New Revision: 19941
Added:
sandbox/trunk/cdk/xsd2javadoc/src/main/resources/cdk_args.txt
Log:
Added CDK schemas building documentation
Added: sandbox/trunk/cdk/xsd2javadoc/src/main/resources/cdk_args.txt
===================================================================
--- sandbox/trunk/cdk/xsd2javadoc/src/main/resources/cdk_args.txt (rev 0)
+++ sandbox/trunk/cdk/xsd2javadoc/src/main/resources/cdk_args.txt 2010-11-04 18:32:30 UTC (rev 19941)
@@ -0,0 +1,10 @@
+SchemaTransformer -h <short names hash> -o <output directory> file1 ... fileN
+
+
+D:\development\richfaces-trunk\cdk\generator\src\main\resources\META-INF\schema\cdk-template.xsd
+D:\development\richfaces-trunk\cdk\generator\src\main\resources\META-INF\schema\cdk-composite.xsd
+D:\development\richfaces-trunk\cdk\generator\src\main\resources\META-INF\schema\cdk-jstl-core.xsd
+-h "{http://jboss.org/schema/richfaces/cdk/core=cdk,http://jboss.org/schema/richfaces/cdk/jstl/core=c,http://jboss.org/schema/richfaces/cdk/jsf/composite=composite}"
+-o D:\development\richfaces-work\cdkdocs-new
+
+java -jar tlddoc.jar -xslt D:\development\richfaces-sandbox\trunk\cdk\xsd2javadoc\src\main\xslt\tlddoc -d cdkdocs c.tld cdk.tld composite.tld
\ No newline at end of file
14 years, 2 months
JBoss Rich Faces SVN: r19940 - trunk/ui/misc/ui/src/main/java/org/richfaces/taglib.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2010-11-04 14:19:03 -0400 (Thu, 04 Nov 2010)
New Revision: 19940
Modified:
trunk/ui/misc/ui/src/main/java/org/richfaces/taglib/ComponentControlHandler.java
Log:
RF-9469
Modified: trunk/ui/misc/ui/src/main/java/org/richfaces/taglib/ComponentControlHandler.java
===================================================================
--- trunk/ui/misc/ui/src/main/java/org/richfaces/taglib/ComponentControlHandler.java 2010-11-04 17:56:10 UTC (rev 19939)
+++ trunk/ui/misc/ui/src/main/java/org/richfaces/taglib/ComponentControlHandler.java 2010-11-04 18:19:03 UTC (rev 19940)
@@ -79,8 +79,7 @@
if (isUIParameter(componentType)) {
FacesContext facesContext = ctx.getFacesContext();
- UIComponent component = (UIComponent) facesContext.getApplication().createComponent(facesContext,
- componentType, null);
+ UIComponent component = (UIComponent) facesContext.getApplication().createComponent(componentType);
componentHandler.setAttributes(ctx, component);
if (parent instanceof ClientBehaviorHolder) {
14 years, 2 months
JBoss Rich Faces SVN: r19938 - trunk/examples/input-demo/src/main/webapp/examples.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2010-11-04 13:53:40 -0400 (Thu, 04 Nov 2010)
New Revision: 19938
Modified:
trunk/examples/input-demo/src/main/webapp/examples/select.xhtml
Log:
extend dema. Add ajax behavior.
Modified: trunk/examples/input-demo/src/main/webapp/examples/select.xhtml
===================================================================
--- trunk/examples/input-demo/src/main/webapp/examples/select.xhtml 2010-11-04 17:50:48 UTC (rev 19937)
+++ trunk/examples/input-demo/src/main/webapp/examples/select.xhtml 2010-11-04 17:53:40 UTC (rev 19938)
@@ -16,7 +16,7 @@
<div id="scroll" style="width: 400px; height:100px; overflow:auto;" >
<fieldset>
<legend>Select Test App</legend>
- <in:select enableManualInput="true" defaultLabel="Select Value ..." value="#{inputBean.value}">
+ <in:select id="select" enableManualInput="true" defaultLabel="Select Value ..." value="#{inputBean.value}">
<f:selectItem itemLabel="Label#1" itemValue="Value#1"/>
<f:selectItem itemLabel="Label#2" itemValue="Value#2"/>
<f:selectItem itemLabel="Label#3" itemValue="Value#3"/>
@@ -31,9 +31,12 @@
<f:selectItem itemLabel="Label#12" itemValue="Value#12"/>
<f:selectItem itemLabel="Label#13" itemValue="Value#13"/>
<f:selectItem itemLabel="Label#14" itemValue="Value#14"/>
+ <f:ajax event="change" execute="@form" render="out"/>
</in:select>
</fieldset>
- <h:commandButton value="submit"></h:commandButton>
+ <h:commandButton value="submit">
+ <f:ajax execute="@form" render="select out"/>
+ </h:commandButton>
</div>
<h:panelGroup id="out">
<h:outputText value="Selected Value: #{inputBean.value}"/>
14 years, 2 months
JBoss Rich Faces SVN: r19937 - in trunk: core/impl/src/main/java/org/richfaces/context and 8 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-11-04 13:50:48 -0400 (Thu, 04 Nov 2010)
New Revision: 19937
Added:
trunk/core/api/src/main/java/org/richfaces/component/ComponentIterators.java
Modified:
trunk/core/api/src/main/java/org/richfaces/component/MetaComponentResolver.java
trunk/core/impl/src/main/java/org/richfaces/context/ComponentIdResolver.java
trunk/core/impl/src/test/java/org/richfaces/context/ComponentIdResolverTest.java
trunk/core/impl/src/test/java/org/richfaces/context/ComponentIdResolverTestBean.java
trunk/core/impl/src/test/resources/org/richfaces/context/ComponentIdResolver.xhtml
trunk/examples/core-demo/src/main/webapp/button.xhtml
trunk/examples/core-demo/src/main/webapp/link.xhtml
trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandButton.java
trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandLink.java
trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractRegion.java
trunk/ui/core/ui/src/test/java/org/richfaces/component/RegionTest.java
trunk/ui/input/ui/src/main/java/org/richfaces/component/AbstractAutocomplete.java
trunk/ui/iteration/ui/src/main/java/org/richfaces/component/AbstractDataGrid.java
trunk/ui/iteration/ui/src/main/java/org/richfaces/component/AbstractTree.java
trunk/ui/iteration/ui/src/main/java/org/richfaces/component/UIDataTableBase.java
trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractTooltip.java
Log:
https://jira.jboss.org/browse/RF-9481
Added: trunk/core/api/src/main/java/org/richfaces/component/ComponentIterators.java
===================================================================
--- trunk/core/api/src/main/java/org/richfaces/component/ComponentIterators.java (rev 0)
+++ trunk/core/api/src/main/java/org/richfaces/component/ComponentIterators.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -0,0 +1,68 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.component;
+
+import java.util.Iterator;
+
+import javax.faces.component.UIComponent;
+
+import com.google.common.collect.AbstractIterator;
+import com.google.common.collect.Iterators;
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public final class ComponentIterators {
+
+ private ComponentIterators() {}
+
+ public static Iterator<UIComponent> parents(final UIComponent component) {
+ if (component == null) {
+ return Iterators.<UIComponent>emptyIterator();
+ }
+
+ return new AbstractIterator<UIComponent>() {
+
+ private UIComponent currentComponent = component;
+
+ @Override
+ protected UIComponent computeNext() {
+ currentComponent = currentComponent.getParent();
+
+ if (currentComponent == null) {
+ endOfData();
+ }
+
+ return currentComponent;
+ }
+ };
+ }
+
+ public static Iterator<UIComponent> parentsAndSelf(final UIComponent component) {
+ if (component == null) {
+ return Iterators.<UIComponent>emptyIterator();
+ }
+
+ return Iterators.concat(Iterators.singletonIterator(component), parents(component));
+ }
+}
Modified: trunk/core/api/src/main/java/org/richfaces/component/MetaComponentResolver.java
===================================================================
--- trunk/core/api/src/main/java/org/richfaces/component/MetaComponentResolver.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/core/api/src/main/java/org/richfaces/component/MetaComponentResolver.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -33,6 +33,26 @@
// TODO - do we want to make this configurable in web.xml?
public static final char META_COMPONENT_SEPARATOR_CHAR = '@';
+ /**
+ * Resolves and returns string identifying supported meta-component or <code>null</code> if provided meta-component
+ * name is not a supported one.
+ *
+ * @param facesContext - current instance of {@link FacesContext}
+ * @param contextComponent - instance of {@link UIComponent} that requested resolution of meta-component
+ * @param metaComponentId - name of meta-component (without leading '@' sign)
+ * @return clientId, one of supported meta-names such as @all, @this, etc. or <code>null</code>
+ */
public String resolveClientId(FacesContext facesContext, UIComponent contextComponent, String metaComponentId);
+ /**
+ * Provides replacement for unresolved meta-component names. Returns identifier string for the chosen substitution
+ * or <code>null</code>
+ *
+ * @param facesContext - current instance of {@link FacesContext}
+ * @param contextComponent - instance of {@link UIComponent} that requested resolution of meta-component
+ * @param metaComponentId - name of meta-component (without leading '@' sign)
+ * @return clientId, one of supported meta-names such as @all, @this, etc. or <code>null</code>
+ */
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent, String metaComponentId);
+
}
Modified: trunk/core/impl/src/main/java/org/richfaces/context/ComponentIdResolver.java
===================================================================
--- trunk/core/impl/src/main/java/org/richfaces/context/ComponentIdResolver.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/core/impl/src/main/java/org/richfaces/context/ComponentIdResolver.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -37,9 +37,12 @@
import javax.faces.context.FacesContext;
import org.richfaces.component.AjaxContainer;
+import org.richfaces.component.ComponentIterators;
import org.richfaces.component.MetaComponentResolver;
import org.richfaces.renderkit.util.CoreRendererUtils;
+import com.google.common.collect.Iterators;
+
/**
* @author Nick Belaevski
*
@@ -110,23 +113,40 @@
return c;
}
+ private static Iterator<MetaComponentResolver> createResolversChainIterator(UIComponent component) {
+ return Iterators.filter(ComponentIterators.parentsAndSelf(component), MetaComponentResolver.class);
+ }
+
+ private static String substituteUnresolvedMetaComponentId(FacesContext context, UIComponent component, String metaComponentId) {
+ Iterator<MetaComponentResolver> iterator = createResolversChainIterator(component);
+
+ while (iterator.hasNext()) {
+ MetaComponentResolver metaComponentResolver = (MetaComponentResolver) iterator.next();
+
+ String resolvedId = metaComponentResolver.substituteUnresolvedClientId(context, component, metaComponentId);
+
+ if (resolvedId != null) {
+ return resolvedId;
+ }
+ }
+
+ return null;
+ }
+
private static String resolveMetaComponentId(FacesContext context, UIComponent component, String metaComponentId) {
- UIComponent c = component;
- while (c != null) {
- if (c instanceof MetaComponentResolver) {
- MetaComponentResolver metaComponentResolver = (MetaComponentResolver) c;
+ Iterator<MetaComponentResolver> iterator = createResolversChainIterator(component);
+
+ while (iterator.hasNext()) {
+ MetaComponentResolver metaComponentResolver = (MetaComponentResolver) iterator.next();
+
+ String resolvedId = metaComponentResolver.resolveClientId(context, component, metaComponentId);
- String resolvedId = metaComponentResolver.resolveClientId(context, component, metaComponentId);
-
- if (resolvedId != null) {
- return resolvedId;
- }
+ if (resolvedId != null) {
+ return resolvedId;
}
-
- c = c.getParent();
}
-
- return metaComponentSubstitutions.get(metaComponentId);
+
+ return null;
}
//used in unit tests
@@ -297,8 +317,16 @@
if (metaComponentId != null && metaComponentId.length() != 0) {
resolvedId = resolveMetaComponentId(facesContext, bottomMatch, metaComponentId);
+
+ if (resolvedId == null) {
+ resolvedId = substituteUnresolvedMetaComponentId(facesContext, bottomMatch, metaComponentId);
+ }
+
+ if (resolvedId == null) {
+ resolvedId = metaComponentSubstitutions.get(metaComponentId);
+ }
}
-
+
if (CoreRendererUtils.GLOBAL_META_COMPONENTS.contains(resolvedId)) {
resolvedIds.clear();
resolvedIds.add(resolvedId);
Modified: trunk/core/impl/src/test/java/org/richfaces/context/ComponentIdResolverTest.java
===================================================================
--- trunk/core/impl/src/test/java/org/richfaces/context/ComponentIdResolverTest.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/core/impl/src/test/java/org/richfaces/context/ComponentIdResolverTest.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -39,6 +39,7 @@
import org.junit.Before;
import org.junit.Test;
import org.richfaces.component.MetaComponentResolver;
+import org.richfaces.renderkit.AjaxConstants;
/**
* @author Nick Belaevski
@@ -239,4 +240,28 @@
Set<String> resolvedIds = resolver.getResolvedIds();
assertEquals(asSet("form:table:input", "form:table:column@head", "form:table:[1]:column"), resolvedIds);
}
+
+ @Test
+ public void testUnresolvedMetaComponentSubstitutionCompatibility() throws Exception {
+ ComponentIdResolver resolver = createComponentIdResolver();
+
+ resolver.addId(META_CLIENT_ID);
+
+ resolver.resolve(evaluateComponentExpression("#{testBean.linkInRegion}"));
+
+ Set<String> resolvedIds = resolver.getResolvedIds();
+ assertEquals(asSet("firstRegion"), resolvedIds);
+ }
+
+ @Test
+ public void testUnresolvedMetaComponentSubstitution() throws Exception {
+ ComponentIdResolver resolver = createComponentIdResolver();
+
+ resolver.addId(META_CLIENT_ID);
+
+ resolver.resolve(evaluateComponentExpression("#{testBean.linkOutRegion}"));
+
+ Set<String> resolvedIds = resolver.getResolvedIds();
+ assertEquals(asSet(AjaxConstants.ALL), resolvedIds);
+ }
}
Modified: trunk/core/impl/src/test/java/org/richfaces/context/ComponentIdResolverTestBean.java
===================================================================
--- trunk/core/impl/src/test/java/org/richfaces/context/ComponentIdResolverTestBean.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/core/impl/src/test/java/org/richfaces/context/ComponentIdResolverTestBean.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -26,6 +26,7 @@
import javax.faces.context.FacesContext;
import org.richfaces.component.MetaComponentResolver;
+import org.richfaces.renderkit.AjaxConstants;
/**
* @author Nick Belaevski
@@ -42,12 +43,40 @@
return null;
}
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent,
+ String metaComponentId) {
+
+ return null;
+ }
+
@Override
public String getFamily() {
return null;
}
}
+ private static class UICommandLink extends UIComponentBase implements MetaComponentResolver {
+
+ public String resolveClientId(FacesContext facesContext, UIComponent contextComponent, String metaComponentId) {
+ return null;
+ }
+
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent,
+ String metaComponentId) {
+
+ if (ComponentIdResolverTest.META_COMPONENT_ID.equals(metaComponentId)) {
+ return AjaxConstants.ALL;
+ }
+
+ return null;
+ }
+
+ @Override
+ public String getFamily() {
+ return null;
+ }
+ }
+
private String[] data = {"1", "2", "3"};
private UIComponent table;
@@ -58,6 +87,10 @@
private UIComponent outputOutRegion;
+ private UIComponent linkInRegion = new UICommandLink();
+
+ private UIComponent linkOutRegion = new UICommandLink();
+
public Object getData() {
return data;
}
@@ -93,4 +126,12 @@
public void setOutputOutRegion(UIComponent outputOutRegion) {
this.outputOutRegion = outputOutRegion;
}
+
+ public UIComponent getLinkInRegion() {
+ return linkInRegion;
+ }
+
+ public UIComponent getLinkOutRegion() {
+ return linkOutRegion;
+ }
}
\ No newline at end of file
Modified: trunk/core/impl/src/test/resources/org/richfaces/context/ComponentIdResolver.xhtml
===================================================================
--- trunk/core/impl/src/test/resources/org/richfaces/context/ComponentIdResolver.xhtml 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/core/impl/src/test/resources/org/richfaces/context/ComponentIdResolver.xhtml 2010-11-04 17:50:48 UTC (rev 19937)
@@ -22,9 +22,14 @@
<ui:fragment binding="#{testBean.firstRegion}" id="firstRegion">
<h:outputText binding="#{testBean.outputInRegion}" id="outputInRegion" />
+
+ <ui:fragment binding="#{testBean.linkInRegion}" id="linkInRegion" />
</ui:fragment>
<h:outputText binding="#{testBean.outputOutRegion}" id="outputOutRegion" />
+
+ <ui:fragment binding="#{testBean.linkOutRegion}" id="linkOutRegion" />
+
</h:body>
</f:view>
</html>
\ No newline at end of file
Modified: trunk/examples/core-demo/src/main/webapp/button.xhtml
===================================================================
--- trunk/examples/core-demo/src/main/webapp/button.xhtml 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/examples/core-demo/src/main/webapp/button.xhtml 2010-11-04 17:50:48 UTC (rev 19937)
@@ -15,13 +15,19 @@
<h:outputText value="Name:" />
<h:form>
<h:inputText value="#{commandBean.name}" />
- <a4j:commandButton action="#{commandBean.submit}" render="out" value="Say Hello" execute="@form" />
- <a4j:commandButton action="#{commandBean.submit}" render="out" value="Say Hello with limitRender"
- limitRender="true" execute="@form" />
- <a4j:commandButton action="#{commandBean.reset}" render="out" value="Reset" execute="@form" />
- <a4j:commandButton value="Test AjaxBehavior">
- <f:ajax event="action" execute="@form" render=":out" listener="#{commandBean.listener}" />
- </a4j:commandButton>
+
+ <h:panelGrid>
+ <a4j:commandButton action="#{commandBean.submit}" render="out" value="Say Hello" />
+ <a4j:commandButton action="#{commandBean.submit}" render="out" value="Say Hello with limitRender"
+ limitRender="true"/>
+ <a4j:commandButton action="#{commandBean.submit}" render="out" execute="@this">
+ <h:outputText value="Say Hello with execute=@this" />
+ </a4j:commandButton>
+ <a4j:commandButton action="#{commandBean.reset}" render="out" value="Reset" />
+ <a4j:commandButton value="Test AjaxBehavior">
+ <f:ajax event="action" execute="@form" render=":out" listener="#{commandBean.listener}" />
+ </a4j:commandButton>
+ </h:panelGrid>
</h:form>
<br />
<h:panelGroup id="out">
Modified: trunk/examples/core-demo/src/main/webapp/link.xhtml
===================================================================
--- trunk/examples/core-demo/src/main/webapp/link.xhtml 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/examples/core-demo/src/main/webapp/link.xhtml 2010-11-04 17:50:48 UTC (rev 19937)
@@ -15,19 +15,25 @@
<h:outputText value="Name:" />
<h:form>
<h:inputText value="#{commandBean.name}" />
- <a4j:commandLink action="#{commandBean.submit}" render="out" execute="@form">
- <h:outputText value="Say Hello" />
- </a4j:commandLink>
- <a4j:commandLink action="#{commandBean.submit}" render="out" limitRender="true" execute="@form">
- <h:outputText value="Say Hello with limitRender" />
- </a4j:commandLink>
- <a4j:commandLink action="#{commandBean.reset}" render="out" execute="@form">
- <h:outputText value="Reset" />
- </a4j:commandLink>
- <a4j:commandLink>
- <f:ajax event="action" execute="@form" render=":out" listener="#{commandBean.listener}" />
- <h:outputText value="Test AjaxBehavior" />
- </a4j:commandLink>
+
+ <h:panelGrid>
+ <a4j:commandLink action="#{commandBean.submit}" render="out">
+ <h:outputText value="Say Hello" />
+ </a4j:commandLink>
+ <a4j:commandLink action="#{commandBean.submit}" render="out" limitRender="true">
+ <h:outputText value="Say Hello with limitRender" />
+ </a4j:commandLink>
+ <a4j:commandLink action="#{commandBean.submit}" render="out" execute="@this">
+ <h:outputText value="Say Hello with execute=@this" />
+ </a4j:commandLink>
+ <a4j:commandLink action="#{commandBean.reset}" render="out">
+ <h:outputText value="Reset" />
+ </a4j:commandLink>
+ <a4j:commandLink>
+ <f:ajax event="action" execute="@form" render=":out" listener="#{commandBean.listener}" />
+ <h:outputText value="Test AjaxBehavior" />
+ </a4j:commandLink>
+ </h:panelGrid>
</h:form>
<br />
<h:panelGroup id="out">
Modified: trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandButton.java
===================================================================
--- trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandButton.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandButton.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -24,6 +24,8 @@
package org.richfaces.component;
import javax.faces.component.UICommand;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
import org.richfaces.cdk.annotations.Attribute;
import org.richfaces.cdk.annotations.EventName;
@@ -31,13 +33,14 @@
import org.richfaces.cdk.annotations.JsfRenderer;
import org.richfaces.cdk.annotations.Tag;
import org.richfaces.cdk.annotations.TagType;
+import org.richfaces.renderkit.AjaxConstants;
/**
* @author Nick Belaevski
*
*/
@JsfComponent(renderer = @JsfRenderer(type = "org.richfaces.CommandButtonRenderer"), tag = @Tag(type = TagType.Facelets))
-public abstract class AbstractCommandButton extends AbstractActionComponent {
+public abstract class AbstractCommandButton extends AbstractActionComponent implements MetaComponentResolver {
public static final String COMPONENT_TYPE = "org.richfaces.CommandButton";
@@ -81,4 +84,18 @@
@Attribute
public abstract boolean isLimitRender();
+
+ public String resolveClientId(FacesContext facesContext, UIComponent contextComponent, String metaComponentId) {
+ return null;
+ }
+
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent,
+ String metaComponentId) {
+
+ if (AjaxContainer.META_COMPONENT_ID.equals(metaComponentId)) {
+ return AjaxConstants.FORM;
+ }
+
+ return null;
+ }
}
Modified: trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandLink.java
===================================================================
--- trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandLink.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandLink.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -23,6 +23,8 @@
package org.richfaces.component;
import javax.faces.component.UICommand;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
import org.richfaces.cdk.annotations.Attribute;
import org.richfaces.cdk.annotations.EventName;
@@ -30,6 +32,7 @@
import org.richfaces.cdk.annotations.JsfRenderer;
import org.richfaces.cdk.annotations.Tag;
import org.richfaces.cdk.annotations.TagType;
+import org.richfaces.renderkit.AjaxConstants;
/**
* @author Nick Belaevski
@@ -38,7 +41,7 @@
renderer = @JsfRenderer(type = "org.richfaces.CommandLinkRenderer"),
tag = @Tag(type = TagType.Facelets)
)
-public abstract class AbstractCommandLink extends AbstractActionComponent {
+public abstract class AbstractCommandLink extends AbstractActionComponent implements MetaComponentResolver {
public static final String COMPONENT_TYPE = "org.richfaces.CommandLink";
@@ -82,4 +85,18 @@
@Attribute
public abstract boolean isLimitRender();
+
+ public String resolveClientId(FacesContext facesContext, UIComponent contextComponent, String metaComponentId) {
+ return null;
+ }
+
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent,
+ String metaComponentId) {
+
+ if (AjaxContainer.META_COMPONENT_ID.equals(metaComponentId)) {
+ return AjaxConstants.FORM;
+ }
+
+ return null;
+ }
}
Modified: trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractRegion.java
===================================================================
--- trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractRegion.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractRegion.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -50,4 +50,10 @@
return null;
}
+
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent,
+ String metaComponentId) {
+
+ return null;
+ }
}
Modified: trunk/ui/core/ui/src/test/java/org/richfaces/component/RegionTest.java
===================================================================
--- trunk/ui/core/ui/src/test/java/org/richfaces/component/RegionTest.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/ui/core/ui/src/test/java/org/richfaces/component/RegionTest.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -34,6 +34,7 @@
import javax.el.ELContext;
import javax.el.ValueExpression;
import javax.faces.application.Application;
+import javax.faces.component.UICommand;
import javax.faces.component.UIComponent;
import javax.faces.component.UIForm;
import javax.faces.component.UIViewRoot;
@@ -51,19 +52,20 @@
* Test page pseudo-code:
* <pre>
* <h:form id="form">
- * <a4j:testLink id="link"
- * binding="#{link}"
- * execute="#{linkExecute}" />
+ * <a4j:testCommandComponent id="testCommand"
+ * binding="#{testCommand}"
+ * execute="#{testCommandExecute}" />
*
* <a4j:region id="region">
- * <a4j:testLink id="regionLink"
- * binding="#{regionLink}"
- * execute="#{regionLinkExecute}" />
+ * <a4j:testCommandComponent id="testCommandRegion"
+ * binding="#{testCommandRegion}"
+ * execute="#{testCommandRegionExecute}" />
*
* </a4j:region>
* </h:form>
* </pre>
*
+ * TestCommandComponent is assumed to have execute=@this by default
*
* @author Nick Belaevski
*
@@ -76,17 +78,17 @@
private FacesContext facesContext;
- private UIComponent link;
+ private UIComponent testCommand;
- private String linkExecute;
+ private String testCommandExecute;
- private UIComponent regionLink;
+ private UIComponent testCommandRegion;
- private String regionLinkExecute;
+ private String testCommandRegionExecute;
- private String linkClientId;
+ private String testCommandClientId;
- private String regionLinkClientId;
+ private String testCommandRegionClientId;
private String regionClientId;
@@ -135,12 +137,12 @@
@Override
public void setValue(ELContext context, Object value) {
- linkExecute = (String) value;
+ testCommandExecute = (String) value;
}
@Override
public Object getValue(ELContext context) {
- return linkExecute;
+ return testCommandExecute;
}
};
}
@@ -151,12 +153,12 @@
@Override
public void setValue(ELContext context, Object value) {
- regionLinkExecute = (String) value;
+ testCommandRegionExecute = (String) value;
}
@Override
public Object getValue(ELContext context) {
- return regionLinkExecute;
+ return testCommandRegionExecute;
}
};
}
@@ -170,26 +172,26 @@
form.setId("form");
viewRoot.getChildren().add(form);
- link = createTestLink();
- link.setId("link");
- link.setValueExpression("execute", createFirstLinkExecuteExpression());
- form.getChildren().add(link);
- linkClientId = link.getClientId(facesContext);
+ testCommand = createTestLink();
+ testCommand.setId("testCommand");
+ testCommand.setValueExpression("execute", createFirstLinkExecuteExpression());
+ form.getChildren().add(testCommand);
+ testCommandClientId = testCommand.getClientId(facesContext);
UIComponent region = application.createComponent(AbstractRegion.COMPONENT_TYPE);
region.setId("region");
form.getChildren().add(region);
regionClientId = region.getClientId(facesContext);
- regionLink = createTestLink();
- regionLink.setId("regionLink");
- regionLink.setValueExpression("execute", createNestedFirstLinkExecuteExpression());
- region.getChildren().add(regionLink);
- regionLinkClientId = regionLink.getClientId(facesContext);
+ testCommandRegion = createTestLink();
+ testCommandRegion.setId("testCommandRegion");
+ testCommandRegion.setValueExpression("execute", createNestedFirstLinkExecuteExpression());
+ region.getChildren().add(testCommandRegion);
+ testCommandRegionClientId = testCommandRegion.getClientId(facesContext);
}
private UIComponent createTestLink() {
- return facesContext.getApplication().createComponent(UICommandButton.COMPONENT_TYPE);
+ return facesContext.getApplication().createComponent(UICommand.COMPONENT_TYPE);
}
private void setActivatorComponentId(String clientId) {
@@ -219,14 +221,14 @@
@After
public void tearDown() throws Exception {
- linkClientId = null;
- regionLinkClientId = null;
+ testCommandClientId = null;
+ testCommandRegionClientId = null;
- link = null;
- regionLink = null;
+ testCommand = null;
+ testCommandRegion = null;
- linkExecute = null;
- regionLinkExecute = null;
+ testCommandExecute = null;
+ testCommandRegionExecute = null;
facesContext = null;
@@ -239,15 +241,15 @@
@Test
public void testDefaults() throws Exception {
- setActivatorComponentId(linkClientId);
+ setActivatorComponentId(testCommandClientId);
Collection<String> executeIds = facesContext.getPartialViewContext().getExecuteIds();
- assertSingleElementCollection(linkClientId, executeIds);
+ assertSingleElementCollection(testCommandClientId, executeIds);
}
@Test
public void testDefaultsInRegion() throws Exception {
- setActivatorComponentId(regionLinkClientId);
+ setActivatorComponentId(testCommandRegionClientId);
Collection<String> executeIds = facesContext.getPartialViewContext().getExecuteIds();
assertSingleElementCollection(regionClientId, executeIds);
@@ -255,26 +257,26 @@
@Test
public void testExecuteThis() throws Exception {
- linkExecute = THIS;
- setActivatorComponentId(linkClientId);
+ testCommandExecute = THIS;
+ setActivatorComponentId(testCommandClientId);
Collection<String> executeIds = facesContext.getPartialViewContext().getExecuteIds();
- assertSingleElementCollection(linkClientId, executeIds);
+ assertSingleElementCollection(testCommandClientId, executeIds);
}
@Test
public void testExecuteThisInRegion() throws Exception {
- regionLinkExecute = THIS;
- setActivatorComponentId(regionLinkClientId);
+ testCommandRegionExecute = THIS;
+ setActivatorComponentId(testCommandRegionClientId);
Collection<String> executeIds = facesContext.getPartialViewContext().getExecuteIds();
- assertSingleElementCollection(regionLinkClientId, executeIds);
+ assertSingleElementCollection(testCommandRegionClientId, executeIds);
}
@Test
public void testExecuteAll() throws Exception {
- linkExecute = ALL;
- setActivatorComponentId(linkClientId);
+ testCommandExecute = ALL;
+ setActivatorComponentId(testCommandClientId);
Collection<String> executeIds = facesContext.getPartialViewContext().getExecuteIds();
assertSingleElementCollection(ALL, executeIds);
@@ -282,8 +284,8 @@
@Test
public void testExecuteAllInRegion() throws Exception {
- regionLinkExecute = ALL;
- setActivatorComponentId(regionLinkClientId);
+ testCommandRegionExecute = ALL;
+ setActivatorComponentId(testCommandRegionClientId);
Collection<String> executeIds = facesContext.getPartialViewContext().getExecuteIds();
assertSingleElementCollection(ALL, executeIds);
@@ -291,17 +293,17 @@
@Test
public void testExecuteRegion() throws Exception {
- linkExecute = AjaxContainer.META_CLIENT_ID;
- setActivatorComponentId(linkClientId);
+ testCommandExecute = AjaxContainer.META_CLIENT_ID;
+ setActivatorComponentId(testCommandClientId);
Collection<String> executeIds = facesContext.getPartialViewContext().getExecuteIds();
- assertSingleElementCollection(linkClientId, executeIds);
+ assertSingleElementCollection(testCommandClientId, executeIds);
}
@Test
public void testExecuteRegionInRegion() throws Exception {
- regionLinkExecute = AjaxContainer.META_CLIENT_ID;
- setActivatorComponentId(regionLinkClientId);
+ testCommandRegionExecute = AjaxContainer.META_CLIENT_ID;
+ setActivatorComponentId(testCommandRegionClientId);
Collection<String> executeIds = facesContext.getPartialViewContext().getExecuteIds();
assertSingleElementCollection(regionClientId, executeIds);
Modified: trunk/ui/input/ui/src/main/java/org/richfaces/component/AbstractAutocomplete.java
===================================================================
--- trunk/ui/input/ui/src/main/java/org/richfaces/component/AbstractAutocomplete.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/ui/input/ui/src/main/java/org/richfaces/component/AbstractAutocomplete.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -237,6 +237,12 @@
return null;
}
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent,
+ String metaComponentId) {
+
+ return null;
+ }
+
@Override
public boolean visitTree(VisitContext context, VisitCallback callback) {
if (context instanceof ExtendedVisitContext) {
Modified: trunk/ui/iteration/ui/src/main/java/org/richfaces/component/AbstractDataGrid.java
===================================================================
--- trunk/ui/iteration/ui/src/main/java/org/richfaces/component/AbstractDataGrid.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/ui/iteration/ui/src/main/java/org/richfaces/component/AbstractDataGrid.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -42,9 +42,9 @@
import org.richfaces.cdk.annotations.TagType;
import org.richfaces.context.ExtendedVisitContext;
import org.richfaces.context.ExtendedVisitContextMode;
+import org.richfaces.log.Logger;
import org.richfaces.log.RichfacesLogger;
import org.richfaces.renderkit.MetaComponentRenderer;
-import org.richfaces.log.Logger;
/**
* @author Anton Belevich
@@ -200,4 +200,10 @@
return null;
}
+
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent,
+ String metaComponentId) {
+
+ return null;
+ }
}
Modified: trunk/ui/iteration/ui/src/main/java/org/richfaces/component/AbstractTree.java
===================================================================
--- trunk/ui/iteration/ui/src/main/java/org/richfaces/component/AbstractTree.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/ui/iteration/ui/src/main/java/org/richfaces/component/AbstractTree.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -380,6 +380,12 @@
return null;
}
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent,
+ String metaComponentId) {
+
+ return null;
+ }
+
@Override
protected Iterator<UIComponent> dataChildren() {
AbstractTreeNode treeNodeComponent = getTreeNodeComponent();
Modified: trunk/ui/iteration/ui/src/main/java/org/richfaces/component/UIDataTableBase.java
===================================================================
--- trunk/ui/iteration/ui/src/main/java/org/richfaces/component/UIDataTableBase.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/ui/iteration/ui/src/main/java/org/richfaces/component/UIDataTableBase.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -51,6 +51,7 @@
import org.richfaces.event.FilteringListener;
import org.richfaces.event.SortingEvent;
import org.richfaces.event.SortingListener;
+import org.richfaces.log.Logger;
import org.richfaces.log.RichfacesLogger;
import org.richfaces.model.Arrangeable;
import org.richfaces.model.ArrangeableModel;
@@ -60,7 +61,6 @@
import org.richfaces.model.SortField;
import org.richfaces.model.SortMode;
import org.richfaces.renderkit.MetaComponentRenderer;
-import org.richfaces.log.Logger;
public abstract class UIDataTableBase extends UISequence implements Row, MetaComponentResolver, MetaComponentEncoder {
@@ -243,6 +243,12 @@
return null;
}
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent,
+ String metaComponentId) {
+
+ return null;
+ }
+
public void encodeMetaComponent(FacesContext context, String metaComponentId) throws IOException {
context.getApplication().publishEvent(context, PreRenderComponentEvent.class, this);
Modified: trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractTooltip.java
===================================================================
--- trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractTooltip.java 2010-11-04 17:47:38 UTC (rev 19936)
+++ trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractTooltip.java 2010-11-04 17:50:48 UTC (rev 19937)
@@ -22,20 +22,21 @@
package org.richfaces.component;
-import org.richfaces.TooltipLayout;
-import org.richfaces.TooltipDirection;
-import org.richfaces.TooltipMode;
-import org.richfaces.context.ExtendedVisitContext;
-import org.richfaces.context.ExtendedVisitContextMode;
-import org.richfaces.renderkit.MetaComponentRenderer;
+import java.io.IOException;
import javax.faces.component.UIComponent;
import javax.faces.component.visit.VisitCallback;
import javax.faces.component.visit.VisitContext;
import javax.faces.component.visit.VisitResult;
import javax.faces.context.FacesContext;
-import java.io.IOException;
+import org.richfaces.TooltipDirection;
+import org.richfaces.TooltipLayout;
+import org.richfaces.TooltipMode;
+import org.richfaces.context.ExtendedVisitContext;
+import org.richfaces.context.ExtendedVisitContextMode;
+import org.richfaces.renderkit.MetaComponentRenderer;
+
/**
* @author amarkhel
* @since 2010-10-24
@@ -155,4 +156,10 @@
return null;
}
+
+ public String substituteUnresolvedClientId(FacesContext facesContext, UIComponent contextComponent,
+ String metaComponentId) {
+
+ return null;
+ }
}
14 years, 2 months
JBoss Rich Faces SVN: r19936 - in trunk/core/impl/src: test/resources/javascript and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-11-04 13:47:38 -0400 (Thu, 04 Nov 2010)
New Revision: 19936
Modified:
trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js
trunk/core/impl/src/test/resources/javascript/4_0_0.html
Log:
https://jira.jboss.org/browse/RF-7817
Modified: trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js
===================================================================
--- trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js 2010-11-04 17:46:06 UTC (rev 19935)
+++ trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js 2010-11-04 17:47:38 UTC (rev 19936)
@@ -308,61 +308,6 @@
}
};
- var pushTracker = {};
-
- richfaces.startPush = function(options) {
- var clientId = options.clientId;
- var pushResourceUrl = options.pushResourceUrl;
- var pushId = options.pushId;
- var interval = options.interval;
- var ondataavailable = options.ondataavailable;
- richfaces.setZeroRequestDelay(options);
-
- richfaces.stopPush(pushId);
-
- pushTracker[pushId] = setTimeout(function() { // TODO: define this function in richfaces object to avoid definition every time when call startPush
- var ajaxOptions = {
- type: "HEAD",
- //TODO - encodeURIComponent; URL sessionId handling check
- //TODO - add pushUri supports
- url: pushResourceUrl + "?id=" + pushId,
- dataType: "text",
- complete: function(xhr) {
- var isPushActive = !!pushTracker[pushId];
-
- //TODO may someone wish to stop push from dataavailable handler?
- delete pushTracker[pushId];
-
- if (xhr.status == 200 && xhr.getResponseHeader("Ajax-Push-Status") == "READY") {
- var pushElement = document.getElementById(clientId);
- try {
- ondataavailable.call(pushElement || window);
- } catch (e) {
- // TODO: handle exception
- }
- }
-
- if (isPushActive) {
- richfaces.startPush(options);
- }
- }
- };
-
- if (options.timeout) {
- ajaxOptions.timeout = options.timeout;
- }
-
- jQuery.ajax(ajaxOptions);
- }, interval);
- };
-
- richfaces.stopPush = function(id) {
- if (pushTracker[id]){
- window.clearTimeout(pushTracker[id]);
- delete pushTracker[id];
- }
- };
-
var jsfEventsAdapterEventNames = {
event: {
'begin': ['begin'],
@@ -517,6 +462,7 @@
};
return {
+ 'error': null,
'begin': null,
'complete': serverEventHandler,
'beforedomupdate': serverEventHandler
Modified: trunk/core/impl/src/test/resources/javascript/4_0_0.html
===================================================================
--- trunk/core/impl/src/test/resources/javascript/4_0_0.html 2010-11-04 17:46:06 UTC (rev 19935)
+++ trunk/core/impl/src/test/resources/javascript/4_0_0.html 2010-11-04 17:47:38 UTC (rev 19936)
@@ -85,36 +85,6 @@
equals(RichFaces.interpolate("{prop1} {prop2} {prop3}", context), "value1 value2 {prop3}");
});
- test("RichFaces.startPush and RichFaces.stopPush test", function() {
- var timeoutFakeObject = {id:"timeoutFakeObject"};
- expect(1);
- var options = {
- pushId : "pushId",
- clientId: "pushElt",
- interval : 700,
- ondataavailable : function() {
- ok(true, "Function 'ondataavailable' has been called");
- }
- };
- var xhr = {
- status : 200,
- getResponseHeader : function() { return "READY" }
- };
- var ajax = jQuery.ajax;
- jQuery.ajax = function(ajaxOptions) {
- RichFaces.stopPush(options.pushId);
- ajaxOptions.complete(xhr);
- };
- var setTimeout = window.setTimeout;
- window.setTimeout = function(func, delay) {
- func();
- return timeoutFakeObject;
- };
- RichFaces.startPush(options);
- jQuery.ajax = ajax;
- window.setTimeout = setTimeout;
- });
-
test("RichFaces.createJSFEventsAdapter test", function() {
expect(2);
var eventData = {
14 years, 2 months
JBoss Rich Faces SVN: r19935 - trunk/ui/validator/ui/src/main/resources/META-INF/resources/org.richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-11-04 13:46:06 -0400 (Thu, 04 Nov 2010)
New Revision: 19935
Removed:
trunk/ui/validator/ui/src/main/resources/META-INF/resources/org.richfaces/richfaces.js
Log:
Removed duplicate richfaces.js from validators
Deleted: trunk/ui/validator/ui/src/main/resources/META-INF/resources/org.richfaces/richfaces.js
===================================================================
--- trunk/ui/validator/ui/src/main/resources/META-INF/resources/org.richfaces/richfaces.js 2010-11-04 17:45:23 UTC (rev 19934)
+++ trunk/ui/validator/ui/src/main/resources/META-INF/resources/org.richfaces/richfaces.js 2010-11-04 17:46:06 UTC (rev 19935)
@@ -1,749 +0,0 @@
-
-if (!window.RichFaces) {
- /**
- * Global object container for RichFaces API.
- * All classes should be defined here.
- * @class
- * @name RichFaces
- * @static
- *
- * */
- window.RichFaces = {};
-}
-
-(function(jQuery, richfaces) {
-
- // get DOM element by id or DOM element or jQuery object
- richfaces.getDomElement = function (source) {
- var type = typeof source;
- var element;
- if (type == "string") {
- // id
- element = document.getElementById(source);
- } else if (type == "object") {
- if (source.nodeType) {
- // DOM element
- element = source;
- } else
- if (source instanceof jQuery) {
- // jQuery object
- element = source.get(0);
- }
- }
- return element;
- }
-
- // get RichFaces component object by component id or DOM element or jQuery object
- richfaces.$ = function (source) {
- var element = richfaces.getDomElement(source);
-
- if (element) {
- return (element["richfaces"] || {})["component"];
- }
- }
-
- // find component and call his method
- richfaces.invokeMethod = function(source, method) {
- var c = richfaces.$(source);
- if (c) {
- var f = c[method];
- if (typeof f == "function") {
- return f.apply(c, Array.prototype.slice.call(arguments, 2));
- }
- }
- }
-
- //dom cleaner
- richfaces.cleanDom = function(source) {
- var e = (typeof source == "string") ? document.getElementById(source) : jQuery('body').get(0);
- if (e) {
- var elements = e.getElementsByTagName("*");
- if (elements.length) {
- jQuery.cleanData(elements);
- jQuery.cleanData([e]);
- jQuery.each(elements, function(index) {
- richfaces.invokeMethod(this, "destroy");
- });
- richfaces.invokeMethod(e, "destroy");
- }
- }
- }
-
- //form.js
- richfaces.submitForm = function(form, parameters, target) {
- if (typeof form === "string") { form = jQuery(form) };
- var initialTarget = form.attr("target");
- var parameterInputs = new Array();
- try {
- form.attr("target", target);
-
- if (parameters) {
- for (var parameterName in parameters) {
- var parameterValue = parameters[parameterName];
-
- var input = jQuery("input[name='" + parameterName + "']", form);
- if (input.length == 0) {
- var newInput = jQuery("<input />").attr({type: 'hidden', name: parameterName, value: parameterValue});
- if (parameterName === 'javax.faces.portletbridge.STATE_ID' /* fix for fileUpload in portlets */) {
- input = newInput.prependTo(form);
- } else {
- input = newInput.appendTo(form);
- }
- } else {
- input.val(parameterValue);
- }
-
- input.each(function() {parameterInputs.push(this)});
- }
- }
-
- //TODO: inline onsubmit handler is not triggered - http://dev.jquery.com/ticket/4930
- form.trigger("submit");
- } finally {
- form.attr("target", initialTarget);
- jQuery(parameterInputs).remove();
- }
- };
- //
-
- //utils.js
- jQuery.fn.toXML = function () {
- var out = '';
-
- if (this.length > 0) {
- if (typeof XMLSerializer == 'function' ||
- typeof XMLSerializer == 'object') {
-
- var xs = new XMLSerializer();
- this.each(function() { out += xs.serializeToString(this); });
- } else if (this[0].xml !== undefined) {
- this.each(function() { out += this.xml; });
- } else {
- this.each( function() { out += this; } );
- }
- }
-
- return out;
- };
-
- //there is the same pattern in server-side code:
- //org.ajax4jsf.javascript.ScriptUtils.escapeCSSMetachars(String)
- var CSS_METACHARS_PATTERN = /([#;&,.+*~':"!^$\[\]()=>|\/])/g;
-
- /**
- * Escapes CSS meta-characters in string according to
- * <a href="http://api.jquery.com/category/selectors/">jQuery selectors</a> document.
- *
- * @param s - string to escape meta-characters in
- * @return string with meta-characters escaped
- */
- richfaces.escapeCSSMetachars = function(s) {
- //TODO nick - cache results
-
- return s.replace(CSS_METACHARS_PATTERN, "\\$1");
- };
-
- var logImpl;
-
- richfaces.setLog = function(newLogImpl) {
- logImpl = newLogImpl;
- };
-
- richfaces.log = {
- debug: function(text) {
- if (logImpl) {
- logImpl.debug(text);
- }
- },
-
- info: function(text) {
- if (logImpl) {
- logImpl.info(text);
- }
- },
-
- warn: function(text) {
- if (logImpl) {
- logImpl.warn(text);
- }
- },
-
- error: function(text) {
- if (logImpl) {
- logImpl.error(text);
- }
- },
-
- setLevel: function(level) {
- if (logImpl) {
- logImpl.setLevel(level);
- }
- },
-
- getLevel: function() {
- if (logImpl) {
- return logImpl.getLevel();
- }
- return 'info';
- },
-
- clear: function() {
- if (logImpl) {
- logImpl.clear();
- }
- }
- };
-
- /**
- * Evaluates chained properties for the "base" object.
- * For example, window.document.location is equivalent to
- * "propertyNamesString" = "document.location" and "base" = window
- * Evaluation is safe, so it stops on the first null or undefined object
- *
- * @param propertyNamesArray - array of strings that contains names of the properties to evaluate
- * @param base - base object to evaluate properties on
- * @return returns result of evaluation or empty string
- */
- richfaces.getValue = function(propertyNamesArray, base) {
- var result = base;
- var c = 0;
- do {
- result = result[propertyNamesArray[c++]];
- } while (result && c != propertyNamesArray.length);
-
- return result;
- };
-
- var VARIABLE_NAME_PATTERN_STRING = "[_A-Z,a-z]\\w*";
- var VARIABLES_CHAIN = new RegExp("^\\s*"+VARIABLE_NAME_PATTERN_STRING+"(?:\\s*\\.\\s*"+VARIABLE_NAME_PATTERN_STRING+")*\\s*$");
- var DOT_SEPARATOR = /\s*\.\s*/;
-
- richfaces.evalMacro = function(macro, base) {
- var value = "";
- // variable evaluation
- if (VARIABLES_CHAIN.test(macro)) {
- // object's variable evaluation
- var propertyNamesArray = jQuery.trim(macro).split(DOT_SEPARATOR);
- value = richfaces.getValue(propertyNamesArray, base);
- if (!value) {
- value = richfaces.getValue(propertyNamesArray, window);
- }
- } else {
- //js string evaluation
- try {
- if (base.eval) {
- value = base.eval(macro);
- } else with (base) {
- value = eval(macro) ;
- }
- } catch (e) {
- richfaces.log.warn("Exception: " + e.message + "\n[" + macro + "]");
- }
- }
-
- if (typeof value == 'function') {
- value = value(base);
- }
- //TODO 0 and false are also treated as null values
- return value || "";
- };
-
- var ALPHA_NUMERIC_MULTI_CHAR_REGEXP = /^\w+$/;
-
- richfaces.interpolate = function (placeholders, context) {
- var contextVarsArray = new Array();
- for (var contextVar in context) {
- if (ALPHA_NUMERIC_MULTI_CHAR_REGEXP.test(contextVar)) {
- //guarantees that no escaping for the below RegExp is necessary
- contextVarsArray.push(contextVar);
- }
- }
-
- var regexp = new RegExp("\\{(" + contextVarsArray.join("|") + ")\\}", "g");
- return placeholders.replace(regexp, function(str, contextVar) {return context[contextVar];});
- };
-
- richfaces.clonePosition = function(element, baseElement, positioning, offset) {
-
- };
- //
-
- var pollTracker = {};
- richfaces.startPoll = function(options) {
- var pollId = options.pollId;
- var interval = options.pollinterval;
- var ontimer = options.ontimer;
- richfaces.stopPoll(pollId);
-
- richfaces.setZeroRequestDelay(options);
-
- pollTracker[pollId] = window.setTimeout(function(){
- var pollElement = document.getElementById(pollId);
- try {
- ontimer.call(pollElement || window);
- richfaces.startPoll(options);
- } catch (e) {
- // TODO: handle exception
- }
- },interval);
- };
-
- richfaces.stopPoll = function(id) {
- if(pollTracker[id]){
- window.clearTimeout(pollTracker[id]);
- delete pollTracker[id];
- }
- };
-
- var pushTracker = {};
-
- richfaces.startPush = function(options) {
- var clientId = options.clientId;
- var pushResourceUrl = options.pushResourceUrl;
- var pushId = options.pushId;
- var interval = options.interval;
- var ondataavailable = options.ondataavailable;
- richfaces.setZeroRequestDelay(options);
-
- richfaces.stopPush(pushId);
-
- pushTracker[pushId] = setTimeout(function() { // TODO: define this function in richfaces object to avoid definition every time when call startPush
- var ajaxOptions = {
- type: "HEAD",
- //TODO - encodeURIComponent; URL sessionId handling check
- //TODO - add pushUri supports
- url: pushResourceUrl + "?id=" + pushId,
- dataType: "text",
- complete: function(xhr) {
- var isPushActive = !!pushTracker[pushId];
-
- //TODO may someone wish to stop push from dataavailable handler?
- delete pushTracker[pushId];
-
- if (xhr.status == 200 && xhr.getResponseHeader("Ajax-Push-Status") == "READY") {
- var pushElement = document.getElementById(clientId);
- try {
- ondataavailable.call(pushElement || window);
- } catch (e) {
- // TODO: handle exception
- }
- }
-
- if (isPushActive) {
- richfaces.startPush(options);
- }
- }
- };
-
- if (options.timeout) {
- ajaxOptions.timeout = options.timeout;
- }
-
- jQuery.ajax(ajaxOptions);
- }, interval);
- };
-
- richfaces.stopPush = function(id) {
- if (pushTracker[id]){
- window.clearTimeout(pushTracker[id]);
- delete pushTracker[id];
- }
- };
-
- var jsfEventsAdapterEventNames = {
- event: {
- 'begin': ['begin'],
- 'complete': ['beforedomupdate'],
- 'success': ['success', 'complete']
- },
- error: ['error', 'complete']
- };
-
- var getExtensionResponseElement = function(responseXML) {
- return jQuery("partial-response > extension#org\\.richfaces\\.extension", responseXML);
- };
-
- var JSON_STRING_START = /^\s*(\[|\{)/;
-
- var getJSONData = function(extensionElement, elementName) {
- var dataString = jQuery.trim(extensionElement.children(elementName).text());
- extensionElement.end();
- try {
- if (dataString) {
- if (JSON_STRING_START.test(dataString)) {
- return jQuery.parseJSON(dataString);
- } else {
- var parsedData = jQuery.parseJSON("{\"root\": " + dataString + "}");
- return parsedData.root;
- }
- }
- } catch (e) {
- richfaces.log.warn("Error evaluating JSON data from element <" + elementName + ">: " + e.message);
- }
- return null;
- };
-
- richfaces.createJSFEventsAdapter = function(handlers) {
- //hash of handlers
- //supported are:
- // - begin
- // - beforedomupdate
- // - success
- // - error
- // - complete
- handlers = handlers || {};
-
- return function(eventData) {
- var source = eventData.source;
- //that's request status, not status control data
- var status = eventData.status;
- var type = eventData.type;
-
- var typeHandlers = jsfEventsAdapterEventNames[type];
- var handlerNames = (typeHandlers || {})[status] || typeHandlers;
-
- if (handlerNames) {
- for (var i = 0; i < handlerNames.length; i++) {
- var eventType = handlerNames[i];
- var handler = handlers[eventType];
- if (handler) {
- var event = {};
- jQuery.extend(event, eventData);
- event.type = eventType;
- if (type != 'error') {
- delete event.status;
-
- if (event.responseXML) {
- var xml = getExtensionResponseElement(event.responseXML);
- var data = getJSONData(xml, "data");
- var componentData = getJSONData(xml, "componentData");
-
- event.data = data;
- event.componentData = componentData || {};
- }
- }
-
- handler.call(source, event);
- }
- }
- }
- };
- };
-
- var setGlobalStatusNameVariable = function(statusName) {
- //TODO: parallel requests
- if (statusName) {
- richfaces['statusName'] = statusName;
- } else {
- delete richfaces['statusName'];
- }
- }
-
- richfaces.setZeroRequestDelay = function(options) {
- if (typeof options.requestDelay == "undefined") {
- options.requestDelay = 0;
- }
- };
-
- var getGlobalStatusNameVariable = function() {
- return richfaces.statusName;
- }
-
- var chain = function() {
- var functions = arguments;
- if (functions.length == 1) {
- return functions[0];
- } else {
- return function() {
- var callResult;
- for (var i = 0; i < functions.length; i++) {
- var f = functions[i];
- callResult = f.apply(this, arguments);
- }
-
- return callResult;
- };
- }
- };
-
- /**
- * curry (g, a) (b) -> g(a, b)
- */
- var curry = function(g, a) {
- var _g = g;
- var _a = a;
-
- return function(b) {
- _g(_a, b);
- };
- };
-
- var createEventHandler = function(handlerCode) {
- if (handlerCode) {
- return new Function("event", handlerCode);
- }
-
- return null;
- };
-
- //TODO take events just from .java code using EL-expression
- var AJAX_EVENTS = (function() {
- var serverEventHandler = function(clientHandler, event) {
- var xml = getExtensionResponseElement(event.responseXML);
-
- var serverHandler = createEventHandler(xml.children(event.type).text());
- xml.end();
-
- if (clientHandler) {
- clientHandler.call(window, event);
- }
-
- if (serverHandler) {
- serverHandler.call(window, event);
- }
- };
-
- return {
- 'begin': null,
- 'complete': serverEventHandler,
- 'beforedomupdate': serverEventHandler
- }
- }());
-
- richfaces.ajax = function(source, event, options) {
- var sourceId = (typeof source == 'object' && source.id) ? source.id : source;
-
- options = options || {};
-
- parameters = options.parameters || {}; // TODO: change "parameters" to "richfaces.ajax.params"
- parameters.execute = "@component";
- parameters.render = "@component";
-
- if (!parameters["org.richfaces.ajax.component"]) {
- parameters["org.richfaces.ajax.component"] = sourceId;
- }
-
- var eventHandlers;
-
- for (var eventName in AJAX_EVENTS) {
- var handlerCode = options[eventName];
- var handler = typeof handlerCode == "function" ? handlerCode : createEventHandler(handlerCode);
-
- var serverHandler = AJAX_EVENTS[eventName];
- if (serverHandler) {
- handler = curry(serverHandler, handler);
- }
-
- if (handler) {
- eventHandlers = eventHandlers || {};
- eventHandlers[eventName] = handler;
- }
- }
-
- if (options.status) {
- var namedStatusEventHandler = function() { setGlobalStatusNameVariable(options.status); };
-
- //TODO add support for options.submit
- eventHandlers = eventHandlers || {};
- if (eventHandlers.begin) {
- eventHandlers.begin = chain(namedStatusEventHandler, eventHandlers.begin);
- } else {
- eventHandlers.begin = namedStatusEventHandler;
- }
- }
-
- if (options.incId) {
- parameters[sourceId] = sourceId;
- }
-
- if (eventHandlers) {
- var eventsAdapter = richfaces.createJSFEventsAdapter(eventHandlers);
- parameters['onevent'] = eventsAdapter;
- parameters['onerror'] = eventsAdapter;
- }
-
- if (richfaces.queue) {
- parameters.queueId = options.queueId;
- }
-
- jsf.ajax.request(source, event, parameters);
- };
-
- var RICHFACES_AJAX_STATUS = "richfaces:ajaxStatus";
-
- var getStatusDataAttributeName = function(statusName) {
- return statusName ? (RICHFACES_AJAX_STATUS + "@" + statusName) : RICHFACES_AJAX_STATUS;
- };
-
- var statusAjaxEventHandler = function(data, methodName) {
- if (methodName) {
- //global status name
- var statusName = getGlobalStatusNameVariable();
- var source = data.source;
-
- var statusApplied = false;
- var statusDataAttribute = getStatusDataAttributeName(statusName);
-
- var statusContainers;
- if (statusName) {
- statusContainers = [jQuery(document)];
- } else {
- statusContainers = [jQuery(source).parents('form'), jQuery(document)];
- }
-
- for (var containerIdx = 0; containerIdx < statusContainers.length && !statusApplied;
- containerIdx++) {
-
- var statusContainer = statusContainers[containerIdx];
- var statuses = statusContainer.data(statusDataAttribute);
- if (statuses) {
- for (var statusId in statuses) {
- var status = statuses[statusId];
- var result = status[methodName].apply(status, arguments);
- if (result) {
- statusApplied = true;
- } else {
- delete statuses[statusId];
- }
- }
-
- if (!statusApplied) {
- statusContainer.removeData(statusDataAttribute);
- }
- }
- }
- }
- };
-
- var initializeStatuses = function() {
- var thisFunction = arguments.callee;
- if (!thisFunction.initialized) {
- thisFunction.initialized = true;
-
- var jsfEventsListener = richfaces.createJSFEventsAdapter({
- begin: function(event) { statusAjaxEventHandler(event, 'start'); },
- error: function(event) { statusAjaxEventHandler(event, 'error'); },
- success: function(event) { statusAjaxEventHandler(event, 'success'); },
- complete: function() { setGlobalStatusNameVariable(null); }
- });
-
- jsf.ajax.addOnEvent(jsfEventsListener);
- //TODO blocks default alert error handler
- jsf.ajax.addOnError(jsfEventsListener);
- }
- };
-
- richfaces.status = function(statusId, options) {
- this.statusId = statusId;
- this.options = options || {};
- this.register();
- };
-
- jQuery.extend(richfaces.status.prototype, (function() {
- //TODO - support for parallel requests
-
- var getElement = function() {
- var elt = document.getElementById(this.statusId);
- return elt ? jQuery(elt) : null;
- };
-
- var showHide = function(selector) {
- var element = getElement.call(this);
- if (element) {
- var statusElts = element.children();
- statusElts.each(function() {
- var t = jQuery(this);
- t.css('display', t.is(selector) ? '': 'none');
- });
-
- return true;
- }
-
- return false;
- };
-
- return {
- register: function() {
- initializeStatuses();
-
- var statusName = this.options.statusName;
- var dataStatusAttribute = getStatusDataAttributeName(statusName);
-
- var container;
- if (statusName) {
- container = jQuery(document);
- } else {
- container = getElement.call(this).parents('form');
- if (container.length == 0) {
- container = jQuery(document);
- };
- }
-
- var statuses = container.data(dataStatusAttribute);
- if (!statuses) {
- statuses = {};
- container.data(dataStatusAttribute, statuses);
- }
-
- statuses[this.statusId] = this;
- },
-
- start: function() {
- if (this.options.onstart) {
- this.options.onstart.apply(this, arguments);
- }
-
- return showHide.call(this, '.rich-status-start');
- },
-
- stop: function() {
- if (this.options.onstop) {
- this.options.onstop.apply(this, arguments);
- }
- },
-
- success: function() {
- if (this.options.onsuccess) {
- this.options.onsuccess.apply(this, arguments);
- }
- this.stop();
-
- return showHide.call(this, '.rich-status-stop');
- },
-
- error: function() {
- if (this.options.onerror) {
- this.options.onerror.apply(this, arguments);
- }
- this.stop();
-
- return showHide.call(this, ':not(.rich-status-error) + .rich-status-stop, .rich-status-error');
- }
- };
- }()));
-
- var ajaxOnComplete = function (data) {
- var type = data.type;
- var responseXML = data.responseXML;
-
- if (data.type == 'event' && data.status == 'complete' && responseXML) {
- var partialResponse = jQuery(responseXML).children("partial-response");
- if (partialResponse && partialResponse.length) {
- var elements = partialResponse.children('changes').children('update, delete');
- jQuery.each(elements, function () {
- richfaces.cleanDom(jQuery(this).attr('id'));
- });
- }
- }
- };
- // move this code to somewhere
- if (typeof jsf != 'undefined') {
- jsf.ajax.addOnEvent(ajaxOnComplete);
- }
- if (window.addEventListener) {
- window.addEventListener("unload", richfaces.cleanDom, false);
- } else {
- window.attachEvent("onunload", richfaces.cleanDom);
- }
-}(jQuery, RichFaces));
-
14 years, 2 months