Re: [vfs] Google App Engine plug-in (GaeVFS)

2009-05-30 Thread Mohammady Mahdy
good job man ! was working on a similar thing but used email accounts as storage. really nice job! On Sun, May 31, 2009 at 9:32 AM, Ralph Goers wrote: > > On May 30, 2009, at 2:55 PM, Vince Bonfanti wrote: > > The first public release (0.1) of GaeVFS is now available: >> >> http://gaevfs.appsp

Re: [vfs] Google App Engine plug-in (GaeVFS)

2009-05-30 Thread Ralph Goers
On May 30, 2009, at 2:55 PM, Vince Bonfanti wrote: The first public release (0.1) of GaeVFS is now available: http://gaevfs.appspot.com/ GaeVFS is a plug-in for Apache Commons VFS that implements a virtual file system on top of the Google App Engine for Java (GAE) datastore. It provide

Re: [all] Testing interface implementations

2009-05-30 Thread John Bollinger
Emmanuel Bourg wrote: > In Commons CLI there are 3 parsers implementing the same interface, and soon > another implementation will be added. There is an abstract test case with the > test methods, and a concrete subclass for each parser. The concrete test case > instantiates the parser and d

[pool] 1.5-RC2 available for review

2009-05-30 Thread Phil Steitz
Thanks to all who provided feedback on RC1. Changes in RC2 * Fixed copyright date in NOTICE.txt * Restored development reports * Improved thread-safety and timing/reliability in GOP, GKOP tests - thanks, sebb! * Added link to release javadoc in site.xml * Fixed xml errors in changes.xml * Add

[vfs] Google App Engine plug-in (GaeVFS)

2009-05-30 Thread Vince Bonfanti
The first public release (0.1) of GaeVFS is now available: http://gaevfs.appspot.com/ GaeVFS is a plug-in for Apache Commons VFS that implements a virtual file system on top of the Google App Engine for Java (GAE) datastore. It provides a writeable file system for GAE, since GAE does not allo

Re: [cli] New Parser available

2009-05-30 Thread Emmanuel Bourg
James Ring a écrit : I think partial matching should be disabled by default. While a neat feature to reduce typing, this behaviour will probably come as a surprise to people because it is not found in most programs. Also, if an option is not completely specified, I know I'd like the program to c

Re: [cli] New Parser available

2009-05-30 Thread Emmanuel Bourg
Jim Jagielski a écrit : Very cool! You are taking all the fun stuff :) Don't worry the party isn't over ;) I have a couple of things in mind like the option aliases, but I don't have the time to implement it yet. Emmanuel Bourg ---

Re: [all] Testing interface implementations

2009-05-30 Thread Emmanuel Bourg
Phil Steitz a écrit : You have probably thought of this and it may be distasteful, but one way to break things apart would be to break the single abstract test class into an artificial hierarchy. If there is a way to do this with some kind of semantic integrity (e.g., if it can be made to coi

[g...@vmgump]: Project commons-jelly-tags-fmt-test (in module commons-jelly) failed

2009-05-30 Thread commons-jelly-tags-fmt development
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-jelly-tags-fmt-test has an issue affecting its community integrat

Re: [cli] New Parser available

2009-05-30 Thread sebb
On 30/05/2009, James Ring wrote: > Hey, > > > On Sat, May 30, 2009 at 11:30 AM, Emmanuel Bourg wrote: > > Russel Winder a écrit : > > > >>> It implements the features of the other parsers and more: > >>> - partial matching for the long options (-ver instead of -version) > >> > >> What abou

Re: [cli] New Parser available

2009-05-30 Thread James Ring
Hey, On Sat, May 30, 2009 at 11:30 AM, Emmanuel Bourg wrote: > Russel Winder a écrit : > >>> It implements the features of the other parsers and more: >>> - partial matching for the long options (-ver instead of -version) >> >> What about -ver being -v -e -r ? > > The partial matching of a long o

Re: [cli] New Parser available

2009-05-30 Thread Emmanuel Bourg
Russel Winder a écrit : It implements the features of the other parsers and more: - partial matching for the long options (-ver instead of -version) What about -ver being -v -e -r ? The partial matching of a long option has the priority over the decomposition of the short options. If you ha

Re: [math] Serialization

2009-05-30 Thread Phil Steitz
Bill Barker wrote: - Original Message - From: "Ted Dunning" To: "Commons Developers List" Sent: Monday, May 25, 2009 4:52 PM Subject: Re: [math] Serialization This sounds like the germ of a repair process. Nuke all Serializable declarations without test cases. Then, add them back

Re: [cli] New Parser available

2009-05-30 Thread Russel Winder
On Sat, 2009-05-30 at 16:13 +0200, Emmanuel Bourg wrote: > The new parser has landed, get it while it's hot! > > It implements the features of the other parsers and more: > - partial matching for the long options (-ver instead of -version) What about -ver being -v -e -r ? > - options like Java m

Re: [cli] New Parser available

2009-05-30 Thread Jim Jagielski
Very cool! You are taking all the fun stuff :) On Sat, May 30, 2009 at 04:13:38PM +0200, Emmanuel Bourg wrote: > The new parser has landed, get it while it's hot! > > It implements the features of the other parsers and more: > - partial matching for the long options (-ver instead of -version) > -

[cli] New Parser available

2009-05-30 Thread Emmanuel Bourg
The new parser has landed, get it while it's hot! It implements the features of the other parsers and more: - partial matching for the long options (-ver instead of -version) - options like Java memory settings are supported (-Xmx512m) - several corner cases have been fixed The parser passes all

Re: [all] Testing interface implementations

2009-05-30 Thread Phil Steitz
Emmanuel Bourg wrote: In Commons CLI there are 3 parsers implementing the same interface, and soon another implementation will be added. There is an abstract test case with the test methods, and a concrete subclass for each parser. The concrete test case instantiates the parser and disables so

Re: [pool] 1.5-RC1 available for review

2009-05-30 Thread sebb
On 30/05/2009, Phil Steitz wrote: > sebb wrote: > > > On 30/05/2009, Phil Steitz wrote: > > > > > > > sebb wrote: > > > > > > > > > > > > > On 29/05/2009, Phil Steitz wrote: > > > > > > > > > > > > > > > > > > > > > The files are here: > > > > > > > > > > > > > > > > > > > > > > http://people.ap

[all] Testing interface implementations

2009-05-30 Thread Emmanuel Bourg
In Commons CLI there are 3 parsers implementing the same interface, and soon another implementation will be added. There is an abstract test case with the test methods, and a concrete subclass for each parser. The concrete test case instantiates the parser and disables some tests by overwriting

Re: [pool] 1.5-RC1 available for review

2009-05-30 Thread Phil Steitz
Luc Maisonobe wrote: Phil Steitz a écrit : sebb wrote: On 29/05/2009, Phil Steitz wrote: The files are here: http://people.apache.org/~psteitz/commons-pool-1.5-RC1/ findbugs filter and license-header.txt are missing from source archives. This is int

Re: [pool] 1.5-RC1 available for review

2009-05-30 Thread Luc Maisonobe
Phil Steitz a écrit : > sebb wrote: >> On 29/05/2009, Phil Steitz wrote: >> >>> The files are here: >>> http://people.apache.org/~psteitz/commons-pool-1.5-RC1/ >>> >> >> findbugs filter and license-header.txt are missing from source archives. >> > This is intended. The associated repor