[Struts Wiki] Update of "StrutsAction2" by TedHusted

2006-06-13 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by TedHusted:
http://wiki.apache.org/struts/StrutsAction2

--
+ This page is obsolete. 
+ 
+ Please refer to the [http://struts.apache.org/struts-action2/index.html 
Action 2 website] and the 
[http://confluence.twdata.org/display/WW/Migration+Guide SAF2 Migration Guide].
+ 
+ 
+ 
  Struts Action 2.0 merges the advanced Opensymphony WebWork 2.2 framework with 
the maturity of Struts Action 1.  The result is a powerful, yet accessible 
framework that supports legacy Struts Action 1.x applications, while providing 
a feature-rich foundation for new applications.
  
  This project has not been released, and is considered in sandbox state.  This 
page contains designs, tasks, references, FAQs and discussions to help move 
Struts Action 2.0 towards its first release.


[Struts Wiki] Update of "StrutsConsultants" by Panchasheel Gandle

2006-06-13 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by Panchasheel Gandle:
http://wiki.apache.org/struts/StrutsConsultants

--
  
  '''India'''
  
+  *  Gandle Technologies, Pimpri, Pune -- http://www.gandle.org
   *  Umber Business Solutions Pvt Ltd -- http://www.umber.biz
   *  USSoftware -- http://www.ustri.com
   *  W3Force Technologies Pvt Ltd -- http://www.w3force.com


svn commit: r413982 - /struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java

2006-06-13 Thread plightbo
Author: plightbo
Date: Tue Jun 13 14:45:39 2006
New Revision: 413982

URL: http://svn.apache.org/viewvc?rev=413982&view=rev
Log:
testing CI server

Modified:

struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java

Modified: 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
URL: 
http://svn.apache.org/viewvc/struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java?rev=413982&r1=413981&r2=413982&view=diff
==
--- 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
 (original)
+++ 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
 Tue Jun 13 14:45:39 2006
@@ -31,7 +31,7 @@
 trie.put("a:", a);
 assertSame(foo, trie.get("foo:bar"));
 assertSame(a, trie.get("a:bar"));
-assertNull(trie.get("tee:bar"));
+assertNotNull(trie.get("tee:bar"));
 assertNull(trie.get("foobar"));
 }
 }




svn commit: r413983 - /struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java

2006-06-13 Thread plightbo
Author: plightbo
Date: Tue Jun 13 14:50:53 2006
New Revision: 413983

URL: http://svn.apache.org/viewvc?rev=413983&view=rev
Log:
fixing test back (done with test)

Modified:

struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java

Modified: 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
URL: 
http://svn.apache.org/viewvc/struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java?rev=413983&r1=413982&r2=413983&view=diff
==
--- 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
 (original)
+++ 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
 Tue Jun 13 14:50:53 2006
@@ -31,7 +31,7 @@
 trie.put("a:", a);
 assertSame(foo, trie.get("foo:bar"));
 assertSame(a, trie.get("a:bar"));
-assertNotNull(trie.get("tee:bar"));
+assertNull(trie.get("tee:bar"));
 assertNull(trie.get("foobar"));
 }
 }




svn commit: r413989 - /struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java

2006-06-13 Thread plightbo
Author: plightbo
Date: Tue Jun 13 15:07:10 2006
New Revision: 413989

URL: http://svn.apache.org/viewvc?rev=413989&view=rev
Log:
passing test (last time, i swear)

Modified:

struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java

Modified: 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
URL: 
http://svn.apache.org/viewvc/struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java?rev=413989&r1=413988&r2=413989&view=diff
==
--- 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
 (original)
+++ 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
 Tue Jun 13 15:07:10 2006
@@ -31,7 +31,7 @@
 trie.put("a:", a);
 assertSame(foo, trie.get("foo:bar"));
 assertSame(a, trie.get("a:bar"));
-assertNotNull(trie.get("tee:bar"));
+assertNull(trie.get("tee:bar"));
 assertNull(trie.get("foobar"));
 }
 }




svn commit: r413987 - /struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java

2006-06-13 Thread plightbo
Author: plightbo
Date: Tue Jun 13 15:05:57 2006
New Revision: 413987

URL: http://svn.apache.org/viewvc?rev=413987&view=rev
Log:
one more failure test

Modified:

struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java

Modified: 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
URL: 
http://svn.apache.org/viewvc/struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java?rev=413987&r1=413986&r2=413987&view=diff
==
--- 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
 (original)
+++ 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java
 Tue Jun 13 15:05:57 2006
@@ -31,7 +31,7 @@
 trie.put("a:", a);
 assertSame(foo, trie.get("foo:bar"));
 assertSame(a, trie.get("a:bar"));
-assertNull(trie.get("tee:bar"));
+assertNotNull(trie.get("tee:bar"));
 assertNull(trie.get("foobar"));
 }
 }




svn commit: r414006 - in /struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src: main/webapp/token/test.jsp test/java/org/apache/shale/usecases/systest/TokenTestCase.java

2006-06-13 Thread craigmcc
Author: craigmcc
Date: Tue Jun 13 16:52:15 2006
New Revision: 414006

URL: http://svn.apache.org/viewvc?rev=414006&view=rev
Log:
Add a system integration test to validate the token processing behavior.
There is a section of this test that is commented out until SHALE-182 is
fixed in the token processing implementation.

This integration mirrors r410909 on the trunk, which was integrated after
the "mvn_reorg" branch was created.

Added:

struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/test/java/org/apache/shale/usecases/systest/TokenTestCase.java
  - copied unchanged from r411962, 
struts/shale/trunk/use-cases/src/systest/org/apache/shale/usecases/systest/TokenTestCase.java
Modified:

struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/token/test.jsp

Modified: 
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/token/test.jsp
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/token/test.jsp?rev=414006&r1=414005&r2=414006&view=diff
==
--- 
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/token/test.jsp
 (original)
+++ 
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/token/test.jsp
 Tue Jun 13 16:52:15 2006
@@ -33,7 +33,8 @@
 
   
 
-
+
 
 
@@ -43,15 +44,18 @@
   
-  
+  
 
   
   
-  
+  
 
   
-  
   
 




[Struts Wiki] Update of "StrutsActionRelease200" by TedHusted

2006-06-13 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by TedHusted:
http://wiki.apache.org/struts/StrutsActionRelease200

--
  || [http://issues.apache.org/struts/browse/WW-1343 Deprecate selected legacy 
API members (e.g. Around``Interceptor, "do" clause)] || - ||
  || [http://issues.apache.org/struts/browse/WW-1344 Update Javadoc to match 
new package and configuration naming] || - ||
  || Implement selected new features and SAF1 features (infra) || - ||
- || [http://issues.apache.org/struts/browse/WW-1345 Add SAF1 and WW2 Migration 
Guides] || - ||
+ || [http://issues.apache.org/struts/browse/WW-1345 Add SAF1 and WW2 Migration 
Guides] || Initial draft added ||
  || [http://issues.apache.org/struts/browse/WW-1346 Develop routine for 
exporting wiki to HTML/PDF] || - ||
  || Second documentation review || - ||
  || Complete standard release plan || - ||


svn commit: r414008 - /struts/shale/branches/mvn_reorg/shale-core/src/main/java/org/apache/shale/view/AbstractFacesBean.java

2006-06-13 Thread craigmcc
Author: craigmcc
Date: Tue Jun 13 16:58:34 2006
New Revision: 414008

URL: http://svn.apache.org/viewvc?rev=414008&view=rev
Log:
More convenience methods for the convience base class for backing beans.
This integration mirrors r412004 on the trunk, which was committed after
the "mvn_reorg" branch was created.

Modified:

struts/shale/branches/mvn_reorg/shale-core/src/main/java/org/apache/shale/view/AbstractFacesBean.java

Modified: 
struts/shale/branches/mvn_reorg/shale-core/src/main/java/org/apache/shale/view/AbstractFacesBean.java
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-core/src/main/java/org/apache/shale/view/AbstractFacesBean.java?rev=414008&r1=414007&r2=414008&view=diff
==
--- 
struts/shale/branches/mvn_reorg/shale-core/src/main/java/org/apache/shale/view/AbstractFacesBean.java
 (original)
+++ 
struts/shale/branches/mvn_reorg/shale-core/src/main/java/org/apache/shale/view/AbstractFacesBean.java
 Tue Jun 13 16:58:34 2006
@@ -17,11 +17,13 @@
 package org.apache.shale.view;
 
 import java.util.HashMap;
+import java.util.Iterator;
 import java.util.Map;
 
 import javax.faces.FactoryFinder;
 import javax.faces.application.Application;
 import javax.faces.application.FacesMessage;
+import javax.faces.component.EditableValueHolder;
 import javax.faces.component.UIComponent;
 import javax.faces.component.UIViewRoot;
 import javax.faces.context.ExternalContext;
@@ -291,6 +293,48 @@
 }
 
 
+// -- Erase Submitted 
Values
+
+
+/**
+ * Erase submitted values on all EditableValueHolder
+ * components in the current view.  This method should be called if
+ * you have input components bound to data values, submit the form,
+ * and then arbitrarily change the data that the binding points at
+ * without going through the Update Model Values phase of
+ * the request processing lifecycle.
+ */
+protected void erase() {
+
+UIComponent view = getFacesContext().getViewRoot();
+if (view != null) {
+erase(view);
+}
+
+}
+
+
+/**
+ * Private helper method for erase() that recursively
+ * descends the component tree and performs the required processing.
+ *
+ * @param component The component to be erased
+ */
+private void erase(UIComponent component) {
+
+// Erase the component itself (if needed)
+if (component instanceof EditableValueHolder) {
+((EditableValueHolder) component).setSubmittedValue(null);
+}
+// Process the facets and children of this component
+Iterator kids = component.getFacetsAndChildren();
+while (kids.hasNext()) {
+erase((UIComponent) kids.next());
+}
+
+}
+
+
 // --- Request Parameter 
Methods
 
 
@@ -333,7 +377,16 @@
  */
 protected void log(String message) {
 
-getExternalContext().log(message);
+FacesContext context = getFacesContext();
+ExternalContext econtext = null;
+if (context != null) {
+econtext = context.getExternalContext();
+}
+if (econtext != null) {
+econtext.log(message);
+} else {
+System.out.println(message);
+}
 
 }
 
@@ -346,7 +399,17 @@
  */
 protected void log(String message, Throwable throwable) {
 
-getExternalContext().log(message, throwable);
+FacesContext context = getFacesContext();
+ExternalContext econtext = null;
+if (context != null) {
+econtext = context.getExternalContext();
+}
+if (econtext != null) {
+econtext.log(message, throwable);
+} else {
+System.out.println(message);
+throwable.printStackTrace(System.out);
+}
 
 }
 




svn commit: r414025 - in /struts/shale/branches/mvn_reorg: ./ shale-apps/ shale-apps/shale-blank/ shale-apps/shale-mailreader/ shale-apps/shale-sql-browser/ shale-apps/shale-usecases/ shale-apps/shale

2006-06-13 Thread craigmcc
Author: craigmcc
Date: Tue Jun 13 19:11:46 2006
New Revision: 414025

URL: http://svn.apache.org/viewvc?rev=414025&view=rev
Log:
Refactor dependencies on platform-provided APIs (since Shale requires
J2SE 1.4 and J2EE 1.4) into the top-level POM so we can start
simplifying the detailed ones.

Modified:
struts/shale/branches/mvn_reorg/pom.xml
struts/shale/branches/mvn_reorg/shale-apps/   (props changed)
struts/shale/branches/mvn_reorg/shale-apps/pom.xml
struts/shale/branches/mvn_reorg/shale-apps/shale-blank/   (props changed)
struts/shale/branches/mvn_reorg/shale-apps/shale-blank/pom.xml
struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/   (props 
changed)
struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml
struts/shale/branches/mvn_reorg/shale-apps/shale-sql-browser/   (props 
changed)
struts/shale/branches/mvn_reorg/shale-apps/shale-sql-browser/pom.xml
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/   (props changed)
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/src/main/webapp/  
 (props changed)
struts/shale/branches/mvn_reorg/shale-clay/pom.xml
struts/shale/branches/mvn_reorg/shale-core/   (props changed)
struts/shale/branches/mvn_reorg/shale-core/pom.xml
struts/shale/branches/mvn_reorg/shale-dist/pom.xml
struts/shale/branches/mvn_reorg/shale-remoting/pom.xml
struts/shale/branches/mvn_reorg/shale-test/pom.xml
struts/shale/branches/mvn_reorg/shale-tiger/pom.xml
struts/shale/branches/mvn_reorg/shale-tiles/pom.xml

Modified: struts/shale/branches/mvn_reorg/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/pom.xml?rev=414025&r1=414024&r2=414025&view=diff
==
--- struts/shale/branches/mvn_reorg/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/pom.xml Tue Jun 13 19:11:46 2006
@@ -241,73 +241,56 @@
 
 
 
-
-
-
-junit
-junit
-3.8.1
-test
-
 
-
-xerces
-xercesImpl
-2.6.2
-test
-
+
 
-
-xerces
-xmlParserAPIs
-2.6.2
-test
-
-  
+
 
-  
-  
-  
 
-
-javax.servlet
-servlet-api
-2.4
- 
-provided
-
+
+
 
+
+
 
-javax.servlet
-jsp-api
-2.0
-provided
+junit
+junit
+3.8.1
+test
 
 
 

Propchange: struts/shale/branches/mvn_reorg/shale-apps/
--
--- svn:ignore (added)
+++ svn:ignore Tue Jun 13 19:11:46 2006
@@ -0,0 +1 @@
+pom.xml~

Modified: struts/shale/branches/mvn_reorg/shale-apps/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/pom.xml?rev=414025&r1=414024&r2=414025&view=diff
==
--- struts/shale/branches/mvn_reorg/shale-apps/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/shale-apps/pom.xml Tue Jun 13 19:11:46 2006
@@ -33,18 +33,6 @@
 
 
 
-
-xerces
-xercesImpl
-2.2.1
-provided
-
-
-xml-apis
-xml-apis
-1.0.b2
-provided
-
 
 
 

Propchange: struts/shale/branches/mvn_reorg/shale-apps/shale-blank/
--
--- svn:ignore (added)
+++ svn:ignore Tue Jun 13 19:11:46 2006
@@ -0,0 +1 @@
+pom.xml~

Modified: struts/shale/branches/mvn_reorg/shale-apps/shale-blank/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/shale-blank/pom.xml?rev=414025&r1=414024&r2=414025&view=diff
==
--- struts/shale/branches/mvn_reorg/shale-apps/shale-blank/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/shale-apps/shale-blank/pom.xml Tue Jun 13 
19:11:46 2006
@@ -53,18 +53,6 @@
 
 
 
-javax.servlet
-servlet-api
-2.4
-
-
-
-javax.servlet
-jsp-api
-2.0
-
-
-
 taglibs
 standard
 1.1.2

Propchange: struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/
--
--- svn:ignore (added)
+++ svn:ignore Tue Jun 13 19:11:46 2006
@@ -0,0 

svn commit: r414044 - in /struts/shale/branches/mvn_reorg: pom.xml shale-clay/pom.xml shale-core/pom.xml shale-remoting/ shale-remoting/pom.xml shale-spring/ shale-tiger/ shale-tiles/

2006-06-13 Thread craigmcc
Author: craigmcc
Date: Tue Jun 13 20:49:26 2006
New Revision: 414044

URL: http://svn.apache.org/viewvc?rev=414044&view=rev
Log:
Mostly cosmetic refinements to the top level POMs.  Be more explicit
about Commons APIs that are *directly* utilized, rather than relying on
the fact that the dependencies get transitively added.

Modified:
struts/shale/branches/mvn_reorg/pom.xml
struts/shale/branches/mvn_reorg/shale-clay/pom.xml
struts/shale/branches/mvn_reorg/shale-core/pom.xml
struts/shale/branches/mvn_reorg/shale-remoting/   (props changed)
struts/shale/branches/mvn_reorg/shale-remoting/pom.xml
struts/shale/branches/mvn_reorg/shale-spring/   (props changed)
struts/shale/branches/mvn_reorg/shale-tiger/   (props changed)
struts/shale/branches/mvn_reorg/shale-tiles/   (props changed)

Modified: struts/shale/branches/mvn_reorg/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/pom.xml?rev=414044&r1=414043&r2=414044&view=diff
==
--- struts/shale/branches/mvn_reorg/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/pom.xml Tue Jun 13 20:49:26 2006
@@ -19,19 +19,21 @@
 -->
 http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
-
 4.0.0
+
 
 org.apache.struts
 struts-parent
 2
 
+
 org.apache.struts.shale
 shale-parent
 1.0.3-SNAPSHOT
 pom
 Apache Shale Framework
 http://struts.apache.org/struts-shale
+The Apache Shale Framework
 
 
 
scm:svn:http://svn.apache.org/repos/asf/struts/shale/trunk
@@ -286,11 +288,13 @@
 
 
 
+
+
+
 
-junit
-junit
-3.8.1
-test
+antlr
+antlr
+2.7.2
 
 
 
@@ -330,16 +334,18 @@
 
 
 
+junit
+junit
+3.8.1
+test
+
+
+
 oro
 oro
 2.0.8
 
 
-
-antlr
-antlr
-2.7.2
-
 
 
 

Modified: struts/shale/branches/mvn_reorg/shale-clay/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-clay/pom.xml?rev=414044&r1=414043&r2=414044&view=diff
==
--- struts/shale/branches/mvn_reorg/shale-clay/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/shale-clay/pom.xml Tue Jun 13 20:49:26 2006
@@ -35,15 +35,32 @@
 
 
 
-org.apache.struts.shale
-shale-core
-${version}
+commons-chain
+commons-chain
+
+
+
+commons-digester
+commons-digester
+
+
+
+commons-logging
+commons-logging
 
+
 
 junit
 junit
 test
 
+
+
+org.apache.struts.shale
+shale-core
+${version}
+
+
 
 org.apache.struts.shale
 shale-test

Modified: struts/shale/branches/mvn_reorg/shale-core/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-core/pom.xml?rev=414044&r1=414043&r2=414044&view=diff
==
--- struts/shale/branches/mvn_reorg/shale-core/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/shale-core/pom.xml Tue Jun 13 20:49:26 2006
@@ -33,25 +33,45 @@
 http://struts.apache.org/struts-shale
 
 
+
+
+commons-beanutils
+commons-beanutils
+
+
 
 commons-chain
 commons-chain
 
+
+
+commons-digester
+commons-digester
+
+
+
+commons-logging
+commons-logging
+
+
 
 commons-validator
 commons-validator
 
+
 
 junit
 junit
 test
 
+
 
 org.apache.struts.shale
 shale-test
 ${version}
 test
 
+
 
 
 

Propchange: struts/shale/branches/mvn_reorg/shale-remoting/
--
--- svn:ignore (added)
+++ svn:ignore Tue Jun 13 20:49:26 2006
@@ -0,0 +1 @@
+pom.xml~

Modified: struts/shale/branches/mvn_reorg/shale-remoting/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-remoting/pom.xml?rev=414044&r1=414043&r2=414044&view=diff
==

[Struts Wiki] Update of "Shale/BuildingWithMaven2" by JamesMitchell

2006-06-13 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by JamesMitchell:
http://wiki.apache.org/struts/Shale/BuildingWithMaven2

--
  || Column  || Description ||
  || Command || The Maven 2.x command to run ||
  || Status  || The current status of the given command. See the required 
plugin version list below ||
- || Requires|| Any special requirements (if any), such as minimum plugin 
version ||
+ || Requires|| Special requirements (if any), such as minimum plugin 
version ||
  || Artifacts   || What gets created by running the given Command ||
  
  
  __To build all of shale__ (run from the root of your local Subversion 
checkout of shale)
- || Command || Status || Plugin || Artifacts ||
+ || Command || Status || Requires || Artifacts ||
- || $mvn || success (MyFaces) ||  || For each project under the root, you'll 
see {project}/target/{project}-{ver}.jar, and for each sample app under 
shale-apps/, {app}/target/{app}.war ||
+ || $mvn || success (!MyFaces) ||  || For each project under the root, you'll 
see {project}/target/{project}-{ver}.jar, and for each sample app under 
shale-apps/, {app}/target/{app}.war ||
  || $mvn -Djsf=ri   || success (JSF RI) ||  || ||
  || $mvn -Pdesigntime || Must have Sun Studio Creator jars installed in your 
local maven repository, see designtime/pom.xml for details || || ||
  
@@ -25, +25 @@

  
  __To build the Shale web site__
  
- || Command || Status || Plugin || Artifacts ||
+ || Command || Status || Requires || Artifacts ||
- || $mvn site -Pmyfaces || success || maven-site-plugin || target/site ||
+ || $mvn site -Pmyfaces || success ||  || target/site ||
  
  __To build the Shale assembly (distribution)__
  


svn commit: r414075 - in /struts/shale/branches/mvn_reorg/shale-apps: pom.xml shale-blank/pom.xml shale-mailreader/pom.xml shale-sql-browser/pom.xml shale-usecases/pom.xml

2006-06-13 Thread jmitchell
Author: jmitchell
Date: Tue Jun 13 22:06:06 2006
New Revision: 414075

URL: http://svn.apache.org/viewvc?rev=414075&view=rev
Log:
Not sure who started it, but adding -parent to standard parent-like POMs makes 
for easier identification and just better naming

Modified:
struts/shale/branches/mvn_reorg/shale-apps/pom.xml
struts/shale/branches/mvn_reorg/shale-apps/shale-blank/pom.xml
struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml
struts/shale/branches/mvn_reorg/shale-apps/shale-sql-browser/pom.xml
struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml

Modified: struts/shale/branches/mvn_reorg/shale-apps/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/pom.xml?rev=414075&r1=414074&r2=414075&view=diff
==
--- struts/shale/branches/mvn_reorg/shale-apps/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/shale-apps/pom.xml Tue Jun 13 22:06:06 2006
@@ -26,7 +26,7 @@
 shale-parent
 1.0.3-SNAPSHOT
 
-shale-apps
+shale-apps-parent
 pom
 Apache Shale Framework Sample Apps
 http://struts.apache.org/struts-shale

Modified: struts/shale/branches/mvn_reorg/shale-apps/shale-blank/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/shale-blank/pom.xml?rev=414075&r1=414074&r2=414075&view=diff
==
--- struts/shale/branches/mvn_reorg/shale-apps/shale-blank/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/shale-apps/shale-blank/pom.xml Tue Jun 13 
22:06:06 2006
@@ -23,7 +23,7 @@
 4.0.0
 
 org.apache.struts.shale
-shale-apps
+shale-apps-parent
 1.0.3-SNAPSHOT
 
 shale-blank

Modified: struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml?rev=414075&r1=414074&r2=414075&view=diff
==
--- struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml 
(original)
+++ struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml Tue Jun 
13 22:06:06 2006
@@ -23,7 +23,7 @@
 4.0.0
 
 org.apache.struts.shale
-shale-apps
+shale-apps-parent
 1.0.3-SNAPSHOT
 
 shale-mailreader

Modified: struts/shale/branches/mvn_reorg/shale-apps/shale-sql-browser/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/shale-sql-browser/pom.xml?rev=414075&r1=414074&r2=414075&view=diff
==
--- struts/shale/branches/mvn_reorg/shale-apps/shale-sql-browser/pom.xml 
(original)
+++ struts/shale/branches/mvn_reorg/shale-apps/shale-sql-browser/pom.xml Tue 
Jun 13 22:06:06 2006
@@ -23,7 +23,7 @@
 4.0.0
 
 org.apache.struts.shale
-shale-apps
+shale-apps-parent
 1.0.3-SNAPSHOT
 
 shale-sql-browser

Modified: struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml?rev=414075&r1=414074&r2=414075&view=diff
==
--- struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/shale-apps/shale-usecases/pom.xml Tue Jun 
13 22:06:06 2006
@@ -23,7 +23,7 @@
 4.0.0
 
 org.apache.struts.shale
-shale-apps
+shale-apps-parent
 1.0.3-SNAPSHOT
 
 shale-usecases




svn commit: r414076 - /struts/shale/branches/mvn_reorg/pom.xml

2006-06-13 Thread craigmcc
Author: craigmcc
Date: Tue Jun 13 22:08:15 2006
New Revision: 414076

URL: http://svn.apache.org/viewvc?rev=414076&view=rev
Log:
Add declared versions for the JSTL api and impl artifacts.

Modified:
struts/shale/branches/mvn_reorg/pom.xml

Modified: struts/shale/branches/mvn_reorg/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/pom.xml?rev=414076&r1=414075&r2=414076&view=diff
==
--- struts/shale/branches/mvn_reorg/pom.xml (original)
+++ struts/shale/branches/mvn_reorg/pom.xml Tue Jun 13 22:08:15 2006
@@ -334,6 +334,12 @@
 
 
 
+javax.servlet
+jstl
+1.1.2
+
+
+
 junit
 junit
 3.8.1
@@ -344,6 +350,12 @@
 oro
 oro
 2.0.8
+
+
+
+taglibs
+standard
+1.1.2
 
 
 




svn commit: r414078 - in /struts/action2/trunk/core/src: main/java/org/apache/struts/action2/components/ main/java/org/apache/struts/action2/views/freemarker/tags/ main/java/org/apache/struts/action2/

2006-06-13 Thread mrdon
Author: mrdon
Date: Tue Jun 13 22:22:07 2006
New Revision: 414078

URL: http://svn.apache.org/viewvc?rev=414078&view=rev
Log:
Removing debug tag, as it is currently broken and the debug console does
the same thing basically
WW-497

Removed:

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/Debug.java

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/freemarker/tags/DebugModel.java

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/jsp/ui/DebugTag.java

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/velocity/components/DebugDirective.java

struts/action2/trunk/core/src/test/java/org/apache/struts/action2/views/jsp/ui/DebugTagTest.java