[CONF] Confluence Changes in the last 24 hours
- This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache Directory Community & Resources (directory) http://cwiki.apache.org/confluence/display/directory | |-Pages Added or Edited in This Space |-- LDAP entmystifiziert (JUG Berlin) was last edited by szoerner (10:16 AM). | http://cwiki.apache.org/confluence/display/directory/LDAP+entmystifiziert+%28JUG+Berlin%29 |-- Conference materials was last edited by szoerner (09:52 AM). | http://cwiki.apache.org/confluence/display/directory/Conference+materials Apache Camel (CAMEL) http://cwiki.apache.org/confluence/display/CAMEL | |-Pages Added or Edited in This Space |-- Idempotent Consumer was last edited by janstey (01:39 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Idempotent+Consumer |-- Selective Consumer was last edited by janstey (01:38 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Selective+Consumer |-- Splitter was last edited by janstey (01:36 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Splitter |-- Recipient List was last edited by janstey (01:34 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Recipient+List |-- Message Filter was last edited by janstey (01:32 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Message+Filter |-- Content Based Router was last edited by janstey (01:31 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Content+Based+Router |-- Publish Subscribe Channel was last edited by janstey (01:29 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Publish+Subscribe+Channel |-- Message Router was last edited by janstey (01:27 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Message+Router |-- Wire Tap was last edited by janstey (01:01 PM). | http://cwiki.apache.org/confluence/display/CAMEL/Wire+Tap Tuscany Wiki (TUSCANYWIKI) http://cwiki.apache.org/confluence/display/TUSCANYWIKI | |-Pages Added or Edited in This Space |-- SCA Java Distribution & Packaging was created by haleh (05:38 PM). | http://cwiki.apache.org/confluence/pages/viewpage.action?pageId=88325 |-- functional components at runtime was created by haleh (07:29 PM). | http://cwiki.apache.org/confluence/display/TUSCANYWIKI/functional+components+at+runtime |-- Simple ways of starting Tuscany was created by haleh (07:15 PM). | http://cwiki.apache.org/confluence/display/TUSCANYWIKI/Simple+ways+of+starting+Tuscany |-- Basic Modules- Runtime Bundles was created by haleh (05:52 PM). | http://cwiki.apache.org/confluence/display/TUSCANYWIKI/Basic+Modules-+Runtime+Bundles |-- SCA Java White Board Index was created by haleh (05:00 PM). | http://cwiki.apache.org/confluence/display/TUSCANYWIKI/SCA+Java+White+Board+Index |-- June 2008 was last edited by haleh (04:46 PM). | http://cwiki.apache.org/confluence/display/TUSCANYWIKI/June+2008 |-- SCA与其他主流技术的集成 was created by [EMAIL PROTECTED] (01:28 AM). | http://cwiki.apache.org/confluence/pages/viewpage.action?pageId=88296 |-- Chinese Web Site was last edited by [EMAIL PROTECTED] (01:29 AM). | http://cwiki.apache.org/confluence/display/TUSCANYWIKI/Chinese+Web+Site - 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 2008-06-16
Struts2 - Monday, June 16, 2008 3 opened in last 7 days [WW-2678] portlet dispatching after action phase renders in wrong namespace - Type: Bug - Reporter: Herbert Poul - Components: [Plugin - Portlet] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2678 [WW-2675] Multiple Struts2 .war in a single .ear - Type: Bug - Reporter: Hugo de Paix de Coeur - Components: [Build Management, Core Actions] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2675 [WW-2679] Portlet session APPLICATION_SCOPE does not work between two portlet communication. - Type: Bug - Reporter: Alexander Leonov - Components: [Plugin - Portlet] - Affects Versions: [] - http://issues.apache.org/struts/browse/WW-2679
svn commit: r668253 - /struts/struts2/trunk/core/src/main/resources/template/simple/checkboxlist.ftl
Author: jholmes Date: Mon Jun 16 11:08:45 2008 New Revision: 668253 URL: http://svn.apache.org/viewvc?rev=668253&view=rev Log: Reverse changes made in revision 667876. WW-2238 Modified: struts/struts2/trunk/core/src/main/resources/template/simple/checkboxlist.ftl Modified: struts/struts2/trunk/core/src/main/resources/template/simple/checkboxlist.ftl URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/simple/checkboxlist.ftl?rev=668253&r1=668252&r2=668253&view=diff == --- struts/struts2/trunk/core/src/main/resources/template/simple/checkboxlist.ftl (original) +++ struts/struts2/trunk/core/src/main/resources/template/simple/checkboxlist.ftl Mon Jun 16 11:08:45 2008 @@ -34,11 +34,6 @@ <#else> <#assign itemValue = stack.findString('top')/> -<#if parameters.label?exists> -<#assign itemLabel = stack.findString(parameters.label)/> -<#else> -<#assign itemLabel = itemValue/> - <#assign itemKeyStr=itemKey.toString() /> <#if tag.contains(parameters.nameValue, itemKey)> @@ -53,7 +48,7 @@ <#include "/${parameters.templateDir}/simple/scripting-events.ftl" /> <#include "/${parameters.templateDir}/simple/common-attributes.ftl" /> /> -${itemLabel?html} +${itemValue?html} <#else>
svn commit: r668256 - /struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java
Author: apetrelli Date: Mon Jun 16 11:27:18 2008 New Revision: 668256 URL: http://svn.apache.org/viewvc?rev=668256&view=rev Log: WW-2538 Removed the "close" call of the writer of the response. Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java?rev=668256&r1=668255&r2=668256&view=diff == --- struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java (original) +++ struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java Mon Jun 16 11:27:18 2008 @@ -22,7 +22,6 @@ import java.io.IOException; import java.io.PrintWriter; -import java.io.Writer; import java.net.URL; import java.util.HashMap; import java.util.Map; @@ -315,8 +314,6 @@ try { HttpServletResponse response = ServletActionContext.getResponse(); -Writer writer = response.getWriter(); - // Create a transformer for the stylesheet. Templates templates = null; Transformer transformer; @@ -354,13 +351,11 @@ LOG.debug("xmlSource = " + xmlSource); transformer.transform(xmlSource, new StreamResult(out)); -out.close(); // ...and flush... +out.flush(); // ...and flush... if (LOG.isDebugEnabled()) { LOG.debug("Time:" + (System.currentTimeMillis() - startTime) + "ms"); } - -writer.flush(); } catch (Exception e) { LOG.error("Unable to render XSLT Template, '" + location + "'", e); throw e;