[CONF] Confluence Changes in the last 24 hours
- This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Travel Assistance (TAC) http://cwiki.apache.org/confluence/display/TAC | |-Pages Added or Edited in This Space |-- Index was last edited by ipv6guru (01:41 PM). | http://cwiki.apache.org/confluence/display/TAC/Index |-- Timeline of events to ApacheCon EU 2009 was created by ipv6guru (11:53 AM). | http://cwiki.apache.org/confluence/display/TAC/Timeline+of+events+to+ApacheCon+EU+2009 Apache Camel (CAMEL) http://cwiki.apache.org/confluence/display/CAMEL | |-Pages Added or Edited in This Space |-- Jetty was last edited by romkal (09:07 AM). | http://cwiki.apache.org/confluence/display/CAMEL/Jetty Apache Etch (ETCH) http://cwiki.apache.org/confluence/display/ETCH | |-Pages Added or Edited in This Space |-- Mailing Lists was last edited by sccomer (05:24 PM). | http://cwiki.apache.org/confluence/display/ETCH/Mailing+Lists |-- Example - Hello World was created by ipuneetsharma (02:09 AM). | http://cwiki.apache.org/confluence/display/ETCH/Example+-+Hello+World Apache Roller (ROLLER) http://cwiki.apache.org/confluence/display/ROLLER | |-Pages Added or Edited in This Space |-- November 2008 Board Report was last edited by snoopdave (04:13 AM). | http://cwiki.apache.org/confluence/display/ROLLER/November+2008+Board+Report Apache Directory SandBox (DIRxSBOX) http://cwiki.apache.org/confluence/display/DIRxSBOX | |-Pages Added or Edited in This Space |-- Draft - How to write a simple custom partition for ApacheDS was last edited by szoerner (01:08 AM). | http://cwiki.apache.org/confluence/display/DIRxSBOX/Draft+-+How+to+write+a+simple+custom+partition+for+ApacheDS Apache Geronimo Project Management (GMOxPMGT) http://cwiki.apache.org/confluence/display/GMOxPMGT | |-Pages Added or Edited in This Space |-- Geronimo 2.2 Release Roadmap was last edited by drwoods (12:56 PM). | http://cwiki.apache.org/confluence/display/GMOxPMGT/Geronimo+2.2+Release+Roadmap Apache Geronimo v2.2 (GMOxDOC22) http://cwiki.apache.org/confluence/display/GMOxDOC22 | |-Pages Added or Edited in This Space |-- Documentation was last edited by sophia (11:10 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Documentation |-- Developing was last edited by sophia (11:08 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Developing |-- User Interface development with JSF was last edited by sophia (11:06 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/User+Interface+development+with+JSF |-- Basics of JavaServer Faces was last edited by sophia (11:05 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Basics+of+JavaServer+Faces |-- Apache Geronimo v2.2 documentation development status was last edited by sophia (11:05 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Apache+Geronimo+v2.2+documentation+development+status |-- Developing applications for Geronimo was last edited by sophia (11:05 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Developing+applications+for+Geronimo |-- Tutorials was last edited by sophia (11:05 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Tutorials |-- Developing JavaServer faces applications was created by sophia (11:02 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Developing+JavaServer+faces+applications |-- Deploying applications using Geronimo Eclipse Plugin (GEP) was created by sophia (10:40 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Deploying+applications+using+Geronimo+Eclipse+Plugin+%28GEP%29 |-- Getting familiar with the development environment was last edited by sophia (10:41 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Getting+familiar+with+the+development+environment |-- Deploy assets was last edited by [EMAIL PROTECTED] (10:23 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Deploy+assets |-- Installing Eclipse was created by sophia (12:19 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Installing+Eclipse |-- Initial configuration was created by [EMAIL PROTECTED] (09:37 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Initial+configuration |-- Changing the username and password was created by [EMAIL PROTECTED] (10:15 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Changing+the+username+and+password |-- Topology planning was created by [EMAIL PROTECTED] (10:12 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Topology+planning |-- Changing the default port numbers was created by [EMAIL PROTECTED] (09:44 PM). | http://cwiki.apache.org/confluence/display/GMOxDOC22/Changing+the+default+port+numbers |-- How to upgrade Jars and swap modules was
svn commit: r718652 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/template/FreemarkerTemplateEngine.java
Author: musachy Date: Tue Nov 18 09:04:01 2008 New Revision: 718652 URL: http://svn.apache.org/viewvc?rev=718652&view=rev Log: WW-2246 always wrap the writer passed to FreeMarker to prevent exception when using custom tags Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/template/FreemarkerTemplateEngine.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/template/FreemarkerTemplateEngine.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/template/FreemarkerTemplateEngine.java?rev=718652&r1=718651&r2=718652&view=diff == --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/template/FreemarkerTemplateEngine.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/template/FreemarkerTemplateEngine.java Tue Nov 18 09:04:01 2008 @@ -163,22 +163,20 @@ // the BodyContent JSP writer doesn't like it when FM flushes automatically -- // so let's just not do it (it will be flushed eventually anyway) Writer writer = templateContext.getWriter(); -if (bodyContent != null && bodyContent.isAssignableFrom(writer.getClass())) { -final Writer wrapped = writer; -writer = new Writer() { -public void write(char cbuf[], int off, int len) throws IOException { -wrapped.write(cbuf, off, len); -} - -public void flush() throws IOException { -// nothing! -} - -public void close() throws IOException { -wrapped.close(); -} -}; -} +final Writer wrapped = writer; +writer = new Writer() { +public void write(char cbuf[], int off, int len) throws IOException { +wrapped.write(cbuf, off, len); +} + +public void flush() throws IOException { +// nothing! +} + +public void close() throws IOException { +wrapped.close(); +} +}; try { stack.push(templateContext.getTag());
svn commit: r718682 - /struts/struts2/branches/release_process/assembly/src/main/assembly/all.xml
Author: rgielen Date: Tue Nov 18 10:50:46 2008 New Revision: 718682 URL: http://svn.apache.org/viewvc?rev=718682&view=rev Log: another typo fix Modified: struts/struts2/branches/release_process/assembly/src/main/assembly/all.xml Modified: struts/struts2/branches/release_process/assembly/src/main/assembly/all.xml URL: http://svn.apache.org/viewvc/struts/struts2/branches/release_process/assembly/src/main/assembly/all.xml?rev=718682&r1=718681&r2=718682&view=diff == --- struts/struts2/branches/release_process/assembly/src/main/assembly/all.xml (original) +++ struts/struts2/branches/release_process/assembly/src/main/assembly/all.xml Tue Nov 18 10:50:46 2008 @@ -152,7 +152,7 @@ docs/struts2-plugins/struts2-jsf-plugin -../plugins/jsf/target/site +../plugins/junit/target/site docs/struts2-plugins/struts2-junit-plugin @@ -188,7 +188,7 @@ docs/struts2-plugins/struts2-sitemesh-plugin -../plugins/tiles/target/site +../plugins/testng/target/site docs/struts2-plugins/struts2-testng-plugin
svn commit: r718748 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/UIBean.java
Author: musachy Date: Tue Nov 18 14:43:53 2008 New Revision: 718748 URL: http://svn.apache.org/viewvc?rev=718748&view=rev Log: WW-2071 UIBean.end does not fail when an exception happens. Throw a runtime exception, instead of just logging it Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/UIBean.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/UIBean.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/UIBean.java?rev=718748&r1=718747&r2=718748&view=diff == --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/UIBean.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/UIBean.java Tue Nov 18 14:43:53 2008 @@ -32,6 +32,7 @@ import javax.servlet.http.HttpServletResponse; import org.apache.struts2.StrutsConstants; +import org.apache.struts2.StrutsException; import org.apache.struts2.util.TextProviderHelper; import org.apache.struts2.components.template.Template; import org.apache.struts2.components.template.TemplateEngine; @@ -511,7 +512,7 @@ super.end(writer, body, false); mergeTemplate(writer, buildTemplateName(template, getDefaultTemplate())); } catch (Exception e) { -LOG.error("error when rendering", e); +throw new StrutsException(e); } finally { popComponentStack();
svn commit: r718826 - /struts/struts2/branches/release_process/assembly/pom.xml
Author: musachy Date: Tue Nov 18 16:52:06 2008 New Revision: 718826 URL: http://svn.apache.org/viewvc?rev=718826&view=rev Log: remove jdk4 from default assembly and move it to profile Modified: struts/struts2/branches/release_process/assembly/pom.xml Modified: struts/struts2/branches/release_process/assembly/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/branches/release_process/assembly/pom.xml?rev=718826&r1=718825&r2=718826&view=diff == --- struts/struts2/branches/release_process/assembly/pom.xml (original) +++ struts/struts2/branches/release_process/assembly/pom.xml Tue Nov 18 16:52:06 2008 @@ -42,7 +42,43 @@ scm:svn:https://svn.apache.org/repos/asf/struts/struts2/trunk/assembly http://svn.apache.org/viewcvs.cgi/struts/struts2/trunk/assembly - + + + +j4 + + + +maven-assembly-plugin +2.2-beta-1 + + +make-assembly +package + + attached + + + + + + src/main/assembly/all.xml + src/main/assembly/lib.xml + src/main/assembly/lib-jdk14.xml + src/main/assembly/apps.xml + src/main/assembly/src.xml + src/main/assembly/docs.xml + +struts-${version} + target/assembly/out +target/assembly/work + + + + + + + @@ -155,7 +191,6 @@ src/main/assembly/all.xml src/main/assembly/lib.xml - src/main/assembly/lib-jdk14.xml src/main/assembly/apps.xml src/main/assembly/src.xml src/main/assembly/docs.xml