[CONF] Confluence Changes in the last 24 hours
- This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache Camel (CAMEL) http://cwiki.apache.org/confluence/display/CAMEL | |-Pages Added or Edited in This Space |-- Camel 2.0.0 Release was last edited by davsclaus (10:15 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Camel+2.0.0+Release |-- Polling Consumer was last edited by davsclaus (10:12 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Polling+Consumer |-- File2 was last edited by davsclaus (04:01 AM). | http://cwiki.apache.org/confluence/display/CAMEL/File2 |-- GSoC 2009 was last edited by xueqiang.mi (01:59 AM). | http://cwiki.apache.org/confluence/display/CAMEL/GSoC+2009 Apache Geronimo v2.2 (GMOxDOC22) http://cwiki.apache.org/confluence/display/GMOxDOC22 | |-Pages Added or Edited in This Space |-- Deploying and undeploying applications was last edited by chirun...@gmail.com (09:34 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Deploying+and+undeploying+applications |-- Deploying an Application to a Server Instance in GShell was last edited by chirun...@gmail.com (09:22 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Deploying+an+Application+to+a+Server+Instance+in+GShell |-- Starting and stopping applications was last edited by chirun...@gmail.com (07:39 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Starting+and+stopping+applications Apache Cayenne Documentation (CAYDOC) http://cwiki.apache.org/confluence/display/CAYDOC | |-Pages Added or Edited in This Space |-- Ant Tasks was last edited by andrus (03:27 AM). | http://cwiki.apache.org/confluence/display/CAYDOC/Ant+Tasks |-- cdbimport was last edited by andrus (02:54 AM). | http://cwiki.apache.org/confluence/display/CAYDOC/cdbimport |-- cdataport was last edited by andrus (02:54 AM). | http://cwiki.apache.org/confluence/display/CAYDOC/cdataport |-- cdeploy was last edited by andrus (02:53 AM). | http://cwiki.apache.org/confluence/display/CAYDOC/cdeploy |-- cdbgen was last edited by andrus (02:53 AM). | http://cwiki.apache.org/confluence/display/CAYDOC/cdbgen |-- JAR Files and Dependencies was last edited by andrus (02:51 AM). | http://cwiki.apache.org/confluence/display/CAYDOC/JAR+Files+and+Dependencies Apache Continuum (CONTINUUM) http://cwiki.apache.org/confluence/display/CONTINUUM | |-Pages Added or Edited in This Space |-- Selenium Tests was last edited by kpardo (08:23 PM). | http://cwiki.apache.org/confluence/display/CONTINUUM/Selenium+Tests Apache Wicket (WICKET) http://cwiki.apache.org/confluence/display/WICKET | |-Pages Added or Edited in This Space |-- Wicket 1.5 Wish List was last edited by deamon (11:48 PM). | http://cwiki.apache.org/confluence/display/WICKET/Wicket+1.5+Wish+List - CONFLUENCE INFORMATION This message is automatically generated by Confluence Unsubscribe or edit your notifications preferences http://cwiki.apache.org/confluence/users/viewnotifications.action If you think it was sent incorrectly contact one of the administrators http://cwiki.apache.org/confluence/administrators.action If you want more information on Confluence, or have a bug to report see http://www.atlassian.com/software/confluence
Issues Opened: week of 2009-06-29
Struts2 - Monday, June 29, 2009 4 opened in last 7 days [WW-3166] The contains method of org.apache.struts2.util.ContainUtil throws a NullPointerException if Obj1 contains a null element in an array - Type: Bug - Reporter: Zoran Avtarovski - Components: [Other] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-3166 [WW-3170] ObjectFactory reporting ERROR's when you attempt to set parameters on a Redirect result - Type: Bug - Reporter: Lee Clemens - Components: [] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-3170 [WW-3168] Exceptions thrown by constructors are not mapped to actions as condfigured in struts.xml - Type: Improvement - Reporter: Jan T. Kim - Components: [Core Actions] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-3168 [WW-3169] struts2 textfield tag not working on google chrome - Type: Bug - Reporter: Deepak Arora - Components: [] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-3169
svn commit: r789432 - in /struts/struts2/trunk/core/src/main: java/org/apache/struts2/StrutsConstants.java java/org/apache/struts2/config/BeanSelectionProvider.java resources/org/apache/struts2/defaul
Author: musachy Date: Mon Jun 29 20:15:24 2009 New Revision: 789432 URL: http://svn.apache.org/viewvc?rev=789432&view=rev Log: WW-3172 Add a flag to disable OGNL cache, which can cause memory leaks Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/StrutsConstants.java struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/StrutsConstants.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/StrutsConstants.java?rev=789432&r1=789431&r2=789432&view=diff == --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/StrutsConstants.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/StrutsConstants.java Mon Jun 29 20:15:24 2009 @@ -209,4 +209,7 @@ /** Logs properties that are not found (very verbose) **/ public static final String STRUTS_LOG_MISSING_PROPERTIES = "struts.ognl.logMissingProperties"; + +/** Enables caching of parsed OGNL expressions **/ +public static final String STRUTS_ENABLE_OGNL_EXPRESSION_CACHE = "struts.ognl.enableExpressionCache"; } Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java?rev=789432&r1=789431&r2=789432&view=diff == --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java Mon Jun 29 20:15:24 2009 @@ -231,6 +231,9 @@ if (props.containsKey(StrutsConstants.STRUTS_LOG_MISSING_PROPERTIES)) props.setProperty("logMissingProperties", props.getProperty(StrutsConstants.STRUTS_LOG_MISSING_PROPERTIES)); +if (props.containsKey(StrutsConstants.STRUTS_ENABLE_OGNL_EXPRESSION_CACHE)) +props.setProperty("enableOGNLExpressionCache", props.getProperty(StrutsConstants.STRUTS_ENABLE_OGNL_EXPRESSION_CACHE)); + String val = props.getProperty(StrutsConstants.STRUTS_ALLOW_STATIC_METHOD_ACCESS); if (val != null) { props.setProperty("allowStaticMethodAccess", val); Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties?rev=789432&r1=789431&r2=789432&view=diff == --- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties (original) +++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties Mon Jun 29 20:15:24 2009 @@ -203,4 +203,7 @@ ### Logs as Warnings properties that are not found (very verbose) struts.ognl.logMissingProperties=false +### Chaches parsed OGNL expressions, but can lead to memory leaks +### if the application generates a lot of different expressions +struts.ognl.enableExpressionCache=true ### END SNIPPET: complete_file
svn commit: r789434 - /struts/struts2/trunk/core/pom.xml
Author: musachy Date: Mon Jun 29 20:17:20 2009 New Revision: 789434 URL: http://svn.apache.org/viewvc?rev=789434&view=rev Log: bump xwork version 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=789434&r1=789433&r2=789434&view=diff == --- struts/struts2/trunk/core/pom.xml (original) +++ struts/struts2/trunk/core/pom.xml Mon Jun 29 20:17:20 2009 @@ -229,7 +229,7 @@ com.opensymphony xwork-core -2.1.4 +2.1.5-SNAPSHOT
svn commit: r789467 - /struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties
Author: musachy Date: Mon Jun 29 22:11:12 2009 New Revision: 789467 URL: http://svn.apache.org/viewvc?rev=789467&view=rev Log: fix typo Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties?rev=789467&r1=789466&r2=789467&view=diff == --- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties (original) +++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties Mon Jun 29 22:11:12 2009 @@ -203,7 +203,7 @@ ### Logs as Warnings properties that are not found (very verbose) struts.ognl.logMissingProperties=false -### Chaches parsed OGNL expressions, but can lead to memory leaks +### Caches parsed OGNL expressions, but can lead to memory leaks ### if the application generates a lot of different expressions struts.ognl.enableExpressionCache=true ### END SNIPPET: complete_file