gatein SVN: r7258 - portal/trunk/web/portal/src/main/webapp/groovy/organization/webui/component.
by do-not-reply@jboss.org
Author: phuong_vu
Date: 2011-08-31 02:34:36 -0400 (Wed, 31 Aug 2011)
New Revision: 7258
Modified:
portal/trunk/web/portal/src/main/webapp/groovy/organization/webui/component/UIPermissionSelector.gtmpl
Log:
GTNPORTAL-2060 IE : show error message 'Invalid character' when Add new Portal
Modified: portal/trunk/web/portal/src/main/webapp/groovy/organization/webui/component/UIPermissionSelector.gtmpl
===================================================================
--- portal/trunk/web/portal/src/main/webapp/groovy/organization/webui/component/UIPermissionSelector.gtmpl 2011-08-31 06:16:07 UTC (rev 7257)
+++ portal/trunk/web/portal/src/main/webapp/groovy/organization/webui/component/UIPermissionSelector.gtmpl 2011-08-31 06:34:36 UTC (rev 7258)
@@ -47,7 +47,7 @@
<td>
<%/*Click on this action button will pop up the permission selector*/%>
<%
- String deletePermissionEvent = "#";
+ String deletePermissionEvent = "javascript:void(0)";
String css = "FloatBlockHidden ActionButton SimpleStyle";
if(permission.getExpression() != null && permission.getExpression().length() > 0) {
deletePermissionEvent = uiForm.event("DeletePermission", uicomponent.getId(), "");
13 years, 3 months
gatein SVN: r7257 - portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/core.
by do-not-reply@jboss.org
Author: phuong_vu
Date: 2011-08-31 02:16:07 -0400 (Wed, 31 Aug 2011)
New Revision: 7257
Modified:
portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/core/UIMaskLayer.js
Log:
GTNPORTAL-2035 infinite page scrolling in edit permission settings for new portal
Modified: portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/core/UIMaskLayer.js
===================================================================
--- portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/core/UIMaskLayer.js 2011-08-30 18:30:04 UTC (rev 7256)
+++ portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/core/UIMaskLayer.js 2011-08-31 06:16:07 UTC (rev 7257)
@@ -127,8 +127,17 @@
maskLayer.className = "MaskLayer" ;
maskLayer.id = "MaskLayer" ;
maskLayer.maxZIndex = eXo.webui.UIPopup.zIndex + 1; //3 ;
- maskLayer.style.width = Browser.getBrowserWidth() + "px";
- maskLayer.style.height = Browser.getBrowserHeight() + "px";
+
+ var offsetParent = maskLayer.offsetParent;
+ if (offsetParent && eXo.core.Browser.findPosX(offsetParent) != 0
+ && eXo.core.Browser.findPosY(offsetParent) != 0) {
+ maskLayer.style.width = offsetParent.offsetWidth + "px";
+ maskLayer.style.height = offsetParent.offsetHeight + "px";
+ } else {
+ maskLayer.style.width = Browser.getBrowserWidth() + "px";
+ maskLayer.style.height = Browser.getBrowserHeight() + "px";
+ }
+
maskLayer.style.top = "0px" ;
maskLayer.style.left = "0px" ;
maskLayer.style.zIndex = maskLayer.maxZIndex ;
@@ -166,7 +175,7 @@
}catch(err) {
alert(err) ;
}
- Browser.addOnResizeCallback(maskLayer.id, eXo.core.UIMaskLayer.resizeMaskLayer);
+ Browser.addOnResizeCallback(maskLayer.id, eXo.core.UIMaskLayer.resizeMaskLayer);
return maskLayer ;
};
@@ -221,8 +230,14 @@
*/
UIMaskLayer.prototype.doScroll = function() {
- if(document.getElementById("MaskLayer")) {
- var maskLayer = document.getElementById("MaskLayer") ;
+ var maskLayer = document.getElementById("MaskLayer") ;
+ if(maskLayer) {
+ var offsetParent = maskLayer.offsetParent;
+ if (offsetParent && eXo.core.Browser.findPosX(offsetParent) != 0
+ || eXo.core.Browser.findPosY(offsetParent) != 0) {
+ maskLayer = document.getElementById("subMaskLayer");
+ if (!maskLayer) return;
+ }
if(document.documentElement && document.documentElement.scrollTop) {
maskLayer.style.top = document.documentElement.scrollTop + "px" ;
} else {
@@ -243,10 +258,17 @@
UIMaskLayer.prototype.setPosition = function() {
var UIMaskLayer = eXo.core.UIMaskLayer ;
var Browser = eXo.core.Browser ;
- var object = UIMaskLayer.object ;
- var blockContainer = UIMaskLayer.blockContainer ;
+ var object = UIMaskLayer.object ;
+ if (object && object.previousSibling) {
+ var offsetParent = object.previousSibling.offsetParent;
+ if (offsetParent && (eXo.core.Browser.findPosX(offsetParent) != 0
+ || eXo.core.Browser.findPosY(offsetParent) != 0)) {
+ eXo.portal.UIMaskWorkspace.resetPosition();
+ }
+ }
+ var blockContainer = UIMaskLayer.blockContainer ;
var position = UIMaskLayer.position ;
- object.style.position = "absolute" ;
+ object.style.position = "absolute" ;
var left ;
var top ;
@@ -271,6 +293,9 @@
left = (blockContainer.offsetWidth - object.offsetWidth) / 2 ;
top = (Browser.getBrowserHeight() - object.offsetHeight) / 2 + topPos ;
}
+ if ((top + object.offsetHeight) > topPos + Browser.getBrowserHeight()) {
+ top = topPos + Browser.getBrowserHeight() - object.offsetHeight;
+ }
object.style.left = left + "px" ;
object.style.top = top + "px" ;
@@ -308,7 +333,18 @@
UIMaskLayer.prototype.resizeMaskLayer = function() {
var maskLayer = document.getElementById("MaskLayer");
- if (maskLayer) {
+ if (maskLayer) {
+ var offsetParent = maskLayer.offsetParent;
+ if (offsetParent && (eXo.core.Browser.findPosX(offsetParent) != 0
+ || eXo.core.Browser.findPosY(offsetParent) != 0)) {
+ maskLayer = document.getElementById("subMaskLayer");
+ if (!maskLayer) return;
+ offsetParent = maskLayer.offsetParent;
+ }
+ }
+
+ if (maskLayer && offsetParent && eXo.core.Browser.findPosX(offsetParent) == 0
+ && eXo.core.Browser.findPosY(offsetParent) == 0) {
maskLayer.style.width = eXo.core.Browser.getBrowserWidth() + "px";
maskLayer.style.height = eXo.core.Browser.getBrowserHeight() + "px";
}
13 years, 3 months
gatein SVN: r7256 - epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-08-30 14:30:04 -0400 (Tue, 30 Aug 2011)
New Revision: 7256
Modified:
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/build.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml
Log:
JBEPP-1091 Add scratch switch and brew exec
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/build.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/build.xml 2011-08-30 17:09:58 UTC (rev 7255)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/build.xml 2011-08-30 18:30:04 UTC (rev 7256)
@@ -16,13 +16,14 @@
</ant>
execute
- mvn package -P mead-all [-Dbrew.exec [-Dbrew.not.wait]]
+ mvn package -P mead-all [-Dbrew.exec [-Dbrew.not.wait]] [-Dbrew.not.scratch]
brew.exec - will execute Brew bild. Brew binary must be installed om build mashine.
brew.no.wait - If not declared, build waits until task is done and synchronized
+ brew.not.scratch - Performs scratch build unless specified. This prevents from unwanted execution.
-->
- <target name="mead-build" depends="patch,profiles,properties">
+ <target name="mead-build" depends="patch,profiles,properties,brew-build-scratch-no,brew-build-scratch-yes">
<property name="svnurl">${mead.svn.base}/${mead.svn.repo}/${mead.svn.path}</property>
@@ -51,11 +52,11 @@
<property name="mead.profiles">${mead.build.profiles}</property>
<echo></echo>
- <echo>brew mead-build ${mead.target} 'svn+${mead.svn.base}/${mead.svn.repo}?${mead.svn.path}#${svn.revision}' ${mead.patch} ${mead.profiles} ${mead.properties}</echo>
+ <echo>brew mead-build ${mead.target} 'svn+${mead.svn.base}/${mead.svn.repo}?${mead.svn.path}#${svn.revision}' ${mead.patch} ${mead.profiles} ${mead.properties} ${brew.build.scratch}</echo>
<echo></echo>
<echo file="${brew.commands.file}" append="true">
# Name: ${project.name}
-brew mead-build ${mead.target} 'svn+${mead.svn.base}/${mead.svn.repo}?${mead.svn.path}#${svn.revision}' ${mead.patch} ${mead.profiles} ${mead.properties}
+brew mead-build ${mead.target} 'svn+${mead.svn.base}/${mead.svn.repo}?${mead.svn.path}#${svn.revision}' ${mead.patch} ${mead.profiles} ${mead.properties} ${brew.build.scratch}
</echo>
@@ -156,20 +157,21 @@
<target name="brew-build-exec" if="brew.exec">
<!-- Exceute MEAD buid -->
-<!-- <exec executable="brew" output="${ant.build.dir}/task.properties" failonerror="true" failifexecutionfails="">
- <arg value="mead-build"/>
+ <exec executable="brew" output="${ant.build.dir}/task.properties" failonerror="true" failifexecutionfails="">
+ <arg value="maven-build"/>
<arg value="${mead.target}"/>
- <arg value="'svn+${svn.base}/${svn.repo}?${svn.path}#${svn.revision}'" />
- <arg line="${mead.patch} ${mead.profiles} ${mead.properties}" />
- </exec>-->
- <echo file="${ant.build.dir}/task.properties">
-Created task: 3399568
-Task info: http://brewweb.devel.redhat.com/brew/taskinfo?taskID=3399568
-Watching tasks (this may be safely interrupted)...
-3399568 maven (jboss-epp-5-nosign, /repos/gatein:components/wsrp/tags/2.0.1-EPP511-CR01:6602): free
-3399568 maven (jboss-epp-5-nosign, /repos/gatein:components/wsrp/tags/2.0.1-EPP511-CR01:6602): free -> open (x86-003.build.bos.redhat.com)
- 3399569 buildMaven (jboss-epp-5-build): open (x86-006.build.bos.redhat.com)
- </echo>
+ <arg value="svn+${mead.svn.base}/${mead.svn.repo}?${mead.svn.path}#${svn.revision}" />
+ <arg line="${mead.patch} ${mead.profiles} ${mead.properties} ${brew.build.scratch}" />
+ </exec>
+ <!-- FOR TESTING -->
+ <!--<echo file="${ant.build.dir}/task.properties">-->
+<!--Created task: 3399568-->
+<!--Task info: http://brewweb.devel.redhat.com/brew/taskinfo?taskID=3399568-->
+<!--Watching tasks (this may be safely interrupted)...-->
+<!--3399568 maven (jboss-epp-5-nosign, /repos/gatein:components/wsrp/tags/2.0.1-EPP511-CR01:6602): free-->
+<!--3399568 maven (jboss-epp-5-nosign, /repos/gatein:components/wsrp/tags/2.0.1-EPP511-CR01:6602): free -> open (x86-003.build.bos.redhat.com)-->
+ <!--3399569 buildMaven (jboss-epp-5-build): open (x86-006.build.bos.redhat.com)-->
+ <!--</echo>-->
<loadfile property="mead.task.id" srcFile="${ant.build.dir}/task.properties">
<filterchain>
@@ -181,33 +183,45 @@
</filterchain>
</loadfile>
- <echo>Task ID: "${mead.task.id}"</echo>
+ <echo>Task ID: "${mead.task.id}" go to https://brewweb.devel.redhat.com/taskinfo?taskID=${mead.task.id}</echo>
<antcall target="brew-build-wait"/>
</target>
+ <target name="brew-build-scratch-no" if="brew.not.scratch">
+ <property name="brew.build.scratch"> </property>
+ </target>
+ <target name="brew-build-scratch-yes" unless="brew.not.scratch">
+ <property name="brew.build.scratch">--scratch</property>
+ </target>
<target name="brew-build-wait" unless="brew.not.wait">
<echo>Task ID: "${mead.task.id}"</echo>
+ <!-- Wait until task ends to get build ID -->
+ <exec executable="brew" output="${ant.build.dir}/taskwatch.properties" failonerror="true" failifexecutionfails="">
+ <arg value="watch-task"/>
+ <arg value="${mead.task.id}"/>
+ </exec>
+
+ <!-- Parse taskinfo to get build ID -->
+ <exec executable="brew" output="${ant.build.dir}/taskinfo.properties" failonerror="true" failifexecutionfails="">
+ <arg value="taskinfo"/>
+ <arg value="${mead.task.id}"/>
+ </exec>
+ <!-- FOR TESTING -->
+ <!--<echo file="${ant.build.dir}/taskinfo.properties">-->
+<!--Task: 3375489-->
+<!--Type: maven-->
+<!--Owner: hfnukal-->
+<!--State: closed-->
+<!--Created: Wed Jun 8 01:39:18 2011-->
+<!--Started: Wed Jun 8 01:39:20 2011-->
+<!--Finished: Wed Jun 8 02:26:24 2011-->
+<!--Host: x86-007.build.bos.redhat.com-->
+<!--Build: org.exoplatform.portal-exo.portal.parent-5.1.1_epp_DEV02-1 (166768)-->
+ <!--</echo>-->
- <!-- Parse taskinfo to get build ID -->
-<!-- <exec executable="brew" output="${ant.build.dir}/taskinfo.properties">
- <arg value="taskinfo"/>
- <arg value="${task.id}"/>
- </exec>-->
- <echo file="${ant.build.dir}/taskinfo.properties">
-Task: 3375489
-Type: maven
-Owner: hfnukal
-State: closed
-Created: Wed Jun 8 01:39:18 2011
-Started: Wed Jun 8 01:39:20 2011
-Finished: Wed Jun 8 02:26:24 2011
-Host: x86-007.build.bos.redhat.com
-Build: org.exoplatform.portal-exo.portal.parent-5.1.1_epp_DEV02-1 (166768)
- </echo>
-
<loadfile property="mead.build.id" srcFile="${ant.build.dir}/taskinfo.properties">
<filterchain>
<linecontains>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml 2011-08-30 17:09:58 UTC (rev 7255)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml 2011-08-30 18:30:04 UTC (rev 7256)
@@ -21,7 +21,7 @@
It tries to get as much info from globally defined properties, but some editing od SVN paths is still necessary.
You can run with:
- mvn package -P "profile" [-Dbrew.exec [-Dbrew.not.wait]]
+ mvn package -P mead-all [-Dbrew.exec [-Dbrew.not.wait]] [-Dbrew.not.scratch]
Where:
profile - component name or names or mead-all which builds all profiles.
@@ -29,6 +29,7 @@
Commands will be generated on console output and into $brew.commands.file property with default value "target/brew.commands"
brew.exec - will execute Brew build. Brew binary must be installed on build machine.
brew.no.wait - If not declared, build waits until task is done and synchronized
+ brew.not.scratch - Performs scratch build unless specified. This prevents from unwanted execution.
</description>
<properties>
13 years, 3 months
gatein SVN: r7255 - epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/src.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-08-30 13:09:58 -0400 (Tue, 30 Aug 2011)
New Revision: 7255
Modified:
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/src/assemble.xml
Log:
JBEPP-1139 Rename wsrp integration
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/src/assemble.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/src/assemble.xml 2011-08-30 17:09:20 UTC (rev 7254)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/src/assemble.xml 2011-08-30 17:09:58 UTC (rev 7255)
@@ -50,22 +50,23 @@
</moduleSets>
<dependencySets>
- <!-- GateIn ear module - unpacked -->
-<!-- <dependencySet>
- <includes>
- <include>*:exo.portal-ear:ear</include>
- </includes>
-
- </dependencySet>-->
<!-- Other ear modules - packed, stripped version - starter-gatein.ear, integration.war -->
<dependencySet>
<includes>
+ <include>org.gatein.integration:extension-ear-as5:ear</include>
+ </includes>
+ <outputDirectory>deploy</outputDirectory>
+ <outputFileNameMapping>gatein-wsrp-integration.ear</outputFileNameMapping>
+ </dependencySet>
+ <dependencySet>
+ <includes>
<include>*:ear</include>
<include>*:war</include>
</includes>
<excludes>
<exclude>*:gatein:ear</exclude>
+ <exclude>org.gatein.integration:extension-ear-as5:ear</exclude>
</excludes>
<outputDirectory>deploy</outputDirectory>
<outputFileNameMapping>${artifact.artifactId}.${artifact.extension}</outputFileNameMapping>
13 years, 4 months
gatein SVN: r7254 - in components/pc/trunk: portlet and 3 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2011-08-30 13:09:20 -0400 (Tue, 30 Aug 2011)
New Revision: 7254
Modified:
components/pc/trunk/pom.xml
components/pc/trunk/portlet/pom.xml
components/pc/trunk/test/core/pom.xml
components/pc/trunk/test/core/src/test/java/org/gatein/pc/controller/StateControllerContextTestCase.java
components/pc/trunk/test/core/src/test/java/org/gatein/pc/test/url/DecoderTestCase.java
components/pc/trunk/test/core/src/test/java/org/gatein/pc/test/url/EncoderTestCase.java
Log:
fix a few issues with surefire configuration
Modified: components/pc/trunk/pom.xml
===================================================================
--- components/pc/trunk/pom.xml 2011-08-30 14:41:33 UTC (rev 7253)
+++ components/pc/trunk/pom.xml 2011-08-30 17:09:20 UTC (rev 7254)
@@ -313,14 +313,6 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.3.1</version>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
@@ -347,6 +339,11 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3.1</version>
+ <configuration>
+ <excludes>
+ <exclude>**/*Test.java</exclude>
+ </excludes>
+ </configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
Modified: components/pc/trunk/portlet/pom.xml
===================================================================
--- components/pc/trunk/portlet/pom.xml 2011-08-30 14:41:33 UTC (rev 7253)
+++ components/pc/trunk/portlet/pom.xml 2011-08-30 17:09:20 UTC (rev 7254)
@@ -51,16 +51,6 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skip>false</skip>
- <excludes>
- <exclude>**/*Test.java</exclude>
- </excludes>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
Modified: components/pc/trunk/test/core/pom.xml
===================================================================
--- components/pc/trunk/test/core/pom.xml 2011-08-30 14:41:33 UTC (rev 7253)
+++ components/pc/trunk/test/core/pom.xml 2011-08-30 17:09:20 UTC (rev 7254)
@@ -202,6 +202,21 @@
</profiles>
<build>
+
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>org/gatein/pc/test/**/*.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+
<plugins>
<!-- Deploy the test jar and its sources -->
Modified: components/pc/trunk/test/core/src/test/java/org/gatein/pc/controller/StateControllerContextTestCase.java
===================================================================
--- components/pc/trunk/test/core/src/test/java/org/gatein/pc/controller/StateControllerContextTestCase.java 2011-08-30 14:41:33 UTC (rev 7253)
+++ components/pc/trunk/test/core/src/test/java/org/gatein/pc/controller/StateControllerContextTestCase.java 2011-08-30 17:09:20 UTC (rev 7254)
@@ -22,14 +22,13 @@
******************************************************************************/
package org.gatein.pc.controller;
-import org.jboss.unit.api.pojo.annotations.Test;
+import junit.framework.TestCase;
import org.gatein.pc.controller.impl.state.StateControllerContextImpl;
import org.gatein.pc.controller.state.PortletPageNavigationalState;
import org.gatein.pc.controller.state.StateControllerContext;
import org.gatein.pc.controller.state.PortletWindowNavigationalState;
import org.gatein.pc.controller.state.PortletPageNavigationalStateSerialization;
import org.gatein.pc.controller.event.EventControllerContext;
-import org.gatein.pc.controller.PortletControllerContext;
import org.gatein.pc.api.info.PortletInfo;
import org.gatein.pc.api.PortletInvokerException;
import org.gatein.pc.api.ParametersStateString;
@@ -44,7 +43,6 @@
import org.gatein.common.io.IOTools;
import org.gatein.pc.api.Mode;
import org.gatein.pc.api.WindowState;
-import static org.jboss.unit.api.Assert.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@@ -55,21 +53,18 @@
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 630 $
*/
-@Test
-public class StateControllerContextTestCase
+public class StateControllerContextTestCase extends TestCase
{
/** . */
private StateControllerContextImpl cc = new StateControllerContextImpl(dummyContext);
- @Test
public void testMarshalling1()
{
PortletPageNavigationalState pageNS = cc.createPortletPageNavigationalState(true);
assertMarshallable(pageNS);
}
- @Test
public void testMarshalling2()
{
ParametersStateString params = ParametersStateString.create();
Modified: components/pc/trunk/test/core/src/test/java/org/gatein/pc/test/url/DecoderTestCase.java
===================================================================
--- components/pc/trunk/test/core/src/test/java/org/gatein/pc/test/url/DecoderTestCase.java 2011-08-30 14:41:33 UTC (rev 7253)
+++ components/pc/trunk/test/core/src/test/java/org/gatein/pc/test/url/DecoderTestCase.java 2011-08-30 17:09:20 UTC (rev 7254)
@@ -22,32 +22,25 @@
******************************************************************************/
package org.gatein.pc.test.url;
+import junit.framework.TestCase;
import org.gatein.common.util.ParameterMap;
import java.util.ArrayList;
-import static org.jboss.unit.api.Assert.*;
-import org.jboss.unit.api.pojo.annotations.Create;
-import org.jboss.unit.api.pojo.annotations.Test;
-import org.gatein.pc.test.url.CodecBuilder;
-import org.gatein.pc.test.url.ParameterDecoder;
-
/**
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
-public class DecoderTestCase
+public class DecoderTestCase extends TestCase
{
Tester tester;
- @Create
public void setUp() throws Exception
{
tester = new Tester();
}
- @Test
public void testNoMeta()
{
tester.assertActual(0);
@@ -65,14 +58,12 @@
tester.checkAndReset();
}
- @Test
public void testNoMetaCorruption()
{
tester.parameter("action", "a").assertFailed().checkAndReset();
tester.parameter("action", "1").assertFailed().checkAndReset();
}
- @Test
public void testOneMeta()
{
tester.builder.addMetaParameter("m1");
@@ -133,7 +124,6 @@
tester.checkAndReset();
}
- @Test
public void testOneMetaCorruption()
{
tester.builder.addMetaParameter("m1");
@@ -148,7 +138,6 @@
tester.parameter("action", "10").parameter("m1", "foo").assertFailed().checkAndReset();
}
- @Test
public void testTwoMeta()
{
tester.builder.addMetaParameter("m1");
Modified: components/pc/trunk/test/core/src/test/java/org/gatein/pc/test/url/EncoderTestCase.java
===================================================================
--- components/pc/trunk/test/core/src/test/java/org/gatein/pc/test/url/EncoderTestCase.java 2011-08-30 14:41:33 UTC (rev 7253)
+++ components/pc/trunk/test/core/src/test/java/org/gatein/pc/test/url/EncoderTestCase.java 2011-08-30 17:09:20 UTC (rev 7254)
@@ -22,30 +22,23 @@
******************************************************************************/
package org.gatein.pc.test.url;
+import junit.framework.TestCase;
import org.gatein.common.util.ParameterMap;
-import static org.jboss.unit.api.Assert.*;
-import org.jboss.unit.api.pojo.annotations.Create;
-import org.jboss.unit.api.pojo.annotations.Test;
-import org.gatein.pc.test.url.CodecBuilder;
-import org.gatein.pc.test.url.ParameterEncoder;
-
/**
* @author <a href="mailto:julien@jboss.org">Julien Viet</a>
* @version $Revision: 1.1 $
*/
-public class EncoderTestCase
+public class EncoderTestCase extends TestCase
{
Tester tester;
- @Create
public void setUp() throws Exception
{
tester = new Tester();
}
- @Test
public void testEncodeNoMeta()
{
ParameterMap result = tester.encode();
@@ -65,7 +58,6 @@
assertEquals(new String[]{"0"}, result.getValues("action"));
}
- @Test
public void testEncodeOneMeta()
{
tester.meta("m1");
@@ -97,7 +89,6 @@
assertEquals(new String[]{"bar","foo"}, result.getValues("m1"));
}
- @Test
public void testEncodeTwoMeta()
{
tester.meta("m1");
13 years, 4 months
gatein SVN: r7253 - in epp/portal/branches/EPP_5_2_Branch: web/eXoResources/src/main/webapp/javascript/eXo/portal and 1 other directory.
by do-not-reply@jboss.org
Author: mwringe
Date: 2011-08-30 10:41:33 -0400 (Tue, 30 Aug 2011)
New Revision: 7253
Modified:
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIGadgetEditor.java
epp/portal/branches/EPP_5_2_Branch/web/eXoResources/src/main/webapp/javascript/eXo/portal/PortalHttpRequest.js
Log:
JBEPP-1131: Properly handle more than 2 levels in navigation nodes. Patch merged in from r7252 (from GTNPORTAL-1957).
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIGadgetEditor.java
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIGadgetEditor.java 2011-08-30 11:40:26 UTC (rev 7252)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIGadgetEditor.java 2011-08-30 14:41:33 UTC (rev 7253)
@@ -228,7 +228,7 @@
String gadgetUrl = GadgetUtil.reproduceUrl(gadget.getUrl(), gadget.isLocal());
String metadataUrl = gadgetServerUrl + (gadgetServerUrl.endsWith("/") ? "" : "/") + "metadata";
String queryString = "{\"context\":{\"ignoreCache\":\"true\"},\"gadgets\":[" + "{\"url\":\"" + gadgetUrl + "\"}]}";
- event.getRequestContext().getJavascriptManager().addJavascript("ajaxAsyncRequest('" + metadataUrl + "', true, 'POST', '" + queryString + "');");
+ event.getRequestContext().getJavascriptManager().addJavascript("ajaxRequest('POST', '" + metadataUrl + "', true, '" + queryString + "');");
}
}
Modified: epp/portal/branches/EPP_5_2_Branch/web/eXoResources/src/main/webapp/javascript/eXo/portal/PortalHttpRequest.js
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/eXoResources/src/main/webapp/javascript/eXo/portal/PortalHttpRequest.js 2011-08-30 11:40:26 UTC (rev 7252)
+++ epp/portal/branches/EPP_5_2_Branch/web/eXoResources/src/main/webapp/javascript/eXo/portal/PortalHttpRequest.js 2011-08-30 14:41:33 UTC (rev 7253)
@@ -624,28 +624,35 @@
} ;
/**
- * Create a ajax GET request
+ * Create an ajax GET request
* @param {String} url - Url
* @param {boolean} async - asynchronous or none
* @return {String} response text if request is not async
*/
function ajaxAsyncGetRequest(url, async) {
- ajaxAsyncRequest("GET", url, async);
+ return ajaxRequest("GET", url, async);
}
/**
- * Create a ajax request
+ * Create an ajax request
* @param {String} method - GET, POST, etc
* @param {String} url - Url
* @param {boolean} async - asynchronous or none
* @return {String} response text if request is not async
*/
-function ajaxAsyncRequest(method, url, async, queryString) {
+function ajaxRequest(method, url, async, queryString) {
if(async == undefined) async = true ;
var request = eXo.core.Browser.createHttpRequest() ;
request.open(method, url, async) ;
request.setRequestHeader("Cache-Control", "max-age=86400") ;
- request.send((queryString != undefined && queryString != null) ? queryString : null) ;
+ if(queryString)
+ {
+ request.send(queryString) ;
+ }
+ else
+ {
+ request.send(null);
+ }
eXo.session.itvDestroy() ;
if(eXo.session.canKeepState && eXo.session.isOpen && eXo.env.portal.accessMode == 'private') {
eXo.session.itvInit() ;
13 years, 4 months
gatein SVN: r7252 - in portal/trunk: web/eXoResources/src/main/webapp/javascript/eXo/portal and 1 other directory.
by do-not-reply@jboss.org
Author: kien_nguyen
Date: 2011-08-30 07:40:26 -0400 (Tue, 30 Aug 2011)
New Revision: 7252
Modified:
portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIGadgetEditor.java
portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/portal/PortalHttpRequest.js
Log:
GTNPORTAL-1957 Caching issue when edit gadget in App.registry
Modified: portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIGadgetEditor.java
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIGadgetEditor.java 2011-08-29 19:58:45 UTC (rev 7251)
+++ portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/applicationregistry/webui/component/UIGadgetEditor.java 2011-08-30 11:40:26 UTC (rev 7252)
@@ -226,7 +226,7 @@
String gadgetUrl = GadgetUtil.reproduceUrl(gadget.getUrl(), gadget.isLocal());
String metadataUrl = gadgetServerUrl + (gadgetServerUrl.endsWith("/") ? "" : "/") + "metadata";
String queryString = "{\"context\":{\"ignoreCache\":\"true\"},\"gadgets\":[" + "{\"url\":\"" + gadgetUrl + "\"}]}";
- event.getRequestContext().getJavascriptManager().addJavascript("ajaxRequest('" + metadataUrl + "', true, 'POST', '" + queryString + "');");
+ event.getRequestContext().getJavascriptManager().addJavascript("ajaxRequest('POST', '" + metadataUrl + "', true, '" + queryString + "');");
}
}
Modified: portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/portal/PortalHttpRequest.js
===================================================================
--- portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/portal/PortalHttpRequest.js 2011-08-29 19:58:45 UTC (rev 7251)
+++ portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/portal/PortalHttpRequest.js 2011-08-30 11:40:26 UTC (rev 7252)
@@ -730,7 +730,7 @@
* @return {String} response text if request is not async
*/
function ajaxAsyncGetRequest(url, async) {
- ajaxRequest("GET", url, async);
+ return ajaxRequest("GET", url, async);
}
/**
13 years, 4 months
gatein SVN: r7251 - in epp/portal/branches/EPP_5_2_Branch: distribution/jboss-epp and 8 other directories.
by do-not-reply@jboss.org
Author: mwringe
Date: 2011-08-29 15:58:45 -0400 (Mon, 29 Aug 2011)
New Revision: 7251
Added:
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_cs.properties
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_fr.properties
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_vi.properties
Modified:
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml
epp/portal/branches/EPP_5_2_Branch/pom.xml
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_en.properties
epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml
epp/portal/branches/EPP_5_2_Branch/testsuite/htmlunit-tests/pom.xml
Log:
JBEPP-1130: merge in the UserToolbarPortlet_*.properties files to include the proper property values (from GateIn commit 5920).
Update the build so that its using the proper versions of components.
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/examples/pom.xml 2011-08-29 19:58:45 UTC (rev 7251)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.0-epp-DEV03-SNAPSHOT</version>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml 2011-08-29 19:58:45 UTC (rev 7251)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.0-epp-DEV03-SNAPSHOT</version>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
</parent>
<artifactId>distribution</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/portletbridge/pom.xml 2011-08-29 19:58:45 UTC (rev 7251)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.0-epp-DEV03-SNAPSHOT</version>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/gatein.ear/pom.xml 2011-08-29 19:58:45 UTC (rev 7251)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.0-epp-DEV03-SNAPSHOT</version>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>gatein</artifactId>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/integration.war/pom.xml 2011-08-29 19:58:45 UTC (rev 7251)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.0-epp-DEV03-SNAPSHOT</version>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>integration</artifactId>
<packaging>war</packaging>
<name>GateIn JBoss AS integration.war</name>
-</project>
\ No newline at end of file
+</project>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/serverAddon/pom.xml 2011-08-29 19:58:45 UTC (rev 7251)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>distribution.parent</artifactId>
- <version>5.2.0-epp-DEV03-SNAPSHOT</version>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: epp/portal/branches/EPP_5_2_Branch/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
+++ epp/portal/branches/EPP_5_2_Branch/pom.xml 2011-08-29 19:58:45 UTC (rev 7251)
@@ -613,12 +613,12 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>5.2.0-epp-DEV03-SNAPSHOT</version>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>5.2.0-epp-DEV03-SNAPSHOT</version>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
<type>test-jar</type>
</dependency>
<dependency>
Added: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_cs.properties
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_cs.properties (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_cs.properties 2011-08-29 19:58:45 UTC (rev 7251)
@@ -0,0 +1,19 @@
+#
+# Copyright (C) 2009 eXo Platform SAS.
+#
+# 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.
+#
+
Modified: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_en.properties
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_en.properties 2011-08-29 16:27:58 UTC (rev 7250)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_en.properties 2011-08-29 19:58:45 UTC (rev 7251)
@@ -16,4 +16,6 @@
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-
+UIUserToolBarSitePortlet.header.site=Site
+UIUserToolBarGroupPortlet.header.group=Group
+UIUserToolBarDashboardPortlet.header.dashboard=Dashboard
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_fr.properties
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_fr.properties (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_fr.properties 2011-08-29 19:58:45 UTC (rev 7251)
@@ -0,0 +1,21 @@
+#
+# Copyright (C) 2009 eXo Platform SAS.
+#
+# 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.
+#
+UIUserToolBarSitePortlet.header.site=Site
+UIUserToolBarGroupPortlet.header.group=Groupe
+UIUserToolBarDashboardPortlet.header.dashboard=Dashboard
Added: epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_vi.properties
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_vi.properties (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/UserToolbarPortlet_vi.properties 2011-08-29 19:58:45 UTC (rev 7251)
@@ -0,0 +1,21 @@
+#
+# Copyright (C) 2009 eXo Platform SAS.
+#
+# 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.
+#
+UIUserToolBarSitePortlet.header.site=Site
+UIUserToolBarGroupPortlet.header.group=Nhóm
+UIUserToolBarDashboardPortlet.header.dashboard=Bảng điều khiển
Modified: epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
+++ epp/portal/branches/EPP_5_2_Branch/server/jboss/patch-ear/src/main/jboss/server/default/deploy/gatein.ear/integration.war/pom.xml 2011-08-29 19:58:45 UTC (rev 7251)
@@ -4,9 +4,9 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>5.2.0-epp-DEV03-SNAPSHOT</version>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.packaging.jboss-as.integration</artifactId>
<packaging>war</packaging>
<name>GateIn JBoss AS integration.war</name>
-</project>
\ No newline at end of file
+</project>
Modified: epp/portal/branches/EPP_5_2_Branch/testsuite/htmlunit-tests/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/testsuite/htmlunit-tests/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
+++ epp/portal/branches/EPP_5_2_Branch/testsuite/htmlunit-tests/pom.xml 2011-08-29 19:58:45 UTC (rev 7251)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.testsuite</artifactId>
- <version>5.2.0-epp-DEV03-SNAPSHOT</version>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
</parent>
<groupId>org.jboss.gatein</groupId>
13 years, 4 months
gatein SVN: r7250 - in epp/portal/branches/EPP_5_2_Branch/distribution: mead-tools and 22 other directories.
by do-not-reply@jboss.org
Author: hfnukal
Date: 2011-08-29 12:27:58 -0400 (Mon, 29 Aug 2011)
New Revision: 7250
Added:
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/build.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-packager/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-packager/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml
Log:
JBEPP-1091 mead build
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/build.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/build.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/build.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,227 @@
+
+<project name="packageEPP">
+ <!--
+ expecting those parameters:
+ svn.base - Base sv
+
+ <ant antfile="src/build.xml" inheritRefs="true">
+ <target name="mead-build"/>
+ <property name="mead.svn.base" value="http://anonsvn.jboss.org/repos"/>
+ <property name="mead.svn.repo" value="gatein"/>
+ <property name="mead.svn.path" value="maven/parent/tags/1.0.2-GA"/>
+
+ <property name="mead.build.profiles" value="default distribution-epp"/>
+ <property name="mead.build.properties" value="aaa=bbb ccc=ddd"/>
+ <property name="mead.patch.path" value="/maven/parent/tags/1.0.2-GA"/>
+ </ant>
+
+ execute
+ mvn package -P mead-all [-Dbrew.exec [-Dbrew.not.wait]]
+
+ brew.exec - will execute Brew bild. Brew binary must be installed om build mashine.
+ brew.no.wait - If not declared, build waits until task is done and synchronized
+
+ -->
+ <target name="mead-build" depends="patch,profiles,properties">
+
+ <property name="svnurl">${mead.svn.base}/${mead.svn.repo}/${mead.svn.path}</property>
+
+ <echo>=================================================</echo>
+ <echo>Getting revision from ${svnurl}</echo>
+ <exec executable="svn" output="${ant.build.dir}/svn.properties" failonerror="true" failifexecutionfails="true">
+ <arg value="info" />
+ <arg value="${svnurl}" />
+ </exec>
+
+ <loadfile property="svn.revision" srcFile="${ant.build.dir}/svn.properties">
+ <filterchain>
+ <linecontains>
+ <contains value="Last Changed Rev" />
+ </linecontains>
+ <deletecharacters chars="\n"/>
+ <deletecharacters chars="Last Changed Rev: "/>
+ </filterchain>
+ </loadfile>
+ <echo>Last Changed Rev: "${svn.revision}"</echo>
+
+
+<!-- <property name="mead.patch">${mead.build.patch}</property>-->
+
+ <property name="mead.properties">${mead.build.properties}</property>
+ <property name="mead.profiles">${mead.build.profiles}</property>
+
+ <echo></echo>
+ <echo>brew mead-build ${mead.target} 'svn+${mead.svn.base}/${mead.svn.repo}?${mead.svn.path}#${svn.revision}' ${mead.patch} ${mead.profiles} ${mead.properties}</echo>
+ <echo></echo>
+<echo file="${brew.commands.file}" append="true">
+# Name: ${project.name}
+brew mead-build ${mead.target} 'svn+${mead.svn.base}/${mead.svn.repo}?${mead.svn.path}#${svn.revision}' ${mead.patch} ${mead.profiles} ${mead.properties}
+
+</echo>
+
+ <antcall target="brew-build-exec"/>
+
+ </target>
+
+
+ <!-- PATCH -->
+ <target name="patch" depends="patch-cond-if,patch-cond-else" />
+ <target name="patch-cond">
+ <condition property="patch-cond-is-true">
+ <and>
+ <not><equals arg1="${mead.patch.path}" arg2=""/></not>
+ <isset property="mead.patch.path"/>
+ </and>
+ </condition>
+ </target>
+ <target name="patch-cond-if" depends="patch-cond" if="patch-cond-is-true">
+ <echo>mead.patch.path is set</echo>
+ <property name="svnpatchurl">${svn.patch.base}/${mead.patch.path}</property>
+
+ <echo>Getting revision for patch ${svnpatchurl}</echo>
+ <exec executable="svn" output="${ant.build.dir}/svnpatch.properties" failonerror="true" failifexecutionfails="true">
+ <arg value="info" />
+ <arg value="${svnpatchurl}" />
+ </exec>
+
+ <loadfile property="svnpatch.revision" srcFile="${ant.build.dir}/svnpatch.properties">
+ <filterchain>
+ <linecontains>
+ <contains value="Last Changed Rev" />
+ </linecontains>
+ <deletecharacters chars="\n"/>
+ <deletecharacters chars="Last Changed Rev: "/>
+ </filterchain>
+ </loadfile>
+ <echo>Patch Revision: "${svnpatch.revision}"</echo>
+
+ <property name="mead.patch">--patches '${svn.patch.base}?${mead.patch.path}#${svnpatch.revision}'</property>
+ </target>
+
+ <target name="patch-cond-else" depends="patch-cond" unless="patch-cond-is-true">
+ <echo>mead.patch.path is NOT set</echo>
+ <property name="mead.patch" value=""/>
+ </target>
+
+ <!-- PROFILES -->
+ <target name="profiles" depends="profiles-cond-if,profiles-cond-else" />
+ <target name="profiles-cond">
+ <condition property="profiles-cond-is-true">
+ <and>
+ <not><equals arg1="${mead.build.profiles}" arg2=""/></not>
+ <isset property="mead.build.profiles"/>
+ </and>
+ </condition>
+ </target>
+ <target name="profiles-cond-if" depends="profiles-cond" if="profiles-cond-is-true">
+ <echo>mead.build.profiles is set</echo>
+ <echo file="${ant.build.dir}/profiles.properties"> ${mead.build.profiles}</echo>
+ <loadfile property="mead.profiles" srcFile="${ant.build.dir}/profiles.properties">
+ <filterchain>
+ <replaceregex flags="g" pattern=" " replace=" --profile "/>
+ </filterchain>
+ </loadfile>
+<!-- <delete file="${ant.build.dir}/profiles.properties"/>-->
+ </target>
+ <target name="profiles-cond-else" depends="profiles-cond" unless="profiles-cond-is-true">
+ <echo>mead.build.profiles is NOT set</echo>
+ <property name="mead.profiles" value=""/>
+ </target>
+
+ <!-- PROPERIES -->
+ <target name="properties" depends="properties-cond-if,properties-cond-else" />
+ <target name="properties-cond">
+ <condition property="properties-cond-is-true">
+ <and>
+ <not><equals arg1="${mead.build.properties}" arg2=""/></not>
+ <isset property="mead.build.properties"/>
+ </and>
+ </condition>
+ </target>
+ <target name="properties-cond-if" depends="properties-cond" if="properties-cond-is-true">
+ <echo>mead.build.properties is set</echo>
+ <echo file="${ant.build.dir}/properties.properties"> ${mead.build.properties}</echo>
+ <loadfile property="mead.properties" srcFile="${ant.build.dir}/properties.properties">
+ <filterchain>
+ <replaceregex flags="g" pattern=" " replace=" --property "/>
+ </filterchain>
+ </loadfile>
+<!-- <delete file="${ant.build.dir}/properties.properties"/>-->
+ </target>
+ <target name="properties-cond-else" depends="properties-cond" unless="properties-cond-is-true">
+ <echo>mead.build.properties is NOT set</echo>
+ <property name="mead.properties" value=""/>
+ </target>
+
+ <target name="brew-build-exec" if="brew.exec">
+
+ <!-- Exceute MEAD buid -->
+<!-- <exec executable="brew" output="${ant.build.dir}/task.properties" failonerror="true" failifexecutionfails="">
+ <arg value="mead-build"/>
+ <arg value="${mead.target}"/>
+ <arg value="'svn+${svn.base}/${svn.repo}?${svn.path}#${svn.revision}'" />
+ <arg line="${mead.patch} ${mead.profiles} ${mead.properties}" />
+ </exec>-->
+ <echo file="${ant.build.dir}/task.properties">
+Created task: 3399568
+Task info: http://brewweb.devel.redhat.com/brew/taskinfo?taskID=3399568
+Watching tasks (this may be safely interrupted)...
+3399568 maven (jboss-epp-5-nosign, /repos/gatein:components/wsrp/tags/2.0.1-EPP511-CR01:6602): free
+3399568 maven (jboss-epp-5-nosign, /repos/gatein:components/wsrp/tags/2.0.1-EPP511-CR01:6602): free -> open (x86-003.build.bos.redhat.com)
+ 3399569 buildMaven (jboss-epp-5-build): open (x86-006.build.bos.redhat.com)
+ </echo>
+
+ <loadfile property="mead.task.id" srcFile="${ant.build.dir}/task.properties">
+ <filterchain>
+ <linecontains>
+ <contains value="Created task: " />
+ </linecontains>
+ <deletecharacters chars="\n"/>
+ <deletecharacters chars="Created task: "/>
+ </filterchain>
+ </loadfile>
+
+ <echo>Task ID: "${mead.task.id}"</echo>
+
+
+ <antcall target="brew-build-wait"/>
+
+ </target>
+ <target name="brew-build-wait" unless="brew.not.wait">
+ <echo>Task ID: "${mead.task.id}"</echo>
+
+
+ <!-- Parse taskinfo to get build ID -->
+<!-- <exec executable="brew" output="${ant.build.dir}/taskinfo.properties">
+ <arg value="taskinfo"/>
+ <arg value="${task.id}"/>
+ </exec>-->
+ <echo file="${ant.build.dir}/taskinfo.properties">
+Task: 3375489
+Type: maven
+Owner: hfnukal
+State: closed
+Created: Wed Jun 8 01:39:18 2011
+Started: Wed Jun 8 01:39:20 2011
+Finished: Wed Jun 8 02:26:24 2011
+Host: x86-007.build.bos.redhat.com
+Build: org.exoplatform.portal-exo.portal.parent-5.1.1_epp_DEV02-1 (166768)
+ </echo>
+
+ <loadfile property="mead.build.id" srcFile="${ant.build.dir}/taskinfo.properties">
+ <filterchain>
+ <linecontains>
+ <contains value="Build: " />
+ </linecontains>
+ <deletecharacters chars="\n"/>
+<!-- <deletecharacters chars="Build: "/>-->
+ <replaceregex pattern="Build: (.*) \(.*" replace="\1"/>
+ </filterchain>
+ </loadfile>
+
+ <echo>Build ID: "${mead.build.id}"</echo>
+
+ <echo>EXEC: brew wait-repo --target jboss-epp-5 --build ${mead.build.id}</echo>
+
+ </target>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-core/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-exo-core</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.exo.repo}</mead.svn.repo>
+ <mead.svn.path>${exo-core.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-doc/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-exo-doc</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.exo.repo}</mead.svn.repo>
+ <mead.svn.path>${exo-doc.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-jcr/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-eco-jcr</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.exo.repo}</mead.svn.repo>
+ <mead.svn.path>${exo-jcr.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path>patches/org.exoplatform.portal-exo.portal.parent/branches/EPP_5_1</mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-junit/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-exo-junit</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.exo.repo}</mead.svn.repo>
+ <mead.svn.path>${exo-junit.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-kernel/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-exo-kernel</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.exo.repo}</mead.svn.repo>
+ <mead.svn.path>${exo-kernel.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-parent/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-exo-parent</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.exo.repo}</mead.svn.repo>
+ <mead.svn.path>${exo-parent.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/exo-ws/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-exo-ws</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.exo.repo}</mead.svn.repo>
+ <mead.svn.path>${exo-ws.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-common/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-common</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-common.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-dep/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-dep</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-dep.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-mop/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-mop</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-mop.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-packager/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-packager/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-packager/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-packager</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-packager.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-parent/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-parent</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-parent.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-pc/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-pc</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-pc.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties>tests=local container.unpack.dir=/maven/build/test-containers JBOSS_5_1_HOME=/maven/build/test-containers/jboss-5.1.0.GA tests.failOnError=true</mead.build.properties>
+ <mead.patch.path>patches/org.gatein.pc-pc-parent/tags/2.2.0-CR02</mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-portal/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-portal</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-portal.svnpath}</mead.svn.path>
+
+ <mead.build.profiles>release pkg-jbossas</mead.build.profiles>
+ <mead.build.properties>exo.projects.directory.dependencies=/maven/build/test-containers</mead.build.properties>
+ <mead.patch.path>patches/org.exoplatform.portal-exo.portal.parent/tags/epp-5.1.0-ER03</mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-shindig/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-shindig</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-shindig.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-simplecaptcha/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-simplecaptcha</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-simplecaptcha.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-sso/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-sso</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-sso.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wci/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-wci</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-wci.svnpath}</mead.svn.path>
+
+ <mead.build.profiles>jboss51</mead.build.profiles>
+ <mead.build.properties>container.unpack.dir=/maven/build/test-containers JBOSS_5_1_HOME=/maven/build/test-containers/jboss-5.1.0.GA tests.failOnError=true</mead.build.properties>
+ <mead.patch.path>patches/org.gatein.wci-wci-parent/tags/2.0.0-GA</mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/gatein-wsrp/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-gatein-wsrp</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.gatein.repo}</mead.svn.repo>
+ <mead.svn.path>${gatein-wsrp.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties>container.unpack.dir=/maven/build/test-containers JBOSS_5_1_0_HOME=/maven/build/test-containers/jboss-5.1.0.GA </mead.build.properties>
+ <mead.patch.path>patches/org.gatein.wsrp-wsrp-parent/tags/epp-5.1.0-ER03</mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-picketlink-idm/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-jboss-picketlink-idm</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.jboss-picketlink-idm.repo}</mead.svn.repo>
+ <mead.svn.path>${jboss-picketlink-idm.svnpath}</mead.svn.path>
+
+ <mead.build.profiles>distro</mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/jboss-portletbridge/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <artifactId>mead.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <relativePath>../mead.parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead-jboss-portletbridge</artifactId>
+ <packaging>pom</packaging>
+
+ <properties>
+
+ <mead.svn.base>${svn.base}</mead.svn.base>
+ <mead.svn.repo>${svn.jboss-portletbridge.repo}</mead.svn.repo>
+ <mead.svn.path>${jboss-portletbridge.svnpath}</mead.svn.path>
+
+ <mead.build.profiles></mead.build.profiles>
+ <mead.build.properties></mead.build.properties>
+ <mead.patch.path></mead.patch.path>
+
+ </properties>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/mead.parent/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal.mead</groupId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ <artifactId>mead-tools</artifactId>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <artifactId>mead.parent</artifactId>
+ <packaging>pom</packaging>
+ <name>Distribution MEAD Tools</name>
+ <properties>
+ <!-- Ant properties -->
+ <ant.build.dir>${project.build.directory}</ant.build.dir>
+ <ant.build.file>../build.xml</ant.build.file>
+ <ant.target>mead-build</ant.target>
+ </properties>
+
+
+ <build>
+ <plugins>
+ <!-- Generate MEAD commands -->
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <id>mead-build-${project.artifactId}</id>
+ <phase>compile</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <target>
+ <ant antfile="${ant.build.file}" inheritRefs="true" inheritAll="true">
+ <target name="${ant.target}"/>
+ </ant>
+ </target>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Added: epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml (rev 0)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/mead-tools/pom.xml 2011-08-29 16:27:58 UTC (rev 7250)
@@ -0,0 +1,280 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.exoplatform.portal</groupId>
+ <artifactId>distribution.parent</artifactId>
+ <version>5.2.0-epp-DEV04-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.exoplatform.portal.mead</groupId>
+
+ <artifactId>mead-tools</artifactId>
+ <packaging>pom</packaging>
+ <name>Distribution MEAD Tools</name>
+
+ <description>
+ This maven project generates set of commands for MEAD build system.
+ It tries to get as much info from globally defined properties, but some editing od SVN paths is still necessary.
+
+ You can run with:
+ mvn package -P "profile" [-Dbrew.exec [-Dbrew.not.wait]]
+
+ Where:
+ profile - component name or names or mead-all which builds all profiles.
+ It might be useful to use special profile if you need to build only set of components.
+ Commands will be generated on console output and into $brew.commands.file property with default value "target/brew.commands"
+ brew.exec - will execute Brew build. Brew binary must be installed on build machine.
+ brew.no.wait - If not declared, build waits until task is done and synchronized
+ </description>
+
+ <properties>
+ <!-- Ant properties -->
+ <ant.build.file>build.xml</ant.build.file>
+ <ant.target>mead-build</ant.target>
+ <brew.commands.file>../target/brew.commands</brew.commands.file>
+
+ <mead.target>jboss-epp-5-nosign</mead.target>
+ <svn.patch.base>http://svn.devel.redhat.com/repos/mead</svn.patch.base>
+ <svn.base>http://anonsvn.jboss.org/repos</svn.base>
+
+ <!-- GateIn -->
+ <svn.gatein.repo>gatein</svn.gatein.repo>
+
+ <gatein-portal.svnpath>epp/portal/tags/EPP_5_2_0_Dev03</gatein-portal.svnpath>
+ <gatein-parent.svnpath>maven/parent/tags/1.0.2-GA</gatein-parent.svnpath>
+ <gatein-packager.svnpath>maven/packager/tags/1.0.0-CR01</gatein-packager.svnpath>
+ <gatein-dep.svnpath>maven/dep/tags/1.1.0-Beta06</gatein-dep.svnpath>
+
+ <gatein-common.svnpath>components/common/tags/${org.gatein.common.version}</gatein-common.svnpath>
+ <gatein-wci.svnpath>components/wci/tags/${org.gatein.wci.version}</gatein-wci.svnpath>
+ <gatein-pc.svnpath>components/pc/tags/${org.gatein.pc.version}</gatein-pc.svnpath>
+ <gatein-wsrp.svnpath>components/wsrp/tags/${org.gatein.wsrp.version}</gatein-wsrp.svnpath>
+ <gatein-mop.svnpath>components/mop/tags/${org.gatein.mop.version}</gatein-mop.svnpath>
+ <gatein-sso.svnpath>epp/sso/tags/${sso.version}</gatein-sso.svnpath>
+ <gatein-simplecaptcha.svnpath>components/simplecaptcha/tags/${nl.captcha.simplecaptcha.version}</gatein-simplecaptcha.svnpath>
+ <gatein-shindig.svnpath>components/shindig/tags/${org.shindig.version}</gatein-shindig.svnpath>
+
+ <!-- # JBoss components -->
+ <svn.jboss-picketlink-idm.repo>picketlink</svn.jboss-picketlink-idm.repo>
+ <jboss-picketlink-idm.svnpath>idm/tags/${org.picketlink.idm}</jboss-picketlink-idm.svnpath>
+
+ <svn.jboss-portletbridge.repo>portletbridge</svn.jboss-portletbridge.repo>
+ <jboss-portletbridge.svnpath>tags/${portletbridge.version}</jboss-portletbridge.svnpath>
+
+ <!-- # eXo components -->
+ <svn.exo.repo>exo-jcr</svn.exo.repo>
+ <exo-parent.svnpath>parent/tags/7</exo-parent.svnpath>
+ <exo-doc.svnpath>docs-style/tags/1</exo-doc.svnpath>
+ <exo-junit.svnpath>junit.framework/tags/1.2.1-GA</exo-junit.svnpath>
+
+ <exo-kernel.svnpath>kernel/tags/${org.exoplatform.kernel.version}</exo-kernel.svnpath>
+ <exo-core.svnpath>core/tags/${org.exoplatform.core.version}</exo-core.svnpath>
+ <exo-ws.svnpath>ws/tags/${org.exoplatform.ws.version}</exo-ws.svnpath>
+ <exo-jcr.svnpath>jcr/tags/${org.exoplatform.jcr.version}</exo-jcr.svnpath>
+
+ </properties>
+
+ <profiles>
+ <profile>
+ <id>mead-all</id>
+ <modules>
+ <module>gatein-parent </module>
+ <module>gatein-portal </module>
+ <module>gatein-packager </module>
+ <module>gatein-dep </module>
+ <module>gatein-common </module>
+ <module>gatein-wci </module>
+ <module>gatein-pc </module>
+ <module>gatein-wsrp </module>
+ <module>gatein-mop </module>
+ <module>gatein-sso </module>
+ <module>gatein-simplecaptcha </module>
+ <module>gatein-shindig </module>
+ <module>jboss-picketlink-idm </module>
+ <module>jboss-portletbridge </module>
+ <module>exo-parent </module>
+ <module>exo-doc </module>
+ <module>exo-junit </module>
+ <module>exo-kernel </module>
+ <module>exo-core </module>
+ <module>exo-ws </module>
+ <module>exo-jcr </module>
+ </modules>
+ </profile>
+
+<!--gatein-parent-->
+ <profile>
+ <id>gatein-parent</id>
+ <modules>
+ <module>gatein-parent</module>
+ </modules>
+ </profile>
+
+<!--gatein-portal-->
+ <profile>
+ <id>gatein-portal</id>
+ <modules>
+ <module>gatein-portal</module>
+ </modules>
+ </profile>
+
+<!--gatein-packager-->
+ <profile>
+ <id>gatein-packager</id>
+ <modules>
+ <module>gatein-packager</module>
+ </modules>
+
+ </profile>
+
+<!--gatein-dep-->
+ <profile>
+ <id>gatein-dep</id>
+ <modules>
+ <module>gatein-dep</module>
+ </modules>
+ </profile>
+
+<!--gatein-common-->
+ <profile>
+ <id>gatein-common</id>
+ <modules>
+ <module>gatein-common</module>
+ </modules>
+ </profile>
+
+<!--gatein-wci-->
+ <profile>
+ <id>gatein-wci</id>
+ <modules>
+ <module>gatein-wci</module>
+ </modules>
+ </profile>
+
+<!--gatein-pc-->
+ <profile>
+ <id>gatein-pc</id>
+ <modules>
+ <module>gatein-pc</module>
+ </modules>
+ </profile>
+
+<!--gatein-wsrp-->
+ <profile>
+ <id>gatein-wsrp</id>
+ <modules>
+ <module>gatein-wsrp</module>
+ </modules>
+ </profile>
+
+<!--gatein-mop-->
+ <profile>
+ <id>gatein-mop</id>
+ <modules>
+ <module>gatein-mop</module>
+ </modules>
+ </profile>
+
+<!--gatein-sso-->
+ <profile>
+ <id>gatein-sso</id>
+ <modules>
+ <module>gatein-sso</module>
+ </modules>
+ </profile>
+
+<!--gatein-simplecaptcha-->
+ <profile>
+ <id>gatein-simplecaptcha</id>
+ <modules>
+ <module>gatein-simplecaptcha</module>
+ </modules>
+ </profile>
+
+<!--gatein-shindig-->
+ <profile>
+ <id>gatein-shindig</id>
+ <modules>
+ <module>gatein-shindig</module>
+ </modules>
+ </profile>
+
+<!--jboss-picketlink-idm-->
+ <profile>
+ <id>jboss-picketlink-idm</id>
+ <modules>
+ <module>jboss-picketlink-idm</module>
+ </modules>
+ </profile>
+
+<!--jboss-portletbridge-->
+ <profile>
+ <id>jboss-portletbridge</id>
+ <modules>
+ <module>jboss-portletbridge</module>
+ </modules>
+ </profile>
+
+<!--exo-parent-->
+ <profile>
+ <id>exo-parent</id>
+ <modules>
+ <module>exo-parent</module>
+ </modules>
+ </profile>
+
+<!--exo-doc-->
+ <profile>
+ <id>exo-doc</id>
+ <modules>
+ <module>exo-doc</module>
+ </modules>
+ </profile>
+
+<!--exo-junit-->
+ <profile>
+ <id>exo-junit</id>
+ <modules>
+ <module>exo-junit</module>
+ </modules>
+ </profile>
+
+<!--exo-kernel-->
+ <profile>
+ <id>exo-kernel</id>
+ <modules>
+ <module>exo-kernel</module>
+ </modules>
+ </profile>
+
+<!--exo-core-->
+ <profile>
+ <id>exo-core</id>
+ <modules>
+ <module>exo-core</module>
+ </modules>
+ </profile>
+
+<!--exo-ws-->
+ <profile>
+ <id>exo-ws</id>
+ <modules>
+ <module>exo-ws</module>
+ </modules>
+ </profile>
+
+<!--exo-jcr-->
+ <profile>
+ <id>exo-jcr</id>
+ <modules>
+ <module>exo-jcr</module>
+ </modules>
+ </profile>
+
+ </profiles>
+
+</project>
\ No newline at end of file
13 years, 4 months
gatein SVN: r7249 - portal/trunk/component/portal/src/test/java/org/exoplatform/portal/mop/navigation.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2011-08-29 11:27:40 -0400 (Mon, 29 Aug 2011)
New Revision: 7249
Modified:
portal/trunk/component/portal/src/test/java/org/exoplatform/portal/mop/navigation/TestNavigationServiceSave.java
Log:
GTNPORTAL-2057 : NPE during transitive remove of transient node
Modified: portal/trunk/component/portal/src/test/java/org/exoplatform/portal/mop/navigation/TestNavigationServiceSave.java
===================================================================
--- portal/trunk/component/portal/src/test/java/org/exoplatform/portal/mop/navigation/TestNavigationServiceSave.java 2011-08-29 15:24:55 UTC (rev 7248)
+++ portal/trunk/component/portal/src/test/java/org/exoplatform/portal/mop/navigation/TestNavigationServiceSave.java 2011-08-29 15:27:40 UTC (rev 7249)
@@ -1056,7 +1056,7 @@
//
NavigationContext navigation = service.loadNavigation(SiteKey.portal("remove_added"));
Node root = service.loadNode(Node.MODEL, navigation, Scope.GRANDCHILDREN, null).getNode();
- root.addChild("foo").getHandle();
+ root.addChild("foo");
root.removeChild("foo");
service.saveNode(root.context, null);
13 years, 4 months