Re: svn commit: r524777 - /tomcat/connectors/trunk/jk/tools/jkrelease.sh

2007-04-03 Thread Rainer Jung
OK, I forgot, that I actually had a user and group named asf (I thought tar would ignore their non-existance). But I agree with William, that we should instead use a general purpose user and group exactly because of the reasons given by him. If a non-root user extracts the tarball, his owners

svn commit: r525070 - /tomcat/connectors/trunk/jk/tools/jkrelease.sh

2007-04-03 Thread mturk
Author: mturk Date: Tue Apr 3 00:36:45 2007 New Revision: 525070 URL: http://svn.apache.org/viewvc?view=rev&rev=525070 Log: Use root/users for a user/group when creating tar. Modified: tomcat/connectors/trunk/jk/tools/jkrelease.sh Modified: tomcat/connectors/trunk/jk/tools/jkrelease.sh URL:

Re: svn commit: r524777 - /tomcat/connectors/trunk/jk/tools/jkrelease.sh

2007-04-03 Thread Mladen Turk
Rainer Jung wrote: OK, I forgot, that I actually had a user and group named asf (I thought tar would ignore their non-existance). All in all I would suggest root:bin to. I used root:users instead. Think the users group exists on all *nixes. Regards, Mladen.

svn commit: r525072 - /tomcat/connectors/trunk/jk/tools/jkrelease.sh

2007-04-03 Thread mturk
Author: mturk Date: Tue Apr 3 00:41:22 2007 New Revision: 525072 URL: http://svn.apache.org/viewvc?view=rev&rev=525072 Log: Oops. Looks there is no users group on Solaris, using bin instead. Modified: tomcat/connectors/trunk/jk/tools/jkrelease.sh Modified: tomcat/connectors/trunk/jk/tools/j

Re: svn commit: r524777 - /tomcat/connectors/trunk/jk/tools/jkrelease.sh

2007-04-03 Thread Mladen Turk
All in all I would suggest root:bin to. I used root:users instead. Think the users group exists on all *nixes. Hmm, it doesn't after all :( Switching to suggested root/bin Regards, Mladen. - To unsubscribe, e-mail: [EMAIL

Re: svn commit: r524777 - /tomcat/connectors/trunk/jk/tools/jkrelease.sh

2007-04-03 Thread William A. Rowe, Jr.
Mladen Turk wrote: > Rainer Jung wrote: >> OK, I forgot, that I actually had a user and group named asf (I >> thought tar would ignore their non-existance). >> >> All in all I would suggest root:bin to. > > I used root:users instead. > Think the users group exists on all *nixes. So does bin. use

svn commit: r525132 - /tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java

2007-04-03 Thread mturk
Author: mturk Date: Tue Apr 3 03:45:51 2007 New Revision: 525132 URL: http://svn.apache.org/viewvc?view=rev&rev=525132 Log: Fix #41973 by not initializing IPV6 if address is null. APR cannot listen both on IPV4 and IPV6 on some platforms (e.g BSD and Windows). Modified: tomcat/tc6.0.x/trunk/

svn commit: r525133 - /tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java

2007-04-03 Thread mturk
Author: mturk Date: Tue Apr 3 03:47:06 2007 New Revision: 525133 URL: http://svn.apache.org/viewvc?view=rev&rev=525133 Log: Fix #41973 by not initializing IPV6 if address is null. APR cannot listen both on IPV4 and IPV6 on some platforms (e.g BSD and Windows). Modified: tomcat/tc6.0.x/trunk/

DO NOT REPLY [Bug 41973] - IPv6 APR Connectors assumes IPv4-mapped IPv6 address support

2007-04-03 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: [VOTE] Release Tomcat 4.1.36

2007-04-03 Thread Mark Thomas
Mark Thomas wrote: > Tomcat 4.1.36 is: > [X] Stable > [ ] Beta > [ ] Alpha Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Passing configuration param to a AprLifecycleListener

2007-04-03 Thread Mladen Turk
Hi, Few months ago Filip added something like Now, that simply doeasn't work because SSL.initialize(null) is always called, and my perception was that this would allow having SSL.initialize(someengine) or not calling SSL.initialize at all if off is entered. Now, additional param would be neede

svn commit: r525160 - /tomcat/tc6.0.x/trunk/java/org/apache/catalina/connector/CoyoteAdapter.java

2007-04-03 Thread remm
Author: remm Date: Tue Apr 3 07:13:33 2007 New Revision: 525160 URL: http://svn.apache.org/viewvc?view=rev&rev=525160 Log: - It should be possible for the event object to be closed asynchronously. In that case, I think an END event should be sent to cleanup the pipeline. Modified: tomcat/

svn commit: r525161 - /tomcat/tc6.0.x/trunk/webapps/docs/aio.xml

2007-04-03 Thread remm
Author: remm Date: Tue Apr 3 07:14:30 2007 New Revision: 525161 URL: http://svn.apache.org/viewvc?view=rev&rev=525161 Log: - Merge from javadoc. Modified: tomcat/tc6.0.x/trunk/webapps/docs/aio.xml Modified: tomcat/tc6.0.x/trunk/webapps/docs/aio.xml URL: http://svn.apache.org/viewvc/tomcat/

svn commit: r525163 - /tomcat/connectors/trunk/jni/native/src/ssl.c

2007-04-03 Thread mturk
Author: mturk Date: Tue Apr 3 07:16:23 2007 New Revision: 525163 URL: http://svn.apache.org/viewvc?view=rev&rev=525163 Log: Parse the random file name as mod_ssl does. Use egd only if prefixed with egd: (eg, egd:/var/run/egd-pool) Modified: tomcat/connectors/trunk/jni/native/src/ssl.c Modif

Re: Passing configuration param to a AprLifecycleListener

2007-04-03 Thread Filip Hanik - Dev Lists
That should be pretty straight forward, no mbean or anything needed. I'll take a look at it tonight Filip Mladen Turk wrote: Hi, Few months ago Filip added something like SSLEngine="someengine/on/off" /> Now, that simply doeasn't work because SSL.initialize(null) is always called, and my pe

svn commit: r525200 - /tomcat/tc6.0.x/trunk/webapps/docs/aio.xml

2007-04-03 Thread pero
Author: pero Date: Tue Apr 3 09:27:21 2007 New Revision: 525200 URL: http://svn.apache.org/viewvc?view=rev&rev=525200 Log: fixed typo... Modified: tomcat/tc6.0.x/trunk/webapps/docs/aio.xml Modified: tomcat/tc6.0.x/trunk/webapps/docs/aio.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/

Re: Passing configuration param to a AprLifecycleListener

2007-04-03 Thread Mladen Turk
Filip Hanik - Dev Lists wrote: That should be pretty straight forward, no mbean or anything needed. I'll take a look at it tonight Cool, otherwise if we have a native compiled without SSL, it throws exception instead not initializing SSL at all. Regards, Mladen. -

svn commit: r525206 - in /tomcat/connectors/trunk/jni: jnirelease.sh native/include/tcn_version.h native/os/win32/libtcnative.rc

2007-04-03 Thread mturk
Author: mturk Date: Tue Apr 3 09:42:27 2007 New Revision: 525206 URL: http://svn.apache.org/viewvc?view=rev&rev=525206 Log: Increment the current trunk version after 1.1.10 tag. Modified: tomcat/connectors/trunk/jni/jnirelease.sh tomcat/connectors/trunk/jni/native/include/tcn_version.h

DO NOT REPLY [Bug 42037] New: - User principal not always set correctly

2007-04-03 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 42037] - User principal not always set correctly

2007-04-03 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 42037] - User principal not always set correctly

2007-04-03 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 42037] - User principal not always set correctly

2007-04-03 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 42038] New: - JK uriworkermap case sensitive exclusion rules ignored

2007-04-03 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

svn commit: r525296 - /tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml

2007-04-03 Thread remm
Author: remm Date: Tue Apr 3 14:55:06 2007 New Revision: 525296 URL: http://svn.apache.org/viewvc?view=rev&rev=525296 Log: - Changelog update. Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/view

Is there a tomcat/jasper test suite?

2007-04-03 Thread David Jencks
Following Remy's suggestion I implemented web.xml overrides of annotations but although the result compiles I have no very good way to determine if it works. I looked around a bit but didn't see any unit tests or integration testsuite. What am I missing? Right now I can really only test

DO NOT REPLY [Bug 42039] New: - Tomcat doesn't output the stack trace of UnavailableException.

2007-04-03 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 42039] - Tomcat doesn't output the stack trace of UnavailableException.

2007-04-03 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: Is there a tomcat/jasper test suite?

2007-04-03 Thread Yoav Shapira
Hi, On 4/3/07, David Jencks <[EMAIL PROTECTED]> wrote: Following Remy's suggestion I implemented web.xml overrides of annotations but although the result compiles I have no very good way to determine if it works. I looked around a bit but didn't see any unit tests or integration testsuite. Wha

DO NOT REPLY [Bug 42041] New: - Tomcat deployer can not auto create directory "apache-tomcat-6.0.10\conf\Catalina\localhost"

2007-04-03 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 42041] - Tomcat deployer can not auto create directory "apache-tomcat-6.0.10\conf\Catalina\localhost"

2007-04-03 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 42041] - Tomcat deployer can not auto create directory "apache-tomcat-6.0.10\conf\Catalina\localhost"

2007-04-03 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 42041] - Tomcat deployer can not auto create directory "apache-tomcat-6.0.10\conf\Catalina\localhost"

2007-04-03 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

A Survey on Defect Management Practices in Free/Open Source Software

2007-04-03 Thread Anu Gupta DCSA
Dear Tomcat Contributors, I seek help from designers, developers, testers,defect fixers,project managers or playing any other key role in Free/Open Source software development or maintenence in carrying out a study on practices and problems of defect management in various Free/Open Source Soft