Re: [jira] Created: (SCXML-13) SCXML doesn't compile using JDK 1.5

2006-07-14 Thread Rahul Akolkar

On 7/8/06, Phil Steitz [EMAIL PROTECTED] wrote:

Thanks for opening this issue, Niall.  This is also causing the
[scxml] nightlies to fail.


snip/

Thanks Niall, Phil. I'm flying back over the weekend and I'll take a
look at this as soon as I'm back.

And many thanks for getting us the nightlies back Phil.

-Rahul



Phil

On 7/8/06, Niall Pemberton (JIRA) [EMAIL PROTECTED] wrote:
 SCXML doesn't compile using JDK 1.5
 ---

  Key: SCXML-13
  URL: http://issues.apache.org/jira/browse/SCXML-13
  Project: Commons SCXML
 Type: Bug

snap/

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



svn commit: r421819 - /jakarta/commons/proper/attributes/trunk/site/xdocs/navigation.xml

2006-07-14 Thread bayard
Author: bayard
Date: Thu Jul 13 23:58:51 2006
New Revision: 421819

URL: http://svn.apache.org/viewvc?rev=421819view=rev
Log:
Added link to download page

Modified:
jakarta/commons/proper/attributes/trunk/site/xdocs/navigation.xml

Modified: jakarta/commons/proper/attributes/trunk/site/xdocs/navigation.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/attributes/trunk/site/xdocs/navigation.xml?rev=421819r1=421818r2=421819view=diff
==
--- jakarta/commons/proper/attributes/trunk/site/xdocs/navigation.xml (original)
+++ jakarta/commons/proper/attributes/trunk/site/xdocs/navigation.xml Thu Jul 
13 23:58:51 2006
@@ -25,6 +25,7 @@
 
 menu name=Commons#xA0;Attributes
 item name=Overview href=/index.html/
+item name=Download 
href=http://jakarta.apache.org/site/downloads/downloads_commons-attributes.cgi/
 item name=API href=/api/index.html/
 item name=Tutorial href=/tutorial.html
 item name=Ant Demo href=/ant_demo.html/



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



[Patch] Fix commons-io test code

2006-07-14 Thread Anthony Green
This support routine from the commons-io project test code assumed that
FileReader.read(byte[]) would always read the entire file.  There's no
such guarantee, and some tests were failing on GNU Classpath based VMs
because of this.

Thanks,

AG



--- src/test/org/apache/commons/io/testtools/FileBasedTestCase.java~
2006-07-13 23:44:13.0 -0700
+++ src/test/org/apache/commons/io/testtools/FileBasedTestCase.java 
2006-07-13 23:44:20.0 -0700
@@ -167,18 +171,22 @@
 throws IOException
 {
 Reader ir = new java.io.FileReader( file );
-try {
-char[] c1 = new char[ c0.length ];
-int numRead = ir.read( c1 );
-assertTrue( Different number of bytes, numRead == c0.length );
-for( int i = 0;
- i  numRead;
- assertTrue( Byte  + i +  differs ( + c0[ i ] +  !=  + 
c1[ i ] + ), 
-c0[ i ] == c1[ i ] ), i++
-);
-} finally {
-ir.close();
-}
+   int count = 0, numRead = 0;
+   char[] c1 = new char[ c0.length ];
+   try {
+ while (count  c0.length)
+   {
+ numRead = ir.read( c1, count, c0.length);
+ for( int i = count;
+  i  count+numRead;
+  assertTrue( Byte  + i +  differs ( + c0[ i ] +  !=  + 
c1[ i ] + ), 
+  c0[ i ] == c1[ i ] ), i++
+  );
+ count += numRead;
+   }
+   } finally {
+ ir.close();
+   }
 }
 
 protected void checkWrite(OutputStream output) throws Exception {



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



Re: [transaction] splitting ResourceManager interface

2006-07-14 Thread Joerg Heinicke
Hello Oliver,

Oliver Zeigermann oliver.zeigermann at gmail.com writes:

 The ResourceManager interface rather is some sort of relict from older times.
 No need to worry much about it except for backward compatibility.

This can be the hardest thing to worry about ;)

 Why change things in the first place? Just because the
 FileResourceManager is huge? That is not a bad thing all by itself.
 Some classed simply get big. Compare it to the String class. It is
 twice as big.

No, hugeness is not something I really worry about. The risk of breaking
anything even by the simplest change is mostly not worth the gain. So I don't
care about size but number of concerns, what's a big difference ... ok, this is
nitpicking :)

Actually I would like to address some different requirements with my
FileResourceManager, which I can no longer fulfill by just extending the current
one. Reimplementing the current ResourceManager interface would be absolute
overkill as the transactional stuff is exactly the same. It's only the resource
handling I need in a different way.

My use case: We have some data input and output dirs for different let's call
them communication partners and a common repository dir:

ROOT -- cp1 -- upload
 |  \- download
 |- cp2 -- upload
 |  \- download
 |
 \- repo

Up to now the data dirs and the repo dir had a common root to which I set the
store dir. But now data dirs and repo dir can be completely different. I could
set the store dir to / but I don't think that's really appropriate.
Furthermore the FileResourceManager does a recursive delete of directories so
that the data dir structure gets lost atm. With the current behaviour I would
need one FileResourceManager for every sub dir. This would be acceptable if they
had not such a huge overhead of lifecycle but would only be wrappers around file
system access. All instances would refer to one TransactionManager then. Another
possibility would be to allow the FileResourceManager to handle multiple store
dirs but I'd prefer the first approach.

Hope this explains it a bit ...

 Anyway, if you want to introduce something new, got ahead, but be
 aware of backward compatibility issues.

The question is in which extend. Even simply stripping the transactional concern
from ResourceManager interface into its own and letting the FileResourceManager
implement both interfaces, can lead to incompatibilities if the methods for
transactional concern are called on the ResourceManager interface and not on the
FileResourceManager instance.

 P.S.: I think it might be the time for a 1.2 release. What do you think?

See other thread ...

Jörg

 2006/7/13, Joerg Heinicke joerg.heinicke at gmx.de:
  Hello,
 
  the more I work with the FileResourceManager the more I'm convinced that the
  ResourceManager interface should be splitted into two interfaces: one for
  handling the locking and transactional stuff (proposal: TransactionManager)
  and one for actually handling the resources (as is: ResourceManager).
 
  One the one hand the only implementation, the FileResourceManager, simply
  does too much, i.e. too many concerns are handled in it. On the other hand I
  extend my local version of the FileResourceManager with more and more
  methods to emulate a file system access (methods from java.io.File
  actually). In theory I would need to add these methods to ResourceManager
  interface to be able to work with interfaces, but it would get bigger and
  bigger.
 
  Instead I wonder if a generic ResourceManager interface (in my new sense as
  described above) is appropriate at all. Probably it would be more
  appropriate to rename it to FileResourceManager or introduce
  FileResourceManager interface extending ResourceManager. The splitting of
  the current ResourceManager interface would allow to reuse the
  transaction/locking capability with different ResourceManagers (in my new
  sense).
 
  The splitting should be quite easy IMHO. The concerns are quite good
  separated in the FileResourceManager.
 
  WDYT?
 
  Regards,
  Jörg


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



Re: [transaction] Release plan?

2006-07-14 Thread Joerg Heinicke
Oliver Zeigermann oliver.zeigermann at gmail.com writes:

 Excatly! That's just what I was proposing in my last email!
 
 
 2006/7/13, Henri Yandell flamefew at gmail.com:
  Is the aim to have a 1.2 release of transaction at some point?


Yes, I would like to see a 1.2 release as well. There are enough fixes and
enhancements that qualify for a new release.

What's the actual release process (code freeze, etc.)?

RELEASE-NOTES.txt talks about 1.1.1 while we now will probably name it 1.2 btw.

Jörg


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



[jira] Commented: (COLLECTIONS-215) Javadoc in DefaultedMap very inconsistent

2006-07-14 Thread Hendrik Maryns (JIRA)
[ 
http://issues.apache.org/jira/browse/COLLECTIONS-215?page=comments#action_12421046
 ] 

Hendrik Maryns commented on COLLECTIONS-215:


I don't see a reason not to add the extra constructors.  They do seem useful.  
Then you can explicitly state in their javadoc the behaviour of the get method. 
 Because if you only read the class javadoc, and one actually wants to have a 
transformer returned as default object instead of it being used, the class is 
unusable, even more, it does not comply to the spec.

And there is one more javadoc inconsistency you overlooked: 

- * @throws IllegalArgumentException if map or transformer is null

+ * @throws IllegalArgumentException if map or value is null

  */

 protected DefaultedMap(Map map, Object value) {

rant Why do you (pl.) have this habit of making everything protected, it 
makes it so difficult to fix things and makes for much more complicated code! 
/rant

 Javadoc in DefaultedMap very inconsistent
 -

  Key: COLLECTIONS-215
  URL: http://issues.apache.org/jira/browse/COLLECTIONS-215
  Project: Commons Collections
 Type: Improvement

 Versions: 3.2
 Reporter: Hendrik Maryns
 Assignee: Stephen Colebourne
  Fix For: 3.3
  Attachments: DefaultedMap.diff

 The javadocs in DefaultedMap is very inconsistent.  It speaks
 of factory
  when a transformer is meant, it speaks of transformer when value is
  meant and that sort of stuff. 
  
  Besides, it would be much cleaner to declare 'value' of type
  Transformer, and create a transformer every time, except when one is
  passed (the instanceof checks are wrong anyway), (I'd rename it to
  transformer, too). 
  
  Even nicer would be to split up the constructor(s) into one
  that takes a
  value, and one that takes a Transformer, no instanceof checks needed,
  much cleaner code, generification is almost trivial  :-) 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



[jira] Created: (IO-84) Many classes are limited to length of stream 2 GB, and behave incorrectly on larger streams

2006-07-14 Thread Evgenii Philippov (JIRA)
Many classes are limited to length of stream  2 GB, and behave incorrectly on 
larger streams
-

 Key: IO-84
 URL: http://issues.apache.org/jira/browse/IO-84
 Project: Commons IO
Type: Bug

Versions: 1.2, Nightly Builds, 1.3
 Environment: All
Reporter: Evgenii Philippov


java int.MAX_VALUE is 2 GB. Classes that handle streams larger than 2 GB will 
behave incorrectly.

For example, see 
http://svn.apache.org/viewvc/jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/IOUtils.java?view=markup
Method: int copy(InputStream input, OutputStream output).

The correct method would be: long copy(InputStream input, OutputStream output).

This issue may affect many classes and routines.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


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



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

2006-07-14 Thread commons-jelly development
To whom it may engage...

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

Project commons-jelly has an issue affecting its community integration.
This issue affects 58 projects,
 and has been outstanding for 13 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- cargo :  Cargo provides a Java API to manipulate Java Containers
- commons-jelly :  Commons Jelly
- commons-jelly-tags-ant :  Commons Jelly
- commons-jelly-tags-antlr :  Commons Jelly
- commons-jelly-tags-avalon :  Commons Jelly
- commons-jelly-tags-bean :  Commons Jelly
- commons-jelly-tags-beanshell :  Commons Jelly
- commons-jelly-tags-betwixt :  Commons Jelly
- commons-jelly-tags-bsf :  Commons Jelly
- commons-jelly-tags-define :  Commons Jelly
- commons-jelly-tags-define-test :  Commons Jelly
- commons-jelly-tags-dynabean :  Commons Jelly
- commons-jelly-tags-email :  Commons Jelly
- commons-jelly-tags-fmt :  Commons Jelly
- commons-jelly-tags-fmt-test :  Commons Jelly
- commons-jelly-tags-html :  Commons Jelly
- commons-jelly-tags-http :  Commons Jelly
- commons-jelly-tags-interaction :  Commons Jelly
- commons-jelly-tags-jetty :  Commons Jelly
- commons-jelly-tags-jface :  Commons Jelly
- commons-jelly-tags-jms :  Commons Jelly
- commons-jelly-tags-jmx :  Commons Jelly
- commons-jelly-tags-jsl :  Commons Jelly
- commons-jelly-tags-jsl-test :  Commons Jelly
- commons-jelly-tags-junit :  Commons Jelly
- commons-jelly-tags-log :  Commons Jelly
- commons-jelly-tags-memory :  Commons Jelly
- commons-jelly-tags-ojb :  Commons Jelly
- commons-jelly-tags-quartz :  Commons Jelly
- commons-jelly-tags-regexp :  Commons Jelly
- commons-jelly-tags-sql :  Commons Jelly
- commons-jelly-tags-swing :  Commons Jelly
- commons-jelly-tags-swt :  Commons Jelly
- commons-jelly-tags-threads :  Commons Jelly
- commons-jelly-tags-util :  Commons Jelly
- commons-jelly-tags-validate :  Commons Jelly
- commons-jelly-tags-velocity :  Commons Jelly
- commons-jelly-tags-xml :  Commons Jelly
- commons-jelly-tags-xml-test :  Commons Jelly
- commons-jelly-tags-xmlunit :  Commons Jelly
- geronimo :  Apache Geronimo, the J2EE server project of the Apache 
Softw...
- htmlunit :  A tool for testing web based applications
- jakarta-cactus-documentation :  Cactus Documentation
- jakarta-cactus-framework-12 :  Cactus Framework (J2EE 1.2)
- jakarta-cactus-framework-13 :  Cactus Framework (J2EE 1.3)
- jakarta-cactus-release-12 :  Unit test framework for server-side java code
- jakarta-cactus-release-13 :  Unit test framework for server-side java code
- jakarta-cactus-sample-jetty-13 :  Cactus Jetty Sample (J2EE 1.3)
- jakarta-cactus-sample-servlet-12 :  Cactus Servlet Sample (J2EE 1.2)
- jakarta-cactus-sample-servlet-13 :  Cactus Servlet Sample (J2EE 1.3)
- jaxme2
- jaxmeapi
- jaxmejs
- jaxmexs
- maven :  Project Management Tools
- maven-bootstrap :  Project Management Tools
- portals-jetspeed-1 :  Enterprise Information Portal
- strutstestcase :  An extension of the standard JUnit TestCase class that 
provi...


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

That said, some information snippets are provided here.

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



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly/gump_work/build_commons-jelly_commons-jelly.html
Work Name: build_commons-jelly_commons-jelly (Type: Build)
Work ended in a state of : Failed
Elapsed: 9 secs
Command Line: maven --offline jar 
[Working Directory: /usr/local/gump/public/workspace/commons-jelly]
CLASSPATH: 

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

2006-07-14 Thread commons-jelly development
To whom it may engage...

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

Project commons-jelly has an issue affecting its community integration.
This issue affects 58 projects,
 and has been outstanding for 13 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- cargo :  Cargo provides a Java API to manipulate Java Containers
- commons-jelly :  Commons Jelly
- commons-jelly-tags-ant :  Commons Jelly
- commons-jelly-tags-antlr :  Commons Jelly
- commons-jelly-tags-avalon :  Commons Jelly
- commons-jelly-tags-bean :  Commons Jelly
- commons-jelly-tags-beanshell :  Commons Jelly
- commons-jelly-tags-betwixt :  Commons Jelly
- commons-jelly-tags-bsf :  Commons Jelly
- commons-jelly-tags-define :  Commons Jelly
- commons-jelly-tags-define-test :  Commons Jelly
- commons-jelly-tags-dynabean :  Commons Jelly
- commons-jelly-tags-email :  Commons Jelly
- commons-jelly-tags-fmt :  Commons Jelly
- commons-jelly-tags-fmt-test :  Commons Jelly
- commons-jelly-tags-html :  Commons Jelly
- commons-jelly-tags-http :  Commons Jelly
- commons-jelly-tags-interaction :  Commons Jelly
- commons-jelly-tags-jetty :  Commons Jelly
- commons-jelly-tags-jface :  Commons Jelly
- commons-jelly-tags-jms :  Commons Jelly
- commons-jelly-tags-jmx :  Commons Jelly
- commons-jelly-tags-jsl :  Commons Jelly
- commons-jelly-tags-jsl-test :  Commons Jelly
- commons-jelly-tags-junit :  Commons Jelly
- commons-jelly-tags-log :  Commons Jelly
- commons-jelly-tags-memory :  Commons Jelly
- commons-jelly-tags-ojb :  Commons Jelly
- commons-jelly-tags-quartz :  Commons Jelly
- commons-jelly-tags-regexp :  Commons Jelly
- commons-jelly-tags-sql :  Commons Jelly
- commons-jelly-tags-swing :  Commons Jelly
- commons-jelly-tags-swt :  Commons Jelly
- commons-jelly-tags-threads :  Commons Jelly
- commons-jelly-tags-util :  Commons Jelly
- commons-jelly-tags-validate :  Commons Jelly
- commons-jelly-tags-velocity :  Commons Jelly
- commons-jelly-tags-xml :  Commons Jelly
- commons-jelly-tags-xml-test :  Commons Jelly
- commons-jelly-tags-xmlunit :  Commons Jelly
- geronimo :  Apache Geronimo, the J2EE server project of the Apache 
Softw...
- htmlunit :  A tool for testing web based applications
- jakarta-cactus-documentation :  Cactus Documentation
- jakarta-cactus-framework-12 :  Cactus Framework (J2EE 1.2)
- jakarta-cactus-framework-13 :  Cactus Framework (J2EE 1.3)
- jakarta-cactus-release-12 :  Unit test framework for server-side java code
- jakarta-cactus-release-13 :  Unit test framework for server-side java code
- jakarta-cactus-sample-jetty-13 :  Cactus Jetty Sample (J2EE 1.3)
- jakarta-cactus-sample-servlet-12 :  Cactus Servlet Sample (J2EE 1.2)
- jakarta-cactus-sample-servlet-13 :  Cactus Servlet Sample (J2EE 1.3)
- jaxme2
- jaxmeapi
- jaxmejs
- jaxmexs
- maven :  Project Management Tools
- maven-bootstrap :  Project Management Tools
- portals-jetspeed-1 :  Enterprise Information Portal
- strutstestcase :  An extension of the standard JUnit TestCase class that 
provi...


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

That said, some information snippets are provided here.

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



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly/gump_work/build_commons-jelly_commons-jelly.html
Work Name: build_commons-jelly_commons-jelly (Type: Build)
Work ended in a state of : Failed
Elapsed: 9 secs
Command Line: maven --offline jar 
[Working Directory: /usr/local/gump/public/workspace/commons-jelly]
CLASSPATH: 

svn commit: r421885 - /jakarta/commons/proper/chain/trunk/project.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 05:04:18 2006
New Revision: 421885

URL: http://svn.apache.org/viewvc?rev=421885view=rev
Log:
Mark servlet, portlet and myfaces dependencies as optional (for the m2 pom) - 
currently this is causing Struts to include unwanted dependencies in its distro.

See http://tinyurl.com/r7awd

Modified:
jakarta/commons/proper/chain/trunk/project.xml

Modified: jakarta/commons/proper/chain/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/chain/trunk/project.xml?rev=421885r1=421884r2=421885view=diff
==
--- jakarta/commons/proper/chain/trunk/project.xml (original)
+++ jakarta/commons/proper/chain/trunk/project.xml Fri Jul 14 05:04:18 2006
@@ -115,7 +115,7 @@
   artifactIdservlet-api/artifactId
   version2.3/version
   properties
-scopeprovided/scope
+optionaltrue/optional
   /properties
 /dependency
 dependency
@@ -123,12 +123,18 @@
   artifactIdportlet-api/artifactId
   version1.0/version
   urlhttp://portals.apache.org/pluto/url
+  properties
+optionaltrue/optional
+  /properties
 /dependency
 dependency
   groupIdmyfaces/groupId
   artifactIdmyfaces-api/artifactId
   version1.1.0/version
   urlhttp://myfaces.apache.org/url
+  properties
+optionaltrue/optional
+  /properties
 /dependency
 dependency
   groupIdjunit/groupId



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



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

2006-07-14 Thread commons-jelly development
To whom it may engage...

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

Project commons-jelly-test has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 13 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-test :  Commons Jelly


Full details are available at:

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

That said, some information snippets are provided here.

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



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-test/gump_work/build_commons-jelly_commons-jelly-test.html
Work Name: build_commons-jelly_commons-jelly-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 9 secs
Command Line: maven --offline jar 
[Working Directory: /usr/local/gump/public/workspace/commons-jelly]
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-14072006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-14072006.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-14072006.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-14072006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-14072006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-14072006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/forehead/forehead-1.0-beta-5.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/public/workspace/jaxen/target/jaxen-14072006.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
[javac] symbol  : class ParseException
[javac] location: class org.apache.commons.jelly.util.CommandLineParser
[javac] public CommandLine parseCommandLineOptions(String[] args) 
throws ParseException {
[javac] 
 ^
[javac] 
/x1/gump/public/workspace/commons-jelly/src/java/org/apache/commons/jelly/impl/DynamicBeanTag.java:210:
 warning: [deprecation] org.apache.commons.collections.BeanMap in 
org.apache.commons.collections has been deprecated
[javac] BeanMap beanMap = new BeanMap(bean);
[javac] ^
[javac] 
/x1/gump/public/workspace/commons-jelly/src/java/org/apache/commons/jelly/impl/DynamicBeanTag.java:210:
 warning: [deprecation] org.apache.commons.collections.BeanMap in 
org.apache.commons.collections has been deprecated
[javac] BeanMap beanMap = new BeanMap(bean);
[javac]   ^
[javac] 
/x1/gump/public/workspace/commons-jelly/src/java/org/apache/commons/jelly/util/CommandLineParser.java:67:
 cannot find symbol
[javac] symbol  : class CommandLine
[javac] location: class org.apache.commons.jelly.util.CommandLineParser
[javac] CommandLine cmdLine = null;
[javac] ^
[javac] 
/x1/gump/public/workspace/commons-jelly/src/java/org/apache/commons/jelly/util/CommandLineParser.java:70:
 cannot find symbol
[javac] symbol  : class ParseException
[javac] location: class org.apache.commons.jelly.util.CommandLineParser
[javac] } catch (ParseException e) {
[javac]  ^
[javac] 

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

2006-07-14 Thread commons-jelly development
To whom it may engage...

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

Project commons-jelly-test has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 13 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-test :  Commons Jelly


Full details are available at:

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

That said, some information snippets are provided here.

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



The following work was performed:
http://vmgump.apache.org/gump/public/commons-jelly/commons-jelly-test/gump_work/build_commons-jelly_commons-jelly-test.html
Work Name: build_commons-jelly_commons-jelly-test (Type: Build)
Work ended in a state of : Failed
Elapsed: 9 secs
Command Line: maven --offline jar 
[Working Directory: /usr/local/gump/public/workspace/commons-jelly]
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-14072006.jar:/usr/local/gump/public/workspace/jakarta-commons/collections/build/commons-collections-14072006.jar:/usr/local/gump/public/workspace/jakarta-commons/discovery/dist/commons-discovery.jar:/usr/local/gump/public/workspace/jakarta-commons/jexl/dist/commons-jexl-14072006.jar:/usr/local/gump/public/workspace/jakarta-commons/lang/dist/commons-lang-14072006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-14072006.jar:/usr/local/gump/public/workspace/jakarta-commons/logging/target/commons-logging-api-14072006.jar:/usr/local/gump/public/workspace/dom4j/build/dom4j.jar:/usr/local/gump/packages/forehead/forehead-1.0-beta-5.jar:/usr/local/gump/public/workspace/jakarta-servletapi-5/jsr154/dist/lib/servlet-api.jar:/usr/local/gump/public/workspace/jakarta-taglibs/dist/standard/lib/jstl.jar:/usr/local/gump/public/workspace/jaxen/target/jaxen-14072006.jar:/usr/local/gump/public/workspace/dist/junit/junit.jar
-
[javac] symbol  : class ParseException
[javac] location: class org.apache.commons.jelly.util.CommandLineParser
[javac] public CommandLine parseCommandLineOptions(String[] args) 
throws ParseException {
[javac] 
 ^
[javac] 
/x1/gump/public/workspace/commons-jelly/src/java/org/apache/commons/jelly/impl/DynamicBeanTag.java:210:
 warning: [deprecation] org.apache.commons.collections.BeanMap in 
org.apache.commons.collections has been deprecated
[javac] BeanMap beanMap = new BeanMap(bean);
[javac] ^
[javac] 
/x1/gump/public/workspace/commons-jelly/src/java/org/apache/commons/jelly/impl/DynamicBeanTag.java:210:
 warning: [deprecation] org.apache.commons.collections.BeanMap in 
org.apache.commons.collections has been deprecated
[javac] BeanMap beanMap = new BeanMap(bean);
[javac]   ^
[javac] 
/x1/gump/public/workspace/commons-jelly/src/java/org/apache/commons/jelly/util/CommandLineParser.java:67:
 cannot find symbol
[javac] symbol  : class CommandLine
[javac] location: class org.apache.commons.jelly.util.CommandLineParser
[javac] CommandLine cmdLine = null;
[javac] ^
[javac] 
/x1/gump/public/workspace/commons-jelly/src/java/org/apache/commons/jelly/util/CommandLineParser.java:70:
 cannot find symbol
[javac] symbol  : class ParseException
[javac] location: class org.apache.commons.jelly.util.CommandLineParser
[javac] } catch (ParseException e) {
[javac]  ^
[javac] 

svn commit: r421889 - /jakarta/commons/proper/validator/trunk/doap_validator.rdf

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 05:23:12 2006
New Revision: 421889

URL: http://svn.apache.org/viewvc?rev=421889view=rev
Log:
Update doap details

Modified:
jakarta/commons/proper/validator/trunk/doap_validator.rdf

Modified: jakarta/commons/proper/validator/trunk/doap_validator.rdf
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/validator/trunk/doap_validator.rdf?rev=421889r1=421888r2=421889view=diff
==
--- jakarta/commons/proper/validator/trunk/doap_validator.rdf (original)
+++ jakarta/commons/proper/validator/trunk/doap_validator.rdf Fri Jul 14 
05:23:12 2006
@@ -1,33 +1,50 @@
-?xml version=1.0?
-rdf:RDF xmlns=http://usefulinc.com/ns/doap#; 
xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#; 
xmlns:asfext=http://projects.apache.org/ns/asfext#; 
xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#; 
xmlns:doap=http://usefulinc.com/ns/doap#; xml:lang=en
-  Project rdf:about=http://jakarta.apache.org/commons/validator/;
-nameApache Jakarta Commons Validator/name
-homepage rdf:resource=http://jakarta.apache.org/commons/validator//
-programming-languageJava/programming-language
-category rdf:resource=http://projects.apache.org/category/library/
-license rdf:resource=http://usefulinc.com/doap/licenses/asl20/
-bug-database 
rdf:resource=http://issues.apache.org/bugzilla/buglist.cgi?product=Commonsamp;component=validator/
-download-page 
rdf:resource=http://jakarta.apache.org/site/downloads/downloads_commons-validator.cgi/
-asfext:pmc rdf:resource=http://jakarta.apache.org//
-shortdesc xml:lang=enCommons Validator/shortdesc
-description xml:lang=en
-Commons Validator provides the building blocks for both client side 
validation
-and server side data validation. It may be used standalone or with a 
framework like
-Struts.
-  /description
-repository
-  SVNRepository
-browse rdf:resource=http://svn.apache.org/viewcvs.cgi/
-location 
rdf:resource=http://svn.apache.org/repos/asf/jakarta/commons/proper/validator/
-  /SVNRepository
-/repository
-release
-  revision
-namecommons-validator/name
-created2005-11-15/created
-version1.2.0/version
-  /revision
-/release
-mailing-list 
rdf:resource=http://jakarta.apache.org/site/mail2.html#Commons/
-  /Project
-/rdf:RDF
+?xml version=1.0?
+rdf:RDF xmlns=http://usefulinc.com/ns/doap#; 
xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#; 
xmlns:asfext=http://projects.apache.org/ns/asfext#; 
xmlns:rdfs=http://www.w3.org/2000/01/rdf-schema#; 
xmlns:doap=http://usefulinc.com/ns/doap#; xml:lang=en
+  Project rdf:about=http://jakarta.apache.org/commons/validator/;
+nameApache Jakarta Commons Validator/name
+shortnameCommons Validator/shortname
+homepage rdf:resource=http://jakarta.apache.org/commons/validator//
+wiki rdf:resource=http://wiki.apache.org/jakarta-commons/Validator/
+programming-languageJava/programming-language
+category rdf:resource=http://projects.apache.org/category/library/
+license rdf:resource=http://usefulinc.com/doap/licenses/asl20/
+bug-database 
rdf:resource=http://jakarta.apache.org/commons/validator/issue-tracking.html/
+download-page 
rdf:resource=http://jakarta.apache.org/commons/validator/downloads.html/
+asfext:pmc rdf:resource=http://jakarta.apache.org//
+shortdesc xml:lang=enValidation Framework and Routines/shortdesc
+description xml:lang=en
+Commons Validator provides the building blocks for both client side 
validation
+and server side data validation. It may be used standalone or with a 
framework like
+Struts.
+  /description
+repository
+  SVNRepository
+browse 
rdf:resource=http://svn.apache.org/viewvc/jakarta/commons/proper/validator//
+location 
rdf:resource=http://svn.apache.org/repos/asf/jakarta/commons/proper/validator/
+  /SVNRepository
+/repository
+release
+  revision
+nameValidator/name
+created2004-08-25/created
+version1.1.3/version
+  /revision
+  revision
+nameValidator/name
+created2004-11-12/created
+version1.1.4/version
+  /revision
+  revision
+nameValidator/name
+created2005-11-15/created
+version1.2.0/version
+  /revision
+  revision
+nameValidator/name
+created2006-03-24/created
+version1.3.0/version
+  /revision
+/release
+mailing-list 
rdf:resource=http://jakarta.apache.org/site/mail2.html#Commons/
+  /Project
+/rdf:RDF



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



[jira] Commented: (VALIDATOR-196) GenericValidator#matchRegexp

2006-07-14 Thread Gabriel Belingueres (JIRA)
[ 
http://issues.apache.org/jira/browse/VALIDATOR-196?page=comments#action_12421100
 ] 

Gabriel Belingueres commented on VALIDATOR-196:
---

I think it is not a bug.

ORO Regexp require you to put a beginning and trailing slash to the expression:

GenericValidator.matchRegexp(as*^%dfasd1314213,/[a-zA-Z0-9]*/)

I think the ORO dependency will be removed to Java 1.4 own regexp 
implementation instead, but I don't know when will be happening.

Gabriel

 GenericValidator#matchRegexp
 

 Key: VALIDATOR-196
 URL: http://issues.apache.org/jira/browse/VALIDATOR-196
 Project: Commons Validator
  Issue Type: Bug
Affects Versions: 1.3.1
 Environment: Windows 2000 ; J2SDK 1.4.2 ; Eclipse 3.1.2
Reporter: lutianxiang

 GenericValidator.matchRegexp(as*^%dfasd1314213,[a-zA-Z0-9]*);
 User this method cannot get FALSE value
 In this method Source like this...
 .
 return matcher.match(/ + regexp + /, value);
 should be 
 ..
 return matcher.match(// + regexp + //, value);

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] Commented: (DBCP-3) [dbcp] PoolableConnection.close() won't allow multiple close

2006-07-14 Thread James Ring (JIRA)
[ http://issues.apache.org/jira/browse/DBCP-3?page=comments#action_12421104 
] 

James Ring commented on DBCP-3:
---

Is there anything wrong with Adam Jenkin's patch that was posted nearly 3 years 
ago now?

 [dbcp] PoolableConnection.close() won't allow multiple close
 

 Key: DBCP-3
 URL: http://issues.apache.org/jira/browse/DBCP-3
 Project: Commons Dbcp
  Issue Type: Bug
Affects Versions: Nightly Builds
 Environment: Operating System: All
 Platform: All
Reporter: Adam Jenkins
 Fix For: 1.3


 Sun's javadoc for java.sql.Connection.close() specifies that calling close on 
 an
 already closed Connection is a no-op.  However, PoolableConnection.close() (v
 1.10) throws a SQLException if close() is called on a closed Connection. 
 PoolableConnection.close() should just return if the Connection is already
 closed.  Here is a patch:
 To demonstrate the bug, just obtain an open PoolableConnection and call 
 close()
 on it twice; the second call will produce a SQLException.  According to Sun's
 spec, the second close() should just be a no-op.  The current behaviour is
 preferable to the old behaviour where it returned the Connection to the pool
 twice, but it's still not according to the spec.
 Here's a patch:
 *** PoolableConnection.java.orig2003-09-15 16:07:53.0 -0400
 --- PoolableConnection.java 2003-09-15 16:08:11.0 -0400
 ***
 *** 108,114 
*/
public synchronized void close() throws SQLException {
   if(isClosed()) {
 ! throw new SQLException(Already closed.);
   } else {
   try {
   _pool.returnObject(this);
 --- 108,114 
*/
public synchronized void close() throws SQLException {
   if(isClosed()) {
 ! return;
   } else {
   try {
   _pool.returnObject(this);

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] Commented: (VALIDATOR-196) GenericValidator#matchRegexp

2006-07-14 Thread Niall Pemberton (JIRA)
[ 
http://issues.apache.org/jira/browse/VALIDATOR-196?page=comments#action_12421107
 ] 

Niall Pemberton commented on VALIDATOR-196:
---

I don't think its the / characters you're missing - you need to put the 
start/end line boundary matchers (that is ^ and $) for ORO - otherwise it 
validates that any of those characters are present rather than only those 
characters are present. Try the following:

GenericValidator.matchRegexp(as*^%dfasd1314213,^[a-zA-Z0-9]*$); 

As Gabriel said were planning to make the minimum dependency JDK 1.4 and use 
its built in regexp support and remove the ORO dependency. I had a look at 
doing this recently - it would be pretty straight forward except for one place 
in the EmailValidator that uses some perl specific syntax to remove comments:

http://jakarta.apache.org/commons/validator/xref/org/apache/commons/validator/EmailValidator.html#244

First I need to get my head round what exactly that is doing (I don't know 
perl) before working out how to replace it.

 GenericValidator#matchRegexp
 

 Key: VALIDATOR-196
 URL: http://issues.apache.org/jira/browse/VALIDATOR-196
 Project: Commons Validator
  Issue Type: Bug
Affects Versions: 1.3.1
 Environment: Windows 2000 ; J2SDK 1.4.2 ; Eclipse 3.1.2
Reporter: lutianxiang

 GenericValidator.matchRegexp(as*^%dfasd1314213,[a-zA-Z0-9]*);
 User this method cannot get FALSE value
 In this method Source like this...
 .
 return matcher.match(/ + regexp + /, value);
 should be 
 ..
 return matcher.match(// + regexp + //, value);

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] Created: (MODELER-19) Improve modeler site/build

2006-07-14 Thread Niall Pemberton (JIRA)
Improve modeler site/build
--

 Key: MODELER-19
 URL: http://issues.apache.org/jira/browse/MODELER-19
 Project: Commons Modeler
  Issue Type: Bug
Affects Versions: 1.1.1
Reporter: Niall Pemberton
Priority: Minor


Attaching a patch to improve the modeler maven site/build:

1) Include build.properties.default in the source distro
2) Have the source distro unpack to a different directory
3) Include NOTICE.txt in the jar file
4) Add custom Source Repository page
5) Add custom Issue Tracking page
6)  Add Building page
7) Navigation improvements

I can commit these if you like.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] Updated: (MODELER-19) Improve modeler site/build

2006-07-14 Thread Niall Pemberton (JIRA)
 [ http://issues.apache.org/jira/browse/MODELER-19?page=all ]

Niall Pemberton updated MODELER-19:
---

Attachment: modeler-site-build.txt

 Improve modeler site/build
 --

 Key: MODELER-19
 URL: http://issues.apache.org/jira/browse/MODELER-19
 Project: Commons Modeler
  Issue Type: Bug
Affects Versions: 1.1.1
Reporter: Niall Pemberton
Priority: Minor
 Attachments: modeler-site-build.txt


 Attaching a patch to improve the modeler maven site/build:
 1) Include build.properties.default in the source distro
 2) Have the source distro unpack to a different directory
 3) Include NOTICE.txt in the jar file
 4) Add custom Source Repository page
 5) Add custom Issue Tracking page
 6)  Add Building page
 7) Navigation improvements
 I can commit these if you like.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] Commented: (MODELER-19) Improve modeler site/build

2006-07-14 Thread Henri Yandell (JIRA)
[ 
http://issues.apache.org/jira/browse/MODELER-19?page=comments#action_12421130 ] 

Henri Yandell commented on MODELER-19:
--

Jump right in.

 Improve modeler site/build
 --

 Key: MODELER-19
 URL: http://issues.apache.org/jira/browse/MODELER-19
 Project: Commons Modeler
  Issue Type: Bug
Affects Versions: 1.1.1
Reporter: Niall Pemberton
Priority: Minor
 Attachments: modeler-site-build.txt


 Attaching a patch to improve the modeler maven site/build:
 1) Include build.properties.default in the source distro
 2) Have the source distro unpack to a different directory
 3) Include NOTICE.txt in the jar file
 4) Add custom Source Repository page
 5) Add custom Issue Tracking page
 6)  Add Building page
 7) Navigation improvements
 I can commit these if you like.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



svn commit: r421927 - in /jakarta/commons/proper/modeler/trunk: maven.xml project.properties project.xml xdocs/building.xml xdocs/cvs-usage.xml xdocs/issue-tracking.xml xdocs/navigation.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 08:39:31 2006
New Revision: 421927

URL: http://svn.apache.org/viewvc?rev=421927view=rev
Log:
MODELER-19 - improve maven site/build

Added:
jakarta/commons/proper/modeler/trunk/xdocs/building.xml   (with props)
jakarta/commons/proper/modeler/trunk/xdocs/cvs-usage.xml   (with props)
jakarta/commons/proper/modeler/trunk/xdocs/issue-tracking.xml   (with props)
Modified:
jakarta/commons/proper/modeler/trunk/maven.xml
jakarta/commons/proper/modeler/trunk/project.properties
jakarta/commons/proper/modeler/trunk/project.xml
jakarta/commons/proper/modeler/trunk/xdocs/navigation.xml

Modified: jakarta/commons/proper/modeler/trunk/maven.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/maven.xml?rev=421927r1=421926r2=421927view=diff
==
--- jakarta/commons/proper/modeler/trunk/maven.xml (original)
+++ jakarta/commons/proper/modeler/trunk/maven.xml Fri Jul 14 08:39:31 2006
@@ -39,6 +39,7 @@
   fileset file='${basedir}/NOTICE.txt'/
   fileset file=${basedir}/RELEASE-NOTES.txt/
   fileset file=${basedir}/build.properties.sample/
+  fileset file=${basedir}/build.properties.default/
   fileset file=${basedir}/checkstyle.xml/
   fileset file=${basedir}/license-header.txt/
 /copy

Modified: jakarta/commons/proper/modeler/trunk/project.properties
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/project.properties?rev=421927r1=421926r2=421927view=diff
==
--- jakarta/commons/proper/modeler/trunk/project.properties (original)
+++ jakarta/commons/proper/modeler/trunk/project.properties Fri Jul 14 08:39:31 
2006
@@ -45,6 +45,9 @@
 maven.junit.sysproperties=org.xml.sax.driver
 org.xml.sax.driver=org.apache.xerces.parsers.SAXParser
 
+# Make the source distro unzip to a different directory
+maven.dist.src.assembly.dir=${maven.dist.assembly.dir}/src/${maven.final.name}-src
+
 clover.excludes=**/Test*.java
 maven.compile.target=1.4
 maven.compile.source=1.4

Modified: jakarta/commons/proper/modeler/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/project.xml?rev=421927r1=421926r2=421927view=diff
==
--- jakarta/commons/proper/modeler/trunk/project.xml (original)
+++ jakarta/commons/proper/modeler/trunk/project.xml Fri Jul 14 08:39:31 2006
@@ -200,6 +200,15 @@
  /resource
   /resources
 /unitTest
+resources
+  resource
+directory./directory
+targetPathMETA-INF/targetPath
+includes
+  includeNOTICE.txt/include
+/includes
+  /resource
+/resources
   /build
   
   reports

Added: jakarta/commons/proper/modeler/trunk/xdocs/building.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/xdocs/building.xml?rev=421927view=auto
==
--- jakarta/commons/proper/modeler/trunk/xdocs/building.xml (added)
+++ jakarta/commons/proper/modeler/trunk/xdocs/building.xml Fri Jul 14 08:39:31 
2006
@@ -0,0 +1,61 @@
+?xml version=1.0?
+!--
+Copyright 2006 The Apache Software Foundation.
+ 
+Licensed under the Apache License, Version 2.0 (the License);
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an AS IS BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+--
+document
+ properties
+  titleBuilding/title
+  author email=commons-dev@jakarta.apache.orgCommons Documentation 
Team/author
+ /properties
+body
+!-- == --
+section name=Overview
+p
+  Commons Modeler uses a href=http://maven.apache.org;Maven/a or
+  a href=http://ant.apache.org;Ant/a as a build system.
+/p
+/section
+!-- == --
+section name=Maven Goals
+  p
+To build a jar file, change into Modeler's root directory and run 
+strongcodemaven jar/code/strong.
+The result will be in the target subdirectory.
+  /p
+  p
+To build the Javadocs, run strongcodemaven javadoc/code/strong.
+The result will be in target/docs/apidocs.
+  /p
+  p
+To build the full website, run strongcodemaven site/code/strong.
+
+The result will be in target/docs.
+  /p
+  p
+   Further details can be found in the
+   a href=http://jakarta.apache.org/commons/building.html;commons build 
instructions/a.
+  /p
+/section
+!-- == --

[jira] Resolved: (MODELER-19) Improve modeler site/build

2006-07-14 Thread Niall Pemberton (JIRA)
 [ http://issues.apache.org/jira/browse/MODELER-19?page=all ]

Niall Pemberton resolved MODELER-19.


Fix Version/s: 1.1.1
   Resolution: Fixed
 Assignee: Niall Pemberton

 Improve modeler site/build
 --

 Key: MODELER-19
 URL: http://issues.apache.org/jira/browse/MODELER-19
 Project: Commons Modeler
  Issue Type: Bug
Affects Versions: 1.1.1
Reporter: Niall Pemberton
 Assigned To: Niall Pemberton
Priority: Minor
 Fix For: 1.1.1

 Attachments: modeler-site-build.txt


 Attaching a patch to improve the modeler maven site/build:
 1) Include build.properties.default in the source distro
 2) Have the source distro unpack to a different directory
 3) Include NOTICE.txt in the jar file
 4) Add custom Source Repository page
 5) Add custom Issue Tracking page
 6)  Add Building page
 7) Navigation improvements
 I can commit these if you like.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



svn commit: r421934 - in /jakarta/commons/proper/transaction/trunk: maven.xml project.properties project.xml xdocs/cvs-usage.xml xdocs/issue-tracking.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 09:12:26 2006
New Revision: 421934

URL: http://svn.apache.org/viewvc?rev=421934view=rev
Log:
Improve maven site/build:

1) Copy NOTICE.txt and RELEASE-NOTES.txt into binary distro
2) Copy NOTICE.txt, RELEASE-NOTES.txt and build.properties.sample into source 
distro
3) Copy xdocs and example directories into source distro
4) Generate checksums for jar, source and binary files
5) Change the source distro to unpack to a different directory
6) Add custom Source Repository page
7) Add custom Issue Tracking page
8) De-tab project.xml
9) Include NOTICE.txt in jar file
10) Mark optional/provided dependencies for m2 pom
11) Set JDK version to 1.3 - ? is this correct ?

Added:
jakarta/commons/proper/transaction/trunk/maven.xml   (with props)
jakarta/commons/proper/transaction/trunk/xdocs/cvs-usage.xml   (with props)
jakarta/commons/proper/transaction/trunk/xdocs/issue-tracking.xml   (with 
props)
Modified:
jakarta/commons/proper/transaction/trunk/project.properties
jakarta/commons/proper/transaction/trunk/project.xml

Added: jakarta/commons/proper/transaction/trunk/maven.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/transaction/trunk/maven.xml?rev=421934view=auto
==
--- jakarta/commons/proper/transaction/trunk/maven.xml (added)
+++ jakarta/commons/proper/transaction/trunk/maven.xml Fri Jul 14 09:12:26 2006
@@ -0,0 +1,88 @@
+!--
+   Copyright 2006 The Apache Software Foundation
+
+   Licensed under the Apache License, Version 2.0 (the License);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an AS IS BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+--
+project default=java:jar
+  xmlns:ant=jelly:ant
+  xmlns:j=jelly:core
+
+!-- == --
+!-- Copy into the binary distribution  --
+!-- == --
+postGoal name=dist:prepare-bin-filesystem
+
+copy todir=${maven.dist.bin.assembly.dir}
+fileset file='${basedir}/NOTICE.txt'/
+fileset file=${basedir}/RELEASE-NOTES.txt/
+/copy
+
+/postGoal
+
+!-- == --
+!-- Copy into the source distribution  --
+!-- == --
+postGoal name=dist:prepare-src-filesystem
+
+!-- Copy files --
+copy todir=${maven.dist.src.assembly.dir}
+fileset file='${basedir}/NOTICE.txt'/
+fileset file=${basedir}/RELEASE-NOTES.txt/
+fileset file=${basedir}/build.properties.sample/
+/copy
+
+!-- Copy xdoc directory --
+copy todir=${maven.dist.src.assembly.dir}/xdocs
+fileset dir=xdocs/
+/copy
+
+!-- Copy example directory --
+copy todir=${maven.dist.src.assembly.dir}/example
+fileset dir=example/
+/copy
+
+/postGoal
+
+!-- == --
+!-- Create MD5 Check Sums  --
+!-- == --
+postGoal name=dist
+
+!-- create checksum for jar --
+ant:checksum file=${maven.build.dir}/${maven.final.name}.jar 
property=jar.md5/
+ant:echo message=${jar.md5} *${maven.final.name}.jar 
+  file=${maven.build.dir}/${maven.final.name}.jar.md5 /
+
+!-- create checksum for binary zip --
+ant:checksum file=${maven.dist.dir}/${maven.final.name}.zip 
property=zip.md5/
+ant:echo message=${zip.md5} *${maven.final.name}.zip 
+  file=${maven.dist.dir}/${maven.final.name}.zip.md5 /
+
+!-- create checksum for binary tar.gz --
+ant:checksum file=${maven.dist.dir}/${maven.final.name}.tar.gz 
property=tar.gz.md5/
+ant:echo message=${tar.gz.md5} *${maven.final.name}.tar.gz 
+  file=${maven.dist.dir}/${maven.final.name}.tar.gz.md5 /
+
+!-- create checksum for source zip --
+ant:checksum file=${maven.dist.dir}/${maven.final.name}-src.zip 
property=src.zip.md5/
+ant:echo message=${src.zip.md5} *${maven.final.name}-src.zip 
+  file=${maven.dist.dir}/${maven.final.name}-src.zip.md5 /
+
+!-- create checksum for source tar.gz --
+ant:checksum 

svn commit: r421952 - /jakarta/commons/proper/scxml/trunk/xdocs/issue-tracking.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 10:14:29 2006
New Revision: 421952

URL: http://svn.apache.org/viewvc?rev=421952view=rev
Log:
Make the submit a bug/enhancement links specific to SCXML

Modified:
jakarta/commons/proper/scxml/trunk/xdocs/issue-tracking.xml

Modified: jakarta/commons/proper/scxml/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/scxml/trunk/xdocs/issue-tracking.xml?rev=421952r1=421951r2=421952view=diff
==
--- jakarta/commons/proper/scxml/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/scxml/trunk/xdocs/issue-tracking.xml Fri Jul 14 
10:14:29 2006
@@ -45,8 +45,9 @@
   If you find your issue listed then please add a comment with your 
details./li
   lia 
href=http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/;Search the 
mailing list archive/a.
   You may find your issue or idea has already been discussed./li
-  lia 
href=http://issues.apache.org/jira/secure/CreateIssue!default.jspa;Submit a 
bug report or enhancement request/a.
-  /li
+  liDecide if your issue is a bug or an enhancement./li
+  liSubmit either a a 
href=http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310492amp;issuetype=1amp;priority=4amp;assignee=-1;bug
 report/a
+  or a 
href=http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310492amp;issuetype=4amp;priority=4amp;assignee=-1;enhancement
 request/a./li
   /ol
 /p
 p



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



[modeler] Cutting a release for Commons Modeler

2006-07-14 Thread Davanum Srinivas

Team,

I'd like to help cut a release of 1.2 of Commons-Modeler as requested
by the Geronimo team [1]. Here's some of the prep work that went into
updating the maven dist target [2].

An RC1 is available for review at:
http://people.apache.org/~dims/commons-modeler/

Thanks,
dims

[1] http://www.mail-archive.com/commons-dev@jakarta.apache.org/msg80641.html
[2] 
http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/200607.mbox/[EMAIL 
PROTECTED]

--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

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



svn commit: r421982 - in /jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool: TestKeyedObjectPoolFactory.java TestObjectPoolFactory.java

2006-07-14 Thread sandymac
Author: sandymac
Date: Fri Jul 14 11:54:14 2006
New Revision: 421982

URL: http://svn.apache.org/viewvc?rev=421982view=rev
Log:
Fixes POOL-82 by allowing Test[Keyed]ObjectPoolFactory be instantiated and run.

Modified:

jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java

jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestObjectPoolFactory.java

Modified: 
jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java?rev=421982r1=421981r2=421982view=diff
==
--- 
jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java
 (original)
+++ 
jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java
 Fri Jul 14 11:54:14 2006
@@ -24,8 +24,8 @@
  * @author Sandy McArthur
  * @version $Revision$ $Date$
  */
-public abstract class TestKeyedObjectPoolFactory extends TestCase {
-protected TestKeyedObjectPoolFactory(final String name) {
+public class TestKeyedObjectPoolFactory extends TestCase {
+public TestKeyedObjectPoolFactory(final String name) {
 super(name);
 }
 
@@ -39,7 +39,9 @@
 /**
  * @throws UnsupportedOperationException when this is unsupported by this 
KeyedPoolableObjectFactory type.
  */
-protected abstract KeyedObjectPoolFactory 
makeFactory(KeyedPoolableObjectFactory objectFactory) throws 
UnsupportedOperationException;
+protected KeyedObjectPoolFactory makeFactory(KeyedPoolableObjectFactory 
objectFactory) throws UnsupportedOperationException{
+throw new UnsupportedOperationException(Subclass needs to override 
makeFactory method.);
+}
 
 protected static KeyedPoolableObjectFactory createObjectFactory() {
 return PoolUtils.adapt(new MethodCallPoolableObjectFactory());

Modified: 
jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestObjectPoolFactory.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestObjectPoolFactory.java?rev=421982r1=421981r2=421982view=diff
==
--- 
jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestObjectPoolFactory.java
 (original)
+++ 
jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestObjectPoolFactory.java
 Fri Jul 14 11:54:14 2006
@@ -24,8 +24,8 @@
  * @author Sandy McArthur
  * @version $Revision$ $Date$
  */
-public abstract class TestObjectPoolFactory extends TestCase {
-protected TestObjectPoolFactory(final String name) {
+public class TestObjectPoolFactory extends TestCase {
+public TestObjectPoolFactory(final String name) {
 super(name);
 }
 
@@ -39,7 +39,9 @@
 /**
  * @throws UnsupportedOperationException when this is unsupported by this 
PoolableObjectFactory type.
  */
-protected abstract ObjectPoolFactory makeFactory(PoolableObjectFactory 
objectFactory) throws UnsupportedOperationException;
+protected ObjectPoolFactory makeFactory(PoolableObjectFactory 
objectFactory) throws UnsupportedOperationException {
+throw new UnsupportedOperationException(Subclass needs to override 
makeFactory method.);
+}
 
 public void testCreatePool() throws Exception {
 final ObjectPoolFactory factory;



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



svn commit: r421983 - /jakarta/commons/proper/modeler/trunk/project.xml

2006-07-14 Thread dims
Author: dims
Date: Fri Jul 14 11:55:24 2006
New Revision: 421983

URL: http://svn.apache.org/viewvc?rev=421983view=rev
Log:
SNAPSHOT to RC1

Modified:
jakarta/commons/proper/modeler/trunk/project.xml

Modified: jakarta/commons/proper/modeler/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/project.xml?rev=421983r1=421982r2=421983view=diff
==
--- jakarta/commons/proper/modeler/trunk/project.xml (original)
+++ jakarta/commons/proper/modeler/trunk/project.xml Fri Jul 14 11:55:24 2006
@@ -22,7 +22,7 @@
   nameCommons Modeler/name
   groupIdcommons-modeler/groupId
   artifactIdcommons-modeler/artifactId
-  currentVersion1.2-SNAPSHOT/currentVersion
+  currentVersion1.2-RC1/currentVersion
   inceptionYear2002/inceptionYear
   shortDescriptionCommons Modeler/shortDescription
   description



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



[jira] Closed: (POOL-82) 2 tests failing on JDK 1.4/1.6 on Linux

2006-07-14 Thread Sandy McArthur (JIRA)
 [ http://issues.apache.org/jira/browse/POOL-82?page=all ]

Sandy McArthur closed POOL-82.
--

Fix Version/s: Nightly Builds
   Resolution: Fixed

Commited changes so the unit tests don't fail under maven.

 2 tests failing on JDK 1.4/1.6 on Linux
 ---

 Key: POOL-82
 URL: http://issues.apache.org/jira/browse/POOL-82
 Project: Commons Pool
  Issue Type: Bug
 Environment: JDK 1.6 and 1.4.2 on Debian Linux
Reporter: Henri Yandell
 Assigned To: Sandy McArthur
 Fix For: Nightly Builds


 Might already be known, but figured I'd report it just in case.
 Testsuite: org.apache.commons.pool.TestObjectPoolFactory
 Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 0.724 sec
 Testcase: warning(junit.framework.TestSuite$1): FAILED
 Class org.apache.commons.pool.TestObjectPoolFactory has no public constructor 
 TestCase(String name) or TestCase()
 junit.framework.AssertionFailedError: Class 
 org.apache.commons.pool.TestObjectPoolFactory has no public constructor 
 TestCase(String name) or TestCase()
 and
 Testsuite: org.apache.commons.pool.TestKeyedObjectPoolFactory
 Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 0.727 sec
 Testcase: warning(junit.framework.TestSuite$1): FAILED
 Class org.apache.commons.pool.TestKeyedObjectPoolFactory has no public 
 constructor TestCase(String name) or TestCase()
 junit.framework.AssertionFailedError: Class 
 org.apache.commons.pool.TestKeyedObjectPoolFactory has no public constructor 
 TestCase(String name) or TestCase()

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



svn commit: r421985 - /jakarta/commons/proper/modeler/tags/MODELER_1_1_RC1/

2006-07-14 Thread dims
Author: dims
Date: Fri Jul 14 11:58:31 2006
New Revision: 421985

URL: http://svn.apache.org/viewvc?rev=421985view=rev
Log:
cutting a tag for RC1


Added:
jakarta/commons/proper/modeler/tags/MODELER_1_1_RC1/
  - copied from r421984, jakarta/commons/proper/modeler/trunk/


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



svn commit: r421986 - in /jakarta/commons/proper/modeler/tags: MODELER_1_1_RC1/ MODELER_1_2_RC1/

2006-07-14 Thread dims
Author: dims
Date: Fri Jul 14 11:59:34 2006
New Revision: 421986

URL: http://svn.apache.org/viewvc?rev=421986view=rev
Log:
sorry!


Added:
jakarta/commons/proper/modeler/tags/MODELER_1_2_RC1/
  - copied from r421985, 
jakarta/commons/proper/modeler/tags/MODELER_1_1_RC1/
Removed:
jakarta/commons/proper/modeler/tags/MODELER_1_1_RC1/


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



Re: [modeler] Cutting a release for Commons Modeler

2006-07-14 Thread Davanum Srinivas

I've cut a svn tag as well:
http://svn.apache.org/repos/asf/jakarta/commons/proper/modeler/tags/MODELER_1_2_RC1/

thanks,
dims

On 7/14/06, Davanum Srinivas [EMAIL PROTECTED] wrote:

Team,

I'd like to help cut a release of 1.2 of Commons-Modeler as requested
by the Geronimo team [1]. Here's some of the prep work that went into
updating the maven dist target [2].

An RC1 is available for review at:
http://people.apache.org/~dims/commons-modeler/

Thanks,
dims

[1] http://www.mail-archive.com/commons-dev@jakarta.apache.org/msg80641.html
[2] 
http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/200607.mbox/[EMAIL 
PROTECTED]

--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)




--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

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



Re: [jira] Closed: (POOL-82) 2 tests failing on JDK 1.4/1.6 on Linux

2006-07-14 Thread Henri Yandell

Thanks Sandy :)

Sorry for being a pain,

Hen

On 7/14/06, Sandy McArthur (JIRA) [EMAIL PROTECTED] wrote:

 [ http://issues.apache.org/jira/browse/POOL-82?page=all ]

Sandy McArthur closed POOL-82.
--

Fix Version/s: Nightly Builds
   Resolution: Fixed

Commited changes so the unit tests don't fail under maven.

 2 tests failing on JDK 1.4/1.6 on Linux
 ---

 Key: POOL-82
 URL: http://issues.apache.org/jira/browse/POOL-82
 Project: Commons Pool
  Issue Type: Bug
 Environment: JDK 1.6 and 1.4.2 on Debian Linux
Reporter: Henri Yandell
 Assigned To: Sandy McArthur
 Fix For: Nightly Builds


 Might already be known, but figured I'd report it just in case.
 Testsuite: org.apache.commons.pool.TestObjectPoolFactory
 Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 0.724 sec
 Testcase: warning(junit.framework.TestSuite$1): FAILED
 Class org.apache.commons.pool.TestObjectPoolFactory has no public constructor 
TestCase(String name) or TestCase()
 junit.framework.AssertionFailedError: Class 
org.apache.commons.pool.TestObjectPoolFactory has no public constructor 
TestCase(String name) or TestCase()
 and
 Testsuite: org.apache.commons.pool.TestKeyedObjectPoolFactory
 Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 0.727 sec
 Testcase: warning(junit.framework.TestSuite$1): FAILED
 Class org.apache.commons.pool.TestKeyedObjectPoolFactory has no public 
constructor TestCase(String name) or TestCase()
 junit.framework.AssertionFailedError: Class 
org.apache.commons.pool.TestKeyedObjectPoolFactory has no public constructor 
TestCase(String name) or TestCase()

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



-
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: [modeler] Cutting a release for Commons Modeler

2006-07-14 Thread Dennis Lundberg

Davanum Srinivas wrote:

Team,

I'd like to help cut a release of 1.2 of Commons-Modeler as requested
by the Geronimo team [1]. Here's some of the prep work that went into
updating the maven dist target [2].

An RC1 is available for review at:
http://people.apache.org/~dims/commons-modeler/

Thanks,
dims

[1] 
http://www.mail-archive.com/commons-dev@jakarta.apache.org/msg80641.html
[2] 
http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/200607.mbox/[EMAIL PROTECTED] 





I've built the site locally and clicked through it. I found a couple of 
small things that should be changed. They are site only changes. Should 
I commit them?


Another thing that needs to be done is to add the 1.2 release in 
xdocs/downloads.xml, but that should wait until just before the release 
so we get the correct release date.


Also I ran into trouble when running maven dist with 
maven-tasklist-plugin version 2.4 installed. Downgrading to version 2.3 
solved it. I will investigate this further.


--
Dennis Lundberg

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



Re: [modeler] Cutting a release for Commons Modeler

2006-07-14 Thread Davanum Srinivas

Sure Dennis. Please go ahead and update whatever you think needs to be.

thanks,
dims

On 7/14/06, Dennis Lundberg [EMAIL PROTECTED] wrote:

Davanum Srinivas wrote:
 Team,

 I'd like to help cut a release of 1.2 of Commons-Modeler as requested
 by the Geronimo team [1]. Here's some of the prep work that went into
 updating the maven dist target [2].

 An RC1 is available for review at:
 http://people.apache.org/~dims/commons-modeler/

 Thanks,
 dims

 [1]
 http://www.mail-archive.com/commons-dev@jakarta.apache.org/msg80641.html
 [2]
 
http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/200607.mbox/[EMAIL 
PROTECTED]



I've built the site locally and clicked through it. I found a couple of
small things that should be changed. They are site only changes. Should
I commit them?

Another thing that needs to be done is to add the 1.2 release in
xdocs/downloads.xml, but that should wait until just before the release
so we get the correct release date.

Also I ran into trouble when running maven dist with
maven-tasklist-plugin version 2.4 installed. Downgrading to version 2.3
solved it. I will investigate this further.

--
Dennis Lundberg

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





--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

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



Re: [modeler] Cutting a release for Commons Modeler

2006-07-14 Thread Niall Pemberton

The RC looks good to me.

Niall

On 7/14/06, Davanum Srinivas [EMAIL PROTECTED] wrote:

Team,

I'd like to help cut a release of 1.2 of Commons-Modeler as requested
by the Geronimo team [1]. Here's some of the prep work that went into
updating the maven dist target [2].

An RC1 is available for review at:
http://people.apache.org/~dims/commons-modeler/

Thanks,
dims

[1] http://www.mail-archive.com/commons-dev@jakarta.apache.org/msg80641.html
[2] 
http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/200607.mbox/[EMAIL 
PROTECTED]

--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

-
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: [transaction] Release plan?

2006-07-14 Thread Oliver Zeigermann

2006/7/14, Joerg Heinicke [EMAIL PROTECTED]:

Oliver Zeigermann oliver.zeigermann at gmail.com writes:

 Excatly! That's just what I was proposing in my last email!


 2006/7/13, Henri Yandell flamefew at gmail.com:
  Is the aim to have a 1.2 release of transaction at some point?


Yes, I would like to see a 1.2 release as well. There are enough fixes and
enhancements that qualify for a new release.

What's the actual release process (code freeze, etc.)?


Feature freeze for 1.2 is exactly now ;)

More info can be found here:

http://jakarta.apache.org/commons/releases/release.html
http://jakarta.apache.org/commons/releases/prepare.html

I'd go for a release candidate right now, skipping betas. Opinions?


RELEASE-NOTES.txt talks about 1.1.1 while we now will probably name it 1.2 btw.


Oh, right. Will fix this.

Oliver

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



Re: [transaction] Release plan?

2006-07-14 Thread Oliver Zeigermann

2006/7/14, Henri Yandell [EMAIL PROTECTED]:

On 7/13/06, Oliver Zeigermann [EMAIL PROTECTED] wrote:
 Excatly! That's just what I was proposing in my last email!

 Would you want to assist?

Definitely happy to assist with getting the release out there etc. No
real itch on transactions themselves, but I want to do what I can to
speed up our release cycles.


Cool :)


I'll go through jira tonight and do the same thing I'll do for Pool;
add version information for all new/old issues.


Great!

Thanks a lot!

Oliver

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



svn commit: r422023 - /jakarta/commons/proper/transaction/trunk/RELEASE-NOTES.txt

2006-07-14 Thread ozeigermann
Author: ozeigermann
Date: Fri Jul 14 13:25:22 2006
New Revision: 422023

URL: http://svn.apache.org/viewvc?rev=422023view=rev
Log:
Preparation for 1.2 release

Modified:
jakarta/commons/proper/transaction/trunk/RELEASE-NOTES.txt

Modified: jakarta/commons/proper/transaction/trunk/RELEASE-NOTES.txt
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/transaction/trunk/RELEASE-NOTES.txt?rev=422023r1=422022r2=422023view=diff
==
--- jakarta/commons/proper/transaction/trunk/RELEASE-NOTES.txt (original)
+++ jakarta/commons/proper/transaction/trunk/RELEASE-NOTES.txt Fri Jul 14 
13:25:22 2006
@@ -1,8 +1,8 @@
-Jakarta Commons Transaction Release 1.1.1
--
+Jakarta Commons Transaction Release 1.2
+---
 
-RELEASE NUMBER: 1.1.1
-RELEASE TAG / BRANCH: TRANSACTION_1_1_1_RELEASE / none yet
+RELEASE NUMBER: 1.2
+RELEASE TAG / BRANCH: TRANSACTION_1_2_RELEASE / none yet
 
 DESCRIPTION
 ---
@@ -19,7 +19,9 @@
 GENERAL RELEASE NOTES
 -
 
-This is the first bug fix/maintenance release of Commons Transaction 1.1.
+This is a bug fix/maintenance/feature release of Commons Transaction. A lot of 
bug fixing work
+from a number of people has gone into this release. This makes Commons 
Transaction more stable and reliable.
+Additionally, some nice features have been added. See below for details.
 
 ENHANCEMENTS FROM 1.1
 -



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



Re: [transaction] Release plan?

2006-07-14 Thread Oliver Zeigermann

2006/7/14, Niall Pemberton [EMAIL PROTECTED]:

On 7/13/06, Henri Yandell [EMAIL PROTECTED] wrote:
 On 7/13/06, Oliver Zeigermann [EMAIL PROTECTED] wrote:
  Excatly! That's just what I was proposing in my last email!
 
  Would you want to assist?

 Definitely happy to assist with getting the release out there etc. No
 real itch on transactions themselves, but I want to do what I can to
 speed up our release cycles.

I don't have an itch/need for transaction either but am also happy to
help with build/site issues that normally get raised with release
candidates, if you want.


Nice. I will certainly came back to you with questions ;)


Is maven the primary build mechanism (i.e. the one you use for
release)?  Also what is the minimum JDK version for transaction?


I used ant for the previous releases (target package). Minimum jdk is 1.2

Oliver

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



svn commit: r422028 - in /jakarta/commons/proper/pool/trunk: project.xml src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java src/test/org/apache/commons/pool/TestObjectPoolFactory.java

2006-07-14 Thread sandymac
Author: sandymac
Date: Fri Jul 14 13:29:12 2006
New Revision: 422028

URL: http://svn.apache.org/viewvc?rev=422028view=rev
Log:
Better fix for POOL-82 reverted Test[Keyed]ObjectPoolFactory sources and
updated the project.xml to only include the correct unit tests and
include previously missed unit tests.

Modified:
jakarta/commons/proper/pool/trunk/project.xml

jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java

jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestObjectPoolFactory.java

Modified: jakarta/commons/proper/pool/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/pool/trunk/project.xml?rev=422028r1=422027r2=422028view=diff
==
--- jakarta/commons/proper/pool/trunk/project.xml (original)
+++ jakarta/commons/proper/pool/trunk/project.xml Fri Jul 14 13:29:12 2006
@@ -260,12 +260,50 @@
 unitTestSourceDirectorysrc/test/unitTestSourceDirectory
 unitTest
   includes
-includeorg/apache/commons/pool/Test*Factory.java/include
 includeorg/apache/commons/pool/TestBaseObjectPool.java/include
 includeorg/apache/commons/pool/TestBaseKeyedObjectPool.java/include
+
includeorg/apache/commons/pool/TestBasePoolableObjectFactory.java/include
+
includeorg/apache/commons/pool/TestBaseKeyedPoolableObjectFactory.java/include
 includeorg/apache/commons/pool/TestPoolUtils.java/include
-includeorg/apache/commons/pool/impl/Test*Pool.java/include
+
+
includeorg/apache/commons/pool/impl/TestStackObjectPool.java/include
+
includeorg/apache/commons/pool/impl/TestStackKeyedObjectPool.java/include
+
includeorg/apache/commons/pool/impl/TestGenericObjectPool.java/include
+
includeorg/apache/commons/pool/impl/TestGenericKeyedObjectPool.java/include
+
includeorg/apache/commons/pool/impl/TestSoftReferenceObjectPool.java/include
+
!--includeorg/apache/commons/pool/impl/TestSoftRefOutOfMemory.java/include--
+
includeorg/apache/commons/pool/impl/TestGenericObjectPoolFactory.java/include
+
includeorg/apache/commons/pool/impl/TestStackObjectPoolFactory.java/include
+
includeorg/apache/commons/pool/impl/TestGenericKeyedObjectPoolFactory.java/include
+
includeorg/apache/commons/pool/impl/TestStackKeyedObjectPoolFactory.java/include
+
+
includeorg/apache/commons/pool/composite/TestFifoLender.java/include
+
includeorg/apache/commons/pool/composite/TestIdleEvictorLender.java/include
+
includeorg/apache/commons/pool/composite/TestInvalidEvictorLender.java/include
+
includeorg/apache/commons/pool/composite/TestLifoLender.java/include
+
includeorg/apache/commons/pool/composite/TestNullLender.java/include
+
includeorg/apache/commons/pool/composite/TestSoftLender.java/include
+
+
includeorg/apache/commons/pool/composite/TestFailManager.java/include
+
includeorg/apache/commons/pool/composite/TestGrowManager.java/include
+
includeorg/apache/commons/pool/composite/TestIdleLimitManager.java/include
+
includeorg/apache/commons/pool/composite/TestFailLimitManager.java/include
+
includeorg/apache/commons/pool/composite/TestWaitLimitManager.java/include
+
+
includeorg/apache/commons/pool/composite/TestNullTracker.java/include
+
includeorg/apache/commons/pool/composite/TestReferenceTracker.java/include
+
includeorg/apache/commons/pool/composite/TestDebugTracker.java/include
+
includeorg/apache/commons/pool/composite/TestSimpleTracker.java/include
+
includeorg/apache/commons/pool/composite/TestCompositeObjectPool.java/include
+
includeorg/apache/commons/pool/composite/TestCompositeKeyedObjectPool.java/include
+
includeorg/apache/commons/pool/composite/TestCompositeKeyedObjectPool2.java/include
+
includeorg/apache/commons/pool/composite/TestCompositeKeyedObjectPoolFactory.java/include
   /includes
+!--
+  excludes
+excludeorg/apache/commons/pool/TestObjectPoolFactory.java/exclude
+  /excludes
+--
 /unitTest
 
 resources

Modified: 
jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java?rev=422028r1=422027r2=422028view=diff
==
--- 
jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java
 (original)
+++ 
jakarta/commons/proper/pool/trunk/src/test/org/apache/commons/pool/TestKeyedObjectPoolFactory.java
 Fri Jul 14 13:29:12 2006
@@ -24,8 +24,8 @@
  * @author Sandy McArthur
  * @version $Revision$ $Date$
  */
-public class TestKeyedObjectPoolFactory extends TestCase {
-

[jira] Commented: (TRANSACTION-9) [transaction] Add full file management capabilities to the FileResourceManager

2006-07-14 Thread Oliver Zeigermann (JIRA)
[ 
http://issues.apache.org/jira/browse/TRANSACTION-9?page=comments#action_12421217
 ] 

Oliver Zeigermann commented on TRANSACTION-9:
-

That certainly is post 1.2

 [transaction] Add full file management capabilities to the FileResourceManager
 --

 Key: TRANSACTION-9
 URL: http://issues.apache.org/jira/browse/TRANSACTION-9
 Project: Commons Transaction
  Issue Type: Improvement
 Environment: Operating System: All
 Platform: All
Reporter: Peter Fassev
Priority: Minor

 Hi,
 As stated in the doc the FileResourceManager is:
 A resource manager for streamable objects stored in a file system
 I agree, that this is a resource manager, but it could be easily extended, to 
 support a full file management system. It will be very helpful to have 
 additional methods like renameResource(), getResourceSize(), 
 getResourceTime(), 
 setResourceTime() etc. This are common file operations, which should be 
 managed 
 by the FileResourceManager.
 Further it will be very helpful to have (real) support for resource 
 collections 
 (folders). It will be necessary to distinguish between single resources 
 (files) 
 and collections (folders). 
 Together, this features will enable a transactional access to any file based 
 resources - for instance a document repository.
 Are there plans for such extensions and if not, will they actually fit in the 
 goals of the transaction library?
 If not, please open the underlying structure, like the inner class 
 TransactionContext, in order to add extensions the file management. For 
 instance, it will be good to have a separate factory method, which creates 
 the 
 context.
 If you are interested in this proposal, I am ready to contribute to this 
 project. I consider myself as an experienced java developer and I will be 
 glad 
 to help you. 
 Best regards
 Peter Fassev

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] Resolved: (TRANSACTION-10) [transaction] Migrating to commons-logging

2006-07-14 Thread Oliver Zeigermann (JIRA)
 [ http://issues.apache.org/jira/browse/TRANSACTION-10?page=all ]

Oliver Zeigermann resolved TRANSACTION-10.
--

Resolution: Won't Fix

 [transaction] Migrating to commons-logging
 --

 Key: TRANSACTION-10
 URL: http://issues.apache.org/jira/browse/TRANSACTION-10
 Project: Commons Transaction
  Issue Type: Improvement
Affects Versions: 1.1
 Environment: Operating System: All
 Platform: Other
Reporter: Esteban Sancho
Priority: Minor
 Attachments: CommonsLoggerFacade.java


 Hi folks,
 Might I suggest to migrate from LoggerFacade to commons-logging?
 The reasons would be:
 1) It's a commons package
 2) Easier integration on almost every project
 3) The API user shouldn't have to take care about the logging strategy. I 
 think
 the API would be much easier to use.
 I'm asking this because it was pretty hard for me to debug a problem using 
 this
 package with Jotm. At last, it was a bug in Jotm but I needed to almost 
 rewrite
 the logging strategy to find it. I made my own branch (backward incompatible) 
 to
 debug the problem and then restablished the original package.
 Please let me know your thoughts and I'd be glad to help in the task.
 Thanks,
 Esteban

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] Commented: (TRANSACTION-9) [transaction] Add full file management capabilities to the FileResourceManager

2006-07-14 Thread Oliver Zeigermann (JIRA)
[ 
http://issues.apache.org/jira/browse/TRANSACTION-9?page=comments#action_12421219
 ] 

Oliver Zeigermann commented on TRANSACTION-9:
-

Peter, that's pretty cool! Jörg seems to plan some more radical 
changes/extensions pointing to the same direction. We currently discuss this on 
the commons dev list. Please join us. Anyway, if you would want to donate your 
work to the transactions package, please add some code / patch to this issue.

Thanks 

Oliver

 [transaction] Add full file management capabilities to the FileResourceManager
 --

 Key: TRANSACTION-9
 URL: http://issues.apache.org/jira/browse/TRANSACTION-9
 Project: Commons Transaction
  Issue Type: Improvement
 Environment: Operating System: All
 Platform: All
Reporter: Peter Fassev
Priority: Minor

 Hi,
 As stated in the doc the FileResourceManager is:
 A resource manager for streamable objects stored in a file system
 I agree, that this is a resource manager, but it could be easily extended, to 
 support a full file management system. It will be very helpful to have 
 additional methods like renameResource(), getResourceSize(), 
 getResourceTime(), 
 setResourceTime() etc. This are common file operations, which should be 
 managed 
 by the FileResourceManager.
 Further it will be very helpful to have (real) support for resource 
 collections 
 (folders). It will be necessary to distinguish between single resources 
 (files) 
 and collections (folders). 
 Together, this features will enable a transactional access to any file based 
 resources - for instance a document repository.
 Are there plans for such extensions and if not, will they actually fit in the 
 goals of the transaction library?
 If not, please open the underlying structure, like the inner class 
 TransactionContext, in order to add extensions the file management. For 
 instance, it will be good to have a separate factory method, which creates 
 the 
 context.
 If you are interested in this proposal, I am ready to contribute to this 
 project. I consider myself as an experienced java developer and I will be 
 glad 
 to help you. 
 Best regards
 Peter Fassev

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



Re: [transaction] Release plan?

2006-07-14 Thread Niall Pemberton

On 7/14/06, Oliver Zeigermann [EMAIL PROTECTED] wrote:

2006/7/14, Niall Pemberton [EMAIL PROTECTED]:
 On 7/13/06, Henri Yandell [EMAIL PROTECTED] wrote:
  On 7/13/06, Oliver Zeigermann [EMAIL PROTECTED] wrote:
   Excatly! That's just what I was proposing in my last email!
  
   Would you want to assist?
 
  Definitely happy to assist with getting the release out there etc. No
  real itch on transactions themselves, but I want to do what I can to
  speed up our release cycles.

 I don't have an itch/need for transaction either but am also happy to
 help with build/site issues that normally get raised with release
 candidates, if you want.

Nice. I will certainly came back to you with questions ;)

 Is maven the primary build mechanism (i.e. the one you use for
 release)?  Also what is the minimum JDK version for transaction?

I used ant for the previous releases (target package). Minimum jdk is 1.2


OK, I updated the maven build earlier which even if you still use ant,
is good to have - I set maven.compile.target and maven
compile.source in project.properties to JDK 1.3, so you may want to
correct those (or I can)

Niall


Oliver


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



Re: [transaction] splitting ResourceManager interface

2006-07-14 Thread Oliver Zeigermann

Hi, Jörg!

That certainly is post 1.2, right? Maybe even some work for a 2.0
version? More details inline.

2006/7/14, Joerg Heinicke [EMAIL PROTECTED]:

Actually I would like to address some different requirements with my
FileResourceManager, which I can no longer fulfill by just extending the current
one. Reimplementing the current ResourceManager interface would be absolute
overkill as the transactional stuff is exactly the same. It's only the resource
handling I need in a different way.

My use case: We have some data input and output dirs for different let's call
them communication partners and a common repository dir:

ROOT -- cp1 -- upload
 |  \- download
 |- cp2 -- upload
 |  \- download
 |
 \- repo

Up to now the data dirs and the repo dir had a common root to which I set the
store dir. But now data dirs and repo dir can be completely different. I could
set the store dir to / but I don't think that's really appropriate.
Furthermore the FileResourceManager does a recursive delete of directories so
that the data dir structure gets lost atm. With the current behaviour I would
need one FileResourceManager for every sub dir. This would be acceptable if they
had not such a huge overhead of lifecycle but would only be wrappers around file
system access. All instances would refer to one TransactionManager then. Another
possibility would be to allow the FileResourceManager to handle multiple store
dirs but I'd prefer the first approach.


Hmmm. Why do you need FileResourceManagers in the fist place? Just to
synchronize file access? Not quite sure here...

Anyway, TransactionManager wouldn't be such a good name for a new
class as it has a predefinied meaning in the J2EE world I guess.


 Anyway, if you want to introduce something new, got ahead, but be
 aware of backward compatibility issues.

The question is in which extend. Even simply stripping the transactional concern
from ResourceManager interface into its own and letting the FileResourceManager
implement both interfaces, can lead to incompatibilities if the methods for
transactional concern are called on the ResourceManager interface and not on the
FileResourceManager instance.


One way would be to leave the ResourceManager interface untouched and
introduce your two new interfaces. FileResourceManager would implement
all three interfaces.

Another idea would be to make it all better in 2.0 and do not care too
much for backward compatibility. One idea might be to even use Java 5
locking. Maybe this is stuff for another thread, though...

Oliver

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



Re: [transaction] Release plan?

2006-07-14 Thread Oliver Zeigermann

2006/7/14, Niall Pemberton [EMAIL PROTECTED]:

On 7/14/06, Oliver Zeigermann [EMAIL PROTECTED] wrote:
 2006/7/14, Niall Pemberton [EMAIL PROTECTED]:
  On 7/13/06, Henri Yandell [EMAIL PROTECTED] wrote:
   On 7/13/06, Oliver Zeigermann [EMAIL PROTECTED] wrote:
Excatly! That's just what I was proposing in my last email!
   
Would you want to assist?
  
   Definitely happy to assist with getting the release out there etc. No
   real itch on transactions themselves, but I want to do what I can to
   speed up our release cycles.
 
  I don't have an itch/need for transaction either but am also happy to
  help with build/site issues that normally get raised with release
  candidates, if you want.

 Nice. I will certainly came back to you with questions ;)

  Is maven the primary build mechanism (i.e. the one you use for
  release)?  Also what is the minimum JDK version for transaction?

 I used ant for the previous releases (target package). Minimum jdk is 1.2

OK, I updated the maven build earlier which even if you still use ant,
is good to have - I set maven.compile.target and maven
compile.source in project.properties to JDK 1.3, so you may want to
correct those (or I can)


Anything you can do for maven, please do! My tool is ant and I am
always lost with maven!

Thanks a lot in advance

Oliver

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



svn commit: r422041 - /jakarta/commons/proper/modeler/trunk/project.xml

2006-07-14 Thread dennisl
Author: dennisl
Date: Fri Jul 14 13:59:50 2006
New Revision: 422041

URL: http://svn.apache.org/viewvc?rev=422041view=rev
Log:
Fix mail archive links

Modified:
jakarta/commons/proper/modeler/trunk/project.xml

Modified: jakarta/commons/proper/modeler/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/project.xml?rev=422041r1=422040r2=422041view=diff
==
--- jakarta/commons/proper/modeler/trunk/project.xml (original)
+++ jakarta/commons/proper/modeler/trunk/project.xml Fri Jul 14 13:59:50 2006
@@ -63,13 +63,13 @@
   nameCommons Dev List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-dev//archive
 /mailingList
 mailingList
   nameCommons User List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-user//archive
 /mailingList
   /mailingLists
 



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



svn commit: r422042 - /jakarta/commons/proper/modeler/trunk/xdocs/issue-tracking.xml

2006-07-14 Thread dennisl
Author: dennisl
Date: Fri Jul 14 14:00:18 2006
New Revision: 422042

URL: http://svn.apache.org/viewvc?rev=422042view=rev
Log:
Jira - JIRA

Modified:
jakarta/commons/proper/modeler/trunk/xdocs/issue-tracking.xml

Modified: jakarta/commons/proper/modeler/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/xdocs/issue-tracking.xml?rev=422042r1=422041r2=422042view=diff
==
--- jakarta/commons/proper/modeler/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/modeler/trunk/xdocs/issue-tracking.xml Fri Jul 14 
14:00:18 2006
@@ -23,11 +23,11 @@
 !-- == --
 section name=Issue tracking
 p
-  Commons Modeler uses a href=http://issues.apache.org/jira/;ASF Jira/a 
for for tracking issues.
-  See the a href=http://issues.apache.org/jira/browse/MODELER;Modeler's 
Jira project page/a.
+  Commons Modeler uses a href=http://issues.apache.org/jira/;ASF JIRA/a 
for for tracking issues.
+  See the a href=http://issues.apache.org/jira/browse/MODELER;Modeler's 
JIRA project page/a.
 /p
 p
-  To use Jira you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
+  To use JIRA you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
   (if you have previously created/updated Commons issues using Bugzilla an 
account will have been automatically
   created and you can use the a 
href=http://issues.apache.org/jira/secure/ForgotPassword!default.jspa;Forgot 
Password/a
   page to get a new password).



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



svn commit: r422044 - /jakarta/commons/proper/transaction/trunk/project.properties

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 14:01:56 2006
New Revision: 422044

URL: http://svn.apache.org/viewvc?rev=422044view=rev
Log:
Change compile source/target to 1.2

Modified:
jakarta/commons/proper/transaction/trunk/project.properties

Modified: jakarta/commons/proper/transaction/trunk/project.properties
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/transaction/trunk/project.properties?rev=422044r1=422043r2=422044view=diff
==
--- jakarta/commons/proper/transaction/trunk/project.properties (original)
+++ jakarta/commons/proper/transaction/trunk/project.properties Fri Jul 14 
14:01:56 2006
@@ -13,8 +13,8 @@
 maven.compile.debug=on
 maven.compile.deprecation=off
 maven.compile.optimize=off
-maven.compile.source=1.3
-maven.compile.target=1.3
+maven.compile.source=1.2
+maven.compile.target=1.2
 
 # Jar Manifest Additional Attributes
 
maven.jar.manifest.attributes.list=Implementation-Vendor-Id,X-Compile-Source-JDK,X-Compile-Target-JDK



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



BeanUtils problem

2006-07-14 Thread Tripurari . Sharma

i have two beans:

1: 
class Zoo {

private String firstName = Zoo1;

public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
}

2: 

class Pojo {

private String firstName = Pojo1;

public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
}

and engine class is:

import org.apache.commons.beanutils.BeanUtils;

public class ZipcodeLookup {

public static void main(String[] args){

Pojo p = new Pojo();
Zoo z = new Zoo();
try {
BeanUtils.copyProperties(z, p);
String ss = new String();
BeanUtils.setProperty(z, firstName, ss);
} catch (Exception e) {
System.out.println(ex... +e.toString());
}

System.out.println(Zip: +z.getFirstName());
System.out.println(Pojo: +p.getFirstName());

}

 }

when it executes this line:
BeanUtils.copyProperties(z, p);
it does noting, its not copying the properties to z,

and when it executes this line

String ss = new String();
BeanUtils.setProperty(z, firstName, ss);

it dies by saying java.lang.reflect.InvocationTargetException: Cannot set 
firstName

see log: 
[20060714 17:46:23] DEBUG BeanUtils : BeanUtils.copyProperties([EMAIL 
PROTECTED], [EMAIL PROTECTED])
[20060714 17:46:23] DEBUG BeanUtils :   setProperty([EMAIL PROTECTED], 
firstName, )
[20060714 17:46:23] DEBUG ConvertUtils : Convert string '' to class 
'java.lang.String'
[20060714 17:46:23] DEBUG ConvertUtils :   Using converter [EMAIL PROTECTED]
ex... java.lang.reflect.InvocationTargetException: Cannot set firstName
Zip: Zoo1
Pojo: Pojo1

what is the problem, i try injecting data using reflection that works, why its 
not?



The information contained in this message and any attachment may be
proprietary, confidential, and privileged or subject to the work
product doctrine and thus protected from disclosure.  If the reader
of this message is not the intended recipient, or an employee or
agent responsible for delivering this message to the intended
recipient, you are hereby notified that any dissemination,
distribution or copying of this communication is strictly prohibited.
If you have received this communication in error, please notify me
immediately by replying to this message and deleting it and all
copies and backups thereof.  Thank you.



[jira] Created: (JXPATH-70) Javadoc missing from distribution

2006-07-14 Thread Paul Copeland (JIRA)
Javadoc missing from distribution
-

 Key: JXPATH-70
 URL: http://issues.apache.org/jira/browse/JXPATH-70
 Project: Commons JXPath
  Issue Type: Bug
Affects Versions: 1.2 Final
Reporter: Paul Copeland
Priority: Minor


The javadoc is missing from the 1.2 zip file.  Broken links in the user guide 
and elsewhere in the documentation reference the missing directory at 
docs/apidocs where the javadoc should be.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] Resolved: (VALIDATOR-196) GenericValidator#matchRegexp

2006-07-14 Thread Henri Yandell (JIRA)
 [ http://issues.apache.org/jira/browse/VALIDATOR-196?page=all ]

Henri Yandell resolved VALIDATOR-196.
-

Resolution: Invalid

The only Perl in there is that you do m/./  or the shorthand of /./.

I don't see any obvious reason as to why you would need to put // around the 
regexp and not just /. Perl5Util's javadoc seems pretty clear that it's just 
the one /.

The reporter's issue is INVALID. In regexp terms, [a-zA-Z0-9]* will always 
match the chosen text as*^%dfasd1314213. Ignoring the lack of ^ and $, 
having a single token followed by * will match anything, including an empty 
string as the * is zero-to-many and including a string of . Niall's 
suggestion is probably what you're after, but it'll all depend on exactly what 
you want to do regexp-wise.

As it's the greatest computer book of all time, I heartily recommend Jeffrey 
Friedl's Mastering Regular Expressions book :)

 GenericValidator#matchRegexp
 

 Key: VALIDATOR-196
 URL: http://issues.apache.org/jira/browse/VALIDATOR-196
 Project: Commons Validator
  Issue Type: Bug
Affects Versions: 1.3.1
 Environment: Windows 2000 ; J2SDK 1.4.2 ; Eclipse 3.1.2
Reporter: lutianxiang

 GenericValidator.matchRegexp(as*^%dfasd1314213,[a-zA-Z0-9]*);
 User this method cannot get FALSE value
 In this method Source like this...
 .
 return matcher.match(/ + regexp + /, value);
 should be 
 ..
 return matcher.match(// + regexp + //, value);

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[codec] Site links to Bugzilla vs. Jira

2006-07-14 Thread Gary Gregory
Hello:

Would now be a good time to change the [codec] site to point to Jira
instead of Bugzilla?

Gary


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



svn commit: r422103 - in /jakarta/commons/proper/validator/trunk: project.xml xdocs/index.xml xdocs/issue-tracking.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 17:09:04 2006
New Revision: 422103

URL: http://svn.apache.org/viewvc?rev=422103view=rev
Log:
Fix mailing list archive links and Jira -- JIRA

Modified:
jakarta/commons/proper/validator/trunk/project.xml
jakarta/commons/proper/validator/trunk/xdocs/index.xml
jakarta/commons/proper/validator/trunk/xdocs/issue-tracking.xml

Modified: jakarta/commons/proper/validator/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/validator/trunk/project.xml?rev=422103r1=422102r2=422103view=diff
==
--- jakarta/commons/proper/validator/trunk/project.xml (original)
+++ jakarta/commons/proper/validator/trunk/project.xml Fri Jul 14 17:09:04 2006
@@ -64,13 +64,13 @@
   nameCommons Dev List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-dev//archive
 /mailingList
 mailingList
   nameCommons User List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-user//archive
 /mailingList
   /mailingLists
   

Modified: jakarta/commons/proper/validator/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/validator/trunk/xdocs/index.xml?rev=422103r1=422102r2=422103view=diff
==
--- jakarta/commons/proper/validator/trunk/xdocs/index.xml (original)
+++ jakarta/commons/proper/validator/trunk/xdocs/index.xml Fri Jul 14 17:09:04 
2006
@@ -123,7 +123,7 @@
 /p
 
 p
-Issues may be reported via a href=issue-tracking.htmlASF Jira/a.
+Issues may be reported via a href=issue-tracking.htmlASF JIRA/a.
 /p
 /section
 

Modified: jakarta/commons/proper/validator/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/validator/trunk/xdocs/issue-tracking.xml?rev=422103r1=422102r2=422103view=diff
==
--- jakarta/commons/proper/validator/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/validator/trunk/xdocs/issue-tracking.xml Fri Jul 14 
17:09:04 2006
@@ -23,11 +23,11 @@
 !-- == --
 section name=Issue tracking
 p
-  Commons Validator uses a href=http://issues.apache.org/jira/;ASF Jira/a 
for for tracking issues.
-  See the a href=http://issues.apache.org/jira/browse/VALIDATOR;Validator's 
Jira project page/a.
+  Commons Validator uses a href=http://issues.apache.org/jira/;ASF JIRA/a 
for for tracking issues.
+  See the a href=http://issues.apache.org/jira/browse/VALIDATOR;Validator 
JIRA project page/a.
 /p
 p
-  To use Jira you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
+  To use JIRA you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
   (if you have previously created/updated Commons issues using Bugzilla an 
account will have been automatically
   created and you can use the a 
href=http://issues.apache.org/jira/secure/ForgotPassword!default.jspa;Forgot 
Password/a
   page to get a new password).



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



svn commit: r422104 - in /jakarta/commons/proper/beanutils/trunk: project.xml xdocs/issue-tracking.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 17:09:46 2006
New Revision: 422104

URL: http://svn.apache.org/viewvc?rev=422104view=rev
Log:
Fix mailing list archive links and Jira -- JIRA

Modified:
jakarta/commons/proper/beanutils/trunk/project.xml
jakarta/commons/proper/beanutils/trunk/xdocs/issue-tracking.xml

Modified: jakarta/commons/proper/beanutils/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/project.xml?rev=422104r1=422103r2=422104view=diff
==
--- jakarta/commons/proper/beanutils/trunk/project.xml (original)
+++ jakarta/commons/proper/beanutils/trunk/project.xml Fri Jul 14 17:09:46 2006
@@ -58,13 +58,13 @@
   nameCommons Dev List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-dev//archive
 /mailingList
 mailingList
   nameCommons User List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-user//archive
 /mailingList
   /mailingLists


Modified: jakarta/commons/proper/beanutils/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/beanutils/trunk/xdocs/issue-tracking.xml?rev=422104r1=422103r2=422104view=diff
==
--- jakarta/commons/proper/beanutils/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/beanutils/trunk/xdocs/issue-tracking.xml Fri Jul 14 
17:09:46 2006
@@ -23,11 +23,11 @@
 !-- == --
 section name=Issue tracking
 p
-  Commons BeanUtils uses a href=http://issues.apache.org/jira/;ASF Jira/a 
for for tracking issues.
-  See the a href=http://issues.apache.org/jira/browse/BEANUTILS;BeanUtils's 
Jira project page/a.
+  Commons BeanUtils uses a href=http://issues.apache.org/jira/;ASF JIRA/a 
for for tracking issues.
+  See the a href=http://issues.apache.org/jira/browse/BEANUTILS;BeanUtils 
JIRA project page/a.
 /p
 p
-  To use Jira you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
+  To use JIRA you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
   (if you have previously created/updated Commons issues using Bugzilla an 
account will have been automatically
   created and you can use the a 
href=http://issues.apache.org/jira/secure/ForgotPassword!default.jspa;Forgot 
Password/a
   page to get a new password).



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



svn commit: r422105 - in /jakarta/commons/proper/chain/trunk: project.xml xdocs/index.xml xdocs/issue-tracking.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 17:10:26 2006
New Revision: 422105

URL: http://svn.apache.org/viewvc?rev=422105view=rev
Log:
Fix mailing list archive links and Jira -- JIRA

Modified:
jakarta/commons/proper/chain/trunk/project.xml
jakarta/commons/proper/chain/trunk/xdocs/index.xml
jakarta/commons/proper/chain/trunk/xdocs/issue-tracking.xml

Modified: jakarta/commons/proper/chain/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/chain/trunk/project.xml?rev=422105r1=422104r2=422105view=diff
==
--- jakarta/commons/proper/chain/trunk/project.xml (original)
+++ jakarta/commons/proper/chain/trunk/project.xml Fri Jul 14 17:10:26 2006
@@ -60,13 +60,13 @@
   nameCommons Dev List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-dev//archive
 /mailingList
 mailingList
   nameCommons User List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-user//archive
 /mailingList
   /mailingLists
  

Modified: jakarta/commons/proper/chain/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/chain/trunk/xdocs/index.xml?rev=422105r1=422104r2=422105view=diff
==
--- jakarta/commons/proper/chain/trunk/xdocs/index.xml (original)
+++ jakarta/commons/proper/chain/trunk/xdocs/index.xml Fri Jul 14 17:10:26 2006
@@ -107,7 +107,7 @@
 /p
 
 p
-  Issues may be reported via a href=issue-tracking.htmlASF Jira/a.
+  Issues may be reported via a href=issue-tracking.htmlASF JIRA/a.
 /p
   /section
 

Modified: jakarta/commons/proper/chain/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/chain/trunk/xdocs/issue-tracking.xml?rev=422105r1=422104r2=422105view=diff
==
--- jakarta/commons/proper/chain/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/chain/trunk/xdocs/issue-tracking.xml Fri Jul 14 
17:10:26 2006
@@ -23,11 +23,11 @@
 !-- == --
 section name=Issue tracking
 p
-  Commons Chain uses a href=http://issues.apache.org/jira/;ASF Jira/a for 
for tracking issues.
-  See the a href=http://issues.apache.org/jira/browse/CHAIN;Chain's Jira 
project page/a.
+  Commons Chain uses a href=http://issues.apache.org/jira/;ASF JIRA/a for 
for tracking issues.
+  See the a href=http://issues.apache.org/jira/browse/CHAIN;Chain JIRA 
project page/a.
 /p
 p
-  To use Jira you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
+  To use JIRA you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
   (if you have previously created/updated Commons issues using Bugzilla an 
account will have been automatically
   created and you can use the a 
href=http://issues.apache.org/jira/secure/ForgotPassword!default.jspa;Forgot 
Password/a
   page to get a new password).



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



svn commit: r422119 - in /jakarta/commons/proper/dbcp/trunk: project.xml xdocs/issue-tracking.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 17:53:40 2006
New Revision: 422119

URL: http://svn.apache.org/viewvc?rev=422119view=rev
Log:
Fix mailing list archive links, correct Jira -- JIRA, add xdoc plugin 
dependency

Modified:
jakarta/commons/proper/dbcp/trunk/project.xml
jakarta/commons/proper/dbcp/trunk/xdocs/issue-tracking.xml

Modified: jakarta/commons/proper/dbcp/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/dbcp/trunk/project.xml?rev=422119r1=422118r2=422119view=diff
==
--- jakarta/commons/proper/dbcp/trunk/project.xml (original)
+++ jakarta/commons/proper/dbcp/trunk/project.xml Fri Jul 14 17:53:40 2006
@@ -59,13 +59,13 @@
   nameCommons Dev List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-dev//archive
 /mailingList
 mailingList
   nameCommons User List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-user//archive
 /mailingList
   /mailingLists
   
@@ -223,6 +223,20 @@
properties
  scopetest/scope
  commentOnly required for jndi reference tests/comment
+  /properties
+/dependency
+
+dependency
+  groupIdmaven/groupId
+  artifactIdmaven-xdoc-plugin/artifactId
+  version1.9.2/version
+  urlhttp://maven.apache.org/reference/plugins/xdoc//url
+  typeplugin/type
+  properties
+  comment
+  lt;stronggt;Site Onlylt;/stronggt; - v1.9.2 (minimum)
+  required for building the project web site.
+  /comment
   /properties
 /dependency
   

Modified: jakarta/commons/proper/dbcp/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/dbcp/trunk/xdocs/issue-tracking.xml?rev=422119r1=422118r2=422119view=diff
==
--- jakarta/commons/proper/dbcp/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/dbcp/trunk/xdocs/issue-tracking.xml Fri Jul 14 
17:53:40 2006
@@ -24,9 +24,12 @@
 !-- == --
 section name=Issue tracking
 p
-  Commons DBCP uses a href=http://issues.apache.org/jira/;ASF Jira/a for
+  Commons DBCP uses a href=http://issues.apache.org/jira/;ASF JIRA/a for
   tracking issues.
-  To open issues or add comments to existing issues in Jira, you will need to 
+  See the a href=http://issues.apache.org/jira/browse/DBCP;DBCP JIRA 
project page/a.
+/p
+p
+  To open issues or add comments to existing issues in JIRA, you will need to 
   a href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an
   account/a if you don't already have one. 
   (if you have previously created/updated Commons issues using Bugzilla an 
account



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



svn commit: r422120 - /jakarta/commons/proper/transaction/trunk/xdocs/issue-tracking.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 17:54:43 2006
New Revision: 422120

URL: http://svn.apache.org/viewvc?rev=422120view=rev
Log:
Correct Jira -- JIRA

Modified:
jakarta/commons/proper/transaction/trunk/xdocs/issue-tracking.xml

Modified: jakarta/commons/proper/transaction/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/transaction/trunk/xdocs/issue-tracking.xml?rev=422120r1=422119r2=422120view=diff
==
--- jakarta/commons/proper/transaction/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/transaction/trunk/xdocs/issue-tracking.xml Fri Jul 
14 17:54:43 2006
@@ -23,11 +23,11 @@
 !-- == --
 section name=Issue tracking
 p
-  Commons Transaction uses a href=http://issues.apache.org/jira/;ASF 
Jira/a for for tracking issues.
-  See the a 
href=http://issues.apache.org/jira/browse/TRANSACTION;Transaction's Jira 
project page/a.
+  Commons Transaction uses a href=http://issues.apache.org/jira/;ASF 
JIRA/a for for tracking issues.
+  See the a 
href=http://issues.apache.org/jira/browse/TRANSACTION;Transaction's JIRA 
project page/a.
 /p
 p
-  To use Jira you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
+  To use JIRA you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
   (if you have previously created/updated Commons issues using Bugzilla an 
account will have been automatically
   created and you can use the a 
href=http://issues.apache.org/jira/secure/ForgotPassword!default.jspa;Forgot 
Password/a
   page to get a new password).



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



svn commit: r422124 - in /jakarta/commons/proper/fileupload/trunk: project.xml xdocs/index.xml xdocs/issue-tracking.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 18:12:54 2006
New Revision: 422124

URL: http://svn.apache.org/viewvc?rev=422124view=rev
Log:
Minor site changes:
- correct mail archive links
- correct Jira -- JIRA
- project specific submit bug/enhancement links

Modified:
jakarta/commons/proper/fileupload/trunk/project.xml
jakarta/commons/proper/fileupload/trunk/xdocs/index.xml
jakarta/commons/proper/fileupload/trunk/xdocs/issue-tracking.xml

Modified: jakarta/commons/proper/fileupload/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/fileupload/trunk/project.xml?rev=422124r1=422123r2=422124view=diff
==
--- jakarta/commons/proper/fileupload/trunk/project.xml (original)
+++ jakarta/commons/proper/fileupload/trunk/project.xml Fri Jul 14 18:12:54 2006
@@ -64,13 +64,13 @@
   nameCommons Dev List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-dev//archive
 /mailingList
 mailingList
   nameCommons User List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-user//archive
 /mailingList
   /mailingLists
  

Modified: jakarta/commons/proper/fileupload/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/fileupload/trunk/xdocs/index.xml?rev=422124r1=422123r2=422124view=diff
==
--- jakarta/commons/proper/fileupload/trunk/xdocs/index.xml (original)
+++ jakarta/commons/proper/fileupload/trunk/xdocs/index.xml Fri Jul 14 18:12:54 
2006
@@ -106,7 +106,7 @@
 so prefix your e-mail subject line with em[fileupload]/em.
   /p
   p
-Issues may be reported via a href=issue-tracking.htmlASF Jira/a.
+Issues may be reported via a href=issue-tracking.htmlASF JIRA/a.
   /p
 /section
   /body

Modified: jakarta/commons/proper/fileupload/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/fileupload/trunk/xdocs/issue-tracking.xml?rev=422124r1=422123r2=422124view=diff
==
--- jakarta/commons/proper/fileupload/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/fileupload/trunk/xdocs/issue-tracking.xml Fri Jul 14 
18:12:54 2006
@@ -23,10 +23,10 @@
 !-- == --
 section name=Issue Tracking
 p
-  Commons FileUpload uses a 
href=http://issues.apache.org/jira/browse/FILEUPLOAD;ASF Jira/a for 
tracking issues.
+  Commons FileUpload uses a 
href=http://issues.apache.org/jira/browse/FILEUPLOAD;ASF JIRA/a for 
tracking issues.
 /p
 p
-  To use Jira you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
+  To use JIRA you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
   (if you have previously created/updated Commons issues using Bugzilla an 
account will have been automatically
   created and you can use the a 
href=http://issues.apache.org/jira/secure/ForgotPassword!default.jspa;Forgot 
Password/a
   page to get a new password).
@@ -39,7 +39,9 @@
   If you find your issue listed then please add a comment with your 
details./li
   lia 
href=http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/;Search the 
mailing list archive/a.
   You may find your issue or idea has already been discussed./li
-  lia href=http://issues.apache.org/jira/browse/FILEUPLOAD;Submit a bug 
report or enhancement request/a./li
+  liDecide if your issue is a bug or an enhancement./li
+  liSubmit either a a 
href=http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310476amp;issuetype=1amp;priority=4amp;assignee=-1;bug
 report/a
+  or a 
href=http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12310476amp;issuetype=4amp;priority=4amp;assignee=-1;enhancement
 request/a./li
   /ol
 /p
 p



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



svn commit: r422125 - in /jakarta/commons/proper/configuration/trunk: project.xml xdocs/issue-tracking.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 18:14:56 2006
New Revision: 422125

URL: http://svn.apache.org/viewvc?rev=422125view=rev
Log:
Fix mailing list archive links and Jira -- JIRA

Modified:
jakarta/commons/proper/configuration/trunk/project.xml
jakarta/commons/proper/configuration/trunk/xdocs/issue-tracking.xml

Modified: jakarta/commons/proper/configuration/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/configuration/trunk/project.xml?rev=422125r1=422124r2=422125view=diff
==
--- jakarta/commons/proper/configuration/trunk/project.xml (original)
+++ jakarta/commons/proper/configuration/trunk/project.xml Fri Jul 14 18:14:56 
2006
@@ -95,13 +95,13 @@
   nameCommons Dev List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-dev//archive
 /mailingList
 mailingList
   nameCommons User List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  archivehttp://mail-archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]/archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-user//archive
 /mailingList
   /mailingLists
 

Modified: jakarta/commons/proper/configuration/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/configuration/trunk/xdocs/issue-tracking.xml?rev=422125r1=422124r2=422125view=diff
==
--- jakarta/commons/proper/configuration/trunk/xdocs/issue-tracking.xml 
(original)
+++ jakarta/commons/proper/configuration/trunk/xdocs/issue-tracking.xml Fri Jul 
14 18:14:56 2006
@@ -23,10 +23,10 @@
 !-- == --
 section name=Issue tracking
 p
-  Commons Configuration uses a 
href=http://issues.apache.org/jira/browse/CONFIGURATION;ASF Jira/a for 
tracking issues.
+  Commons Configuration uses a 
href=http://issues.apache.org/jira/browse/CONFIGURATION;ASF JIRA/a for 
tracking issues.
 /p
 p
-  To use Jira you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
+  To use JIRA you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
   (if you have previously created/updated Commons issues using Bugzilla an 
account will have been automatically
   created and you can use the a 
href=http://issues.apache.org/jira/secure/ForgotPassword!default.jspa;Forgot 
Password/a
   page to get a new password).



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



svn commit: r422127 - /jakarta/commons/proper/logging/trunk/xdocs/issue-tracking.xml

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 18:17:37 2006
New Revision: 422127

URL: http://svn.apache.org/viewvc?rev=422127view=rev
Log:
Correct Jira -- JIRA

Modified:
jakarta/commons/proper/logging/trunk/xdocs/issue-tracking.xml

Modified: jakarta/commons/proper/logging/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/logging/trunk/xdocs/issue-tracking.xml?rev=422127r1=422126r2=422127view=diff
==
--- jakarta/commons/proper/logging/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/logging/trunk/xdocs/issue-tracking.xml Fri Jul 14 
18:17:37 2006
@@ -25,10 +25,10 @@
 !-- == --
 section name=Issue tracking
   p
-Commons Logging uses a 
href=http://issues.apache.org/jira/browse/LOGGING;ASF Jira/a for tracking 
issues.
+Commons Logging uses a 
href=http://issues.apache.org/jira/browse/LOGGING;ASF JIRA/a for tracking 
issues.
   /p
   p
-To use Jira you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
+To use JIRA you may need to a 
href=http://issues.apache.org/jira/secure/Signup!default.jspa;create an 
account/a
 (if you have previously created/updated Commons issues using Bugzilla 
an account will have been automatically
 created and you can use the a 
href=http://issues.apache.org/jira/secure/ForgotPassword!default.jspa;Forgot 
Password/a
 page to get a new password).



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



svn commit: r422131 - in /jakarta/commons/proper/math/trunk: maven.xml project.properties project.xml xdocs/issue-tracking.xml xdocs/navigation.xml xdocs/style/maven.css xdocs/style/print.css xdocs/st

2006-07-14 Thread niallp
Author: niallp
Date: Fri Jul 14 18:58:59 2006
New Revision: 422131

URL: http://svn.apache.org/viewvc?rev=422131view=rev
Log:
Changes to Math maven site/build:
- removed dependency on commons-build
- correct Jira -- JIRA
- project specific JIRA links (all open Math issues etc)

Removed:
jakarta/commons/proper/math/trunk/xdocs/style/maven.css
jakarta/commons/proper/math/trunk/xdocs/style/print.css
jakarta/commons/proper/math/trunk/xdocs/style/tigris.css
Modified:
jakarta/commons/proper/math/trunk/maven.xml
jakarta/commons/proper/math/trunk/project.properties
jakarta/commons/proper/math/trunk/project.xml
jakarta/commons/proper/math/trunk/xdocs/issue-tracking.xml
jakarta/commons/proper/math/trunk/xdocs/navigation.xml
jakarta/commons/proper/math/trunk/xdocs/style/project.css

Modified: jakarta/commons/proper/math/trunk/maven.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/math/trunk/maven.xml?rev=422131r1=422130r2=422131view=diff
==
--- jakarta/commons/proper/math/trunk/maven.xml (original)
+++ jakarta/commons/proper/math/trunk/maven.xml Fri Jul 14 18:58:59 2006
@@ -15,23 +15,6 @@
   --
 project xmlns:deploy=deploy default=jar:jar xmlns:ant=jelly:ant 
 
-  !-- == --
-  !-- START : C O M M O N S - B U I L D  --
-  !-- == --
-  !-- Required: Look and Feel for documentation within distributions --
-  !-- == --
-  postGoal name=xdoc:copy-resources  
-copy todir=${basedir}/target/docs/style/ failonerror=false
-  fileset dir=${basedir}/../commons-build/xdocs/style
-   include name='**/*'/
-   exclude name='**/CVS/**'/
-  /fileset
-/copy
-  /postGoal
-  !-- == --
-  !-- END: C O M M O N S - B U I L D --
-  !-- == --
-
   goal name=cut-math-release
attainGoal name=convert-snapshots /
attainGoal name=dist /

Modified: jakarta/commons/proper/math/trunk/project.properties
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/math/trunk/project.properties?rev=422131r1=422130r2=422131view=diff
==
--- jakarta/commons/proper/math/trunk/project.properties (original)
+++ jakarta/commons/proper/math/trunk/project.properties Fri Jul 14 18:58:59 
2006
@@ -34,7 +34,6 @@
 maven.junit.fork=true
 #maven.linkcheck.enable=true 
 
-maven.xdoc.jsl=../commons-build/commons-site.jsl
 maven.xdoc.date=left
 maven.xdoc.version=${pom.currentVersion}
 maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html

Modified: jakarta/commons/proper/math/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/math/trunk/project.xml?rev=422131r1=422130r2=422131view=diff
==
--- jakarta/commons/proper/math/trunk/project.xml (original)
+++ jakarta/commons/proper/math/trunk/project.xml Fri Jul 14 18:58:59 2006
@@ -55,13 +55,13 @@
   nameCommons Dev List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  
archivehttp://mail-archives.eu.apache.org/mod_mbox/jakarta-commons-dev//archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-dev//archive
 /mailingList
 mailingList
   nameCommons User List/name
   subscribe[EMAIL PROTECTED]/subscribe
   unsubscribe[EMAIL PROTECTED]/unsubscribe
-  
archivehttp://mail-archives.eu.apache.org/mod_mbox/jakarta-commons-user//archive
+  
archivehttp://mail-archives.apache.org/mod_mbox/jakarta-commons-user//archive
 /mailingList
   /mailingLists
   versions

Modified: jakarta/commons/proper/math/trunk/xdocs/issue-tracking.xml
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/math/trunk/xdocs/issue-tracking.xml?rev=422131r1=422130r2=422131view=diff
==
--- jakarta/commons/proper/math/trunk/xdocs/issue-tracking.xml (original)
+++ jakarta/commons/proper/math/trunk/xdocs/issue-tracking.xml Fri Jul 14 
18:58:59 2006
@@ -23,9 +23,9 @@
 !-- == --
 section name=Issue tracking
 p
-  Commons Math uses a href=http://issues.apache.org/jira/;ASF Jira/a for
+  Commons Math uses a href=http://issues.apache.org/jira/;ASF JIRA/a for
   tracking issues.
-  To open issues or add comments to existing issues in Jira, you will need to 
+  To open issues or add comments to existing issues in JIRA, you will need to 
   a 

Re: [codec] Site links to Bugzilla vs. Jira

2006-07-14 Thread Henri Yandell

+1

On 7/14/06, Gary Gregory [EMAIL PROTECTED] wrote:

Hello:

Would now be a good time to change the [codec] site to point to Jira
instead of Bugzilla?

Gary


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