svn commit: r922566 - /struts/struts2/trunk/core/pom.xml

2010-03-13 Thread lukaszlenart
Author: lukaszlenart
Date: Sat Mar 13 13:45:08 2010
New Revision: 922566

URL: http://svn.apache.org/viewvc?rev=922566&view=rev
Log:
Use Maven variable for XWork version instead of hard coded value

Modified:
struts/struts2/trunk/core/pom.xml

Modified: struts/struts2/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/pom.xml?rev=922566&r1=922565&r2=922566&view=diff
==
--- struts/struts2/trunk/core/pom.xml (original)
+++ struts/struts2/trunk/core/pom.xml Sat Mar 13 13:45:08 2010
@@ -205,7 +205,7 @@
 
 com.opensymphony
 xwork-core
-2.2.0-SNAPSHOT
+${version}
 
 
 




[OSS Bamboo] Struts 2 SVN - Main Build (Java 6) build 1034 has FAILED (0 tests failed). Change made by Lukasz Lenart

2010-03-13 Thread Atlassian Open Source Bamboo
---
STRUTS-MAINJ6-1034 failed.
---
Code has been updated by Lukasz Lenart.
No failed tests found, a possible compilation error.

http://opensource.bamboo.atlassian.com/browse/STRUTS-MAINJ6-1034/


--
Code Changes
--
Lukasz Lenart (922566):

>Use Maven variable for XWork version instead of hard coded value


--
Error Summary
--
   [INFO] 

   [ERROR] BUILD ERROR
   [INFO] 

   [INFO] The plugin 'org.codehaus.mojo:cobertura-maven-plugin' does not exist 
or no valid version could be found
   [INFO] 

   [INFO] For more information, run Maven with the -e switch


--
This message is automatically generated by Atlassian Bamboo



[OSS Bamboo] Struts 2 SVN - Main Build build 1270 has FAILED (1 tests failed). Change made by Lukasz Lenart

2010-03-13 Thread Atlassian Open Source Bamboo
---
STRUTS-MAIN-1270 failed.
---
Code has been updated by Lukasz Lenart.
1/1784 tests failed.

http://opensource.bamboo.atlassian.com/browse/STRUTS-MAIN-1270/


--
Code Changes
--
Lukasz Lenart (922566):

>Use Maven variable for XWork version instead of hard coded value


--
Tests
--
Failed Tests (1)
   - Struts2PortletTest: Index page (New)


--
Error Summary
--
   [INFO] 

   [ERROR] BUILD FAILURE
   [INFO] 

   [INFO] There are test failures.
   [INFO] 

   [INFO] For more information, run Maven with the -e switch


--
This message is automatically generated by Atlassian Bamboo



svn commit: r922572 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ActionTag.java

2010-03-13 Thread lukaszlenart
Author: lukaszlenart
Date: Sat Mar 13 13:57:27 2010
New Revision: 922572

URL: http://svn.apache.org/viewvc?rev=922572&view=rev
Log:
Resolved WW-3294 - missing property for rethrowException

Modified:

struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ActionTag.java

Modified: 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ActionTag.java
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ActionTag.java?rev=922572&r1=922571&r2=922572&view=diff
==
--- 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ActionTag.java
 (original)
+++ 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ActionTag.java
 Sat Mar 13 13:57:27 2010
@@ -21,13 +21,12 @@
 
 package org.apache.struts2.views.jsp;
 
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
+import com.opensymphony.xwork2.util.ValueStack;
 import org.apache.struts2.components.ActionComponent;
 import org.apache.struts2.components.Component;
 
-import com.opensymphony.xwork2.util.ValueStack;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
 
 /**
  * @see ActionComponent
@@ -41,6 +40,7 @@ public class ActionTag extends ContextBe
 protected boolean executeResult;
 protected boolean ignoreContextParams;
 protected boolean flush = true;
+protected boolean rethrowException;
 
 public Component getBean(ValueStack stack, HttpServletRequest req, 
HttpServletResponse res) {
 return new ActionComponent(stack, req, res);
@@ -55,6 +55,7 @@ public class ActionTag extends ContextBe
 action.setExecuteResult(executeResult);
 action.setIgnoreContextParams(ignoreContextParams);
 action.setFlush(flush);
+action.setRethrowException(rethrowException);
 }
 
 protected void addParameter(String name, Object value) {
@@ -85,4 +86,9 @@ public class ActionTag extends ContextBe
 public boolean getFlush() {
 return this.flush;
 }
+
+public void setRethrowException(boolean rethrowException) {
+this.rethrowException = rethrowException;
+}
+
 }




[OSS Bamboo] Struts 2 SVN - Main Build build 1271 has FAILED (1 tests failed, no failures were new). Change made by Lukasz Lenart

2010-03-13 Thread Atlassian Open Source Bamboo
---
STRUTS-MAIN-1271 failed.
---
Code has been updated by Lukasz Lenart.
1/1784 tests failed.

http://opensource.bamboo.atlassian.com/browse/STRUTS-MAIN-1271/


--
Code Changes
--
Lukasz Lenart (922572):

>Resolved WW-3294 - missing property for rethrowException


--
Tests
--
Failed Tests (1)
   - Struts2PortletTest: Index page (Existing)


--
Error Summary
--
   [INFO] 

   [ERROR] BUILD ERROR
   [INFO] 

   [INFO] The plugin 'org.codehaus.mojo:cobertura-maven-plugin' does not exist 
or no valid version could be found
   [INFO] 

   [INFO] For more information, run Maven with the -e switch


--
This message is automatically generated by Atlassian Bamboo



[OSS Bamboo] Struts 2 SVN - Main Build (Java 6) build 1035 has FAILED (0 tests failed). Change made by Lukasz Lenart

2010-03-13 Thread Atlassian Open Source Bamboo
---
STRUTS-MAINJ6-1035 failed.
---
Code has been updated by Lukasz Lenart.
No failed tests found, a possible compilation error.

http://opensource.bamboo.atlassian.com/browse/STRUTS-MAINJ6-1035/


--
Code Changes
--
Lukasz Lenart (922572):

>Resolved WW-3294 - missing property for rethrowException


--
Error Summary
--
   [INFO] 

   [ERROR] BUILD ERROR
   [INFO] 

   [INFO] The plugin 'org.codehaus.mojo:cobertura-maven-plugin' does not exist 
or no valid version could be found
   [INFO] 

   [INFO] For more information, run Maven with the -e switch


--
This message is automatically generated by Atlassian Bamboo



[CONF] Confluence Changes in the last 24 hours

2010-03-13 Thread confluence
This is a daily summary of all recent changes in Confluence.

-
Updated Spaces:
-


Apache Camel (http://cwiki.apache.org/confluence/display/CAMEL)

Pages
-
Camel 2.3.0 Release edited by  davsclaus  (11:43 AM)
http://cwiki.apache.org/confluence/display/CAMEL/Camel+2.3.0+Release

Simple edited by  davsclaus  (11:39 AM)
http://cwiki.apache.org/confluence/display/CAMEL/Simple

Camel 2.3 - ThreadPool Configuration edited by  davsclaus  (10:40 AM)
http://cwiki.apache.org/confluence/display/CAMEL/Camel+2.3+-+ThreadPool+Configuration

Cometd edited by  mrt1nz  (08:04 AM)
http://cwiki.apache.org/confluence/display/CAMEL/Cometd



Community Development Site 
(http://cwiki.apache.org/confluence/display/COMDEVxSITE)

Pages
-
LocalMentors edited by  nickburch  (07:53 PM)
http://cwiki.apache.org/confluence/display/COMDEVxSITE/LocalMentors

Index edited by  nickburch  (06:08 PM)
http://cwiki.apache.org/confluence/display/COMDEVxSITE/Index



Apache Directory client API (http://cwiki.apache.org/confluence/display/DIRAPI)

Pages
-
Entry API created by elecharny (10:56 PM)
http://cwiki.apache.org/confluence/display/DIRAPI/Entry+API

Client API LDAP objects edited by  elecharny  (10:33 PM)
http://cwiki.apache.org/confluence/display/DIRAPI/Client+API+LDAP+objects



Apache Felix (http://cwiki.apache.org/confluence/display/FELIX)

Pages
-
Web Console Logging created by fmeschbe (11:58 AM)
http://cwiki.apache.org/confluence/display/FELIX/Web+Console+Logging

Extending the Apache Felix Web Console edited by  fmeschbe  (11:58 AM)
http://cwiki.apache.org/confluence/display/FELIX/Extending+the+Apache+Felix+Web+Console



Apache MINA FtpServer (http://cwiki.apache.org/confluence/display/FTPSERVER)

Pages
-
Downloads edited by  ngn  (08:30 PM)
http://cwiki.apache.org/confluence/display/FTPSERVER/Downloads

Apache FtpServer 1.0.4 Release created by ngn (08:29 PM)
http://cwiki.apache.org/confluence/display/FTPSERVER/Apache+FtpServer+1.0.4+Release

Apache FtpServer 1.0.4 released created by ngn (06:45 PM)
http://cwiki.apache.org/confluence/display/FTPSERVER/2010/03/13/Apache+FtpServer+1.0.4+released



Apache Lucene Mahout (http://cwiki.apache.org/confluence/display/MAHOUT)

Pages
-
Partial Implementation edited by  adene...@gmail.com  (05:36 PM)
http://cwiki.apache.org/confluence/display/MAHOUT/Partial+Implementation



UIMA (http://cwiki.apache.org/confluence/display/UIMA)

Pages
-
Redesign for more standards including Maven edited by  schor  (10:19 PM)
http://cwiki.apache.org/confluence/display/UIMA/Redesign+for+more+standards+including+Maven

ToDo edited by  schor  (11:57 AM)
http://cwiki.apache.org/confluence/display/UIMA/ToDo




Change your notification preferences: 
http://cwiki.apache.org/confluence/users/viewnotifications.action