RE: [lang] next version etc

2006-04-15 Thread Gary Gregory
> -Original Message-
> From: Henri Yandell [mailto:[EMAIL PROTECTED]
> Sent: Friday, April 14, 2006 6:04 PM
> To: Jakarta Commons Developers List
> Subject: [lang] next version etc
> 
> I want to do something fun...so how about a Lang release.
> 
> First up;  2.2 or 3.0?  It would be nice to have one without enum and
> the other deprecated bits.

IMO: 2.2, then 3.0 which removes 'enum' and anything that Java 5/6
complains about. Or... The ticket list below is long and diverse in
scope and time needed. A possible "release early, release often" track
could be:
- Release 2.2 "now", with only critical fixes. Time frame:
"now"="weeks".
- Release 2.3: implement "easy" fixes and apply no-brainer patches. Time
frame: +1 month.
- Release 2.4: implement trickier new features that require discussion
and time to implement. Time frame: "Months".
- Release 3.0: 
  - discuss breaking the API by removing deprecated methods?
  - discuss changing the base JRE requirement?
  - discuss deprecating any date/time code that can be replaced with
Joda-Time.
  - builds/works on Java 5?
  - builds/works on Java 6?

Some brief comments on some of the list items:

> 
> Second up; text? I think it needs to go into our next version
> regardless of version number, or we need to decide to drop it.

I will use text.VariableFormatter in our product. If 2.2 does not come
out soon, I am going to pluck it out of there for our own use ;) I have
no plans to use the Str* classes though.

> 
> Third, bugs. Here're my thoughts:
> 
> 20015: WONTIFX? Gary's on making Entities public. Looks like a lump of
> work to do, is it likely to happen or should we just decide that
> Entities shouldn't be public? I don't recall user's being desperate to
> use this class.

Release early, release often. Let's leave this one for later.

> 
> 26659: WONTFIX? Seems like too much in the way of date work - suggest
> JODA instead unless a patch is offered.

I use Joda-Time now. I would even like to propose deprecating DateUtils
'softly' in favor of Joda-Time. I am sure many will not like this at all
since Joda-Time is pretty large.

> 
> 29692: Patch recently added. Consider and either apply or WONTFIX.

Seems too specific/complex.

> 
> 30082: WONTFIX. This is too specific an issue to be putting in Lang I
believe.

I agreed.

> 
> 30184: Consider for lang.text.

There are no unit tests provided (I know, the class is pretty simple). 

> 
> 31602: Sean/Stephen, thoughts? Should we WONTFIX as too complicated,
> or is it simple enough and we can do it?
> 
> 33102: FIX: On the one hand, it's pretty simple stuff, and we'd have
> to support the roll(..) method. On the other hand, user's like this
> stuff and it's not hard to add it, even if we overload with Calendar
> as well. 4 methods would be needed.

+0. Joda-Time?

> 
> 33401: FIX: it's a bit redundant, but I've no reason not to have these
> methods available. Any -1s?

Needs better method names IMO. -0. I'm always in favor of release early,
release often when there are no unit tests with a code proposal ;)

> 
> 33609: FIX. Javadoc needs improving.

Nothing wrong with better docs! :)

> 
> 33825: WONTFIX. Standard java.time question - is it valuable and
> simple, or should we just point to JODA? I'm going to go with WONTFIX
> as my default answer on time enhancements.

I'm with you: Joda-Time.

> 
> 33889: Unsure. Could be a CharSet enhancement instead of just a camel
> case method. Thoughts?
> 
> 33997: I think this is a useful method - just need to make sure the
> implementation is the best possible.

What about commons-math?

> 
> 34284: FIX: NullPointer; test and fix.
> 
> 34351: FIX: I don't see any reason not to try to write Albert's
> method. If not obvious when digging into it, then we can WONTFIX.
> 
> 35400: WONTFIX. I'm -1 to a new classloader in lang, starts to leave
> the scope of 'simple' to my ignorant brain :)
> 
> 35588: Part of the lang.text call.

I need text.VariableFormatter. If 2.2 does not come out soon, I am going
to pluck it out of there for our own use ;)

> 
> 35826: Bring up with [math]. I think it could be in either, not sure I
> have the itch to write a BigXxx replacement though.

Indeed, what does [math] think about that? It would be interesting to
know what the [math] folks think about project boundaries for class like
that.

> 
> 36061: FIX. Seems simple enough - bug and patches.

Some of these bugs might be obsolete. I thought I'd take care of object
cycles a while back. Hm, but that might have been for the
ReflectionToStringBuilder class, not the ToStringBuilder.

> 
> 36512: FIX. I think there's value for a .forName improvement.

Personally, I would only do the super simple stuff, primitives I
suppose. Arrays of primitives ok... Basically, anything that you can say
in Java code: "int", "int[]". Yeah, that's nice. But I would not want to
have us invent a mini-language which the talk of eating up spaces starts
to feel like. My vote would be to keep it simple in the first cut

RE: [lang] next version etc

2006-04-15 Thread James Carman
3.0 vs. 2.2?  

I say let's do both!  Let's release 2.2 with the new features and quickly
release 3.0 with the deprecated stuff removed/cleaned up (no new features).
That way, we're able to give the new features to folks who also need the
deprecated stuff.  But, we're also able to "slim down" a bit immediately
thereafter.


-Original Message-
From: Henri Yandell [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 14, 2006 9:04 PM
To: Jakarta Commons Developers List
Subject: [lang] next version etc

I want to do something fun...so how about a Lang release.

First up;  2.2 or 3.0?  It would be nice to have one without enum and
the other deprecated bits.

Second up; text? I think it needs to go into our next version
regardless of version number, or we need to decide to drop it.

Third, bugs. Here're my thoughts:

20015: WONTIFX? Gary's on making Entities public. Looks like a lump of
work to do, is it likely to happen or should we just decide that
Entities shouldn't be public? I don't recall user's being desperate to
use this class.

26659: WONTFIX? Seems like too much in the way of date work - suggest
JODA instead unless a patch is offered.

29692: Patch recently added. Consider and either apply or WONTFIX.

30082: WONTFIX. This is too specific an issue to be putting in Lang I
believe.

30184: Consider for lang.text.

31602: Sean/Stephen, thoughts? Should we WONTFIX as too complicated,
or is it simple enough and we can do it?

33102: FIX: On the one hand, it's pretty simple stuff, and we'd have
to support the roll(..) method. On the other hand, user's like this
stuff and it's not hard to add it, even if we overload with Calendar
as well. 4 methods would be needed.

33401: FIX: it's a bit redundant, but I've no reason not to have these
methods available. Any -1s?

33609: FIX. Javadoc needs improving.

33825: WONTFIX. Standard java.time question - is it valuable and
simple, or should we just point to JODA? I'm going to go with WONTFIX
as my default answer on time enhancements.

33889: Unsure. Could be a CharSet enhancement instead of just a camel
case method. Thoughts?

33997: I think this is a useful method - just need to make sure the
implementation is the best possible.

34284: FIX: NullPointer; test and fix.

34351: FIX: I don't see any reason not to try to write Albert's
method. If not obvious when digging into it, then we can WONTFIX.

35400: WONTFIX. I'm -1 to a new classloader in lang, starts to leave
the scope of 'simple' to my ignorant brain :)

35588: Part of the lang.text call.

35826: Bring up with [math]. I think it could be in either, not sure I
have the itch to write a BigXxx replacement though.

36061: FIX. Seems simple enough - bug and patches.

36512: FIX. I think there's value for a .forName improvement.

3: Thoughts? Is it worth putting that inside the Enum code?

36839: WONTFIX: Covered by lang.text.

36873: FIX: Hooked to lang.text; but as a patch is provided I don't
see any reason not to go with that.

36886: FIX: Seems valid. Tied to 2.2 vs 3.0 I think - backwards compat.

36915: WONTFIX: As I've no idea what's actually being said :)

36925: Status Gary?

37243: Time pain :) Thoughts?

37385: DOC. Don't see any problem in saying that apos; isn't included.

37499: WONTFIX. Point to JODA.

37690: FIX. Unit test offered.

38210: Thoughts? Is it undesired?

38401: Examine further. FIX if possible.

38569: FIX. Patch supplied - though might need improvement.

38800: Consider. Either FIX or point to JODA.

38912: No clue or itch on this one. Is it important for us to provide
this? Is it of use to users, or just to other libraries who 50% of the
time don't have a dependency on lang?

39254: Hesitant to offer up more lang.time functionality. Thoughts on this?

39315: Seems worthy of application.




There, that was fun... :)

Hen

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




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



Re: svn commit: r394397 - in /jakarta/commons/proper/jelly/trunk: jelly-tags/tag-project.xml parent-project.xml

2006-04-15 Thread Bill Barker

<[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
> Author: polx
> Date: Sat Apr 15 16:25:06 2006
> New Revision: 394397
>
> URL: http://svn.apache.org/viewcvs?rev=394397&view=rev
> Log:
> Upgrade to jaxen beta-8 which seems to work better with
> the XML taglib (at least tried here and by Felipe).
> Results of these should be shown in gump in the following
> days.
>

Urm, no.  Gump couldn't really care less what you change in the POM.  It 
will override all of the dependant jars itself anyway (cause, that's what it 
does :).

You'll need to change the Gump descriptor to have any effect at all with 
Gump.  Pretty much, your option would be to go with Jaxen-HEAD, so you would 
need to do
  s@@

svn commit: r394397 - in /jakarta/commons/proper/jelly/trunk: jelly-tags/tag-project.xml parent-project.xml

2006-04-15 Thread polx
Author: polx
Date: Sat Apr 15 16:25:06 2006
New Revision: 394397

URL: http://svn.apache.org/viewcvs?rev=394397&view=rev
Log:
Upgrade to jaxen beta-8 which seems to work better with
the XML taglib (at least tried here and by Felipe).
Results of these should be shown in gump in the following
days.

paul

Modified:
jakarta/commons/proper/jelly/trunk/jelly-tags/tag-project.xml
jakarta/commons/proper/jelly/trunk/parent-project.xml

Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/tag-project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/jelly-tags/tag-project.xml?rev=394397&r1=394396&r2=394397&view=diff
==
--- jakarta/commons/proper/jelly/trunk/jelly-tags/tag-project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/tag-project.xml Sat Apr 15 
16:25:06 2006
@@ -292,7 +292,7 @@
 
   jaxen
   jaxen
-  1.1-beta-2
+  1.1-beta-8
 
 
 
@@ -351,7 +351,7 @@
   
 
   
-maven-changelog-plugin
+
 maven-changes-plugin
 maven-checkstyle-plugin
 maven-developer-activity-plugin

Modified: jakarta/commons/proper/jelly/trunk/parent-project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/parent-project.xml?rev=394397&r1=394396&r2=394397&view=diff
==
--- jakarta/commons/proper/jelly/trunk/parent-project.xml (original)
+++ jakarta/commons/proper/jelly/trunk/parent-project.xml Sat Apr 15 16:25:06 
2006
@@ -30,7 +30,7 @@
 
   commons-jexl
   commons-jexl
-  1.0
+  SNAPSHOT
 
 
 
@@ -75,7 +75,7 @@
 
   jaxen
   jaxen
-  1.1-beta-4
+  1.1-beta-8
 
 
 



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



DO NOT REPLY [Bug 39314] - [pool] Pool grows beyond poolsize with WHEN_EXHAUSTED_BLOCK

2006-04-15 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=39314


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2006-04-15 22:01 ---
First, there is no "pool size" setting in GenericObjectPool. This bug report is
based on the incorrect assumption that there is such a thing. There are
maxActive and maxIdle settings but they are not the same thing as the "pool 
size".

(In reply to comment #5)
> Strange thing is, if poolsize in the example code is 3 the test runs fine, but
> with a poolsize of 20 the pool grows forever.

Re-read comment #4, with the above statement you've just proven my point.

GenericObjectPool has a default maxIdle setting of 8. You'll find your test code
seems to work with a maxActive up to and including 7. From 8 and above you'll
see the behavior you are incorrectly claiming to be a bug.

If you set the maxIdle to a negative value, there will be no limit on the number
of idle objects and you'll basically get your desired "pool size" behavior.

-- 
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: r394331 - in /jakarta/commons/proper/configuration/trunk: src/java/org/apache/commons/configuration/ src/java/org/apache/commons/configuration/tree/ src/test/org/apache/commons/configurati

2006-04-15 Thread oheger
Author: oheger
Date: Sat Apr 15 09:53:28 2006
New Revision: 394331

URL: http://svn.apache.org/viewcvs?rev=394331&view=rev
Log:
Deeper integration of ConfigurationNode interface into 
HierarchicalConfiguration; the old Node type was replaced by ConfigurationNode 
whereever possible.

Modified:

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

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

jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/tree/ConfigurationNode.java

jakarta/commons/proper/configuration/trunk/src/test/org/apache/commons/configuration/TestHierarchicalConfiguration.java

jakarta/commons/proper/configuration/trunk/src/test/org/apache/commons/configuration/TestSubnodeConfiguration.java
jakarta/commons/proper/configuration/trunk/xdocs/changes.xml

Modified: 
jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/HierarchicalConfiguration.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/HierarchicalConfiguration.java?rev=394331&r1=394330&r2=394331&view=diff
==
--- 
jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/HierarchicalConfiguration.java
 (original)
+++ 
jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/HierarchicalConfiguration.java
 Sat Apr 15 09:53:28 2006
@@ -103,14 +103,30 @@
 /** Stores the default expression engine to be used for new objects.*/
 private static ExpressionEngine defaultExpressionEngine = new 
DefaultExpressionEngine();
 
-/** Stores the root node of this configuration. */
-private Node root = new Node();
+/** Stores the root node of this configuration. This field is required for
+ * backwards compatibility only.
+ */
+private Node root;
+
+/** Stores the root configuration node.*/
+private ConfigurationNode rootNode;
 
 /** Stores the expression engine for this instance.*/
 private ExpressionEngine expressionEngine;
 
 /**
- * Returns the root node of this hierarchical configuration.
+ * Creates a new instance of HierarchicalConfiguration.
+ */
+public HierarchicalConfiguration()
+{
+setRootNode(new Node());
+}
+
+/**
+ * Returns the root node of this hierarchical configuration. This method
+ * exists for backwards compatibility only. New code should use the
+ * [EMAIL PROTECTED] #getRootNode()} method instead, which 
operates on
+ * the preferred data type ConfigurationNode.
  *
  * @return the root node
  */
@@ -120,7 +136,10 @@
 }
 
 /**
- * Sets the root node of this hierarchical configuration.
+ * Sets the root node of this hierarchical configuration. This method
+ * exists for backwards compatibility only. New code should use the
+ * [EMAIL PROTECTED] #setRootNode(ConfigurationNode)} method 
instead,
+ * which operates on the preferred data type 
ConfigurationNode.
  *
  * @param node the root node
  */
@@ -131,6 +150,36 @@
 throw new IllegalArgumentException("Root node must not be null!");
 }
 root = node;
+rootNode = null;
+}
+
+/**
+ * Returns the root node of this hierarchical configuration.
+ *
+ * @return the root node
+ * @since 1.3
+ */
+public ConfigurationNode getRootNode()
+{
+return (rootNode != null) ? rootNode : root;
+}
+
+/**
+ * Sets the root node of this hierarchical configuration.
+ *
+ * @param node the root node
+ * @since 1.3
+ */
+public void setRootNode(ConfigurationNode rootNode)
+{
+if (rootNode == null)
+{
+throw new IllegalArgumentException("Root node must not be null!");
+}
+this.rootNode = rootNode;
+
+// For backward compatibility also set the old root field.
+root = (rootNode instanceof Node) ? (Node) rootNode : new 
Node(rootNode);
 }
 
 /**
@@ -211,7 +260,7 @@
 List list = new ArrayList();
 for (Iterator it = nodes.iterator(); it.hasNext();)
 {
-Node node = (Node) it.next();
+ConfigurationNode node = (ConfigurationNode) it.next();
 if (node.getValue() != null)
 {
 list.add(node.getValue());
@@ -239,7 +288,7 @@
  */
 protected void addPropertyDirect(String key, Object obj)
 {
-NodeAddData data = getExpressionEngine().prepareAdd(getRoot(), key);
+NodeAddData data = getExpressionEngine().prepareAdd(getRootNode(), 
key);
 ConfigurationNode node = processNodeAddData(data);
 node.setValue(obj);
 }
@@

Re: commons-Upload: FileItem.getName()

2006-04-15 Thread Niall Pemberton
This was recently discussed in the following thread:

http://www.mail-archive.com/commons-dev%40jakarta.apache.org/msg78031.html

Niall

On 4/15/06, Jawed Nazar Ali <[EMAIL PROTECTED]> wrote:
> Hello,
>
> FileItem.getName(); function return: file name only when mozilla browser
> used and it returns complete path with name when IE is used?
>
> I know this is browser specific functionality, but Don't you think
> FileItem.getName() should return only file name regardless of the browser.
>
> I don't understand why this method functions this way? If we are using
> standard APIs then method functionality should be standard too.
>
> Please have your say on this post.
>
> Regards,
>
> Jawed Nazar Ali

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



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

2006-04-15 Thread commons-jelly-tags-define 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-tags-define-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 98 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-tags-define-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-define-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-define-test/gump_work/build_commons-jelly_commons-jelly-tags-define-test.html
Work Name: build_commons-jelly_commons-jelly-tags-define-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 13 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define]
CLASSPATH: 
/opt/jdk1.5/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-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/dynabean/target/commons-jelly-tags-dynabean-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-15042006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at junit.framework.TestResult.runProtected(TestResult.java:124)
[junit] at junit.framework.TestResult.run(TestResult.java:109)
[junit] at junit.framework.TestCase.run(TestCase.java:118)
[junit] at junit.framework.TestSuite.runTest(TestSuite.java:208)
[junit] at junit.framework.TestSuite.run(TestSuite.java:203)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:325)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:536)
[junit] Apr 15, 2006 4:32:45 AM 
org.apache.commons.jelly.expression.xpath.XPathExpression evaluate
[junit] SEVERE: Error constructing xpath
[junit] org.jaxen.XPathSyntaxException: Node-set expected
[junit] at org.jaxen.BaseXPath.(BaseXPath.java:131)
[junit] at org.jaxen.BaseXPath.(BaseXPath.java:156)
[junit] at org.jaxen.dom4j.Dom4jXPath.(Dom4jXPath.java:101)
[junit] at 
org.apache.commons.jelly.expression.xpath.XPathExpression.evaluate(XPathExpression.java:78)
[junit] at 
org.apache.commons.jelly.expression.ExpressionSupport.evaluateRecurse(ExpressionSupport.java:61)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:256)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] at junit.framework.TestCase.runBare(TestCase.java:127)
[junit] at junit.framework.TestResult$1.protect(TestResult.java:106)
[junit] at junit.framework.TestResult.runProtected(TestResult.java:124)
[junit] at junit.framework

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

2006-04-15 Thread commons-jelly-tags-define 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-tags-define-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 98 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-tags-define-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-define-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-define-test/gump_work/build_commons-jelly_commons-jelly-tags-define-test.html
Work Name: build_commons-jelly_commons-jelly-tags-define-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 13 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/define]
CLASSPATH: 
/opt/jdk1.5/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-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/dynabean/target/commons-jelly-tags-dynabean-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-15042006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at junit.framework.TestResult.runProtected(TestResult.java:124)
[junit] at junit.framework.TestResult.run(TestResult.java:109)
[junit] at junit.framework.TestCase.run(TestCase.java:118)
[junit] at junit.framework.TestSuite.runTest(TestSuite.java:208)
[junit] at junit.framework.TestSuite.run(TestSuite.java:203)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:325)
[junit] at 
org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:536)
[junit] Apr 15, 2006 4:32:45 AM 
org.apache.commons.jelly.expression.xpath.XPathExpression evaluate
[junit] SEVERE: Error constructing xpath
[junit] org.jaxen.XPathSyntaxException: Node-set expected
[junit] at org.jaxen.BaseXPath.(BaseXPath.java:131)
[junit] at org.jaxen.BaseXPath.(BaseXPath.java:156)
[junit] at org.jaxen.dom4j.Dom4jXPath.(Dom4jXPath.java:101)
[junit] at 
org.apache.commons.jelly.expression.xpath.XPathExpression.evaluate(XPathExpression.java:78)
[junit] at 
org.apache.commons.jelly.expression.ExpressionSupport.evaluateRecurse(ExpressionSupport.java:61)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:256)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] at junit.framework.TestCase.runBare(TestCase.java:127)
[junit] at junit.framework.TestResult$1.protect(TestResult.java:106)
[junit] at junit.framework.TestResult.runProtected(TestResult.java:124)
[junit] at junit.framework

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

2006-04-15 Thread commons-jelly-tags-fmt 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-tags-fmt has an issue affecting its community integration.
This issue affects 6 projects,
 and has been outstanding for 4 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-javaflow :  Commons Javaflow
- commons-jelly-tags-fmt :  Commons Jelly
- jaxme2
- jaxmeapi
- jaxmejs
- jaxmexs


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-fmt/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-tags-fmt-15042006.jar] identifier set to 
project name
 -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/jelly-tags/fmt/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/fmt/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/fmt/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/fmt/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-tags-fmt/gump_work/build_commons-jelly_commons-jelly-tags-fmt.html
Work Name: build_commons-jelly_commons-jelly-tags-fmt (Type: Build)
Work ended in a state of : Failed
Elapsed: 13 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/fmt]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/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/packages/bsh-2.0b4/bsh-commands-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-classpath-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-core-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-bsf-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-reflect-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-util-2.0b4.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/ant/target/commons-jelly-tags-ant-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/beanshell/target/commons-jelly-tags-beanshell-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-15042006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
[junit] at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
[junit] at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
[junit] at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
[junit] at java.security.AccessController.doPrivileged(Native Method)
[junit] at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
[junit] at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[junit] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
[junit] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
[junit] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
[junit] at 
org.apache.commons.jelly.tags.ant.AntTagLibrary.createProject(AntTagLibrary.java:127)
[junit] at 
org.apache.commons.jelly.tags.ant.AntTagLibrary.getProject(AntTagLibrary.j

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

2006-04-15 Thread commons-jelly-tags-fmt 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-tags-fmt has an issue affecting its community integration.
This issue affects 6 projects,
 and has been outstanding for 4 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-javaflow :  Commons Javaflow
- commons-jelly-tags-fmt :  Commons Jelly
- jaxme2
- jaxmeapi
- jaxmejs
- jaxmexs


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-fmt/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-tags-fmt-15042006.jar] identifier set to 
project name
 -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/jelly-tags/fmt/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/fmt/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/fmt/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/fmt/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-tags-fmt/gump_work/build_commons-jelly_commons-jelly-tags-fmt.html
Work Name: build_commons-jelly_commons-jelly-tags-fmt (Type: Build)
Work ended in a state of : Failed
Elapsed: 13 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/fmt]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/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/packages/bsh-2.0b4/bsh-commands-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-classpath-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-core-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-bsf-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-reflect-2.0b4.jar:/usr/local/gump/packages/bsh-2.0b4/bsh-util-2.0b4.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/ant/target/commons-jelly-tags-ant-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/beanshell/target/commons-jelly-tags-beanshell-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-15042006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
[junit] at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
[junit] at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
[junit] at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
[junit] at java.security.AccessController.doPrivileged(Native Method)
[junit] at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
[junit] at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[junit] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
[junit] at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
[junit] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
[junit] at 
org.apache.commons.jelly.tags.ant.AntTagLibrary.createProject(AntTagLibrary.java:127)
[junit] at 
org.apache.commons.jelly.tags.ant.AntTagLibrary.getProject(AntTagLibrary.j

commons-Upload: FileItem.getName()

2006-04-15 Thread Jawed Nazar Ali
Hello,

 

FileItem.getName(); function return: file name only when mozilla browser
used and it returns complete path with name when IE is used?

 

I know this is browser specific functionality, but Don't you think
FileItem.getName() should return only file name regardless of the browser.

 

I don't understand why this method functions this way? If we are using
standard APIs then method functionality should be standard too.

 

Please have your say on this post.

 

 

Regards,

Jawed Nazar Ali



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

2006-04-15 Thread commons-jelly-tags-jsl 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-tags-jsl-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 98 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-tags-jsl-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-jsl-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on ant exists, no need to add for property 
maven.jar.ant-optional.
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-jsl-test/gump_work/build_commons-jelly_commons-jelly-tags-jsl-test.html
Work Name: build_commons-jelly_commons-jelly-tags-jsl-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 16 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/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/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/ant/target/commons-jelly-tags-ant-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-15042006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
[junit] at 
org.apache.commons.jelly.TagSupport.getBodyText(TagSupport.java:234)
[junit] at 
org.apache.commons.jelly.tags.core.SetTag.doTag(SetTag.java:90)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
[junit] at 
org.apache.commons.jelly.tags.jsl.TemplateTag$1.run(TemplateTag.java:160)
[junit] at org.dom4j.rule.Mode.fireRule(Mode.java:59)
[junit] at org.dom4j.rule.Mode.applyTemplates(Mode.java:80)
[junit] at org.dom4j.rule.RuleManager$1.run(RuleManager.java:171)
[junit] at org.dom4j.rule.Mode.fireRule(Mode.java:59)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:102)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:91)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:78)
[junit] at org.dom4j.rule.St

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

2006-04-15 Thread commons-jelly-tags-jsl 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-tags-jsl-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 98 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-tags-jsl-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-jsl-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on ant exists, no need to add for property 
maven.jar.ant-optional.
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-jsl-test/gump_work/build_commons-jelly_commons-jelly-tags-jsl-test.html
Work Name: build_commons-jelly_commons-jelly-tags-jsl-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 16 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/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/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/cli/target/commons-cli-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/ant/target/commons-jelly-tags-ant-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-15042006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar
-
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
[junit] at 
org.apache.commons.jelly.TagSupport.getBodyText(TagSupport.java:234)
[junit] at 
org.apache.commons.jelly.tags.core.SetTag.doTag(SetTag.java:90)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
[junit] at 
org.apache.commons.jelly.tags.jsl.TemplateTag$1.run(TemplateTag.java:160)
[junit] at org.dom4j.rule.Mode.fireRule(Mode.java:59)
[junit] at org.dom4j.rule.Mode.applyTemplates(Mode.java:80)
[junit] at org.dom4j.rule.RuleManager$1.run(RuleManager.java:171)
[junit] at org.dom4j.rule.Mode.fireRule(Mode.java:59)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:102)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:91)
[junit] at org.dom4j.rule.Stylesheet.run(Stylesheet.java:78)
[junit] at org.dom4j.rule.St

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

2006-04-15 Thread commons-jelly-tags-html 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-tags-html has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 98 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-tags-html :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-html/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-tags-html-15042006.jar] identifier set to 
project name
 -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/jelly-tags/html/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/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-tags-html/gump_work/build_commons-jelly_commons-jelly-tags-html.html
Work Name: build_commons-jelly_commons-jelly-tags-html (Type: Build)
Work ended in a state of : Failed
Elapsed: 12 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html]
CLASSPATH: 
/opt/jdk1.5/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-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/target/commons-jelly-tags-jsl-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-15042006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar:/usr/local/gump/packages/nekohtml-0.9.5/nekohtml.jar
-
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testLowerCase(org.apache.commons.jelly.tags.junit.CaseTag$1): Caused an 
ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:40:48:
  You must define an attribute called 'test' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:40:48:
  You must define an attribute called 'test' for this tag.
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTag.doTag(AssertTag.java:54)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testMixedCase(org.apache.commons.jelly.tags.junit.CaseTag$1): Caused an 
ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:47:48:
  You must define an attribute called 'test' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:47:48:
  You must define an attribute called 'test' for this tag.
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTag.doTag(AssertTag.java:54)

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

2006-04-15 Thread commons-jelly-tags-html 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-tags-html has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 98 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-tags-html :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-html/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-tags-html-15042006.jar] identifier set to 
project name
 -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/jelly-tags/html/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html/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-tags-html/gump_work/build_commons-jelly_commons-jelly-tags-html.html
Work Name: build_commons-jelly_commons-jelly-tags-html (Type: Build)
Work ended in a state of : Failed
Elapsed: 12 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/html]
CLASSPATH: 
/opt/jdk1.5/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-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jsl/target/commons-jelly-tags-jsl-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-15042006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/jaxen-1.1-beta-4/jaxen-1.1-beta-4.jar:/usr/local/gump/packages/nekohtml-0.9.5/nekohtml.jar
-
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testLowerCase(org.apache.commons.jelly.tags.junit.CaseTag$1): Caused an 
ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:40:48:
  You must define an attribute called 'test' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:40:48:
  You must define an attribute called 'test' for this tag.
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTag.doTag(AssertTag.java:54)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
[junit] at 
org.apache.commons.jelly.tags.junit.CaseTag$1.runTest(CaseTag.java:59)
[junit] 
[junit] 
[junit] Testcase: 
testMixedCase(org.apache.commons.jelly.tags.junit.CaseTag$1): Caused an 
ERROR
[junit] 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:47:48:
  You must define an attribute called 'test' for this tag.
[junit] org.apache.commons.jelly.MissingAttributeException: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/html/target/test-classes/org/apache/commons/jelly/html/suite.jelly:47:48:
  You must define an attribute called 'test' for this tag.
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTag.doTag(AssertTag.java:54)

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

2006-04-15 Thread commons-jelly-tags-xml 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-tags-xml-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 98 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-tags-xml-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-xml-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-xml-test/gump_work/build_commons-jelly_commons-jelly-tags-xml-test.html
Work Name: build_commons-jelly_commons-jelly-tags-xml-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 18 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-15042006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/public/workspace/jaxen/target/jaxen-15042006.jar
-
[junit] 
[junit] 
[junit] Testcase: 
testImportResourcesFromUncompiledScript(org.apache.commons.jelly.tags.xml.TestImport):
FAILED
[junit] expected:<... xmlns="http://www.w3.org/TR/xhtml1/strict";...> but 
was:<..>
[junit] junit.framework.ComparisonFailure: expected:<... 
xmlns="http://www.w3.org/TR/xhtml1/strict";...> but was:<..>
[junit] at 
org.apache.commons.jelly.tags.xml.TestImport.testImportResourcesFromUncompiledScript(TestImport.java:77)
[junit] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[junit] at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
[junit] at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
[junit] 
[junit] 
[junit] [ERROR] TEST org.apache.commons.jelly.tags.xml.TestImport FAILED
[junit] Running org.apache.commons.jelly.tags.xml.TestXMLTags
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 3.016 sec
[junit] Testsuite: org.apache.commons.jelly.tags.xml.TestXMLTags
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 3.016 sec
[junit] 
[junit] - Standard Output ---
[junit] TestXMLTags.testNamespaceReplace() text=http://apache/testNS"; xmlns="http://java/ns"; 
test:abc="testValue">http://java/ns"; xmlns="http://java/ns"; 
other:abc="testValue">http://java/ns"; 
other:abc="testValue">
[junit] http://apache/testNS"; 
xmlns="http://apache/trueNS"; test:abc="testValue" abc2="testValue" 
abc3="testValue">
[junit] http://apache/testNS"; 
xmlns="http://apache/trueNS"; test:abc="testValue" abc2="testValue" 
abc3="testValue">
[junit] -  ---
[junit] Running org.apache.commons.jelly.tags.xml.TestJelly
[junit] some text
[junit] 
[junit] The exception was: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:104:45:
  
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:104:4

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

2006-04-15 Thread commons-jelly-tags-xml 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-tags-xml-test has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 98 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-tags-xml-test :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-xml-test/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on xml-xerces exists, no need to add for property 
maven.jar.xerces.
 -WARNING- Overriding Maven properties: 
[/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/build.properties]
 -DEBUG- (Gump generated) Maven Properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-reports



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-xml-test/gump_work/build_commons-jelly_commons-jelly-tags-xml-test.html
Work Name: build_commons-jelly_commons-jelly-tags-xml-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 18 secs
Command Line: maven --offline jar 
[Working Directory: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-15042006.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-15042006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-15042006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/public/workspace/jaxen/target/jaxen-15042006.jar
-
[junit] 
[junit] 
[junit] Testcase: 
testImportResourcesFromUncompiledScript(org.apache.commons.jelly.tags.xml.TestImport):
FAILED
[junit] expected:<... xmlns="http://www.w3.org/TR/xhtml1/strict";...> but 
was:<..>
[junit] junit.framework.ComparisonFailure: expected:<... 
xmlns="http://www.w3.org/TR/xhtml1/strict";...> but was:<..>
[junit] at 
org.apache.commons.jelly.tags.xml.TestImport.testImportResourcesFromUncompiledScript(TestImport.java:77)
[junit] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[junit] at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
[junit] at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
[junit] 
[junit] 
[junit] [ERROR] TEST org.apache.commons.jelly.tags.xml.TestImport FAILED
[junit] Running org.apache.commons.jelly.tags.xml.TestXMLTags
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 3.016 sec
[junit] Testsuite: org.apache.commons.jelly.tags.xml.TestXMLTags
[junit] Tests run: 19, Failures: 0, Errors: 0, Time elapsed: 3.016 sec
[junit] 
[junit] - Standard Output ---
[junit] TestXMLTags.testNamespaceReplace() text=http://apache/testNS"; xmlns="http://java/ns"; 
test:abc="testValue">http://java/ns"; xmlns="http://java/ns"; 
other:abc="testValue">http://java/ns"; 
other:abc="testValue">
[junit] http://apache/testNS"; 
xmlns="http://apache/trueNS"; test:abc="testValue" abc2="testValue" 
abc3="testValue">
[junit] http://apache/testNS"; 
xmlns="http://apache/trueNS"; test:abc="testValue" abc2="testValue" 
abc3="testValue">
[junit] -  ---
[junit] Running org.apache.commons.jelly.tags.xml.TestJelly
[junit] some text
[junit] 
[junit] The exception was: 
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:104:45:
  
file:/x1/gump/public/workspace/commons-jelly/jelly-tags/xml/target/test-classes/org/apache/commons/jelly/tags/xml/suite.jelly:104:4

DO NOT REPLY [Bug 39169] - [configuration] ConfigurationUtils.locate throws NullPointerException if the context ClassLoader is null

2006-04-15 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=39169





--- Additional Comments From [EMAIL PROTECTED]  2006-04-15 10:14 ---
*** Bug 39168 has been marked as a duplicate of this bug. ***

-- 
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 39168] - [configuration] ConfigurationUtils.locate throws NullPointerException if the context ClassLoader is null

2006-04-15 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=39168


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE




--- Additional Comments From [EMAIL PROTECTED]  2006-04-15 10:14 ---
I am a bit confused why this issue pops up again. There is a nearly identical
bug report, which I marked as fixed on April 10th.

As you can see in subversion
(http://svn.apache.org/repos/asf/jakarta/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/ConfigurationUtils.java),
an additional check for the TCCL being null has been added. Did I miss 
something?

*** This bug has been marked as a duplicate of 39169 ***

-- 
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 39314] - [pool] Pool grows beyond poolsize with WHEN_EXHAUSTED_BLOCK

2006-04-15 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=39314


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|INVALID |
Summary|[pool] Pool grows beyond|[pool] Pool grows beyond
   |MaxActive with  |poolsize with
   |WHEN_EXHAUSTED_BLOCK|WHEN_EXHAUSTED_BLOCK




--- Additional Comments From [EMAIL PROTECTED]  2006-04-15 10:05 ---
(In reply to comment #4)

I should reformulate to "makeObject() is called more than poolsize times."

As I understand the concept of pool (which is consistent with
http://en.wikipedia.org/wiki/Object_pool), a non-growing pool keeps a certain
limited number of objects.

In my use case, I want to keep in the pool n open connections to the LDAP
server, after all n connections are opened within makeObject(), these n
connections from the pool should be used and none more. 

So, makeObject() should not be called more than poolsize times
(WHEN_EXHAUSTED_BLOCK). But with GenericObjectPool it gets called forever (and
my LDAP server runs out of threads).

Strange thing is, if poolsize in the example code is 3 the test runs fine, but
with a poolsize of 20 the pool grows forever.

-- 
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]