[CONF] Confluence Changes in the last 24 hours

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

-
Updated Spaces:
-

Apache Geronimo Development (GMOxDEV) 
http://cwiki.apache.org/confluence/display/GMOxDEV
|
|-Pages Added or Edited in This Space
 |-- First time Building the source code -Step by Step bootstrap was last 
edited by [EMAIL PROTECTED] (12:48 AM).
 |   
http://cwiki.apache.org/confluence/display/GMOxDEV/First+time+Building+the+source+code+-Step+by+Step+bootstrap

Felix (FELIX) http://cwiki.apache.org/confluence/display/FELIX
|
|-Pages Added or Edited in This Space
 |-- October 2006 Board Report was created by [EMAIL PROTECTED] (11:13 AM).
 |   http://cwiki.apache.org/confluence/display/FELIX/October+2006+Board+Report
 |-- committers was last edited by [EMAIL PROTECTED] (11:15 AM).
 |   http://cwiki.apache.org/confluence/display/FELIX/committers

OpenEJB (OPENEJB) http://cwiki.apache.org/confluence/display/OPENEJB
|
|-Pages Added or Edited in This Space
 |-- JNDI Name Config was created by dblevins (12:48 PM).
 |   http://cwiki.apache.org/confluence/display/OPENEJB/JNDI+Name+Config

Apache Geronimo v1.1 (GMOxDOC11) 
http://cwiki.apache.org/confluence/display/GMOxDOC11
|
|-Pages Added or Edited in This Space
 |-- Very simple example of CMP EJB was last edited by [EMAIL PROTECTED] (01:15 
PM).
 |   
http://cwiki.apache.org/confluence/display/GMOxDOC11/Very+simple+example+of+CMP+EJB
 |-- geronimo-connector-1.1.xsd was last edited by [EMAIL PROTECTED] (04:59 AM).
 |   
http://cwiki.apache.org/confluence/display/GMOxDOC11/geronimo-connector-1.1.xsd
 |-- Very simple Session EJB example was last edited by [EMAIL PROTECTED] 
(02:55 AM).
 |   
http://cwiki.apache.org/confluence/display/GMOxDOC11/Very+simple+Session+EJB+example

CeltiXfire (CXF) http://cwiki.apache.org/confluence/display/CXF
|
|-Pages Added or Edited in This Space
 |-- Navigation was last edited by dandiep (11:11 PM).
 |   http://cwiki.apache.org/confluence/display/CXF/Navigation
 |-- Milestone 1 Plan was last edited by andreasmyth (08:18 AM).
 |   http://cwiki.apache.org/confluence/display/CXF/Milestone+1+Plan

Test Space (test) http://cwiki.apache.org/confluence/display/test
|
|-Pages Added or Edited in This Space
 |-- Index was last edited by jefft (06:03 PM).
 |   http://cwiki.apache.org/confluence/display/test/Index


-
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: r452707 - in /struts/struts2/trunk/core/src/main: java/org/apache/struts2/interceptor/debugging/DebuggingInterceptor.java resources/org/apache/struts2/dispatcher/error.ftl

2006-10-03 Thread mrdon
Author: mrdon
Date: Tue Oct  3 20:15:14 2006
New Revision: 452707

URL: http://svn.apache.org/viewvc?view=rev&rev=452707
Log:
Minor cleanups for problem report and debugging handler
WW-1453

Modified:

struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/DebuggingInterceptor.java

struts/struts2/trunk/core/src/main/resources/org/apache/struts2/dispatcher/error.ftl

Modified: 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/DebuggingInterceptor.java
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/DebuggingInterceptor.java?view=diff&rev=452707&r1=452706&r2=452707
==
--- 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/DebuggingInterceptor.java
 (original)
+++ 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/DebuggingInterceptor.java
 Tue Oct  3 20:15:14 2006
@@ -128,15 +128,16 @@
 inv.addPreResultListener(
 new PreResultListener() {
 public void beforeResult(ActionInvocation inv, 
String actionResult) {
+String xml = "";
 if (enableXmlWithConsole) {
 StringWriter writer = new StringWriter();
 printContext(new 
PrettyPrintWriter(writer));
-String xml = writer.toString();
+xml = writer.toString();
 xml = xml.replaceAll("&", "&");
 xml = xml.replaceAll(">", ">");
 xml = xml.replaceAll("<", "<");
-ActionContext.getContext().put("debugXML", 
xml);
 }
+ActionContext.getContext().put("debugXML", 
xml);
 
 FreemarkerResult result = new 
FreemarkerResult();
 result.setContentType("text/html");

Modified: 
struts/struts2/trunk/core/src/main/resources/org/apache/struts2/dispatcher/error.ftl
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/dispatcher/error.ftl?view=diff&rev=452707&r1=452706&r2=452707
==
--- 
struts/struts2/trunk/core/src/main/resources/org/apache/struts2/dispatcher/error.ftl
 (original)
+++ 
struts/struts2/trunk/core/src/main/resources/org/apache/struts2/dispatcher/error.ftl
 Tue Oct  3 20:15:14 2006
@@ -1,6 +1,12 @@
 
 
 Struts Problem Report
+
+   pre {
+   margin: 0;
+   padding: 0;
+   }
+
 
 
 Struts Problem Report




svn commit: r452708 - /struts/struts2/trunk/ant-build/

2006-10-03 Thread mrdon
Author: mrdon
Date: Tue Oct  3 20:18:13 2006
New Revision: 452708

URL: http://svn.apache.org/viewvc?view=rev&rev=452708
Log:
Removing unused ant build
WW-1453

Removed:
struts/struts2/trunk/ant-build/



svn commit: r452721 - in /struts/struts2/trunk/uber: pom.xml src/

2006-10-03 Thread mrdon
Author: mrdon
Date: Tue Oct  3 21:24:14 2006
New Revision: 452721

URL: http://svn.apache.org/viewvc?view=rev&rev=452721
Log:
Fixing struts all jar (might not be the proper "Maven" way, but it works)
WW-1453

Removed:
struts/struts2/trunk/uber/src/
Modified:
struts/struts2/trunk/uber/pom.xml

Modified: struts/struts2/trunk/uber/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/uber/pom.xml?view=diff&rev=452721&r1=452720&r2=452721
==
--- struts/struts2/trunk/uber/pom.xml (original)
+++ struts/struts2/trunk/uber/pom.xml Tue Oct  3 21:24:14 2006
@@ -9,44 +9,38 @@
 
 org.apache.struts
 struts2-all
-pom
+jar
 Uber Jar
 
-
 
-
-
-org.apache.struts
-struts2-api
-test
-
-
-org.apache.struts
-struts2-core
-test
-
-
-org.apache.struts
-struts2-extras
-test
-
-
 




svn commit: r452722 - in /struts/struts2/trunk: all/ all/pom.xml all/src/ pom.xml uber/

2006-10-03 Thread mrdon
Author: mrdon
Date: Tue Oct  3 21:29:18 2006
New Revision: 452722

URL: http://svn.apache.org/viewvc?view=rev&rev=452722
Log:
Renamed uber to all, created 'all' profile with all optional modules
WW-1453

Added:
struts/struts2/trunk/all/
  - copied from r452706, struts/struts2/trunk/uber/
struts/struts2/trunk/all/pom.xml
  - copied, changed from r452721, struts/struts2/trunk/uber/pom.xml
Removed:
struts/struts2/trunk/all/src/
struts/struts2/trunk/uber/
Modified:
struts/struts2/trunk/pom.xml

Copied: struts/struts2/trunk/all/pom.xml (from r452721, 
struts/struts2/trunk/uber/pom.xml)
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/all/pom.xml?view=diff&rev=452722&p1=struts/struts2/trunk/uber/pom.xml&r1=452721&p2=struts/struts2/trunk/all/pom.xml&r2=452722
==
--- struts/struts2/trunk/uber/pom.xml (original)
+++ struts/struts2/trunk/all/pom.xml Tue Oct  3 21:29:18 2006
@@ -10,7 +10,7 @@
 org.apache.struts
 struts2-all
 jar
-Uber Jar
+Combined Struts 2 Jar
 
 
 

Modified: struts/struts2/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/pom.xml?view=diff&rev=452722&r1=452721&r2=452722
==
--- struts/struts2/trunk/pom.xml (original)
+++ struts/struts2/trunk/pom.xml Tue Oct  3 21:29:18 2006
@@ -116,7 +116,9 @@
 
 all
 
-uber
+all
+plugins
+apps
 
 
 




svn commit: r452735 - in /struts/struts2/trunk/assembly: pom.xml src/main/assembly/all.xml

2006-10-03 Thread mrdon
Author: mrdon
Date: Tue Oct  3 22:09:58 2006
New Revision: 452735

URL: http://svn.apache.org/viewvc?view=rev&rev=452735
Log:
Renaming from uber to all
WW-1453

Modified:
struts/struts2/trunk/assembly/pom.xml
struts/struts2/trunk/assembly/src/main/assembly/all.xml

Modified: struts/struts2/trunk/assembly/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/assembly/pom.xml?view=diff&rev=452735&r1=452734&r2=452735
==
--- struts/struts2/trunk/assembly/pom.xml (original)
+++ struts/struts2/trunk/assembly/pom.xml Tue Oct  3 22:09:58 2006
@@ -143,6 +143,12 @@
 
 
 org.apache.struts
+struts2-all
+${version}
+
+
+
+org.apache.struts
 struts2-config-browser-plugin
 ${version}
 

Modified: struts/struts2/trunk/assembly/src/main/assembly/all.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/assembly/src/main/assembly/all.xml?view=diff&rev=452735&r1=452734&r2=452735
==
--- struts/struts2/trunk/assembly/src/main/assembly/all.xml (original)
+++ struts/struts2/trunk/assembly/src/main/assembly/all.xml Tue Oct  3 22:09:58 
2006
@@ -144,14 +144,5 @@
 src/
   

-   
- ../uber
- src/uber
- 
-pom.xml
-src/
-  
-   
-