[jira] Created: (CONFIGURATION-282) NPE in HierarchicalConfiguration.fetchNodeList

2007-06-25 Thread Dennis Kieselhorst (JIRA)
NPE in HierarchicalConfiguration.fetchNodeList
--

 Key: CONFIGURATION-282
 URL: https://issues.apache.org/jira/browse/CONFIGURATION-282
 Project: Commons Configuration
  Issue Type: Bug
Affects Versions: 1.4
 Environment: Linux, Java 1.5
Reporter: Dennis Kieselhorst


java.lang.NullPointerException
at 
org.apache.commons.configuration.HierarchicalConfiguration.fetchNodeList(HierarchicalConfiguration.java:721)
at 
org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.fetchNodeList(AbstractHierarchicalFileConfiguration.java:338)
at 
org.apache.commons.configuration.HierarchicalConfiguration.getProperty(HierarchicalConfiguration.java:284)
at 
org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.getProperty(AbstractHierarchicalFileConfiguration.java:319)
at 
org.apache.commons.configuration.AbstractConfiguration.resolveContainerStore(AbstractConfiguration.java:1222)
at 
org.apache.commons.configuration.AbstractConfiguration.getBoolean(AbstractConfiguration.java:667)
at 
org.apache.commons.configuration.AbstractConfiguration.getBoolean(AbstractConfiguration.java:633)


java.lang.NullPointerException
at 
org.apache.commons.configuration.HierarchicalConfiguration.fetchNodeList(HierarchicalConfiguration.java:721)
at 
org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.fetchNodeList(AbstractHierarchicalFileConfiguration.java:338)
at 
org.apache.commons.configuration.HierarchicalConfiguration.getProperty(HierarchicalConfiguration.java:284)
at 
org.apache.commons.configuration.AbstractHierarchicalFileConfiguration.getProperty(AbstractHierarchicalFileConfiguration.java:319)
at 
org.apache.commons.configuration.AbstractConfiguration.resolveContainerStore(AbstractConfiguration.java:1222)
at 
org.apache.commons.configuration.AbstractConfiguration.getString(AbstractConfiguration.java:1097)
at 
org.apache.commons.configuration.AbstractConfiguration.getString(AbstractConfiguration.java:1077)


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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



Re: Invitation to join the Apache Commons PMC

2007-06-25 Thread Niall Pemberton

On 6/25/07, Rahul Akolkar <[EMAIL PROTECTED]> wrote:

Process-wise, the chair might need to ascertain the board's lazy
consensus. But, you probably know better.


AFAIK the chair pings the board after someone accepts and its
effective 24 hours after its been ACK'd by a board member.

Torsten?


To if I'm interested -- yes, thanks, I intend to remain involved.


Great  :)

Niall


-Rahul


On 6/24/07, Niall Pemberton <[EMAIL PROTECTED]> wrote:
> Hi Rahul,
>
> You've been nominated to become a part of the Apache Commons PMC and the vote
> has passed.
>
> Would you be interested in accepting the nomination?
>
> We understand that you were not in favour of the Commons TLP but,
> since the board has now passed the Commons resolution, hope that you
> still want to be involved with Commons and will accept this nomination
>
> -Niall, on behalf of the Commons PMC
>



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



[jira] Commented: (SCXML-47) Provide a state machine support class to allow for delegation.

2007-06-25 Thread Michael Heuer (JIRA)

[ 
https://issues.apache.org/jira/browse/SCXML-47?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12507958
 ] 

Michael Heuer commented on SCXML-47:


I have discovered a problem with StateMachineSupport as designed, due to its 
static reference to stateMachine.

The following test case will fail:

public void testMoreThanOneScxmlDocument() throws Exception {
URL fooScxmlDocument = getClass().getResource("foo.xml");
URL barScxmlDocument = getClass().getResource("bar.xml");

Foo foo = new Foo(fooScxmlDocument);
Bar bar = new Bar(barScxmlDocument);

assertTrue(fooCalled);
// bar's initialstate "bar" never called, since bar's 
StateMachineSupport has
//static reference to stateMachine for foo.xml
assertTrue(barCalled);
}

private class Foo {

private StateMachineSupport delegate;

public Foo(final URL scxmlDocument) {
delegate = new StateMachineSupport(this, scxmlDocument);
}

public void foo() {
fooCalled = true;
}
}

private class Bar {

private StateMachineSupport delegate;

public Bar(final URL scxmlDocument) {
delegate = new StateMachineSupport(this, scxmlDocument);
}

public void bar() {
barCalled = true;
}
}

with simple SCXML files

foo.xml:
http://www.w3.org/2005/07/scxml"; version="1.0" initialstate="foo">
  


bar.xml:
http://www.w3.org/2005/07/scxml"; version="1.0" initialstate="bar">
  


java.lang.NoSuchMethodException: 
org.apache.commons.scxml.env.StateMachineSupportTest$Bar.foo()
at java.lang.Class.getDeclaredMethod(Class.java:1937)
at 
org.apache.commons.scxml.env.StateMachineSupport.invoke(StateMachineSupport.java:249)


I believe the way to make this work is to have StateMachineSupport accept a 
reference to an instance of SCXML in its constructor or otherwise and to not 
reuse StateMachineSupport in AbstractStateMachine.

Sorry for not providing better unit tests in the first place.

> Provide a state machine support class to allow for delegation.
> --
>
> Key: SCXML-47
> URL: https://issues.apache.org/jira/browse/SCXML-47
> Project: Commons SCXML
>  Issue Type: Improvement
>Affects Versions: 0.6
>Reporter: Michael Heuer
>Priority: Minor
> Fix For: 0.7
>
> Attachments: additional-tests.tar.gz, state-machine-support-src.tar.gz
>
>
> This is not completely thought out yet, but if folks like the idea I might 
> persue it further.
> I would like to use AbstractStateMachine but cannot extend from it:
> class B extends A /*, AbstractStateMachine */ {
>   // copy source from AbstractStateMachine here
> }
> I propose here a StateMachineSupport class that provides for use by 
> subclassing and for use by delegation.  The constructors are a little messy, 
> but in the end I have
> public class StateMachineSupport {
>   // use by subclassing
>   protected StateMachineSupport(...) {
>   }
>   // use by delegation
>   public StateMachineSupport(Object delegator, ...) {
>   }
>   // ... methods from AbstractStateMachine
> }
> public abstract class AbstractStateMachine extends StateMachineSupport {
>   protected AbstractStateMachine(...) {
> super(...);
>   }
> }
> // use by subclassing
> class ConcreteStateMachine extends AbstractStateMachine {
>   ConcreteStateMachine() {
> super(..."stopwatch.xml");
>   }
>   public void reset() { ... }
>   public void running() { ... }
>   public void paused() { ... }
>   public void stopped() { ... }
> }
> // use by delegation
> class DelegatingStateMachine extends SomethingElse {
>   StateMachineSupport delegate;
>   DelegatingStateMachine() {
> delegate = new StateMachineSupport(this, ..."stopwatch.xml");
>   }
>   public void reset() { ... }
>   public void running() { ... }
>   public void paused() { ... }
>   public void stopped() { ... }
> }
> StateMachineSupport.java, AbstractStateMachine2.java, 
> StateMachineSupportTest.java, and AbstractStateMachine2Test.java attached.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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



[jira] Updated: (SCXML-47) Provide a state machine support class to allow for delegation.

2007-06-25 Thread Michael Heuer (JIRA)

 [ 
https://issues.apache.org/jira/browse/SCXML-47?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Heuer updated SCXML-47:
---

Attachment: additional-tests.tar.gz

failing unit test as described

> Provide a state machine support class to allow for delegation.
> --
>
> Key: SCXML-47
> URL: https://issues.apache.org/jira/browse/SCXML-47
> Project: Commons SCXML
>  Issue Type: Improvement
>Affects Versions: 0.6
>Reporter: Michael Heuer
>Priority: Minor
> Fix For: 0.7
>
> Attachments: additional-tests.tar.gz, state-machine-support-src.tar.gz
>
>
> This is not completely thought out yet, but if folks like the idea I might 
> persue it further.
> I would like to use AbstractStateMachine but cannot extend from it:
> class B extends A /*, AbstractStateMachine */ {
>   // copy source from AbstractStateMachine here
> }
> I propose here a StateMachineSupport class that provides for use by 
> subclassing and for use by delegation.  The constructors are a little messy, 
> but in the end I have
> public class StateMachineSupport {
>   // use by subclassing
>   protected StateMachineSupport(...) {
>   }
>   // use by delegation
>   public StateMachineSupport(Object delegator, ...) {
>   }
>   // ... methods from AbstractStateMachine
> }
> public abstract class AbstractStateMachine extends StateMachineSupport {
>   protected AbstractStateMachine(...) {
> super(...);
>   }
> }
> // use by subclassing
> class ConcreteStateMachine extends AbstractStateMachine {
>   ConcreteStateMachine() {
> super(..."stopwatch.xml");
>   }
>   public void reset() { ... }
>   public void running() { ... }
>   public void paused() { ... }
>   public void stopped() { ... }
> }
> // use by delegation
> class DelegatingStateMachine extends SomethingElse {
>   StateMachineSupport delegate;
>   DelegatingStateMachine() {
> delegate = new StateMachineSupport(this, ..."stopwatch.xml");
>   }
>   public void reset() { ... }
>   public void running() { ... }
>   public void paused() { ... }
>   public void stopped() { ... }
> }
> StateMachineSupport.java, AbstractStateMachine2.java, 
> StateMachineSupportTest.java, and AbstractStateMachine2Test.java attached.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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



[jira] Commented: (FILEUPLOAD-135) InputStream created with Streaming API returns EOF on first read() for short files uploaded from FireFox over HTTPS

2007-06-25 Thread Rob Slifka (JIRA)

[ 
https://issues.apache.org/jira/browse/FILEUPLOAD-135?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12507943
 ] 

Rob Slifka commented on FILEUPLOAD-135:
---

"Hello Jira" yikes :-)

Anyway, is there a way to see the progress on this issue?  I.e. if it's been 
submitted, scheduled, etc.?

Just to verify, it is indeed a Firefox-only issue, and not reproducible on any 
other browser (IE6, IE7, Opera, Safari).


> InputStream created with Streaming API returns EOF on first read() for short 
> files uploaded from FireFox over HTTPS
> ---
>
> Key: FILEUPLOAD-135
> URL: https://issues.apache.org/jira/browse/FILEUPLOAD-135
> Project: Commons FileUpload
>  Issue Type: Bug
>Affects Versions: 1.2, 1.2.1
> Environment: Windows XP
> Browser: Firefox 1.5.0.11
> Protocol: HTTPS
>Reporter: Alexander Sova
> Attachments: commons-fileupload-1.1-bug-short-file-eof.patch, 
> commons-fileupload-1.2-bug-short-file-eof.patch, FILEUPLOAD135.patch
>
>
> This problem happens only with files shorer then boundary string generated by 
> browser and only with Firefox using HTTPS protocol.
> For some reason in this particular environment inputStream.read() in 
> MultipartStream.ItemInputStream.makeAvailable() reads not whole HTTP response 
> body, but only file content before boundary string. 
> I've created a patch fixing this issue.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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



[jira] Commented: (FILEUPLOAD-135) InputStream created with Streaming API returns EOF on first read() for short files uploaded from FireFox over HTTPS

2007-06-25 Thread Rob Slifka (JIRA)

[ 
https://issues.apache.org/jira/browse/FILEUPLOAD-135?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12507942
 ] 

Rob Slifka commented on FILEUPLOAD-135:
---

Hello Jira,

I've run into this issue as well, very much looking forward to the
patch, thanks :)

Rob Slifka



> InputStream created with Streaming API returns EOF on first read() for short 
> files uploaded from FireFox over HTTPS
> ---
>
> Key: FILEUPLOAD-135
> URL: https://issues.apache.org/jira/browse/FILEUPLOAD-135
> Project: Commons FileUpload
>  Issue Type: Bug
>Affects Versions: 1.2, 1.2.1
> Environment: Windows XP
> Browser: Firefox 1.5.0.11
> Protocol: HTTPS
>Reporter: Alexander Sova
> Attachments: commons-fileupload-1.1-bug-short-file-eof.patch, 
> commons-fileupload-1.2-bug-short-file-eof.patch, FILEUPLOAD135.patch
>
>
> This problem happens only with files shorer then boundary string generated by 
> browser and only with Firefox using HTTPS protocol.
> For some reason in this particular environment inputStream.read() in 
> MultipartStream.ItemInputStream.makeAvailable() reads not whole HTTP response 
> body, but only file content before boundary string. 
> I've created a patch fixing this issue.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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



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

2007-06-25 Thread commons-jelly-tags-jaxme 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-jaxme has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 18 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-jaxme :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-jaxme/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-jaxme-25062007.jar] identifier set to 
project name
 -DEBUG- Dependency on packaged-jaxme exists, no need to add for property 
maven.jar.jaxme.
 -DEBUG- Dependency on packaged-jaxme exists, no need to add for property 
maven.jar.jaxme-js.
 -DEBUG- Dependency on packaged-jaxme exists, no need to add for property 
maven.jar.jaxme-xs.
 -DEBUG- Dependency on packaged-jaxme exists, no need to add for property 
maven.jar.jaxme-api.
 -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/jaxme/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jaxme/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jaxme/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jaxme/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-jaxme/gump_work/build_commons-jelly_commons-jelly-tags-jaxme.html
Work Name: build_commons-jelly_commons-jelly-tags-jaxme (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/jaxme]
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-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xmlunit/target/commons-jelly-tags-xmlunit-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-25062007.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/public/workspace/jaxen/target/jaxen-25062007.jar:/usr/local/gump/packages/ws-jaxme-0.5/lib/jaxme2-0.5.jar:/usr/local/gump/packages/ws-jaxme-0.5/lib/jaxmeapi-0.5.jar:/usr/local/gump/packages/ws-jaxme-0.5/lib/jaxmejs-0.5.jar:/usr/local/gump/packages/ws-jaxme-0.5/lib/jaxmexs-0.5.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/usr/local/gump/public/workspace/xmlunit/build/lib/xmlunit-25062007.jar
-
[javac] symbol  : variable super
[javac] location: class 
org.apache.ws.jaxme.examples.misc.address.impl.AddressTypeHandler
[javac]   super.startElement(pNamespaceURI, pLocalName, pQName, 
pAttr);
[javac]   ^
[javac] 
/x1/gump/public/workspace/commons-jelly/jelly-tags/jaxme/src/test/org/apache/ws/jaxme/examples/misc/address/impl/AddressTypeHandler.java:273:
 cannot find symbol
[javac] symbol  : variable super
[javac] location: class 
org.apache.ws.jaxme.examples.misc.address.impl.AddressTypeHandler
[javac] super.endElement(pNamespaceURI, pLocalName, pQName);
[javac] ^
[javac] 
/x1/gump/public/workspace/commons-jelly/jelly-tags/jaxme/src/test/org/apache/ws/jaxme/examples/misc/address/impl/AddressTypeHandler.java:282:
 cannot find symbol
[javac] symbol  : method getResult()
[javac] location: class 
org.apache.ws.jaxme.examples.misc.address.impl.AddressTypeHandler
[javac] org.apache.ws.jaxme.examples.misc.address.AddressType _1 = 
(org.apache.ws.jaxme.examples.misc.address.AddressType) getResult();
[javac]  

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

2007-06-25 Thread commons-jelly-tags-jaxme 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-jaxme has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 18 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-jaxme :  Commons Jelly


Full details are available at:

http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-tags-jaxme/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-jaxme-25062007.jar] identifier set to 
project name
 -DEBUG- Dependency on packaged-jaxme exists, no need to add for property 
maven.jar.jaxme.
 -DEBUG- Dependency on packaged-jaxme exists, no need to add for property 
maven.jar.jaxme-js.
 -DEBUG- Dependency on packaged-jaxme exists, no need to add for property 
maven.jar.jaxme-xs.
 -DEBUG- Dependency on packaged-jaxme exists, no need to add for property 
maven.jar.jaxme-api.
 -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/jaxme/build.properties
 -INFO- Failed with reason build failed
 -DEBUG- Maven POM in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jaxme/project.xml
 -DEBUG- Maven project properties in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jaxme/project.properties
 -INFO- Project Reports in: 
/usr/local/gump/public/workspace/commons-jelly/jelly-tags/jaxme/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-jaxme/gump_work/build_commons-jelly_commons-jelly-tags-jaxme.html
Work Name: build_commons-jelly_commons-jelly-tags-jaxme (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/jaxme]
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-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xmlunit/target/commons-jelly-tags-xmlunit-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-25062007.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/public/workspace/jaxen/target/jaxen-25062007.jar:/usr/local/gump/packages/ws-jaxme-0.5/lib/jaxme2-0.5.jar:/usr/local/gump/packages/ws-jaxme-0.5/lib/jaxmeapi-0.5.jar:/usr/local/gump/packages/ws-jaxme-0.5/lib/jaxmejs-0.5.jar:/usr/local/gump/packages/ws-jaxme-0.5/lib/jaxmexs-0.5.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/usr/local/gump/public/workspace/xmlunit/build/lib/xmlunit-25062007.jar
-
[javac] symbol  : variable super
[javac] location: class 
org.apache.ws.jaxme.examples.misc.address.impl.AddressTypeHandler
[javac]   super.startElement(pNamespaceURI, pLocalName, pQName, 
pAttr);
[javac]   ^
[javac] 
/x1/gump/public/workspace/commons-jelly/jelly-tags/jaxme/src/test/org/apache/ws/jaxme/examples/misc/address/impl/AddressTypeHandler.java:273:
 cannot find symbol
[javac] symbol  : variable super
[javac] location: class 
org.apache.ws.jaxme.examples.misc.address.impl.AddressTypeHandler
[javac] super.endElement(pNamespaceURI, pLocalName, pQName);
[javac] ^
[javac] 
/x1/gump/public/workspace/commons-jelly/jelly-tags/jaxme/src/test/org/apache/ws/jaxme/examples/misc/address/impl/AddressTypeHandler.java:282:
 cannot find symbol
[javac] symbol  : method getResult()
[javac] location: class 
org.apache.ws.jaxme.examples.misc.address.impl.AddressTypeHandler
[javac] org.apache.ws.jaxme.examples.misc.address.AddressType _1 = 
(org.apache.ws.jaxme.examples.misc.address.AddressType) getResult();
[javac]  

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

2007-06-25 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 43 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.
 -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: 19 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/commons-cli-1.0.x/target/commons-cli-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/ant/target/commons-jelly-tags-ant-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-25062007.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/public/workspace/jaxen/target/jaxen-25062007.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar
-
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTagSupport.fail(AssertTagSupport.java:64)
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTag.doTag(AssertTag.java:59)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:263)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:96)
[junit] at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:187)
[junit] at 
org.apache.commons.jelly.impl.StaticTag.doTag(StaticTag.java:66)
[junit] at 
org.apache.commons.jelly.impl.StaticTagScript.run(StaticTagScript.java:113)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:96)
[junit] at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:187)
[junit] at 
org.apache.commons.jelly.tags.jsl.TemplateTag$1.run(TemplateTag.java:161)
[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)
[jun

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

2007-06-25 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 43 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.
 -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: 19 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/commons-cli-1.0.x/target/commons-cli-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/target/commons-jelly-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/ant/target/commons-jelly-tags-ant-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/junit/target/commons-jelly-tags-junit-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/log/target/commons-jelly-tags-log-25062007.jar:/usr/local/gump/public/workspace/commons-jelly/jelly-tags/xml/target/commons-jelly-tags-xml-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-25062007.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/public/workspace/jaxen/target/jaxen-25062007.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar
-
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTagSupport.fail(AssertTagSupport.java:64)
[junit] at 
org.apache.commons.jelly.tags.junit.AssertTag.doTag(AssertTag.java:59)
[junit] at 
org.apache.commons.jelly.impl.TagScript.run(TagScript.java:263)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:96)
[junit] at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:187)
[junit] at 
org.apache.commons.jelly.impl.StaticTag.doTag(StaticTag.java:66)
[junit] at 
org.apache.commons.jelly.impl.StaticTagScript.run(StaticTagScript.java:113)
[junit] at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:96)
[junit] at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:187)
[junit] at 
org.apache.commons.jelly.tags.jsl.TemplateTag$1.run(TemplateTag.java:161)
[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)
[jun

Re: Invitation to join the Apache Commons PMC

2007-06-25 Thread Rahul Akolkar

Process-wise, the chair might need to ascertain the board's lazy
consensus. But, you probably know better.

To if I'm interested -- yes, thanks, I intend to remain involved.

-Rahul


On 6/24/07, Niall Pemberton <[EMAIL PROTECTED]> wrote:

Hi Rahul,

You've been nominated to become a part of the Apache Commons PMC and the vote
has passed.

Would you be interested in accepting the nomination?

We understand that you were not in favour of the Commons TLP but,
since the board has now passed the Commons resolution, hope that you
still want to be involved with Commons and will accept this nomination

-Niall, on behalf of the Commons PMC



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



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

2007-06-25 Thread James Strachan
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-betwixt has an issue affecting its community integration.
This issue affects 7 projects,
 and has been outstanding for 63 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-betwixt :  Commons Betwixt Package
- commons-jelly-tags-betwixt :  Commons Jelly
- commons-jelly-tags-ojb :  Commons Jelly
- db-ddlutils :  Easy-to-use component for working with Database Definition 
(...
- db-ojb-from-packages-1-0-release :  ObjectRelationalBridge
- maven-bootstrap :  Project Management Tools
- test-ojb-from-packages-1-0-release :  ObjectRelationalBridge


Full details are available at:

http://vmgump.apache.org/gump/public/jakarta-commons/commons-betwixt/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-betwixt-25062007.jar] identifier set to project 
name
 -INFO- Failed with reason build failed
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-betwixt/gump_work/build_jakarta-commons_commons-betwixt.html
Work Name: build_jakarta-commons_commons-betwixt (Type: Build)
Work ended in a state of : Failed
Elapsed: 4 mins 28 secs
Command Line: /opt/jdk1.5/bin/java -Djava.awt.headless=true 
-Dant.build.clonevm=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -Dgump.merge=/x1/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-betwixt-25062007 
-Dresourcedir=/usr/local/gump/public/workspace/jakarta-commons/betwixt jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/betwixt]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/betwixt/target/classes:/usr/local/gump/public/workspace/jakarta-commons/betwixt/target/test-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/packages/junit3.8.1/junit.jar:/usr/local/gump/public/workspace/xml-commons/java/build/resolver.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-25062007.jar:/usr/local/gump/public/workspace/junit/dist/junit-25062007.jar
-
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy checkVersionUntil
[junit] INFO: value=null
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy checkVersionUntil
[junit] INFO: version=3
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy debugOptions
[junit] INFO: Names:
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy debugOptions
[junit] INFO:   0: version-from=2
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy checkVersionUntil
[junit] INFO: No attribute "Version until"
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy suppress
[junit] INFO: Showing element
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.TestVersioning testWrite4
[junit] INFO: Written:
[junit] 
[junit] elementvalue1
[junit] elementvalue2
[junit] 
[junit] 
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.TestVersioning testWrite4
[junit] INFO: testWrite1() complete
[junit] -  ---
[junit] 
[junit] Testcase: testIntrospection took 0.724 sec
[junit] Testcase: testWrit

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

2007-06-25 Thread James Strachan
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-betwixt has an issue affecting its community integration.
This issue affects 7 projects,
 and has been outstanding for 63 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- commons-betwixt :  Commons Betwixt Package
- commons-jelly-tags-betwixt :  Commons Jelly
- commons-jelly-tags-ojb :  Commons Jelly
- db-ddlutils :  Easy-to-use component for working with Database Definition 
(...
- db-ojb-from-packages-1-0-release :  ObjectRelationalBridge
- maven-bootstrap :  Project Management Tools
- test-ojb-from-packages-1-0-release :  ObjectRelationalBridge


Full details are available at:

http://vmgump.apache.org/gump/public/jakarta-commons/commons-betwixt/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole output [commons-betwixt-25062007.jar] identifier set to project 
name
 -INFO- Failed with reason build failed
 -INFO- Failed to extract fallback artifacts from Gump Repository



The following work was performed:
http://vmgump.apache.org/gump/public/jakarta-commons/commons-betwixt/gump_work/build_jakarta-commons_commons-betwixt.html
Work Name: build_jakarta-commons_commons-betwixt (Type: Build)
Work ended in a state of : Failed
Elapsed: 4 mins 28 secs
Command Line: /opt/jdk1.5/bin/java -Djava.awt.headless=true 
-Dant.build.clonevm=true 
-Xbootclasspath/p:/usr/local/gump/public/workspace/xml-xerces2/build/xercesImpl.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar
 org.apache.tools.ant.Main -Dgump.merge=/x1/gump/public/gump/work/merge.xml 
-Dbuild.sysclasspath=only -Dfinal.name=commons-betwixt-25062007 
-Dresourcedir=/usr/local/gump/public/workspace/jakarta-commons/betwixt jar 
[Working Directory: /usr/local/gump/public/workspace/jakarta-commons/betwixt]
CLASSPATH: 
/opt/jdk1.5/lib/tools.jar:/usr/local/gump/public/workspace/jakarta-commons/betwixt/target/classes:/usr/local/gump/public/workspace/jakarta-commons/betwixt/target/test-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/packages/junit3.8.1/junit.jar:/usr/local/gump/public/workspace/xml-commons/java/build/resolver.jar:/usr/local/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/usr/local/gump/public/workspace/jakarta-commons/digester/dist/commons-digester.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/beanutils/dist/commons-beanutils-core.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-25062007.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-25062007.jar:/usr/local/gump/public/workspace/junit/dist/junit-25062007.jar
-
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy checkVersionUntil
[junit] INFO: value=null
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy checkVersionUntil
[junit] INFO: version=3
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy debugOptions
[junit] INFO: Names:
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy debugOptions
[junit] INFO:   0: version-from=2
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy checkVersionUntil
[junit] INFO: No attribute "Version until"
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.VersioningStrategy suppress
[junit] INFO: Showing element
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.TestVersioning testWrite4
[junit] INFO: Written:
[junit] 
[junit] elementvalue1
[junit] elementvalue2
[junit] 
[junit] 
[junit] Jun 25, 2007 5:03:23 AM 
org.apache.commons.betwixt.versioning.TestVersioning testWrite4
[junit] INFO: testWrite1() complete
[junit] -  ---
[junit] 
[junit] Testcase: testIntrospection took 0.724 sec
[junit] Testcase: testWrit

svn commit: r550498 - in /jakarta/commons/proper/modeler/trunk: build.xml project.xml src/conf/MANIFEST.MF

2007-06-25 Thread niallp
Author: niallp
Date: Mon Jun 25 06:45:54 2007
New Revision: 550498

URL: http://svn.apache.org/viewvc?view=rev&rev=550498
Log:
Change version 2.1-dev --> 2.1-SNAPSHOT

Modified:
jakarta/commons/proper/modeler/trunk/build.xml
jakarta/commons/proper/modeler/trunk/project.xml
jakarta/commons/proper/modeler/trunk/src/conf/MANIFEST.MF

Modified: jakarta/commons/proper/modeler/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/build.xml?view=diff&rev=550498&r1=550497&r2=550498
==
--- jakarta/commons/proper/modeler/trunk/build.xml (original)
+++ jakarta/commons/proper/modeler/trunk/build.xml Mon Jun 25 06:45:54 2007
@@ -69,7 +69,7 @@
   
 
   
-  
+  
 
   
   

Modified: jakarta/commons/proper/modeler/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/project.xml?view=diff&rev=550498&r1=550497&r2=550498
==
--- jakarta/commons/proper/modeler/trunk/project.xml (original)
+++ jakarta/commons/proper/modeler/trunk/project.xml Mon Jun 25 06:45:54 2007
@@ -23,7 +23,7 @@
   Commons Modeler
   commons-modeler
   commons-modeler
-  2.1-dev
+  2.1-SNAPSHOT
   2002
   Commons Modeler
   

Modified: jakarta/commons/proper/modeler/trunk/src/conf/MANIFEST.MF
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/src/conf/MANIFEST.MF?view=diff&rev=550498&r1=550497&r2=550498
==
--- jakarta/commons/proper/modeler/trunk/src/conf/MANIFEST.MF (original)
+++ jakarta/commons/proper/modeler/trunk/src/conf/MANIFEST.MF Mon Jun 25 
06:45:54 2007
@@ -2,7 +2,7 @@
 Extension-Name: org.apache.commons.modeler
 Specification-Title: Commons Modeler
 Specification-Vendor: Apache Software Foundation
-Specification-Version: 1.1
+Specification-Version: 2.1-SNAPSHOT
 Implementation-Vendor-Id: org.apache
 Implementation-Vendor: Apache Software Foundation
-Implementation-Version: 1.1.0
+Implementation-Version: 2.1-SNAPSHOT



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



svn commit: r550496 - /jakarta/commons/proper/modeler/trunk/doap_modeler.rdf

2007-06-25 Thread niallp
Author: niallp
Date: Mon Jun 25 06:43:52 2007
New Revision: 550496

URL: http://svn.apache.org/viewvc?view=rev&rev=550496
Log:
Update RDF file with version history

Modified:
jakarta/commons/proper/modeler/trunk/doap_modeler.rdf

Modified: jakarta/commons/proper/modeler/trunk/doap_modeler.rdf
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/doap_modeler.rdf?view=diff&rev=550496&r1=550495&r2=550496
==
--- jakarta/commons/proper/modeler/trunk/doap_modeler.rdf (original)
+++ jakarta/commons/proper/modeler/trunk/doap_modeler.rdf Mon Jun 25 06:43:52 
2007
@@ -20,11 +20,26 @@
   
 
 
-  
-commons-modeler
+  
+2.0.1
+2007-06-25
+2.0.1
+  
+  
+2.0
+2006-07-31
+2.0
+  
+  
+1.1
 2003-08-10
-1.1
-  
+1.1
+  
+  
+1.0
+2002-12-27
+1.0
+  
 
 http://jakarta.apache.org/site/mail2.html#Commons"/>
   



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



svn commit: r550491 - in /jakarta/commons/proper/modeler/trunk/xdocs: downloads.xml navigation.xml

2007-06-25 Thread niallp
Author: niallp
Date: Mon Jun 25 06:11:30 2007
New Revision: 550491

URL: http://svn.apache.org/viewvc?view=rev&rev=550491
Log:
Update Site for 2.0.1 release

Modified:
jakarta/commons/proper/modeler/trunk/xdocs/downloads.xml
jakarta/commons/proper/modeler/trunk/xdocs/navigation.xml

Modified: jakarta/commons/proper/modeler/trunk/xdocs/downloads.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/xdocs/downloads.xml?view=diff&rev=550491&r1=550490&r2=550491
==
--- jakarta/commons/proper/modeler/trunk/xdocs/downloads.xml (original)
+++ jakarta/commons/proper/modeler/trunk/xdocs/downloads.xml Mon Jun 25 
06:11:30 2007
@@ -27,6 +27,7 @@
  The following releases are available:
  
 
+   Release 2.0.1 - 25 Jun 2007 - http://jakarta.apache.org/commons/modeler/commons-modeler-2.0.1/RELEASE-NOTES.txt";>(release
 notes)
Release 2.0 - 31 Jul 2006 - http://jakarta.apache.org/commons/modeler/commons-modeler-2.0/RELEASE-NOTES.txt";>(release
 notes)
Release 1.1 - 10 Aug 2003 - http://jakarta.apache.org/commons/modeler/commons-modeler-1.1/RELEASE-NOTES-1.1.txt";>(release
 notes)
Release 1.0 - 27 Dec 2002 - http://jakarta.apache.org/commons/modeler/commons-modeler-1.0/RELEASE-NOTES.txt";>(release
 notes)

Modified: jakarta/commons/proper/modeler/trunk/xdocs/navigation.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/xdocs/navigation.xml?view=diff&rev=550491&r1=550490&r2=550491
==
--- jakarta/commons/proper/modeler/trunk/xdocs/navigation.xml (original)
+++ jakarta/commons/proper/modeler/trunk/xdocs/navigation.xml Mon Jun 25 
06:11:30 2007
@@ -34,9 +34,14 @@
 http://wiki.apache.org/jakarta-commons/Modeler"/>
 
 
+
+http://jakarta.apache.org/commons/modeler/commons-modeler-2.0.1/RELEASE-NOTES.txt"/>
+http://jakarta.apache.org/commons/modeler/commons-modeler-2.0.1/apidocs/"/>
+
+
 
 http://jakarta.apache.org/commons/modeler/commons-modeler-2.0/RELEASE-NOTES.txt"/>
-http://jakarta.apache.org/commons/modeler/commons-modeler-2.0/apidocs//"/>
+http://jakarta.apache.org/commons/modeler/commons-modeler-2.0/apidocs/"/>
 
 
 



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



svn commit: r550468 - in /jakarta/commons/proper/modeler/tags: MODELER_2_0_1/ MODELER_2_0_1_RC2/

2007-06-25 Thread niallp
Author: niallp
Date: Mon Jun 25 05:26:50 2007
New Revision: 550468

URL: http://svn.apache.org/viewvc?view=rev&rev=550468
Log:
Create Modeler 2.0.1 tag from RC2 tag

Added:
jakarta/commons/proper/modeler/tags/MODELER_2_0_1/
  - copied from r550467, 
jakarta/commons/proper/modeler/tags/MODELER_2_0_1_RC2/
Removed:
jakarta/commons/proper/modeler/tags/MODELER_2_0_1_RC2/


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



[RESULT][VOTE] Commons Modeler 2.0.1 RC2

2007-06-25 Thread Niall Pemberton

The vote to release Commons Modeler 2.0.1 has passed with the 10 +1
votes (6 binding) from the following people (and no other votes):

Phil Steitz
Bill Barker
Davanum Srinivas
Dion Gillard
Henri Yandell
Ben Speakmon
Rahul Akolkar
Niall Pemberton
Oliver Heger
Jörg Schaible

Thanks to everyone who reviewed/voted on the release.

Niall

On 6/22/07, Niall Pemberton <[EMAIL PROTECTED]> wrote:

I have created a second release candidate for Modeler 2.0.1 following
the problem Phil found in the first RC.

Commons Modeler 2.0 didn't include the "ant.properties" file in the
jar which is causing problems in Tomcat. Modeler 2.0.1 is a minor bug
fix release fully backwards compatible to fix that issue and a few
other build problems - full details in the release notes.

Release Notes:
http://people.apache.org/~niallp/modeler-2.0.1-rc2/RELEASE-NOTES.txt

The artifacts being voted on are here:
http://people.apache.org/~niallp/modeler-2.0.1-rc2/

Site:
http://people.apache.org/~niallp/modeler-2.0.1-rc2/site/

RAT Report:
http://people.apache.org/~niallp/modeler-2.0.1-rc2/rat-commons-modeler-2.0.1-src.txt

[ ] +1
[ ] -1



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



[jira] Created: (COLLECTIONS-257) CollectionUtils.removeAll() calls ListUtils.retainAll()

2007-06-25 Thread Sami Kallio (JIRA)
CollectionUtils.removeAll() calls ListUtils.retainAll()
---

 Key: COLLECTIONS-257
 URL: https://issues.apache.org/jira/browse/COLLECTIONS-257
 Project: Commons Collections
  Issue Type: Bug
  Components: Collection
Affects Versions: 3.2
Reporter: Sami Kallio


/**
 * Returns a collection containing all the elements in 
collection
 * that are also in retain. The cardinality of an element 
e
 * in the returned collection is the same as the cardinality of 
e
 * in collection unless retain does not contain 
e, in which
 * case the cardinality is zero. This method is useful if you do not wish 
to modify
 * the collection c and thus cannot call 
c.retainAll(retain);.
 * 
 * @param collection  the collection whose contents are the target of the 
#retailAll operation
 * @param retain  the collection containing the elements to be retained in 
the returned collection
 * @return a Collection containing all the elements of 
collection
 * that occur at least once in retain.
 * @throws NullPointerException if either parameter is null
 * @since Commons Collections 3.2
 */
public static Collection retainAll(Collection collection, Collection 
retain) {
return ListUtils.retainAll(collection, retain);
}

/**
 * Removes the elements in remove from 
collection. That is, this
 * method returns a collection containing all the elements in c
 * that are not in remove. The cardinality of an element 
e
 * in the returned collection is the same as the cardinality of 
e
 * in collection unless remove contains 
e, in which
 * case the cardinality is zero. This method is useful if you do not wish 
to modify
 * the collection c and thus cannot call 
collection.removeAll(remove);.
 * 
 * @param collection  the collection from which items are removed (in the 
returned collection)
 * @param remove  the items to be removed from the returned 
collection
 * @return a Collection containing all the elements of 
collection except
 * any elements that also occur in remove.
 * @throws NullPointerException if either parameter is null
 * @since Commons Collections 3.2
 */
public static Collection removeAll(Collection collection, Collection 
remove) {
return ListUtils.retainAll(collection, remove);
}


I guess the later method shoud be:
public static Collection removeAll(Collection collection, Collection 
remove) {
return ListUtils.removeAll(collection, remove);
}


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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