[CONF] Confluence Changes in the last 24 hours
- This is a daily summary of all recent changes in Confluence. - Updated Spaces: - OpenEJB (OPENEJB) http://cwiki.apache.org/confluence/display/OPENEJB | |-Pages Added or Edited in This Space |-- January2008 was last edited by jlaskowski (01:50 AM). | http://cwiki.apache.org/confluence/display/OPENEJB/January2008 Apache ActiveMQ NMS (NMS) http://cwiki.apache.org/confluence/display/NMS | |-Pages Added or Edited in This Space |-- Index was last edited by [EMAIL PROTECTED] (01:51 PM). | http://cwiki.apache.org/confluence/display/NMS/Index Apache Qpid (qpid) http://cwiki.apache.org/confluence/display/qpid | |-Pages Added or Edited in This Space |-- Acknowledgment was created by asimon (05:53 AM). | http://cwiki.apache.org/confluence/display/qpid/Acknowledgment |-- Navigation was last edited by asimon (05:52 AM). | http://cwiki.apache.org/confluence/display/qpid/Navigation |-- People was last edited by asimon (05:47 AM). | http://cwiki.apache.org/confluence/display/qpid/People Apache Roller (ROLLER) http://cwiki.apache.org/confluence/display/ROLLER | |-Pages Added or Edited in This Space |-- Proposal Roller 4.1 Release was last edited by snoopdave (09:47 PM). | http://cwiki.apache.org/confluence/display/ROLLER/Proposal+Roller+4.1+Release |-- Roller Proposals was last edited by snoopdave (09:46 PM). | http://cwiki.apache.org/confluence/display/ROLLER/Roller+Proposals Apache Geronimo v1.1 (GMOxDOC11) http://cwiki.apache.org/confluence/display/GMOxDOC11 | |-Pages Added or Edited in This Space |-- geronimo-web.xml was last edited by tedkirby (07:42 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC11/geronimo-web.xml Apache ServiceMix (SM) http://cwiki.apache.org/confluence/display/SM | |-Pages Added or Edited in This Space |-- servicemix-jsr181 was last edited by gnodet (09:08 AM). | http://cwiki.apache.org/confluence/display/SM/servicemix-jsr181 |-- servicemix-eip was last edited by gnodet (08:42 AM). | http://cwiki.apache.org/confluence/display/SM/servicemix-eip Apache Struts 2 Documentation (WW) http://cwiki.apache.org/confluence/display/WW | |-New Comments in This Space |-- http://cwiki.apache.org/confluence/display/WW/Validation (1) Apache Cayenne Documentation (CAYDOC) http://cwiki.apache.org/confluence/display/CAYDOC | |-Pages Added or Edited in This Space |-- Tutorial Setup was last edited by blacknext (12:07 PM). | http://cwiki.apache.org/confluence/display/CAYDOC/Tutorial+Setup Apache MINA (MINA) http://cwiki.apache.org/confluence/display/MINA | |-Pages Added or Edited in This Space |-- Contributors was last edited by trustin (05:38 PM). | http://cwiki.apache.org/confluence/display/MINA/Contributors Apache Wicket (WICKET) http://cwiki.apache.org/confluence/display/WICKET | |-Pages Added or Edited in This Space |-- How to write JSON response was created by [EMAIL PROTECTED] (04:19 AM). | http://cwiki.apache.org/confluence/display/WICKET/How+to+write+JSON+response - 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
svn commit: r612406 - /struts/struts2/trunk/plugins/portlet/src/main/java/org/apache/struts2/components/PortletUrlRenderer.java
Author: nilsga Date: Wed Jan 16 02:05:06 2008 New Revision: 612406 URL: http://svn.apache.org/viewvc?rev=612406&view=rev Log: WW-1859 The namespace computation does not seem to have any meaning, so removing it completely. Modified: struts/struts2/trunk/plugins/portlet/src/main/java/org/apache/struts2/components/PortletUrlRenderer.java Modified: struts/struts2/trunk/plugins/portlet/src/main/java/org/apache/struts2/components/PortletUrlRenderer.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/portlet/src/main/java/org/apache/struts2/components/PortletUrlRenderer.java?rev=612406&r1=612405&r2=612406&view=diff == --- struts/struts2/trunk/plugins/portlet/src/main/java/org/apache/struts2/components/PortletUrlRenderer.java (original) +++ struts/struts2/trunk/plugins/portlet/src/main/java/org/apache/struts2/components/PortletUrlRenderer.java Wed Jan 16 02:05:06 2008 @@ -117,19 +117,12 @@ formComponent.getParameters(), type, formComponent.portletMode, formComponent.windowState); formComponent.addParameter("action", result); -// namespace: cut out anything between the start and the last / -int slash = result.lastIndexOf('/'); -if (slash != -1) { -formComponent.addParameter("namespace", result.substring(0, slash)); -} else { -formComponent.addParameter("namespace", ""); -} // name/id: cut out anything between / and . should be the id and // name String id = formComponent.getId(); if (id == null) { -slash = action.lastIndexOf('/'); +int slash = action.lastIndexOf('/'); int dot = action.indexOf('.', slash); if (dot != -1) { id = action.substring(slash + 1, dot);
[OSS Bamboo] Struts 2 SVN - Main Build (Java 6) build 314 has FAILED (0 tests failed). Change made by Nils-Helge Garli Hegvik
The project Struts 2 SVN - Main Build (Java 6) has the following 1 change by 1 author: *Nils-Helge Garli Hegvik* made the following changes at Comment: WW-1859 The namespace computation does not seem to have any meaning, so removing it completely. > /struts/struts2/trunk/plugins/portlet/src/main/java/org/apache/struts2/components/PortletUrlRenderer.java > (612406) --- No failed tests found, a possible compilation error. Click http://opensource.bamboo.atlassian.com/browse/STRUTS-MAINJ6-314 to find out more. Thanks, Bamboo
svn commit: r612481 - in /struts/struts2/trunk: apps/blank/ apps/showcase/ core/ plugins/codebehind/ plugins/dojo/ plugins/portlet/ plugins/sitegraph/ plugins/sitemesh/ plugins/spring/ plugins/struts1
Author: husted Date: Wed Jan 16 07:24:54 2008 New Revision: 612481 URL: http://svn.apache.org/viewvc?rev=612481&view=rev Log: WW-2423, WW-2425, WW-2426 Update Spring, DWR, Freemarker, and SiteMesh dependencies per patch provided by Al Sutton. Modified: struts/struts2/trunk/apps/blank/pom.xml struts/struts2/trunk/apps/showcase/pom.xml struts/struts2/trunk/core/pom.xml struts/struts2/trunk/plugins/codebehind/pom.xml struts/struts2/trunk/plugins/dojo/pom.xml struts/struts2/trunk/plugins/portlet/pom.xml struts/struts2/trunk/plugins/sitegraph/pom.xml struts/struts2/trunk/plugins/sitemesh/pom.xml struts/struts2/trunk/plugins/spring/pom.xml struts/struts2/trunk/plugins/struts1/pom.xml Modified: struts/struts2/trunk/apps/blank/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/blank/pom.xml?rev=612481&r1=612480&r2=612481&view=diff == --- struts/struts2/trunk/apps/blank/pom.xml (original) +++ struts/struts2/trunk/apps/blank/pom.xml Wed Jan 16 07:24:54 2008 @@ -59,7 +59,7 @@ org.springframework spring-core -2.0.7 +2.0.8 test Modified: struts/struts2/trunk/apps/showcase/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/showcase/pom.xml?rev=612481&r1=612480&r2=612481&view=diff == --- struts/struts2/trunk/apps/showcase/pom.xml (original) +++ struts/struts2/trunk/apps/showcase/pom.xml Wed Jan 16 07:24:54 2008 @@ -133,12 +133,12 @@ opensymphony sitemesh -2.2.1 +2.3 uk.ltd.getahead dwr -1.1-beta-3 +1.1.1 log4j Modified: struts/struts2/trunk/core/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/pom.xml?rev=612481&r1=612480&r2=612481&view=diff == --- struts/struts2/trunk/core/pom.xml (original) +++ struts/struts2/trunk/core/pom.xml Wed Jan 16 07:24:54 2008 @@ -240,7 +240,7 @@ org.freemarker freemarker -2.3.10 +2.3.11 @@ -267,7 +267,7 @@ uk.ltd.getahead dwr -1.1-beta-3 +1.1.1 true @@ -311,14 +311,14 @@ org.springframework spring-mock -2.0.7 +2.0.8 true org.springframework spring-core -2.0.7 +2.0.8 test Modified: struts/struts2/trunk/plugins/codebehind/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/codebehind/pom.xml?rev=612481&r1=612480&r2=612481&view=diff == --- struts/struts2/trunk/plugins/codebehind/pom.xml (original) +++ struts/struts2/trunk/plugins/codebehind/pom.xml Wed Jan 16 07:24:54 2008 @@ -56,13 +56,13 @@ org.springframework spring-mock -2.0.7 +2.0.8 test org.springframework spring-core -2.0.7 +2.0.8 test Modified: struts/struts2/trunk/plugins/dojo/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/dojo/pom.xml?rev=612481&r1=612480&r2=612481&view=diff == --- struts/struts2/trunk/plugins/dojo/pom.xml (original) +++ struts/struts2/trunk/plugins/dojo/pom.xml Wed Jan 16 07:24:54 2008 @@ -241,14 +241,14 @@ org.springframework spring-mock -2.0.7 +2.0.8 true org.springframework spring-core -2.0.7 +2.0.8 test Modified: struts/struts2/trunk/plugins/portlet/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/portlet/pom.xml?rev=612481&r1=612480&r2=612481&view=diff == --- struts/struts2/trunk/plugins/portlet/pom.xml (original) +++ struts/struts2/trunk/plugins/portlet/pom.xml Wed Jan 16 07:24:54 2008 @@ -123,25 +123,25 @@ org.springframework spring-mock -2.0.7 - test +2.0.8 + test - - org.springframework - spring-portlet - 2.0.7 - test - + + org.springframework + spring-p
[OSS Bamboo] Struts 2 SVN - Main Build (Java 6) build 315 was SUCCESSFUL (with 755 tests). Change made by husted
The project Struts 2 SVN - Main Build (Java 6) has the following 1 change by 1 author: *husted* made the following changes at Comment: WW-2423, WW-2425, WW-2426 Update Spring, DWR, Freemarker, and SiteMesh dependencies per patch provided by Al Sutton. > /struts/struts2/trunk/plugins/sitemesh/pom.xml (612481) > /struts/struts2/trunk/plugins/portlet/pom.xml (612481) > /struts/struts2/trunk/plugins/codebehind/pom.xml (612481) > /struts/struts2/trunk/plugins/dojo/pom.xml (612481) > /struts/struts2/trunk/core/pom.xml (612481) > /struts/struts2/trunk/apps/showcase/pom.xml (612481) > /struts/struts2/trunk/plugins/spring/pom.xml (612481) > /struts/struts2/trunk/plugins/sitegraph/pom.xml (612481) > /struts/struts2/trunk/plugins/struts1/pom.xml (612481) > /struts/struts2/trunk/apps/blank/pom.xml (612481) --- All 755 tests passed. Click http://opensource.bamboo.atlassian.com/browse/STRUTS-MAINJ6-315 to find out more. Thanks, Bamboo
svn commit: r612695 - /struts/struts2/trunk/core/src/main/resources/template/simple/doubleselect.ftl
Author: husted Date: Wed Jan 16 19:19:54 2008 New Revision: 612695 URL: http://svn.apache.org/viewvc?rev=612695&view=rev Log: WW-2236 doublemultiple doesn't work in doubleselect - Apply change suggested by Annie Wang. Modified: struts/struts2/trunk/core/src/main/resources/template/simple/doubleselect.ftl Modified: struts/struts2/trunk/core/src/main/resources/template/simple/doubleselect.ftl URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/simple/doubleselect.ftl?rev=612695&r1=612694&r2=612695&view=diff == --- struts/struts2/trunk/core/src/main/resources/template/simple/doubleselect.ftl (original) +++ struts/struts2/trunk/core/src/main/resources/template/simple/doubleselect.ftl Wed Jan 16 19:19:54 2008 @@ -56,6 +56,9 @@ <#if parameters.get("doubleSize")?exists> size="${parameters.get("doubleSize")?html}"<#rt/> +<#if parameters.doubleMultiple?default(false)> + multiple="multiple"<#rt/> + >