JBoss Rich Faces SVN: r19415 - modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2010-10-01 11:26:52 -0400 (Fri, 01 Oct 2010)
New Revision: 19415
Modified:
modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/ajaxMode.xhtml
modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/clientMode.xhtml
Log:
https://jira.jboss.org/browse/RFPL-864
* added missing head section
Modified: modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/ajaxMode.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/ajaxMode.xhtml 2010-10-01 15:14:41 UTC (rev 19414)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/ajaxMode.xhtml 2010-10-01 15:26:52 UTC (rev 19415)
@@ -27,6 +27,18 @@
-->
<ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="head">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="outOfTemplateBefore">
+ </ui:define>
+
<ui:define name="component">
<rich:progressBar id="progressBar"
comleteClass="#{richProgressBarBean.attributes['completeClass'].value}"
Modified: modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/clientMode.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/clientMode.xhtml 2010-10-01 15:14:41 UTC (rev 19414)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/clientMode.xhtml 2010-10-01 15:26:52 UTC (rev 19415)
@@ -27,6 +27,17 @@
-->
<ui:composition template="/templates/template.xhtml">
+ <ui:define name="head">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="outOfTemplateBefore">
+ </ui:define>
+
<ui:define name="component">
<script type="text/javascript">
15 years, 7 months
JBoss Rich Faces SVN: r19414 - in modules/tests/metamer/trunk/application/src/main: webapp/components and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2010-10-01 11:14:41 -0400 (Fri, 01 Oct 2010)
New Revision: 19414
Added:
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichProgressBarBean.java
modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/
modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/ajaxMode.xhtml
modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/clientMode.xhtml
modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/list.xhtml
Modified:
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java
Log:
https://jira.jboss.org/browse/RFPL-864
* two pages for rich:progressBar added
Modified: modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java
===================================================================
--- modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java 2010-10-01 15:08:51 UTC (rev 19413)
+++ modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java 2010-10-01 15:14:41 UTC (rev 19414)
@@ -128,6 +128,7 @@
components.put("richList", "Rich List");
components.put("richPanel", "Rich Panel");
components.put("richPopupPanel", "Rich Popup Panel");
+ components.put("richProgressBar", "Rich Progress Bar");
components.put("richSubTable", "Rich Subtable");
components.put("richSubTableToggleControl", "Rich Subtable Toggle Control");
components.put("richToggleControl", "Rich Toggle Control");
Added: modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichProgressBarBean.java
===================================================================
--- modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichProgressBarBean.java (rev 0)
+++ modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichProgressBarBean.java 2010-10-01 15:14:41 UTC (rev 19414)
@@ -0,0 +1,118 @@
+/*******************************************************************************
+ * 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.tests.metamer.bean;
+
+import java.io.Serializable;
+import java.util.Date;
+
+import javax.annotation.PostConstruct;
+import javax.faces.bean.ManagedBean;
+import javax.faces.bean.SessionScoped;
+import org.richfaces.component.UIProgressBar;
+
+import org.richfaces.tests.metamer.Attributes;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Managed bean for rich:progressBar.
+ *
+ * @author <a href="mailto:ppitonak@redhat.com">Pavol Pitonak</a>
+ * @version $Revision$
+ */
+@ManagedBean(name = "richProgressBarBean")
+@SessionScoped
+public class RichProgressBarBean implements Serializable {
+
+ private static final long serialVersionUID = -1L;
+ private static Logger logger;
+ private Attributes attributes;
+ private boolean buttonRendered = true;
+ private Long startTime;
+
+ /**
+ * Initializes the managed bean.
+ */
+ @PostConstruct
+ public void init() {
+ logger = LoggerFactory.getLogger(getClass());
+ logger.debug("initializing bean " + getClass().getName());
+
+ attributes = Attributes.getUIComponentAttributes(UIProgressBar.class, getClass());
+
+ attributes.setAttribute("maxValue", 100);
+ attributes.setAttribute("minValue", -1);
+ attributes.setAttribute("interval", 1000);
+ attributes.setAttribute("rendered", true);
+
+ // attributes tested in another way
+ attributes.remove("mode");
+ }
+
+ public Attributes getAttributes() {
+ return attributes;
+ }
+
+ public void setAttributes(Attributes attributes) {
+ this.attributes = attributes;
+ }
+
+ public String startProcess() {
+ attributes.get("enabled").setValue(true);
+ setButtonRendered(false);
+ setStartTime(new Date().getTime());
+ return null;
+ }
+
+ public Long getCurrentValue() {
+ if (Boolean.TRUE.equals(attributes.get("enabled").getValue())) {
+ Long current = (new Date().getTime() - startTime) / 1000;
+ if (current > 100) {
+ setButtonRendered(true);
+ } else if (current.equals(0L)) {
+ return new Long(1);
+ }
+ return (new Date().getTime() - startTime) / 1000;
+ }
+ if (startTime == null) {
+ return Long.valueOf(-1);
+ } else {
+ return Long.valueOf(101);
+ }
+ }
+
+ public Long getStartTime() {
+ return startTime;
+ }
+
+ public void setStartTime(Long startTime) {
+ this.startTime = startTime;
+ }
+
+ public boolean isButtonRendered() {
+ return buttonRendered;
+ }
+
+ public void setButtonRendered(boolean buttonRendered) {
+ this.buttonRendered = buttonRendered;
+ }
+}
Property changes on: modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichProgressBarBean.java
___________________________________________________________________
Name: svn:keywords
+ Revision
Added: modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/ajaxMode.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/ajaxMode.xhtml (rev 0)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/ajaxMode.xhtml 2010-10-01 15:14:41 UTC (rev 19414)
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
+ xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
+
+ <!--
+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.
+ -->
+
+ <ui:composition template="/templates/template.xhtml">
+ <ui:define name="component">
+ <rich:progressBar id="progressBar"
+ comleteClass="#{richProgressBarBean.attributes['completeClass'].value}"
+ data="#{richProgressBarBean.attributes['data'].value}"
+ enabled="#{richProgressBarBean.attributes['enabled'].value}"
+ finishClass="#{richProgressBarBean.attributes['finishClass'].value}"
+ focus="#{richProgressBarBean.attributes['focus'].value}"
+ initialClass="#{richProgressBarBean.attributes['initialClass'].value}"
+ interval="#{richProgressBarBean.attributes['interval'].value}"
+ label="#{richProgressBarBean.attributes['label'].value}"
+ maxValue="#{richProgressBarBean.attributes['maxValue'].value}"
+ minValue="#{richProgressBarBean.attributes['minValue'].value}"
+ mode="ajax"
+ onbeforedomupdate="#{richProgressBarBean.attributes['onbeforedomupdate'].value}"
+ onclick="#{richProgressBarBean.attributes['onclick'].value}"
+ oncomplete="#{richProgressBarBean.attributes['oncomplete'].value}"
+ ondblclick="#{richProgressBarBean.attributes['ondblclick'].value}"
+ onmousedown="#{richProgressBarBean.attributes['onmousedown'].value}"
+ onmousemove="#{richProgressBarBean.attributes['onmousemove'].value}"
+ onmouseout="#{richProgressBarBean.attributes['onmouseout'].value}"
+ onmouseover="#{richProgressBarBean.attributes['onmouseover'].value}"
+ onmouseup="#{richProgressBarBean.attributes['onmouseup'].value}"
+ onsubmit="#{richProgressBarBean.attributes['onsubmit'].value}"
+ parameters="#{richProgressBarBean.attributes['parameters'].value}"
+ reRenderAfterComplete="#{richProgressBarBean.attributes['reRenderAfterComplete'].value}"
+ remainClass="#{richProgressBarBean.attributes['remainClass'].value}"
+ rendered="#{richProgressBarBean.attributes['rendered'].value}"
+ value="#{richProgressBarBean.currentValue}"
+ >
+
+ <f:facet name="initial">
+ <h:outputText id="initialOutput" value="Process hasn't started yet" />
+ <br/>
+ <a4j:commandButton id="startButton"
+ action="#{richProgressBarBean.startProcess}"
+ value="Start Process" execute="@form"
+ rendered="#{richProgressBarBean.buttonRendered}"
+ style="margin: 9px 0px 5px;" />
+ </f:facet>
+ <f:facet name="complete">
+ <h:outputText id="completeOutput" value="Process Done" />
+ <br/>
+ <a4j:commandButton id="restartButton"
+ action="#{richProgressBarBean.startProcess}"
+ value="Restart Process" execute="@form"
+ rendered="#{richProgressBarBean.buttonRendered}"
+ style="margin: 9px 0px 5px;" />
+ </f:facet>
+ <h:outputText value="#{richProgressBarBean.currentValue} %"/>
+ </rich:progressBar>
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <metamer:attributes value="#{richProgressBarBean.attributes}" id="attributes" render="log"/>
+ </ui:define>
+
+ </ui:composition>
+</html>
\ No newline at end of file
Added: modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/clientMode.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/clientMode.xhtml (rev 0)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/clientMode.xhtml 2010-10-01 15:14:41 UTC (rev 19414)
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
+ xmlns:rich="http://richfaces.org/rich">
+
+ <!--
+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.
+ -->
+
+ <ui:composition template="/templates/template.xhtml">
+ <ui:define name="component">
+
+ <script type="text/javascript">
+ //<![CDATA[
+ var counter = 1;
+ var intervalID;
+ function updateProgress(i) {
+ RichFaces.$('#{rich:clientId('progressBar')}').setValue(counter*5);
+ if ((counter++)>20){
+ clearInterval(intervalID);
+ document.getElementById('button').disabled=false;
+ }
+ }
+
+ function startProgress(){
+ counter=1;
+ document.getElementById('button').disabled=true;
+ RichFaces.$('#{rich:clientId('progressBar')}').enable();
+ RichFaces.$('#{rich:clientId('progressBar')}').setValue(1);
+ intervalID = setInterval(updateProgress,1000);
+ }
+ //]]>
+ </script>
+
+ <rich:progressBar id="progressBar"
+ comleteClass="#{richProgressBarBean.attributes['completeClass'].value}"
+ data="#{richProgressBarBean.attributes['data'].value}"
+ enabled="#{richProgressBarBean.attributes['enabled'].value}"
+ finishClass="#{richProgressBarBean.attributes['finishClass'].value}"
+ focus="#{richProgressBarBean.attributes['focus'].value}"
+ initialClass="#{richProgressBarBean.attributes['initialClass'].value}"
+ interval="#{richProgressBarBean.attributes['interval'].value}"
+ label="#{richProgressBarBean.attributes['label'].value}"
+ maxValue="#{richProgressBarBean.attributes['maxValue'].value}"
+ minValue="#{richProgressBarBean.attributes['minValue'].value}"
+ mode="client"
+ onbeforedomupdate="#{richProgressBarBean.attributes['onbeforedomupdate'].value}"
+ onclick="#{richProgressBarBean.attributes['onclick'].value}"
+ oncomplete="#{richProgressBarBean.attributes['oncomplete'].value}"
+ ondblclick="#{richProgressBarBean.attributes['ondblclick'].value}"
+ onmousedown="#{richProgressBarBean.attributes['onmousedown'].value}"
+ onmousemove="#{richProgressBarBean.attributes['onmousemove'].value}"
+ onmouseout="#{richProgressBarBean.attributes['onmouseout'].value}"
+ onmouseover="#{richProgressBarBean.attributes['onmouseover'].value}"
+ onmouseup="#{richProgressBarBean.attributes['onmouseup'].value}"
+ onsubmit="#{richProgressBarBean.attributes['onsubmit'].value}"
+ parameters="#{richProgressBarBean.attributes['parameters'].value}"
+ reRenderAfterComplete="#{richProgressBarBean.attributes['reRenderAfterComplete'].value}"
+ remainClass="#{richProgressBarBean.attributes['remainClass'].value}"
+ rendered="#{richProgressBarBean.attributes['rendered'].value}"
+ value="#{richProgressBarBean.currentValue}"
+ >
+ <f:facet name="initial">
+ <h:outputText id="initialOutput" value="Process hasn't started yet"/>
+ </f:facet>
+ <f:facet name="complete">
+ <h:outputText id="completeOutput" value="Process Done"/>
+ </f:facet>
+ </rich:progressBar>
+ <button type="button" onclick="startProgress();" style="margin: 9px 0px 5px;" id="button">Start Progress</button>
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <metamer:attributes value="#{richProgressBarBean.attributes}" id="attributes" render="log"/>
+ </ui:define>
+
+ </ui:composition>
+</html>
\ No newline at end of file
Added: modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/list.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/list.xhtml (rev 0)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richProgressBar/list.xhtml 2010-10-01 15:14:41 UTC (rev 19414)
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
+
+ <!--
+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.
+ -->
+
+ <ui:composition template="/templates/list.xhtml">
+
+ <ui:define name="pageTitle">Rich Progress Bar</ui:define>
+
+ <ui:define name="links">
+
+ <metamer:testPageLink id="ajaxMode" outcome="ajaxMode" value="Ajax Mode">
+ Simple page containing <b>rich:progressBar</b> in ajax mode and input boxes for all its attributes.
+ </metamer:testPageLink>
+
+ <metamer:testPageLink id="clientMode" outcome="clientMode" value="Client Mode">
+ Simple page containing <b>rich:progressBar</b> in client mode and input boxes for all its attributes.
+ </metamer:testPageLink>
+ </ui:define>
+
+ </ui:composition>
+
+</html>
15 years, 7 months
JBoss Rich Faces SVN: r19413 - in modules/tests/metamer/trunk: ftest and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-10-01 11:08:51 -0400 (Fri, 01 Oct 2010)
New Revision: 19413
Modified:
modules/tests/metamer/trunk/ftest/pom.xml
modules/tests/metamer/trunk/pom.xml
Log:
switched back to richfaces 4.0.0-SNAPSHOT versions
Modified: modules/tests/metamer/trunk/ftest/pom.xml
===================================================================
--- modules/tests/metamer/trunk/ftest/pom.xml 2010-10-01 14:38:53 UTC (rev 19412)
+++ modules/tests/metamer/trunk/ftest/pom.xml 2010-10-01 15:08:51 UTC (rev 19413)
@@ -80,8 +80,8 @@
<properties>
<context.path>/metamer/</context.path>
<deployable.classifier>mojarra</deployable.classifier>
- <deployable.version>4.0.0.20100929-M3</deployable.version>
- <ftest.source.version>4.0.0.20100929-M3</ftest.source.version>
+ <deployable.version>4.0.0-SNAPSHOT</deployable.version>
+ <ftest.source.version>4.0.0-SNAPSHOT</ftest.source.version>
<testng.suite.xml>src/test/resources/testng.xml</testng.suite.xml>
<container.home>target/installs/${container.dir.deflatted}/${container.dir.unflatted}</container.home>
</properties>
Modified: modules/tests/metamer/trunk/pom.xml
===================================================================
--- modules/tests/metamer/trunk/pom.xml 2010-10-01 14:38:53 UTC (rev 19412)
+++ modules/tests/metamer/trunk/pom.xml 2010-10-01 15:08:51 UTC (rev 19413)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20100929-M3</version>
+ <version>4.0.0-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.tests</groupId>
@@ -108,7 +108,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<richfaces.checkstyle.version>2</richfaces.checkstyle.version>
- <version.richfaces>4.0.0.20100929-M3</version.richfaces>
+ <version.richfaces>4.0.0-SNAPSHOT</version.richfaces>
</properties>
<dependencyManagement>
15 years, 7 months
JBoss Rich Faces SVN: r19412 - in modules/tests/metamer/trunk: application and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-10-01 10:38:53 -0400 (Fri, 01 Oct 2010)
New Revision: 19412
Modified:
modules/tests/metamer/trunk/application/pom.xml
modules/tests/metamer/trunk/ftest-source/pom.xml
modules/tests/metamer/trunk/ftest/pom.xml
modules/tests/metamer/trunk/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: modules/tests/metamer/trunk/application/pom.xml
===================================================================
--- modules/tests/metamer/trunk/application/pom.xml 2010-10-01 14:38:39 UTC (rev 19411)
+++ modules/tests/metamer/trunk/application/pom.xml 2010-10-01 14:38:53 UTC (rev 19412)
@@ -19,7 +19,7 @@
<parent>
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0.20100929-M3</version>
+ <version>4.0.0-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.tests</groupId>
Modified: modules/tests/metamer/trunk/ftest/pom.xml
===================================================================
--- modules/tests/metamer/trunk/ftest/pom.xml 2010-10-01 14:38:39 UTC (rev 19411)
+++ modules/tests/metamer/trunk/ftest/pom.xml 2010-10-01 14:38:53 UTC (rev 19412)
@@ -30,14 +30,14 @@
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-ftest</artifactId>
- <version>4.0.0.20100929-M3</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Metamer: RichFaces Testing Application - Functional Test</name>
<packaging>pom</packaging>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/tests/metamer/ta...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/tests/metamer/tags/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/RichFaces/modules/tests/metamer/tags/meta...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/tests/metamer/tr...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/tests/metamer/trunk...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/RichFaces/modules/tests/metamer/trunk/ftest</url>
</scm>
<licenses>
Modified: modules/tests/metamer/trunk/ftest-source/pom.xml
===================================================================
--- modules/tests/metamer/trunk/ftest-source/pom.xml 2010-10-01 14:38:39 UTC (rev 19411)
+++ modules/tests/metamer/trunk/ftest-source/pom.xml 2010-10-01 14:38:53 UTC (rev 19412)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0.20100929-M3</version>
+ <version>4.0.0-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.tests</groupId>
Modified: modules/tests/metamer/trunk/pom.xml
===================================================================
--- modules/tests/metamer/trunk/pom.xml 2010-10-01 14:38:39 UTC (rev 19411)
+++ modules/tests/metamer/trunk/pom.xml 2010-10-01 14:38:53 UTC (rev 19412)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0.20100929-M3</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Metamer: RichFaces Testing Application - Project Root</name>
@@ -50,9 +50,9 @@
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/tests/metamer/ta...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/tests/metamer/tags/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/RichFaces/modules/tests/metamer/tags/meta...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/tests/metamer/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/tests/metamer/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/RichFaces/modules/tests/metamer/trunk</url>
</scm>
<distributionManagement>
15 years, 7 months
JBoss Rich Faces SVN: r19411 - modules/tests/metamer/tags.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-10-01 10:38:39 -0400 (Fri, 01 Oct 2010)
New Revision: 19411
Added:
modules/tests/metamer/tags/metamer-4.0.0.20100929-M3/
Log:
[maven-scm] copy for tag metamer-4.0.0.20100929-M3
Copied: modules/tests/metamer/tags/metamer-4.0.0.20100929-M3 (from rev 19410, modules/tests/metamer/trunk)
15 years, 7 months
JBoss Rich Faces SVN: r19410 - in modules/tests/metamer/trunk: application and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-10-01 10:38:14 -0400 (Fri, 01 Oct 2010)
New Revision: 19410
Modified:
modules/tests/metamer/trunk/application/pom.xml
modules/tests/metamer/trunk/ftest-source/pom.xml
modules/tests/metamer/trunk/ftest/pom.xml
modules/tests/metamer/trunk/pom.xml
Log:
[maven-release-plugin] prepare release metamer-4.0.0.20100929-M3
Modified: modules/tests/metamer/trunk/application/pom.xml
===================================================================
--- modules/tests/metamer/trunk/application/pom.xml 2010-10-01 14:34:19 UTC (rev 19409)
+++ modules/tests/metamer/trunk/application/pom.xml 2010-10-01 14:38:14 UTC (rev 19410)
@@ -19,7 +19,7 @@
<parent>
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100929-M3</version>
</parent>
<groupId>org.richfaces.tests</groupId>
Modified: modules/tests/metamer/trunk/ftest/pom.xml
===================================================================
--- modules/tests/metamer/trunk/ftest/pom.xml 2010-10-01 14:34:19 UTC (rev 19409)
+++ modules/tests/metamer/trunk/ftest/pom.xml 2010-10-01 14:38:14 UTC (rev 19410)
@@ -30,14 +30,14 @@
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-ftest</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100929-M3</version>
<name>Metamer: RichFaces Testing Application - Functional Test</name>
<packaging>pom</packaging>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/tests/metamer/tr...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/tests/metamer/trunk...</developerConnection>
- <url>http://fisheye.jboss.org/browse/RichFaces/modules/tests/metamer/trunk/ftest</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/tests/metamer/ta...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/tests/metamer/tags/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/RichFaces/modules/tests/metamer/tags/meta...</url>
</scm>
<licenses>
@@ -80,8 +80,8 @@
<properties>
<context.path>/metamer/</context.path>
<deployable.classifier>mojarra</deployable.classifier>
- <deployable.version>4.0.0-SNAPSHOT</deployable.version>
- <ftest.source.version>4.0.0-SNAPSHOT</ftest.source.version>
+ <deployable.version>4.0.0.20100929-M3</deployable.version>
+ <ftest.source.version>4.0.0.20100929-M3</ftest.source.version>
<testng.suite.xml>src/test/resources/testng.xml</testng.suite.xml>
<container.home>target/installs/${container.dir.deflatted}/${container.dir.unflatted}</container.home>
</properties>
Modified: modules/tests/metamer/trunk/ftest-source/pom.xml
===================================================================
--- modules/tests/metamer/trunk/ftest-source/pom.xml 2010-10-01 14:34:19 UTC (rev 19409)
+++ modules/tests/metamer/trunk/ftest-source/pom.xml 2010-10-01 14:38:14 UTC (rev 19410)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100929-M3</version>
</parent>
<groupId>org.richfaces.tests</groupId>
Modified: modules/tests/metamer/trunk/pom.xml
===================================================================
--- modules/tests/metamer/trunk/pom.xml 2010-10-01 14:34:19 UTC (rev 19409)
+++ modules/tests/metamer/trunk/pom.xml 2010-10-01 14:38:14 UTC (rev 19410)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100929-M3</version>
<packaging>pom</packaging>
<name>Metamer: RichFaces Testing Application - Project Root</name>
@@ -50,9 +50,9 @@
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/tests/metamer/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/tests/metamer/trunk</developerConnection>
- <url>http://fisheye.jboss.org/browse/RichFaces/modules/tests/metamer/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/tests/metamer/ta...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/tests/metamer/tags/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/RichFaces/modules/tests/metamer/tags/meta...</url>
</scm>
<distributionManagement>
15 years, 7 months
JBoss Rich Faces SVN: r19409 - modules/tests/metamer/trunk/ftest.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-10-01 10:34:19 -0400 (Fri, 01 Oct 2010)
New Revision: 19409
Modified:
modules/tests/metamer/trunk/ftest/pom.xml
Log:
wrong change of deployable.version and ftest.source.version to release version
Modified: modules/tests/metamer/trunk/ftest/pom.xml
===================================================================
--- modules/tests/metamer/trunk/ftest/pom.xml 2010-10-01 14:22:12 UTC (rev 19408)
+++ modules/tests/metamer/trunk/ftest/pom.xml 2010-10-01 14:34:19 UTC (rev 19409)
@@ -80,8 +80,8 @@
<properties>
<context.path>/metamer/</context.path>
<deployable.classifier>mojarra</deployable.classifier>
- <deployable.version>4.0.0.20100929-M3</deployable.version>
- <ftest.source.version>4.0.0.20100929-M3</ftest.source.version>
+ <deployable.version>4.0.0-SNAPSHOT</deployable.version>
+ <ftest.source.version>4.0.0-SNAPSHOT</ftest.source.version>
<testng.suite.xml>src/test/resources/testng.xml</testng.suite.xml>
<container.home>target/installs/${container.dir.deflatted}/${container.dir.unflatted}</container.home>
</properties>
15 years, 7 months
JBoss Rich Faces SVN: r19408 - in modules/tests/metamer/trunk: ftest-source and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-10-01 10:22:12 -0400 (Fri, 01 Oct 2010)
New Revision: 19408
Modified:
modules/tests/metamer/trunk/ftest-source/pom.xml
modules/tests/metamer/trunk/ftest/pom.xml
Log:
ftest tied on richfaces-selenium 1.5.2.Final and richfaces 4.0.0.20100929-M3
Modified: modules/tests/metamer/trunk/ftest/pom.xml
===================================================================
--- modules/tests/metamer/trunk/ftest/pom.xml 2010-10-01 14:13:23 UTC (rev 19407)
+++ modules/tests/metamer/trunk/ftest/pom.xml 2010-10-01 14:22:12 UTC (rev 19408)
@@ -25,7 +25,7 @@
<parent>
<artifactId>functional-test-jboss-ci-template</artifactId>
<groupId>org.jboss.test.richfaces-selenium</groupId>
- <version>1.5.2-SNAPSHOT</version>
+ <version>1.5.2.Final</version>
</parent>
<groupId>org.richfaces.tests</groupId>
@@ -80,8 +80,8 @@
<properties>
<context.path>/metamer/</context.path>
<deployable.classifier>mojarra</deployable.classifier>
- <deployable.version>4.0.0-SNAPSHOT</deployable.version>
- <ftest.source.version>4.0.0-SNAPSHOT</ftest.source.version>
+ <deployable.version>4.0.0.20100929-M3</deployable.version>
+ <ftest.source.version>4.0.0.20100929-M3</ftest.source.version>
<testng.suite.xml>src/test/resources/testng.xml</testng.suite.xml>
<container.home>target/installs/${container.dir.deflatted}/${container.dir.unflatted}</container.home>
</properties>
Modified: modules/tests/metamer/trunk/ftest-source/pom.xml
===================================================================
--- modules/tests/metamer/trunk/ftest-source/pom.xml 2010-10-01 14:13:23 UTC (rev 19407)
+++ modules/tests/metamer/trunk/ftest-source/pom.xml 2010-10-01 14:22:12 UTC (rev 19408)
@@ -37,7 +37,7 @@
<dependency>
<artifactId>root</artifactId>
<groupId>org.jboss.test.richfaces-selenium</groupId>
- <version>1.5.2-SNAPSHOT</version>
+ <version>1.5.2.Final</version>
<scope>import</scope>
<type>pom</type>
</dependency>
15 years, 7 months
JBoss Rich Faces SVN: r19407 - modules/tests/metamer/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-10-01 10:13:23 -0400 (Fri, 01 Oct 2010)
New Revision: 19407
Modified:
modules/tests/metamer/trunk/pom.xml
Log:
tied on richfaces version 4.0.0.20100929-M3
Modified: modules/tests/metamer/trunk/pom.xml
===================================================================
--- modules/tests/metamer/trunk/pom.xml 2010-10-01 14:10:55 UTC (rev 19406)
+++ modules/tests/metamer/trunk/pom.xml 2010-10-01 14:13:23 UTC (rev 19407)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20100929-M3</version>
</parent>
<groupId>org.richfaces.tests</groupId>
@@ -108,7 +108,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<richfaces.checkstyle.version>2</richfaces.checkstyle.version>
- <version.richfaces>4.0.0-SNAPSHOT</version.richfaces>
+ <version.richfaces>4.0.0.20100929-M3</version.richfaces>
</properties>
<dependencyManagement>
15 years, 7 months
JBoss Rich Faces SVN: r19406 - modules/tests/metamer/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-10-01 10:10:55 -0400 (Fri, 01 Oct 2010)
New Revision: 19406
Modified:
modules/tests/metamer/trunk/pom.xml
Log:
added war-myfaces to release configuration profiles
Modified: modules/tests/metamer/trunk/pom.xml
===================================================================
--- modules/tests/metamer/trunk/pom.xml 2010-10-01 14:09:38 UTC (rev 19405)
+++ modules/tests/metamer/trunk/pom.xml 2010-10-01 14:10:55 UTC (rev 19406)
@@ -151,7 +151,7 @@
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
- <arguments>-Pmyfaces -Dselenium.test.skip=true -Dselenium.server.skip=true</arguments>
+ <arguments>-Pmyfaces,war-myfaces -Dselenium.test.skip=true -Dselenium.server.skip=true</arguments>
<tagBase>https://svn.jboss.org/repos/richfaces/modules/tests/metamer/tags</tagBase>
<branchBase>https://svn.jboss.org/repos/richfaces/modules/tests/metamer/branches</branchBase>
</configuration>
15 years, 7 months