Re: pageEncoding and Jasper

2002-02-08 Thread yoko
From: Craig R. McClanahan [EMAIL PROTECTED] Subject: Re: pageEncoding and Jasper Date: Thu, 7 Feb 2002 20:02:00 -0800 (PST) Message-ID: [EMAIL PROTECTED] If it is the pageEncoding attribute of the %@ page % directive, then the answer is yes. Craig, the answer is no. Well, that's not

RE: Tomcat 3.3 and 4.x tuning via command line

2002-02-08 Thread GOMEZ Henri
I don't know if the Eclipse configuration allows you to specify -Dprop=value in Tomcat's startup. If it does, I think a lot of this can be done in Tomcat 3.3.1 using parameter substitution. I have used in server.xml Http10Connector port=${http.port} ... / and included

RE: Tomcat 3.3 - Cactus Issue

2002-02-08 Thread Vincent Massol
Ok. Thanks Costin. What I'll keep in mind is that it is complex ... ;-) -Vincent -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 08 February 2002 00:28 To: Tomcat Developers List Subject: RE: Tomcat 3.3 - Cactus Issue On Thu, 7 Feb 2002, Vincent Massol

DO NOT REPLY [Bug 6324] New: - Invalid POST requests through ajp13 cause 'garbage' characters on the ServletInputStream

2002-02-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6324. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6324] - Invalid POST requests through ajp13 cause 'garbage' characters on the ServletInputStream

2002-02-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6324. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6324] - Invalid POST requests through ajp13 cause 'garbage' characters on the ServletInputStream

2002-02-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6324. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: MBeans dev

2002-02-08 Thread Petr Jiricka
- Original Message - From: David Graff [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Thursday, February 07, 2002 10:44 PM Subject: Re: MBeans dev Craig, Thank you for the explanation of that. Very cool deal. The server.xml is pretty ugly to edit manually.

DO NOT REPLY [Bug 6327] New: - AJP config doc missing address option

2002-02-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6327. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-connectors/webapp/java/org/apache/catalina/connector/warp WarpRequest.java

2002-02-08 Thread jfclere
jfclere 02/02/08 03:52:51 Modified:webapp/java/org/apache/catalina/connector/warp WarpRequest.java Log: Fixes problem with Warp connector and HTTP POST via SSL (Fix in read() instead getX509Certificates()). Submitted by: Glen Nakamura, [EMAIL PROTECTED]

Re: [PATCH] Fixes problem with Warp connector and HTTP POST via SSL.

2002-02-08 Thread jean-frederic clere
Glen Nakamura wrote: Aloha, The following patch fixes a problem with SSL client ceritificates and HTTP POST data when using the Warp connector. When Tomcat retrieves the SSL certificate, the getX509Certificates() method is called and this.packet is reset... Now, when the read() method

DO NOT REPLY [Bug 6299] - SSI problem with multiple include statements in one file

2002-02-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6299. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: pageEncoding and Jasper

2002-02-08 Thread jean-frederic clere
[EMAIL PROTECTED] wrote: From: Craig R. McClanahan [EMAIL PROTECTED] Subject: Re: pageEncoding and Jasper Date: Thu, 7 Feb 2002 20:02:00 -0800 (PST) Message-ID: [EMAIL PROTECTED] If it is the pageEncoding attribute of the %@ page % directive, then the answer is yes. Craig,

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/server Http10Interceptor.java

2002-02-08 Thread larryi
larryi 02/02/08 04:43:58 Modified:src/share/org/apache/tomcat/modules/server Http10Interceptor.java Log: Move delay to the proper location as suggested by Bill Barker. Make the attribute a number again so the length of the delay may be specified.

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/server Ajp13Interceptor.java

2002-02-08 Thread larryi
larryi 02/02/08 04:48:04 Modified:src/share/org/apache/tomcat/modules/server Ajp13Interceptor.java Log: Since the ajp13.id file is always written, a shutdown property is added to the file to indicate that shutdown is enabled. Added an

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/startup StopTomcat.java

2002-02-08 Thread larryi
larryi 02/02/08 04:55:55 Modified:src/share/org/apache/tomcat/startup StopTomcat.java Log: Added an ajp12 option to go with the new ajp13 option and reworked the logic a bit. If either ajp12 or ajp13 is set (or the last one if both are set), that protocol will be used.

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util JavaGeneratorTool.java

2002-02-08 Thread larryi
larryi 02/02/08 05:00:18 Modified:src/share/org/apache/tomcat/util JavaGeneratorTool.java Log: Fix a couple of hardcoded '/' separators. Revision ChangesPath 1.7 +2 -2 jakarta-tomcat/src/share/org/apache/tomcat/util/JavaGeneratorTool.java Index:

cvs commit: jakarta-tomcat RELEASE-NOTES-3.3.1.txt

2002-02-08 Thread larryi
larryi 02/02/08 05:12:30 Modified:.RELEASE-NOTES-3.3.1.txt Log: Document the hopefully final change to the delay attribute for Http10Interceptor. Note the new support for shutdown via Ajp13. Also, note the configurable limit on flushing unread POST data. Revision

cvs commit: jakarta-tomcat RELEASE-PLAN-3.3.1.txt

2002-02-08 Thread larryi
larryi 02/02/08 05:12:42 Modified:.RELEASE-PLAN-3.3.1.txt Log: Update to current status. Revision ChangesPath 1.5 +6 -5 jakarta-tomcat/RELEASE-PLAN-3.3.1.txt Index: RELEASE-PLAN-3.3.1.txt

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core ContextManager.java

2002-02-08 Thread larryi
larryi 02/02/08 05:13:32 Modified:src/share/org/apache/tomcat/core ContextManager.java Log: Update the version string for 3.3.1 Beta 1 Revision ChangesPath 1.200 +1 -1 jakarta-tomcat/src/share/org/apache/tomcat/core/ContextManager.java Index:

cvs commit: jakarta-tomcat/src/doc readme

2002-02-08 Thread larryi
larryi 02/02/08 05:14:14 Modified:src/doc readme Log: Update the version to 3.3.1 Beta 1. Content still needs some work. Revision ChangesPath 1.23 +4 -4 jakarta-tomcat/src/doc/readme Index: readme

cvs commit: jakarta-tomcat/src/webpages index.html

2002-02-08 Thread larryi
larryi 02/02/08 05:15:22 Modified:src/webpages index.html Log: Update the version to 3.3.1 Beta 1. Revision ChangesPath 1.22 +2 -2 jakarta-tomcat/src/webpages/index.html Index: index.html

DO NOT REPLY [Bug 6299] - SSI problem with multiple include statements in one file

2002-02-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6299. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: Security in Tomcat Webapps - WAS: Tomcat 4 / mod_webapp RPMsavailable...

2002-02-08 Thread Mark R. Diggory
Heres a copy of the SPEC for mod_webapp. I'll pull together the other SPEC and init files for tomcat4 in the future. -thanks, Mark Diggory %define buildap20 0 Summary:mod_webapp modules for apache Name: mod_webapp Version:1.0.2

DO NOT REPLY [Bug 6331] New: - Cannot add more than one cookie

2002-02-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6331. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6332] New: - StandardWrapperValve eats IOExceptions

2002-02-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6332. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

JAASRealm

2002-02-08 Thread juraj Lenharcik
Hello, can it be that the JAASRealm classes only in the sources are? I downloaded the binary and src but found the needed classes only in the src. binary: jakarta-tomcat-4.0-20020208.zip src: jakarta-tomcat-4.0-src-20020208.zip Can someone tell me if they come later to the binaries, or I have

replace WebSphere session manager for clustering

2002-02-08 Thread Samuel Emangard
Hello, WebSphere manages sessions thanks to a sessions manager which stores sessions data either in-memory or in a database (the database solution is mandatory in the case of a WebSphere cluster). I am using a WebSphere cluster and my production team does not want to use a database to store

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core StandardWrapperValve.java

2002-02-08 Thread remm
remm02/02/08 08:04:31 Modified:catalina/src/share/org/apache/catalina/core StandardWrapperValve.java Log: - Don't swallow IOException anymore (bug 6332). - Craig: is there a reason why this was done ? Revision ChangesPath 1.32 +6 -6

Re: cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/coreStandardWrapperValve.java

2002-02-08 Thread Craig R. McClanahan
On 8 Feb 2002 [EMAIL PROTECTED] wrote: Date: 8 Feb 2002 16:04:31 - From: [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core StandardWrapperValve.java

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm MemoryRuleSet.java

2002-02-08 Thread craigmcc
craigmcc02/02/08 08:19:57 Modified:catalina/src/share/org/apache/catalina/realm MemoryRuleSet.java Log: Make MemoryRealm robust in terms of reading users with a username attribute (as is written by UserDatabase) *or* a name attribute. Revision

RE: Tomcat 3.3 and 4.x tuning via command line

2002-02-08 Thread Craig R. McClanahan
On Fri, 8 Feb 2002, GOMEZ Henri wrote: Date: Fri, 8 Feb 2002 09:31:44 +0100 From: GOMEZ Henri [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Subject: RE: Tomcat 3.3 and 4.x tuning via command line I don't know if the

Re: MBeans dev

2002-02-08 Thread Craig R. McClanahan
On Fri, 8 Feb 2002, Petr Jiricka wrote: Date: Fri, 8 Feb 2002 12:05:36 +0100 From: Petr Jiricka [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Subject: Re: MBeans dev - Original Message - From: David Graff

Re: JAASRealm

2002-02-08 Thread Craig R. McClanahan
in the sources are? I downloaded the binary and src but found the needed classes only in the src. binary: jakarta-tomcat-4.0-20020208.zip src: jakarta-tomcat-4.0-src-20020208.zip Can someone tell me if they come later to the binaries, or I have to build the sources? Aargh, that is probably

DO NOT REPLY [Bug 6299] - SSI problem with multiple include statements in one file

2002-02-08 Thread bugzilla
/show_bug.cgi?id=6299 SSI problem with multiple include statements in one file --- Additional Comments From [EMAIL PROTECTED] 2002-02-08 16:50 --- Sadly, having downloaded http://jakarta.apache.org/builds/jakarta-tomcat- 4.0/nightly/jakarta-tomcat-4.0-20020208.tar.gz and extracted the ssi jar

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm UserDatabaseRealm.java

2002-02-08 Thread craigmcc
craigmcc02/02/08 09:07:42 Modified:catalina/src/conf server.xml catalina/src/share/org/apache/catalina/realm UserDatabaseRealm.java Log: Stop playing games with the resourceName property setter. (Manveen, you will want to add a validation

Re: patch: fix warp connector to properly implement flush() and flushBuffer()

2002-02-08 Thread jean-frederic clere
Roger Nesbitt wrote: Hi all, I've got a little servlet that keeps the HTTP connection streams data (html script data, to be precise) at the rate of a few bytes per second. Tomcat handled this fine, but as soon as I routed it through Apache using the warp connector, I found that data was

RE: Tomcat 3.3 and 4.x tuning via command line

2002-02-08 Thread GOMEZ Henri
I'm wondering whether we really need to build it in to Tomcat itself, though. Can't you accomplish the same thing by using a little Ant script and run a filter or replace task? All this would require is packaging ant.jar along with Tomcat, or requiring users that need the facility to download

cvs commit: jakarta-tomcat-4.0/webapps/tomcat-docs ssl-howto.xml

2002-02-08 Thread jfclere
jfclere 02/02/08 09:51:05 Modified:webapps/tomcat-docs ssl-howto.xml Log: Add How to install a certificate singed by a certificate authority. Submitted by: pero, [EMAIL PROTECTED] Revision ChangesPath 1.11 +48 -0

Re: [PATCH] RETRY: Tomcat 4.0 Docs SSL-Howto

2002-02-08 Thread jean-frederic clere
GOMEZ Henri wrote: Seems good to me and should be applied also to Tomcat 3.3 SSL HOWTO :) I have committed it in TC4.0 (HEAD). Should I also committed in the tomcat_40_branch branch? - Henri Gomez ___[_] EMAIL : [EMAIL PROTECTED](. .) PGP KEY : 697ECEDD

Re: [PATCH] RETRY: Tomcat 4.0 Docs SSL-Howto

2002-02-08 Thread Remy Maucherat
GOMEZ Henri wrote: Seems good to me and should be applied also to Tomcat 3.3 SSL HOWTO :) I have committed it in TC4.0 (HEAD). Should I also committed in the tomcat_40_branch branch? If it is also relevant, then yes. Remy -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

RE: Tomcat 3.3 and 4.x tuning via command line

2002-02-08 Thread Craig R. McClanahan
On Fri, 8 Feb 2002, GOMEZ Henri wrote: Date: Fri, 8 Feb 2002 18:10:57 +0100 From: GOMEZ Henri [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Subject: RE: Tomcat 3.3 and 4.x tuning via command line I'm wondering whether

RE: Tomcat 3.3 and 4.x tuning via command line

2002-02-08 Thread costinm
On Fri, 8 Feb 2002, Craig R. McClanahan wrote: target name=generate description=Generate customized server.xml replace file=server.xml token=@port@ value=${port} /target /project In your template server.xml, you'd have a Connector element like this: Connector ...

[4.0.2] [VOTE] Final release

2002-02-08 Thread Remy Maucherat
Hi, I'd like to propose to release the current code in the 4.0 branch as Tomcat 4.0.2 Final. This release includes lots of bugfixes and improvements, especially in the connectors area, which feature a dramatic improvement over what was available in Tomcat 4.0.1 (this alone justifies making a

RE: [4.0.2] [VOTE] Final release

2002-02-08 Thread Kevin Seguin
+0 actually, +0.5 -- i'll help out if i can :) -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 12:32 PM To: [EMAIL PROTECTED] Subject: [4.0.2] [VOTE] Final release Hi, I'd like to propose to release the current code in the

Re: [4.0.2] [VOTE] Final release

2002-02-08 Thread Jon Scott Stevens
on 2/8/02 10:32 AM, Remy Maucherat [EMAIL PROTECTED] wrote: ballot [ ] +1 - I support this release and I will help [X] +0 - I support this release [ ] -0 - I do not support this release, because: -jon -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

Re: [4.0.2] [VOTE] Final release

2002-02-08 Thread Craig R. McClanahan
On Fri, 8 Feb 2002, Remy Maucherat wrote: ballot [X] +1 - I support this release and I will help [ ] +0 - I support this release [ ] -0 - I do not support this release, because: /ballot Craig -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

Re: [4.0.2] [VOTE] Final release

2002-02-08 Thread costinm
On Fri, 8 Feb 2002, Remy Maucherat wrote: ballot [X] +1 - I support this release and I will help [ ] +0 - I support this release [ ] -0 - I do not support this release, because: /ballot I'll help more on the connector side, of course ( so it's +0.6 ). Costin -- To unsubscribe,

DO NOT REPLY [Bug 6335] New: - JspC doesn't compile the Java it produces

2002-02-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6335. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/server Ajp13Interceptor.java

2002-02-08 Thread larryi
larryi 02/02/08 12:23:48 Modified:src/share/org/apache/tomcat/modules/server Ajp13Interceptor.java Log: Change the authenticate attribute to authenticateConnection since it happens per connection instead of per request. Revision ChangesPath

cvs commit: jakarta-tomcat/src/doc serverxml.html

2002-02-08 Thread larryi
larryi 02/02/08 12:24:53 Modified:src/doc serverxml.html Log: Document the updated delay attribute in Http10Connector and new attributes on Ajp13Connector. Revision ChangesPath 1.20 +60 -10jakarta-tomcat/src/doc/serverxml.html Index: serverxml.html

Re: [4.0.2] [VOTE] Final release

2002-02-08 Thread Mike Anderson
[X] +1 - I support this release and I will help [ ] +0 - I support this release [ ] -0 - I do not support this release, because: I'll build NetWare mod_jk connectors. Mike Anderson -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: [4.0.2] [VOTE] Final release

2002-02-08 Thread Larry Isaacs
ballot [ ] +1 - I support this release and I will help [X] +0 - I support this release [ ] -0 - I do not support this release, because: /ballot Larry -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: problem with manager web app

2002-02-08 Thread Mark Gordon
Same issue with newst tomcat and newest mod_webapp. 2002-02-08 13:50:21 WarpEngine[Apache]: Mapping request 2002-02-08 13:50:21 [org.apache.catalina.connector.warp.WarpRequestHandler] java.lang.NullPointerException at org.apache.catalina.connector.warp.WarpEngine.map(WarpEngine.java)

Re: [4.0.2] [VOTE] Final release

2002-02-08 Thread Patrick Luby
[X] +1 - I support this release and I will help [ ] +0 - I support this release [ ] -0 - I do not support this release, because: Patrick Remy Maucherat wrote: Hi, I'd like to propose to release the current code in the 4.0 branch as Tomcat 4.0.2 Final. This release includes lots of

RE: Tomcat 3.3 and 4.x tuning via command line

2002-02-08 Thread GOMEZ Henri
There's a lot of power in what the replace task can do. Here's a very simple one that replaces the string @port@ with the port number specified by the port property: project name=Create server.xml default=generate target name=generate description=Generate customized server.xml

RE: [4.0.2] [VOTE] Final release

2002-02-08 Thread GOMEZ Henri
As discussed yesterday, the binaries will include a minimal distribution designed to be run on JDK 1.4. I miss the discussion of yesterday, sorry. Did it means that the build won't require jndi/jdbcext/javamail/jaf that caused me so many headaches in RPM packaging ? ballot [ ] +1 - I support

RE: [4.0.2] [4.1] [PROPOSAL] Binaries packaging

2002-02-08 Thread GOMEZ Henri
For the ZIP/TGZ packaging: A) Full JDK 1.4: This includes everything, except the libraries which are already included in the JDK (including the JAXP XML parser). I'd like to use Xerces 2.0, will it be in JDK 1.4 ? B) Light JDK 1.4: This incluides a bare bones Tomcat distribution which

Re: [4.0.2] [VOTE] Final release

2002-02-08 Thread Remy Maucherat
I miss the discussion of yesterday, sorry. Did it means that the build won't require jndi/jdbcext/javamail/jaf that caused me so many headaches in RPM packaging ? The build doesn't require that, unless you use the full.dist option (which forces building everything, to prevent the release

RE: [4.0.2] [VOTE] Final release

2002-02-08 Thread GOMEZ Henri
The build doesn't require that, unless you use the full.dist option (which forces building everything, to prevent the release manager from releasing incomplete builds ;-)). JNDI is the only API you mentioned that is required (but it's included in JDK 1.3+, and you dont need the JAR).

Re: [4.0.2] [VOTE] Final release

2002-02-08 Thread Amy Roh
+1 Amy Remy Maucherat wrote: Hi, I'd like to propose to release the current code in the 4.0 branch as Tomcat 4.0.2 Final. This release includes lots of bugfixes and improvements, especially in the connectors area, which feature a dramatic improvement over what was available in Tomcat

Re: [4.0.2] [VOTE] Final release

2002-02-08 Thread Manveen Kaur
ballot [X] +1 - I support this release and I will help [ ] +0 - I support this release [ ] -0 - I do not support this release, because: /ballot --Manveen -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [4.0.2] [VOTE] Final release

2002-02-08 Thread Bill Barker
ballot [ ] +1 - I support this release and I will help [X] +0 - I support this release [ ] -0 - I do not support this release, because: Actually, more like 0.4, since I'll help with ApacheConfig etc. /ballot -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional