svn commit: r297754 - /jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java

2005-10-05 Thread kohsuke
Author: kohsuke
Date: Wed Oct  5 17:39:21 2005
New Revision: 297754

URL: http://svn.apache.org/viewcvs?rev=297754&view=rev
Log:
added the serialization code for the runnable.
since this is an incompatible change, changed serialVersionUID.

Modified:

jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java

Modified: 
jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java?rev=297754&r1=297753&r2=297754&view=diff
==
--- 
jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java
 (original)
+++ 
jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java
 Wed Oct  5 17:39:21 2005
@@ -34,7 +34,7 @@
 
 private final static Log log = LogFactory.getLog(Stack.class);
 
-private static final long serialVersionUID = 1L;
+private static final long serialVersionUID = 2L;
 
 private int[] istack;
 private float[] fstack;
@@ -332,6 +332,8 @@
 for( int i=0; i

svn commit: r295143 - in /jakarta/commons/sandbox/javaflow/trunk: ./ src/java/org/apache/commons/javaflow/ src/java/org/apache/commons/javaflow/bytecode/ src/java/org/apache/commons/javaflow/bytecode/

2005-10-05 Thread tcurdt
Author: tcurdt
Date: Wed Oct  5 17:06:30 2005
New Revision: 295143

URL: http://svn.apache.org/viewcvs?rev=295143&view=rev
Log:
more verbose debugging for the moment


Modified:
jakarta/commons/sandbox/javaflow/trunk/project.properties

jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/Continuation.java

jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java

jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/StackRecorder.java

jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/transformation/bcel/BcelClassTransformer.java

jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/utils/ReflectionUtils.java

jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/utils/RewritingUtils.java

Modified: jakarta/commons/sandbox/javaflow/trunk/project.properties
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/sandbox/javaflow/trunk/project.properties?rev=295143&r1=295142&r2=295143&view=diff
==
--- jakarta/commons/sandbox/javaflow/trunk/project.properties (original)
+++ jakarta/commons/sandbox/javaflow/trunk/project.properties Wed Oct  5 
17:06:30 2005
@@ -20,6 +20,7 @@
 maven.jar.excludes=**/package.html
 maven.junit.fork=true
 maven.test.failure.ignore = true
+maven.test.skip = true
 maven.junit.sysproperties=org.xml.sax.driver
 org.xml.sax.driver=org.apache.xerces.parsers.SAXParser
 

Modified: 
jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/Continuation.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/Continuation.java?rev=295143&r1=295142&r2=295143&view=diff
==
--- 
jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/Continuation.java
 (original)
+++ 
jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/Continuation.java
 Wed Oct  5 17:06:30 2005
@@ -15,12 +15,12 @@
  */
 package org.apache.commons.javaflow;
 
+import java.io.Serializable;
 import org.apache.commons.javaflow.bytecode.StackRecorder;
+import org.apache.commons.javaflow.utils.ReflectionUtils;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 
-import java.io.Serializable;
-
 /**
  * Snapshot of a thread execution state.
  *
@@ -45,6 +45,8 @@
 
 private final StackRecorder stack;
 
+private static final long serialVersionUID = 1L;
+
 
 /**
  * Create a new continuation, which continue a previous continuation.
@@ -124,7 +126,7 @@
 throw new IllegalArgumentException("target is null");
 }
 
-log.debug("starting new flow from " + target);
+log.debug("starting new flow from " + 
ReflectionUtils.getClassName(target) + "/" + 
ReflectionUtils.getClassLoaderName(target));
 
 return execute(new StackRecorder(target), context);
 }
@@ -162,7 +164,7 @@
 throw new IllegalArgumentException("continuation parameter must 
not be null.");
 }
 
-log.debug("continueing with continuation " + resumed);
+log.debug("continueing with continuation " + 
ReflectionUtils.getClassName(resumed) + "/" + 
ReflectionUtils.getClassLoaderName(resumed));
 
 return execute(new StackRecorder(resumed.stack),context);
 }
@@ -192,8 +194,6 @@
 }
 
 public String toString() {
-return "Continuation@" + hashCode() + " in " + 
getClass().getClassLoader();
+return "Continuation@" + hashCode() + "/" + 
ReflectionUtils.getClassLoaderName(this);
 }
-
-private static final long serialVersionUID = 1L;
 }

Modified: 
jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java?rev=295143&r1=295142&r2=295143&view=diff
==
--- 
jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java
 (original)
+++ 
jakarta/commons/sandbox/javaflow/trunk/src/java/org/apache/commons/javaflow/bytecode/Stack.java
 Wed Oct  5 17:06:30 2005
@@ -15,11 +15,11 @@
  */
 package org.apache.commons.javaflow.bytecode;
 
-import java.io.Serializable;
 import java.io.IOException;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
-
+import java.io.Serializable;
+import org.apache.commons.javaflow.utils.ReflectionUtils;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 
@@ -43,14 +43,16 @@
 private Object[] ostack;
 private Object[] rstack;
 private int iTop, fTop, dTop, lTop, oTop, rTop;
+public Runnable

DO NOT REPLY [Bug 36940] - [BeanUtils] Method get in LazyDynaBean don't returns null if the value of the propertie is null

2005-10-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36940


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED
Summary|Method get in LazyDynaBean  |[BeanUtils] Method get in
   |don't returns null if the   |LazyDynaBean don't returns
   |value of the propertie is   |null if the value of the
   |null|propertie is null




--- Additional Comments From [EMAIL PROTECTED]  2005-10-05 22:42 ---
Thanks Roi for pointing this out - I have just fixed this.

If you need a work round in the mean time then create your own lazy 
implementation along the following lines:

public class MyLazyBean extends LazyDynaBean {

public MyLazyBean() {
super();
}
protected Object createProperty(String name, Class type) {

if (type == Object.class) {
return null;
} else {
return super.createProperty(name, type);
}

}
}

http://svn.apache.org/viewcvs?rev=295107&view=rev

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r295107 - in /jakarta/commons/proper/beanutils/trunk/src: java/org/apache/commons/beanutils/LazyDynaBean.java test/org/apache/commons/beanutils/LazyDynaBeanTestCase.java

2005-10-05 Thread niallp
Author: niallp
Date: Wed Oct  5 13:35:31 2005
New Revision: 295107

URL: http://svn.apache.org/viewcvs?rev=295107&view=rev
Log:
Fix Bug 36940 - don't try and instantiate properties of type Object.class - 
reported by Roi Ares.

Modified:

jakarta/commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/LazyDynaBean.java

jakarta/commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/LazyDynaBeanTestCase.java

Modified: 
jakarta/commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/LazyDynaBean.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/LazyDynaBean.java?rev=295107&r1=295106&r2=295107&view=diff
==
--- 
jakarta/commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/LazyDynaBean.java
 (original)
+++ 
jakarta/commons/proper/beanutils/trunk/src/java/org/apache/commons/beanutils/LazyDynaBean.java
 Wed Oct  5 13:35:31 2005
@@ -587,6 +587,10 @@
  */
 protected Object createProperty(String name, Class type) {
 
+if (type == Object.class) {
+return null;
+}
+
 // Create Lists, arrays or DynaBeans
 if (type.isArray() || List.class.isAssignableFrom(type)) {
 return createIndexedProperty(name, type);
@@ -728,7 +732,7 @@
 }
 
 /**
- * Create a new Instance of a 'Primitive' Property
+ * Create a new Instance of a java.lang.Number Property.
  */
 protected Object createNumberProperty(String name, Class type) {
 
@@ -737,13 +741,18 @@
 }
 
 /**
- * Create a new Instance of a 'Mapped' Property
+ * Create a new Instance of other Property types
  */
 protected Object createOtherProperty(String name, Class type) {
 
-if (type == String.class || type == Boolean.class ||
-type == Character.class || Date.class.isAssignableFrom(type)) {
+if (type == Object.class||
+type == String.class||
+type == Boolean.class   ||
+type == Character.class ||
+Date.class.isAssignableFrom(type)) {
+
 return null;
+
 }
 
 try {

Modified: 
jakarta/commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/LazyDynaBeanTestCase.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/LazyDynaBeanTestCase.java?rev=295107&r1=295106&r2=295107&view=diff
==
--- 
jakarta/commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/LazyDynaBeanTestCase.java
 (original)
+++ 
jakarta/commons/proper/beanutils/trunk/src/test/org/apache/commons/beanutils/LazyDynaBeanTestCase.java
 Wed Oct  5 13:35:31 2005
@@ -116,6 +116,21 @@
 }
 
 /**
+ * Test Getting/Setting a 'null' Property
+ */
+public void testNullProperty() {
+
+// Check the property & value doesn't exist
+assertNull("Check Property doesn't exist", 
dynaClass.getDynaProperty(testProperty));
+assertNull("Check Value is null", bean.get(testProperty));
+
+// Set a new property to null
+bean.set(testProperty, null);
+assertNull("Check Value is still null", bean.get(testProperty));
+
+}
+
+/**
  * Test Setting a Simple Property when MutableDynaClass is set to 
restricted
  */
 public void testSimplePropertyRestricted() {



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [configuration] Checkstyle

2005-10-05 Thread J.Pietschmann

Oliver Heger wrote:
Personally I prefer to have Javadocs for all methods. This makes the 
code more readable. But it would be a bunch of work to fix this now.



There is
 http://sourceforge.net/projects/jdochelper
and various other stuff on the 'forge which might help, as
usual. I haven't have time to try it out though (if you do,
please post to community@ or [EMAIL PROTECTED] or something
if you like it).

I personally would find it useful to turn checkstyle into
a stream editor which also fixes style errors which can be
fixed automatically, like file headers, JavaDoc templates,
indentation and brace style and so on.

HTH
J.Pietschmann

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r295090 - /jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/

2005-10-05 Thread oheger
Author: oheger
Date: Wed Oct  5 12:36:15 2005
New Revision: 295090

URL: http://svn.apache.org/viewcvs?rev=295090&view=rev
Log:
Javadoc and Checkstyle

Modified:

jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/ConfigurationFactory.java

jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/ConfigurationKey.java

jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/ConfigurationUtils.java

jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/HierarchicalConfiguration.java

jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/HierarchicalXMLConfiguration.java

jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/JNDIConfiguration.java

jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/SubsetConfiguration.java

Modified: 
jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/ConfigurationFactory.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/ConfigurationFactory.java?rev=295090&r1=295089&r2=295090&view=diff
==
--- 
jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/ConfigurationFactory.java
 (original)
+++ 
jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/ConfigurationFactory.java
 Wed Oct  5 12:36:15 2005
@@ -59,10 +59,10 @@
 
 /** Constant for the additional section.*/
 private static final String SEC_ADDITIONAL = SEC_ROOT + "additional/";
-
+
 /** Constant for the optional attribute.*/
 private static final String ATTR_OPTIONAL = "optional";
-
+
 /** Constant for the fileName attribute.*/
 private static final String ATTR_FILENAME = "fileName";
 
@@ -154,7 +154,7 @@
 // awareness must be configured before the digester rules are 
loaded.
 configureNamespace(digester);
 }
-
+
 // Configure digester to always enable the context class loader
 digester.setUseContextClassLoader(true);
 // Put the composite builder object below all of the other objects.
@@ -516,6 +516,13 @@
 return conf;
 }
 
+/**
+ * Creates the object, a FileConfiguration.
+ *
+ * @param attributes the actual attributes
+ * @return the file configuration
+ * @throws Exception if the object could not be created
+ */
 protected FileConfiguration createConfiguration(Attributes attributes) 
throws Exception
 {
 return (FileConfiguration) super.createObject(attributes);
@@ -530,11 +537,24 @@
  */
 public class PropertiesConfigurationFactory extends 
FileConfigurationFactory
 {
+/**
+ * Creates a new instance of 
PropertiesConfigurationFactory.
+ */
 public PropertiesConfigurationFactory()
 {
 super(null);
 }
 
+/**
+ * Creates the new configuration object. Based on the file name
+ * provided in the attributes either a 
PropertiesConfiguration
+ * or a XMLPropertiesConfiguration object will be
+ * returned.
+ *
+ * @param attributes the attributes
+ * @return the new configuration object
+ * @throws Exception if an error occurs
+ */
 protected FileConfiguration createConfiguration(Attributes attributes) 
throws Exception
 {
 String filename = attributes.getValue(ATTR_FILENAME);
@@ -558,11 +578,24 @@
  */
 public class PropertyListConfigurationFactory extends 
FileConfigurationFactory
 {
+/**
+ * Creates a new instance of 
PropertyListConfigurationFactory.
+ */
 public PropertyListConfigurationFactory()
 {
 super(null);
 }
 
+/**
+ * Creates the new configuration object. Based on the file name
+ * provided in the attributes either a 
XMLPropertyListConfiguration
+ * or a PropertyListConfiguration object will be
+ * returned.
+ *
+ * @param attributes the attributes
+ * @return the new configuration object
+ * @throws Exception if an error occurs
+ */
 protected FileConfiguration createConfiguration(Attributes attributes) 
throws Exception
 {
 String filename = attributes.getValue(ATTR_FILENAME);
@@ -584,6 +617,9 @@
  */
 private class JNDIConfigurationFactory extends DigesterConfigurationFactory
 {
+/**
+ * Creates a new instance of JNDIConfigurationFactory.
+ */
 public JNDIConfigurationFactory()
 {
 super(JNDIConfiguration.class);

[configuration] Checkstyle

2005-10-05 Thread Oliver Heger

I am having some fun fixing the numerous Checkstyle warnings.

One warning that is displayed very often is "Missing a Javadoc comment". 
For Javadoc itself this is not much of a problem because the tool knows 
how to inherit the comments from super classes or implemented 
interfaces. But Checkstyle wants an explicit comment (the @inheritDoc 
tag is not recognized either).


Personally I prefer to have Javadocs for all methods. This makes the 
code more readable. But it would be a bunch of work to fix this now.


Other opinions? How is this handled by other components?

Oliver

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36940] New: - Method get in LazyDynaBean don't returns null if the value of the propertie is null

2005-10-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36940

   Summary: Method get in LazyDynaBean don't returns null if the
value of the propertie is null
   Product: Commons
   Version: 1.6 Final
  Platform: All
OS/Version: Windows XP
Status: NEW
  Severity: major
  Priority: P2
 Component: Bean Utilities
AssignedTo: commons-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


Hi! First at all thanks for your code and your job.
I found a problem in LazyDynaBean, i don't know if is it a bug or i don't
understand well the use for DynaBean.
Here's the code:

LazyDynaBean dynaBean = new LazyDynaBean();
dynaBean.set("Propertie1","Value1");
dynaBean.set("Propertie2",null);
System.out.println(dynaBean.getMap());
System.out.println(dynaBean.get("Propertie1"));
System.out.println(dynaBean.get("Propertie2"));

And this is the result:
{Propertie2=null, Propertie1=Value1}
Value1
[EMAIL PROTECTED]

Taking a view of the trazing I saw that the 2nd get returns a new instance of
Object, not null. 
LazyDynaBean.get("Propertie2") calls value = LazyDynaBean.createProperty(name,
dynaClass.getDynaProperty(name).getType());
and this to LazyDynaBean.createOtherProperty that returns type.newInstance();

Thanks in advance.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36927] - disabling of TCCL

2005-10-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36927


[EMAIL PROTECTED] changed:

   What|Removed |Added

   Severity|normal  |major




-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED]: Project commons-jelly (in module commons-jelly) failed

2005-10-05 Thread commons-jelly development
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly has an issue affecting its community integration.
This issue affects 43 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly :  Commons Jelly
- commons-jelly-tags-ant :  Commons Jelly
- commons-jelly-tags-antlr :  Commons Jelly
- commons-jelly-tags-avalon :  Commons Jelly
- commons-jelly-tags-bean :  Commons Jelly
- commons-jelly-tags-beanshell :  Commons Jelly
- commons-jelly-tags-betwixt :  Commons Jelly
- commons-jelly-tags-bsf :  Commons Jelly
- commons-jelly-tags-define :  Commons Jelly
- commons-jelly-tags-dynabean :  Commons Jelly
- commons-jelly-tags-email :  Commons Jelly
- commons-jelly-tags-fmt :  Commons Jelly
- commons-jelly-tags-html :  Commons Jelly
- commons-jelly-tags-http :  Commons Jelly
- commons-jelly-tags-interaction :  Commons Jelly
- commons-jelly-tags-jetty :  Commons Jelly
- commons-jelly-tags-jface :  Commons Jelly
- commons-jelly-tags-jms :  Commons Jelly
- commons-jelly-tags-jmx :  Commons Jelly
- commons-jelly-tags-jsl :  Commons Jelly
- commons-jelly-tags-junit :  Commons Jelly
- commons-jelly-tags-log :  Commons Jelly
- commons-jelly-tags-memory :  Commons Jelly
- commons-jelly-tags-ojb :  Commons Jelly
- commons-jelly-tags-quartz :  Commons Jelly
- commons-jelly-tags-regexp :  Commons Jelly
- commons-jelly-tags-sql :  Commons Jelly
- commons-jelly-tags-swing :  Commons Jelly
- commons-jelly-tags-swt :  Commons Jelly
- commons-jelly-tags-threads :  Commons Jelly
- commons-jelly-tags-util :  Commons Jelly
- commons-jelly-tags-validate :  Commons Jelly
- commons-jelly-tags-velocity :  Commons Jelly
- commons-jelly-tags-xml :  Commons Jelly
- commons-jelly-tags-xmlunit :  Commons Jelly
- commons-latka :  Functional Testing Suite
- geronimo :  Apache Geronimo, the J2EE server project of the Apache 
Softw...
- jaxme2
- jaxmeapi
- jaxmepm
- jaxmexs
- maven :  Project Management Tools
- maven-bootstrap :  Project Management Tools


Full details are available at:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-05102005.jar] identifier set to project name
 -DEBUG- Dependency on jakarta-servletapi-5-servlet exists, no need to add for 
property maven.jar.servletapi.
 -DEBUG- Dependency on jakarta-taglibs-standard exists, no need to add for 
property maven.jar.jstl.
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/target/test-reports
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly/gump_work/build_commons-jelly_commons-jelly.html
Work Name: build_commons-jelly_commons-jelly (Type: Build)
Work ended in a state of : Failed
Elapsed: 58 secs
Command Line: maven --offline jar 
[Working Directory: /usr/local/gump/public/workspace/commons-jelly]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api-05102005.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/forehead/forehead-1.0-beta-5.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/pac

[EMAIL PROTECTED]: Project commons-jelly (in module commons-jelly) failed

2005-10-05 Thread commons-jelly development
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-jelly has an issue affecting its community integration.
This issue affects 43 projects,
 and has been outstanding for 20 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-jelly :  Commons Jelly
- commons-jelly-tags-ant :  Commons Jelly
- commons-jelly-tags-antlr :  Commons Jelly
- commons-jelly-tags-avalon :  Commons Jelly
- commons-jelly-tags-bean :  Commons Jelly
- commons-jelly-tags-beanshell :  Commons Jelly
- commons-jelly-tags-betwixt :  Commons Jelly
- commons-jelly-tags-bsf :  Commons Jelly
- commons-jelly-tags-define :  Commons Jelly
- commons-jelly-tags-dynabean :  Commons Jelly
- commons-jelly-tags-email :  Commons Jelly
- commons-jelly-tags-fmt :  Commons Jelly
- commons-jelly-tags-html :  Commons Jelly
- commons-jelly-tags-http :  Commons Jelly
- commons-jelly-tags-interaction :  Commons Jelly
- commons-jelly-tags-jetty :  Commons Jelly
- commons-jelly-tags-jface :  Commons Jelly
- commons-jelly-tags-jms :  Commons Jelly
- commons-jelly-tags-jmx :  Commons Jelly
- commons-jelly-tags-jsl :  Commons Jelly
- commons-jelly-tags-junit :  Commons Jelly
- commons-jelly-tags-log :  Commons Jelly
- commons-jelly-tags-memory :  Commons Jelly
- commons-jelly-tags-ojb :  Commons Jelly
- commons-jelly-tags-quartz :  Commons Jelly
- commons-jelly-tags-regexp :  Commons Jelly
- commons-jelly-tags-sql :  Commons Jelly
- commons-jelly-tags-swing :  Commons Jelly
- commons-jelly-tags-swt :  Commons Jelly
- commons-jelly-tags-threads :  Commons Jelly
- commons-jelly-tags-util :  Commons Jelly
- commons-jelly-tags-validate :  Commons Jelly
- commons-jelly-tags-velocity :  Commons Jelly
- commons-jelly-tags-xml :  Commons Jelly
- commons-jelly-tags-xmlunit :  Commons Jelly
- commons-latka :  Functional Testing Suite
- geronimo :  Apache Geronimo, the J2EE server project of the Apache 
Softw...
- jaxme2
- jaxmeapi
- jaxmepm
- jaxmexs
- maven :  Project Management Tools
- maven-bootstrap :  Project Management Tools


Full details are available at:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-jelly-05102005.jar] identifier set to project name
 -DEBUG- Dependency on jakarta-servletapi-5-servlet exists, no need to add for 
property maven.jar.servletapi.
 -DEBUG- Dependency on jakarta-taglibs-standard exists, no need to add for 
property maven.jar.jstl.
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/target/test-reports
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly/gump_work/build_commons-jelly_commons-jelly.html
Work Name: build_commons-jelly_commons-jelly (Type: Build)
Work ended in a state of : Failed
Elapsed: 58 secs
Command Line: maven --offline jar 
[Working Directory: /usr/local/gump/public/workspace/commons-jelly]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api-05102005.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/forehead/forehead-1.0-beta-5.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/pac

[EMAIL PROTECTED]: Module commons-jelly success, but with warnings.

2005-10-05 Thread commons-jelly development
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Module commons-jelly contains errors.
The current state of this module is 'Success'.

Full details are available at:
http://vmgump.apache.org/gump/public/commons-jelly/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -ERROR- *** Failed to update from source control. Stale contents ***



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/gump_work/update_commons-jelly.html
Work Name: update_commons-jelly (Type: Update)
Work ended in a state of : Failed
Elapsed: 24 secs
Command Line: svn --quiet update --non-interactive commons-jelly 
[Working Directory: /usr/local/gump/public/workspace/cvs]
-
svn: PROPFIND request failed on '/repos/asf/jakarta/commons/proper/jelly/trunk'
svn: PROPFIND of '/repos/asf/jakarta/commons/proper/jelly/trunk': could not 
connect to server (http://svn.apache.org)
-

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/commons-jelly/rss.xml
- Atom: http://vmgump.apache.org/gump/public/commons-jelly/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 2005102005, vmgump.apache.org:vmgump-public:2005102005
Gump E-mail Identifier (unique within run) #65.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED]: Module commons-jelly success, but with warnings.

2005-10-05 Thread commons-jelly development
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Module commons-jelly contains errors.
The current state of this module is 'Success'.

Full details are available at:
http://vmgump.apache.org/gump/public/commons-jelly/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -ERROR- *** Failed to update from source control. Stale contents ***



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/gump_work/update_commons-jelly.html
Work Name: update_commons-jelly (Type: Update)
Work ended in a state of : Failed
Elapsed: 24 secs
Command Line: svn --quiet update --non-interactive commons-jelly 
[Working Directory: /usr/local/gump/public/workspace/cvs]
-
svn: PROPFIND request failed on '/repos/asf/jakarta/commons/proper/jelly/trunk'
svn: PROPFIND of '/repos/asf/jakarta/commons/proper/jelly/trunk': could not 
connect to server (http://svn.apache.org)
-

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump.apache.org/gump/public/commons-jelly/rss.xml
- Atom: http://vmgump.apache.org/gump/public/commons-jelly/atom.xml

== Gump Tracking Only ===
Produced by Gump version 2.2.
Gump Run 2005102005, vmgump.apache.org:vmgump-public:2005102005
Gump E-mail Identifier (unique within run) #65.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED]: Project commons-vfs (in module jakarta-commons) failed

2005-10-05 Thread commons-vfs development
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-vfs has an issue affecting its community integration.
This issue affects 2 projects,
 and has been outstanding for 7 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-vfs :  Jakarta commons
- logging-log4j-chainsaw :  Chainsaw log viewer


Full details are available at:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-vfs/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-vfs-05102005.jar] identifier set to project name
 -INFO- Optional dependency slide-webdavclient prerequisite failed with reason 
missing build outputs
 -INFO- Failed with reason build failed
 -DEBUG- Extracted fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-vfs/gump_work/build_jakarta-commons_commons-vfs.html
Work Name: build_jakarta-commons_commons-vfs (Type: Build)
Work ended in a state of : Failed
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main -Dgump.merge=/x1/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-vfs-05102005 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/vfs]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/vfs/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons-sandbox/compress/target/commons-compress-05102005.jar:/usr/local/gump/public/workspace/commons-httpclient-20-branch/dist/commons-httpclient-2.0-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/net/dist/commons-net-05102005.jar:client-webdavlib-gump-30092005.jar:/usr/local/gump/packages/jcifs/jcifs-0.8.1.jar:/usr/local/gump/packages/jsch-0.1.18/dist/lib/jsch-gump.jar
-
[javac] symbol  : class WebdavResource 
[javac] location: class 
org.apache.commons.vfs.provider.webdav.WebdavFileObject
[javac] WebdavResource[] children = new 
org.apache.webdav.lib.WebdavResource[0];
[javac] ^
[javac] 
/x1/gump/public/workspace/jakarta-commons/vfs/src/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java:295:
 package org.apache.webdav.lib does not exist
[javac] WebdavResource[] children = new 
org.apache.webdav.lib.WebdavResource[0];
[javac]  ^
[javac] 
/x1/gump/public/workspace/jakarta-commons/vfs/src/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java:322:
 cannot resolve symbol
[javac] symbol  : class WebdavResource 
[javac] location: class 
org.apache.commons.vfs.provider.webdav.WebdavFileObject
[javac] WebdavResource dav = children[i];
[javac] ^
[javac] 
/x1/gump/public/workspace/jakarta-commons/vfs/src/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java:516:
 cannot resolve symbol
[javac] symbol  : variable DepthSupport 
[javac] location: class 
org.apache.commons.vfs.provider.webdav.WebdavFileObject
[javac] final Enumeration e = 
resource.propfindMethod(DepthSupport.DEPTH_0);
[javac]   ^
[javac] 
/x1/gump/public/workspace/jakarta-commons/vfs/src/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java:519:
 package XMLResponseMethodBase does not exist
[javac] final XMLResponseMethodBase.Response response = 
(XMLResponseMethodBase.Response) e.nextElement();
[javac]^
[javac] 
/x1/gump

[EMAIL PROTECTED]: Project commons-vfs (in module jakarta-commons) failed

2005-10-05 Thread commons-vfs development
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at [EMAIL PROTECTED]

Project commons-vfs has an issue affecting its community integration.
This issue affects 2 projects,
 and has been outstanding for 7 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-vfs :  Jakarta commons
- logging-log4j-chainsaw :  Chainsaw log viewer


Full details are available at:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-vfs/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-vfs-05102005.jar] identifier set to project name
 -INFO- Optional dependency slide-webdavclient prerequisite failed with reason 
missing build outputs
 -INFO- Failed with reason build failed
 -DEBUG- Extracted fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-vfs/gump_work/build_jakarta-commons_commons-vfs.html
Work Name: build_jakarta-commons_commons-vfs (Type: Build)
Work ended in a state of : Failed
Elapsed: 4 secs
Command Line: java -Djava.awt.headless=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/usr/local/gump/public/workspace/xml-xerces2/java/build/xercesImpl.jar
 org.apache.tools.ant.Main -Dgump.merge=/x1/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-vfs-05102005 dist 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/vfs]
CLASSPATH: 
/opt/jdk1.4/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/vfs/target/classes:/usr/local/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-swing.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-trax.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-junit.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/usr/local/gump/public/workspace/ant/dist/lib/ant.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/dist/commons-logging-api-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons-sandbox/compress/target/commons-compress-05102005.jar:/usr/local/gump/public/workspace/commons-httpclient-20-branch/dist/commons-httpclient-2.0-05102005.jar:/usr/local/gump/public/workspace/jakarta-commons/net/dist/commons-net-05102005.jar:client-webdavlib-gump-30092005.jar:/usr/local/gump/packages/jcifs/jcifs-0.8.1.jar:/usr/local/gump/packages/jsch-0.1.18/dist/lib/jsch-gump.jar
-
[javac] symbol  : class WebdavResource 
[javac] location: class 
org.apache.commons.vfs.provider.webdav.WebdavFileObject
[javac] WebdavResource[] children = new 
org.apache.webdav.lib.WebdavResource[0];
[javac] ^
[javac] 
/x1/gump/public/workspace/jakarta-commons/vfs/src/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java:295:
 package org.apache.webdav.lib does not exist
[javac] WebdavResource[] children = new 
org.apache.webdav.lib.WebdavResource[0];
[javac]  ^
[javac] 
/x1/gump/public/workspace/jakarta-commons/vfs/src/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java:322:
 cannot resolve symbol
[javac] symbol  : class WebdavResource 
[javac] location: class 
org.apache.commons.vfs.provider.webdav.WebdavFileObject
[javac] WebdavResource dav = children[i];
[javac] ^
[javac] 
/x1/gump/public/workspace/jakarta-commons/vfs/src/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java:516:
 cannot resolve symbol
[javac] symbol  : variable DepthSupport 
[javac] location: class 
org.apache.commons.vfs.provider.webdav.WebdavFileObject
[javac] final Enumeration e = 
resource.propfindMethod(DepthSupport.DEPTH_0);
[javac]   ^
[javac] 
/x1/gump/public/workspace/jakarta-commons/vfs/src/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java:519:
 package XMLResponseMethodBase does not exist
[javac] final XMLResponseMethodBase.Response response = 
(XMLResponseMethodBase.Response) e.nextElement();
[javac]^
[javac] 
/x1/gump

Re: [validator] Commons Validator 1.2.0 beta test release

2005-10-05 Thread Niall Pemberton
I fixed the two open bugs yesterday:

http://issues.apache.org/bugzilla/show_bug.cgi?id=36899
http://issues.apache.org/bugzilla/show_bug.cgi?id=36878

I assume you were talking about the "merging validation files" one (i.e.
#36899) - let me know if I've mis-understood and you're talking about
something else.

+1 to this weekend for a 1.2.0 beta release

Niall

- Original Message - 
From: "Don Brown" <[EMAIL PROTECTED]>
Sent: Wednesday, October 05, 2005 4:57 AM


No, I can finish this. I'd like to solve that bug first before I roll
another release, however. If you have time to take a look at that, I'd
appreciate it. Assuming it is taken care of, what about targetting this
weekend for a 1.2.0 beta release?

Don

On 10/4/05, Niall Pemberton <[EMAIL PROTECTED]> wrote:
>
> Don, do you have time to do this - or can I pick it up?
>
> Niall
>
> - Original Message -
> From: "Don Brown" <[EMAIL PROTECTED]>
> Sent: Monday, September 19, 2005 3:11 AM
>
>
> I've prepared a test release for Commons Validator 1.2.0 beta 1 at
> http://people.apache.org/~mrdon/commons-validator
>
> Let me know if there are any problems, otherwise I'll start working on the
> official beta release.
>
> Thanks,
>
> Don



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: svn commit: r293110 - /jakarta/commons/proper/cli/trunk/maven.xml

2005-10-05 Thread John Keyes
I only did it this way, because it was the only way I knew how to do it.

-John K

On 10/4/05, Dion Gillard <[EMAIL PROTECTED]> wrote:
>
> Is there any reason this isn't being done in project.xml.
>
> On 10/2/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> > Author: jkeyes
> > Date: Sun Oct 2 06:27:37 2005
> > New Revision: 293110
> >
> > URL: http://svn.apache.org/viewcvs?rev=293110&view=rev
> > Log:
> > - added postGoal to test:test-resources to copy the test resource bundle
> >
> > Modified:
> > jakarta/commons/proper/cli/trunk/maven.xml
> >
> > Modified: jakarta/commons/proper/cli/trunk/maven.xml
> > URL:
> http://svn.apache.org/viewcvs/jakarta/commons/proper/cli/trunk/maven.xml?rev=293110&r1=293109&r2=293110&view=diff
> >
> ==
> > --- jakarta/commons/proper/cli/trunk/maven.xml (original)
> > +++ jakarta/commons/proper/cli/trunk/maven.xml Sun Oct 2 06:27:37 2005
> > @@ -48,6 +48,11 @@
> > 
> > 
> >
> > + 
> > + Moving test bundle.
> > +  file="src/test/org/apache/commons/cli2/resource/TestBundle.properties"
> > +
> tofile="target/test-classes/org/apache/commons/cli2/resource/TestBundle.properties"/>
> > + 
> >
> > 
> > 
> >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> --
> http://www.multitask.com.au/people/dion/
> "You are going to let the fear of poverty govern your life and your
> reward will be that you will eat, but you will not live." - George
> Bernard Shaw
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


DO NOT REPLY [Bug 36288] - [exec] Make ProcessDestroyer optional and pluggable

2005-10-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36288





--- Additional Comments From [EMAIL PROTECTED]  2005-10-05 11:18 ---
The proposed design changes that I sent to the list the other day include
changes to address this.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r295021 - /jakarta/commons/sandbox/jci/trunk/src/java/org/apache/commons/jci/listeners/ReloadingListener.java

2005-10-05 Thread tcurdt
Author: tcurdt
Date: Wed Oct  5 01:54:19 2005
New Revision: 295021

URL: http://svn.apache.org/viewcvs?rev=295021&view=rev
Log:
also support transactional stores


Modified:

jakarta/commons/sandbox/jci/trunk/src/java/org/apache/commons/jci/listeners/ReloadingListener.java

Modified: 
jakarta/commons/sandbox/jci/trunk/src/java/org/apache/commons/jci/listeners/ReloadingListener.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/sandbox/jci/trunk/src/java/org/apache/commons/jci/listeners/ReloadingListener.java?rev=295021&r1=295020&r2=295021&view=diff
==
--- 
jakarta/commons/sandbox/jci/trunk/src/java/org/apache/commons/jci/listeners/ReloadingListener.java
 (original)
+++ 
jakarta/commons/sandbox/jci/trunk/src/java/org/apache/commons/jci/listeners/ReloadingListener.java
 Wed Oct  5 01:54:19 2005
@@ -24,6 +24,7 @@
 import org.apache.commons.jci.ReloadingClassLoader;
 import org.apache.commons.jci.stores.MemoryResourceStore;
 import org.apache.commons.jci.stores.ResourceStore;
+import org.apache.commons.jci.stores.Transactional;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 
@@ -67,6 +68,10 @@
 + " deleted:" + deleted.size()
 + " resources");
 
+if (store instanceof Transactional) {
+((Transactional)store).onStart();
+}
+
 if (deleted.size() > 0) {
 for (Iterator it = deleted.iterator(); it.hasNext();) {
 final File file = (File) it.next();
@@ -109,6 +114,10 @@
 }
 }
 reload = true;
+}
+
+if (store instanceof Transactional) {
+((Transactional)store).onStop();
 }
 
 checked(reload);



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36930] - [PATCH] [betwixt] Faulty NPE handling in TextRule for ElementDescriptor

2005-10-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36930





--- Additional Comments From [EMAIL PROTECTED]  2005-10-05 09:15 ---
Created an attachment (id=16593)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=16593&action=view)
fix null pointer exception logic


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36930] New: - [PATCH] [betwixt] Faulty NPE handling in TextRule for ElementDescriptor

2005-10-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36930

   Summary: [PATCH] [betwixt] Faulty NPE handling in TextRule for
ElementDescriptor
   Product: Commons
   Version: unspecified
  Platform: Other
OS/Version: other
Status: NEW
  Severity: normal
  Priority: P2
 Component: Betwixt
AssignedTo: commons-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


Bad logic in TextRule, accesses an ElementDescriptor if it is NULL. Reversed 
the logic.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36929] - [PATCH] [betwixt] Fix for IDElementAttributes finding ID attributes

2005-10-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36929


[EMAIL PROTECTED] changed:

   What|Removed |Added

Summary|[PATCH] Fix for |[PATCH] [betwixt] Fix for
   |IDElementAttributes finding |IDElementAttributes finding
   |ID attributes   |ID attributes




-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36929] - [PATCH] Fix for IDElementAttributes finding ID attributes

2005-10-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36929





--- Additional Comments From [EMAIL PROTECTED]  2005-10-05 09:03 ---
Created an attachment (id=16592)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=16592&action=view)
Find ID attributes correctly


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36929] New: - [PATCH] Fix for IDElementAttributes finding ID attributes

2005-10-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36929

   Summary: [PATCH] Fix for IDElementAttributes finding ID
attributes
   Product: Commons
   Version: unspecified
  Platform: Other
OS/Version: other
Status: NEW
  Severity: normal
  Priority: P2
 Component: Betwixt
AssignedTo: commons-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


IDElementAttributes constructor would never find the id attribute, because of 
comparison between String type and AttributeDescriptor, which will always be 
false. Compare it to AttributeDescriptor's qualified Name, instead

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]