Re: [email] rm -r lib/*.jar

2004-11-26 Thread Corey Scott
We appreciate all the help we can get :-) -Corey On Fri, 26 Nov 2004 11:35:04 -0800, Craig McClanahan <[EMAIL PROTECTED]> wrote: > On Fri, 26 Nov 2004 11:14:28 +0100, Eric Pugh <[EMAIL PROTECTED]> wrote: > > > But, it's not really a big deal. It's only a problem for the nightly build > > based

Re: Migrate to SVN?

2004-11-26 Thread Rob Leland
Stephen Colebourne wrote: I remain unenthused by SVN, probably because I don't have to manage a CVS server. Effectively I'm -1, but I'm probably not going to fight. My main reason is that SVN does not appear to be that widely adopted yet. A sign that the time has come to migrate would be when Eclip

Re: Volunteer for SVN migration management? Was: Migrate to SVN?

2004-11-26 Thread Martin Cooper
On Sat, 27 Nov 2004 00:35:14 -0500, Tim O'Brien <[EMAIL PROTECTED]> wrote: > Martin, > > I'm available if you need help. Thanks, I appreciate that. > One thing to flesh out is structure - here are some proposals: Summarising my preferred versions of your alternatives, we might have: jakarta/

RE: Volunteer for SVN migration management? Was: Migrate to SVN?

2004-11-26 Thread Tim O'Brien
Martin, I'm available if you need help. One thing to flesh out is structure - here are some proposals: Commons Proper Components 1. /jakarta/commons/digester/[tags|branches|trunk] 2. /jakarta/commons/proper/digester/[tags|branches|trunk] Commons Sandbox Components (just using bzip2 because it

RE: Migrate to SVN?

2004-11-26 Thread Tim O'Brien
If I might add one more, the process of promoting components from sandbox to proper will be easier with svn move or copy. One thing I'd like to see going forward is that a component is moved out of the sandbox upon promotion. I know it is just an empty directory, but digester and codec still ap

Re: Volunteer for SVN migration management? Was: Migrate to SVN?

2004-11-26 Thread Martin Cooper
On Fri, 26 Nov 2004 13:31:27 -0500, Henri Yandell <[EMAIL PROTECTED]> wrote: > Do we have a volunteer to organise the move of Commons to SVN? Sure, I'll step up, unless someone else has a strong desire to do it. > (which is probably some combination of: vote, plan, liaise with infra) Yep, I expe

RE: Migrate to SVN?

2004-11-26 Thread Noel J. Bergman
> Can you comment on the admin-side advantages of svn ? Elimination of the need for shell accounts, and the ability to shift load from the core infrastructure team to the PMCs. Trivial project movement. And since we sometimes have to ... <> ... help recover from people playing around with ",v" fi

cvs commit: jakarta-commons-sandbox/resources/xdocs/images logo.png

2004-11-26 Thread martinc
martinc 2004/11/26 21:01:55 Removed: resources .cvsignore LICENSE.txt NOTICE.txt PROPOSAL.html STATUS.html build-legacy.xml build.xml maven.xml project.properties project.xml resources/lib ibatis-db-1.2.9.jar r

cvs commit: jakarta-commons/io/src/java/org/apache/commons/io FilenameUtils.java

2004-11-26 Thread scolebourne
scolebourne2004/11/26 17:22:06 Modified:io/src/test/org/apache/commons/io FilenameUtilsTestCase.java io/src/java/org/apache/commons/io FilenameUtils.java Log: Refactor normalize method, and simplify getPrefixLength Revision ChangesPath 1.21 +204 -216

cvs commit: jakarta-commons/io/src/test/org/apache/commons/io AllIOTestSuite.java

2004-11-26 Thread scolebourne
scolebourne2004/11/26 17:21:31 Added: io/src/test/org/apache/commons/io AllIOTestSuite.java Log: Compound test suite Revision ChangesPath 1.1 jakarta-commons/io/src/test/org/apache/commons/io/AllIOTestSuite.java Index: AllIOTestSuite.java ==

Re: [convert] a different approach...

2004-11-26 Thread Ron Blaschke
Thursday, November 18, 2004, 5:57:48 AM, Matt Sgarlata wrote: > I haven't been on the list a while but I saw your posts earlier > this month. I too, like Ron, spent some time developing my own > approach to the goals of the commons-convert project. I have some > code started out that isn't incre

[Jakarta Commons Wiki] Updated: TheSandbox

2004-11-26 Thread commons-dev
Date: 2004-11-26T15:29:35 Editor: 12.108.188.134 <> Wiki: Jakarta Commons Wiki Page: TheSandbox URL: http://wiki.apache.org/jakarta-commons/TheSandbox Chain and Resources are in Commons Proper now. Change Log:

Re: Migrate to SVN?

2004-11-26 Thread Paul Libbrecht
Noel, Can you comment on the admin-side advantages of svn ? I do know most of the client-side advantages... thanks paul Le 27 nov. 04, à 00:12, Stephen Colebourne a écrit : I remain unenthused by SVN, probably because I don't have to manage a CVS server. Effectively I'm -1, but I'm probably not go

[Jakarta Commons Wiki] Updated: FrontPage

2004-11-26 Thread commons-dev
Date: 2004-11-26T15:28:45 Editor: 12.108.188.134 <> Wiki: Jakarta Commons Wiki Page: FrontPage URL: http://wiki.apache.org/jakarta-commons/FrontPage Chain and Resources are in Commons Proper now. Change Log: --

Re: Migrate to SVN?

2004-11-26 Thread Brett Porter
Stephen Colebourne wrote: My main reason is that SVN does not appear to be that widely adopted yet. A sign that the time has come to migrate would be when Eclipse/Idea ships with SVN support built in. IDEA's current EAP cycle has included support OOTB. I haven't tried it yet though... At the mo

[Jakarta Commons Wiki] Updated: FrontPage

2004-11-26 Thread commons-dev
Date: 2004-11-26T15:22:56 Editor: OliverZeigermann <[EMAIL PROTECTED]> Wiki: Jakarta Commons Wiki Page: FrontPage URL: http://wiki.apache.org/jakarta-commons/FrontPage no comment Change Log: -- @@ -28,6

[Jakarta Commons Wiki] Updated: TheSandbox

2004-11-26 Thread commons-dev
Date: 2004-11-26T15:21:15 Editor: OliverZeigermann <[EMAIL PROTECTED]> Wiki: Jakarta Commons Wiki Page: TheSandbox URL: http://wiki.apache.org/jakarta-commons/TheSandbox no comment Change Log: -- @@ -30

Re: Migrate to SVN?

2004-11-26 Thread Stephen Colebourne
I remain unenthused by SVN, probably because I don't have to manage a CVS server. Effectively I'm -1, but I'm probably not going to fight. My main reason is that SVN does not appear to be that widely adopted yet. A sign that the time has come to migrate would be when Eclipse/Idea ships with SVN su

Re: [transaction] improved logging interface.

2004-11-26 Thread Oliver Zeigermann
I thought the standard way to handle this is to guard the log statements with checks if the log level is enabled like: if (isFineEnabled()) logFine(anyObject1 + "any string" + anyObject2); which already is possible with LoggerFacade. This would make the extension obsolete... Oliver On Thu, 2

cvs commit: jakarta-commons/validator/src/test/org/apache/commons/validator TestCommon.java TestNumber.java ExtensionTest.java

2004-11-26 Thread dgraham
dgraham 2004/11/26 13:35:19 Modified:validator/src/test/org/apache/commons/validator TestCommon.java TestNumber.java ExtensionTest.java Log: Removed logging from tests. They should either pass or fail without requiring us to look through log messages.

cvs commit: jakarta-commons/validator/src/share/org/apache/commons/validator GenericTypeValidator.java

2004-11-26 Thread dgraham
dgraham 2004/11/26 13:25:12 Modified:validator/src/share/org/apache/commons/validator/util ValidatorUtils.java validator/src/share/org/apache/commons/validator GenericTypeValidator.java Log: Made Log instance final.

cvs commit: jakarta-commons/validator project.xml

2004-11-26 Thread dgraham
dgraham 2004/11/26 13:16:05 Modified:validator project.xml Log: Fixed beanutils, logging, and digester dependency urls. Revision ChangesPath 1.57 +4 -4 jakarta-commons/validator/project.xml Index: project.xml ==

cvs commit: jakarta-commons/validator project.xml

2004-11-26 Thread dgraham
dgraham 2004/11/26 13:08:27 Modified:validator project.xml Log: Removed the commons-collections dependency because we only use FastHashMap which is included in the commons-beanutils 1.7.0 release. Our usage of FastHashMap has been deprecated for some time so we could remove

cvs commit: jakarta-commons/validator project.xml

2004-11-26 Thread dgraham
dgraham 2004/11/26 12:55:49 Modified:validator project.xml Log: Updated dependency versions to latest releases for commons-logging, commons-beanutils, commons-digester, and commons-collections. Updated version number to 1.2.0-dev and alphabetized the developer list. R

DO NOT REPLY [Bug 32360] - Default Namespace not handled correctly

2004-11-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: [email] rm -r lib/*.jar

2004-11-26 Thread Craig McClanahan
On Fri, 26 Nov 2004 11:14:28 +0100, Eric Pugh <[EMAIL PROTECTED]> wrote: > But, it's not really a big deal. It's only a problem for the nightly build > based on Ant, and as long as Gump is happy (which it should be as they are > installed as packages) then it doesn't bother me. If the Ant script

Re: [IO] FilenameUtils#getPrefixLength is broken on Unix

2004-11-26 Thread Martin Cooper
I've removed the offending line, as suggested. I have not fixed the test problems, though. I'll leave that for Stephen. ;-) FYI, the tests also fail on Windows, but the failure I see is: [junit] Testcase: testNormalize took 0.02 sec [junit] FAILED [junit] Check if '///' normalized

cvs commit: jakarta-commons/io/src/java/org/apache/commons/io FilenameUtils.java

2004-11-26 Thread martinc
martinc 2004/11/26 11:18:28 Modified:io/src/java/org/apache/commons/io FilenameUtils.java Log: Fix breakage when getPrefixLength() is fed a string of length one. Revision ChangesPath 1.28 +1 -2 jakarta-commons/io/src/java/org/apache/commons/io/FilenameUtils.jav

Volunteer for SVN migration management? Was: Migrate to SVN?

2004-11-26 Thread Henri Yandell
Do we have a volunteer to organise the move of Commons to SVN? (which is probably some combination of: vote, plan, liaise with infra) Hen On Fri, 26 Nov 2004 10:54:37 -0500, Phil Steitz <[EMAIL PROTECTED]> wrote: > +1 from me as well -- seems to make sense to move as a group. > > Phil > > >

Re: [email] rm -r lib/*.jar

2004-11-26 Thread Henri Yandell
Done. On Fri, 26 Nov 2004 11:14:28 +0100, Eric Pugh <[EMAIL PROTECTED]> wrote: > It's fine. Can you also do the same trick in > jakarta-commons-sandbox/email/libs as well? As I sent in my email to the > PMC, I thought the reason those jars are not on ibiblio is that you can't > redistribute t

Re: [general] Updating the Commons common web site

2004-11-26 Thread Phil Steitz
Mark R. Diggory wrote: I'm sure that works if you can ever get your keys or whatever it is set up so that ssh doesn't want to ask for a password. I have never managed to get that working, and nobody has been able to explain to be - in plain English - what I need to do to get it working. When I do i

Re: Migrate to SVN?

2004-11-26 Thread Phil Steitz
+1 from me as well -- seems to make sense to move as a group. Phil Alex Karasulu wrote: +1 Noel J. Bergman wrote: 6) should I just delete the /jakarta-commons-sandbox/email directory, or leave the folder and a note pointing to the promotion? What about the website as well? I think for [configura

Re: [math] Commons Math 1.0

2004-11-26 Thread Phil Steitz
Mark R. Diggory wrote: Its been very quiet, this may be a good sign. Are we ready to roll on 1.0? Yes. I have been on the road. When I get back tonight I will roll the release and call the vote -- at last!!! -Phil -Mark Phil Steitz wrote: The Commons Math team is pleased to announce the release o

DO NOT REPLY [Bug 32343] - [validator] Javascript Rendering Extension

2004-11-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

[RESULT][VOTE] Release Validator 1.1.4

2004-11-26 Thread Niall Pemberton
The vote to release Validator 1.1.4 resulted in 3 binding +1's and 1 non-binding +1 The vote thread is here: http://mail-archives.apache.org/eyebrowse/[EMAIL PROTECTED]&msgNo=60629 Niall Pemberton - To unsubscribe, e-mail: [E

DO NOT REPLY [Bug 32343] - [validator] Javascript Rendering Extension

2004-11-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

[math] Commons Math 1.0

2004-11-26 Thread Mark R. Diggory
Its been very quiet, this may be a good sign. Are we ready to roll on 1.0? -Mark Phil Steitz wrote: The Commons Math team is pleased to announce the release of Commons Math 1.0-RC2. Commons Math is a library of lightweight, self-contained mathematics and statistics components. This release candid

Re: [general] Updating the Commons common web site

2004-11-26 Thread Mark R. Diggory
As well, this was a successful test of Maven 1.0.1 to build the top level site. -Mark Mark R. Diggory wrote: Thnx... Eric Pugh wrote: This looks better, more consistent! -Original Message- From: Mark R. Diggory [mailto:[EMAIL PROTECTED] Sent: Friday, November 26, 2004 5:16 PM To: Jakarta

Re: [general] Updating the Commons common web site

2004-11-26 Thread Mark R. Diggory
Thnx... Eric Pugh wrote: This looks better, more consistent! -Original Message- From: Mark R. Diggory [mailto:[EMAIL PROTECTED] Sent: Friday, November 26, 2004 5:16 PM To: Jakarta Commons Developers List Subject: Re: [general] Updating the Commons common web site I ended up updating the si

cvs commit: jakarta-commons/commons-build project.xml

2004-11-26 Thread mdiggory
mdiggory2004/11/26 08:38:54 Modified:commons-build project.xml Log: No, this is actually wrong, this should be the longer logo, like it was originally, undoing my last change. Revision ChangesPath 1.38 +1 -1 jakarta-commons/commons-build/project.xml Index:

RE: [general] Updating the Commons common web site

2004-11-26 Thread Eric Pugh
This looks better, more consistent! > -Original Message- > From: Mark R. Diggory [mailto:[EMAIL PROTECTED] > Sent: Friday, November 26, 2004 5:16 PM > To: Jakarta Commons Developers List > Subject: Re: [general] Updating the Commons common web site > > > I ended up updating the site while

cvs commit: jakarta-commons/commons-build project.xml

2004-11-26 Thread mdiggory
mdiggory2004/11/26 08:27:36 Modified:commons-build project.xml Log: Opse, wrong logo. The javascript is using the same logo in both instances. The project.xml logo needs to be the original. Revision ChangesPath 1.37 +1 -1 jakarta-commons/commons-build/project.x

Re: Migrate to SVN?

2004-11-26 Thread Mario Ivankovits
The IDEAL situation would be to convert Jakarta Commons to SVN. Can we PLEASE consider doing so? +1 to migrate all at one time From the point of VFS (for sure, only a commons sandbox) +1 - To unsubscribe, e-mail: [EMAIL PROTEC

cvs commit: jakarta-commons/commons-build/xdocs navigation.xml

2004-11-26 Thread mdiggory
mdiggory2004/11/26 08:20:24 Modified:commons-build/xdocs navigation.xml Log: Adding link to top level jakarta site on grey bar Revision ChangesPath 1.10 +4 -0 jakarta-commons/commons-build/xdocs/navigation.xml Index: navigation.xml ===

cvs commit: jakarta-commons/commons-build project.properties

2004-11-26 Thread mdiggory
mdiggory2004/11/26 08:18:27 Modified:commons-build project.properties Log: All the subprojects have the published date on the grey bar (left), to make the site more consistent with this, I've moved to there on the top level site. Revision ChangesPath 1.14 +2 -2

Re: [general] Updating the Commons common web site

2004-11-26 Thread Mark R. Diggory
I ended up updating the site while I was testing ssh keys on my workstation. please review the site and make sure its what you wanted to see updated. -Mark Mark R. Diggory wrote: Martin Cooper wrote: On Thu, 25 Nov 2004 22:17:04 -0500, Mark R. Diggory <[EMAIL PROTECTED]> wrote: I'd verify that

cvs commit: jakarta-commons/commons-build project.xml

2004-11-26 Thread mdiggory
mdiggory2004/11/26 08:10:08 Modified:commons-build project.xml Log: Jakarta Project logo has moved into images directory. Revision ChangesPath 1.36 +1 -1 jakarta-commons/commons-build/project.xml Index: project.xml

Re: Migrate to SVN?

2004-11-26 Thread Paul Libbrecht
The IDEAL situation would be to convert Jakarta Commons to SVN. Can we PLEASE consider doing so? +1 to migrate all at one time - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Migrate to SVN?

2004-11-26 Thread Mark R. Diggory
The IDEAL situation would be to convert Jakarta Commons to SVN. Can we PLEASE consider doing so? A lot of projects, including the HTTP Server project, have been migrating, as can be seen from http://svn.apache.org/viewcvs. Jakarta and XML are definitely the laggards now. --- Noel +1 If the

Re: Migrate to SVN?

2004-11-26 Thread Alex Karasulu
Henri Yandell wrote: We've started doing Jakarta projects over to SVN, but we've been doing the easy stuff first to get into the hang of it. I think a pretty fair target for Jakarta is to be fully in SVN by the end of next year; So Henri you mean like in ~ 2006? This is really far out. Can't we

Re: Migrate to SVN?

2004-11-26 Thread Alex Karasulu
+1 Noel J. Bergman wrote: 6) should I just delete the /jakarta-commons-sandbox/email directory, or leave the folder and a note pointing to the promotion? What about the website as well? I think for [configuration] we just deleted both. The ideal scenario would be to use "cvs delete" on

Re: [general] Updating the Commons common web site

2004-11-26 Thread Mark R. Diggory
Martin Cooper wrote: On Thu, 25 Nov 2004 22:17:04 -0500, Mark R. Diggory <[EMAIL PROTECTED]> wrote: I'd verify that if you upload the tar.gz file to minotaur, tar -zxvf it and see if it expands properly. Theres no requirement in the site:deploy method that the file open in Winzip. Yes, I realise

[jira] Commented: (JELLY-168) jelly-tags/swing can not build

2004-11-26 Thread Paul Libbrecht (JIRA)
[ http://nagoya.apache.org/jira/browse/JELLY-168?page=comments#action_55887 ] Paul Libbrecht commented on JELLY-168: -- I really tried and really can't reproduce your bug. I tried the latest CVS status and the release version. I also tried with maven

[jira] Created: (JELLY-168) jelly-tags/swing can not build

2004-11-26 Thread carsten madsen (JIRA)
jelly-tags/swing can not build -- Key: JELLY-168 URL: http://nagoya.apache.org/jira/browse/JELLY-168 Project: jelly Type: Bug Components: taglib.swing Versions: 1.0-beta-4 Environment: Linux 2.6.8-1.521 Java(TM) 2 Runtime Envi

Re: [IO] FilenameUtils#getPrefixLength is broken on Unix

2004-11-26 Thread Stephen Colebourne
Thanks, I was aware that I'd checked in bad code, but hadn't been able to access a system since to be able to fix it. I might get to it tonight if someone doesn't beat me to it. Stephen --- Stefan Bodewig <[EMAIL PROTECTED]> wrote: > Hi, > > this is the manual version of what Gump is trying t

Re: Migrate to SVN?

2004-11-26 Thread Brett Porter
Well, for Maven-based webistes (all at commons) that seems to be quite an issue. Is there any other place than the scm plugin where svn integration in maven makes sense ? The scm plugin is only used for checkout, tagging, releases, etc. The changelog and activity reports work just fine in SVN.

DO NOT REPLY [Bug 32299] - [pipeline] Numerous changes and updates for Java 1.5

2004-11-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 31636] - [net] FTPClient.storeFile() should allow to specify CopyStreamListener

2004-11-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: [GUMP@brutus]: Project commons-jelly-tags-ant (in module jelly-tags) failed

2004-11-26 Thread Stefan Bodewig
Hi all, This has been hanging around for quite some time now and I'd like to help getting it resolved in some way. >From my reading of the code the tag in ant/target/test-classes/org/apache/commons/jelly/ant/suite.jelly line 114 somehow manages to invoke LoadTextTag#doTag without setting the

Re: Migrate to SVN?

2004-11-26 Thread Rory Winston
I don't have any problems with moving to SVN, in fact I've been itching to use it for a while, since it's become relatively mature. The only things I am unsure about is the tool support - I find the advanced CVS support in Eclipse invaluable. However, I guess the more people that use SVN, the m

RE: [email] rm -r lib/*.jar

2004-11-26 Thread Eric Pugh
It's fine. Can you also do the same trick in jakarta-commons-sandbox/email/libs as well? As I sent in my email to the PMC, I thought the reason those jars are not on ibiblio is that you can't redistribute them via a website. But having them in CVS would be akin to having them in a war file, co

[GUMP@brutus]: Project commons-jelly-tags-ant (in module jelly-tags) failed

2004-11-26 Thread Morgan Delagrange
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project commons-jelly-tags-ant has an issue affecting its community integration. This iss

cvs commit: jakarta-commons/net/src/java/org/apache/commons/net/nntp NNTPClient.java

2004-11-26 Thread rwinston
rwinston2004/11/26 01:41:32 Modified:net/src/java/org/apache/commons/net/nntp NNTPClient.java Log: Handle the condition where the low and high water marks are 0, as per bug 32152 Revision ChangesPath 1.15 +5 -1 jakarta-commons/net/src/java/org/apache/commons/n

DO NOT REPLY [Bug 32152] - [net] Problem calculating total article count

2004-11-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 32401] - The bundle-Attribute of the arg-Tag seems to have a Bug

2004-11-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 32401] New: - The bundle-Attribute of the arg-Tag seems to have a Bug

2004-11-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: Migrate to SVN?

2004-11-26 Thread Paul Libbrecht
Le 26 nov. 04, à 00:07, Brett Porter a écrit : Has anyone experienced maven's svn support ? The scm plugin is probably the only thing not supporting it, and that's just a time issue. If it were a priority, it could be done reasonably quickly. Well, for Maven-based webistes (all at commons) that se

[GUMP@brutus]: Project commons-io (in module jakarta-commons) failed

2004-11-26 Thread Ted Husted
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-io has an issue affecting its community integration. This issue affects 1

Re: Migrate to SVN?

2004-11-26 Thread Daniel Florey
I'm working with subversion (1.1.1)/subclipse/tortoiseSVN for a while now and I'm not completely convinced. The subclipse plugin for eclipse is by far not as mature as the cvs support (no links supported etc.) I was a little bit disappointed when I tried to use subclipse behind a proxy. I didn't