Re: Tag time?

2001-10-01 Thread Greg Stein
On Sat, Sep 29, 2001 at 11:50:27PM +0200, Eli Marmor wrote: Justin Erenkrantz wrote: .. I'd like to get the new input filtering code in. It's a major change, ... Input filtering in mod_ext_filter is done only partially, and commented out. Is it going to be finalized too? Note:

Re: Tag time?

2001-10-01 Thread Greg Stein
On Fri, Sep 28, 2001 at 06:31:57PM -0400, [EMAIL PROTECTED] wrote: ... Ah... Hate to butt in here but if the Justin's original reason for rewriting the entire socket input 'front door' was (as he said ) because of something about it NOT handing client-host Transfer-encoding very well then

Re: cvs commit: httpd-2.0/server protocol.c

2001-10-01 Thread Greg Stein
On Sat, Sep 29, 2001 at 08:48:59AM -, [EMAIL PROTECTED] wrote: jerenkrantz01/09/29 01:48:59 Modified:modules/http http_core.c http_protocol.c server protocol.c Log: Remove the lameo create_req hack and delay the addition of the HTTP_IN filter until

Not-a-bug: .asis handler isn't driven

2001-10-01 Thread William A. Rowe, Jr.
It isn't a problem, 1.3 mime/negotation is subtely broken, so of course this works in 1.3. OK ... let's start from page one. Two files in a directory: index.html.en1590 bytes index.html.fr1632 bytes if the user's Accept-Language header is simply en, and they request index.html, they

Re: .asis handler isn't driven

2001-10-01 Thread Greg Ames
William A. Rowe, Jr. wrote: Greg, this isn't an error, and the early Success was a catastrophic failure for many cases. Sir, you are mistaken. daedalus's config file contains AddHandler send-as-is asis That says that if /search.html is requested, and file docroot/search.html.asis

Re: Simple warning, simple fix?

2001-10-01 Thread William A. Rowe, Jr.
My bad, that's an http_ctx that Justin added in the .c source (no wonder my grep of *.h didn't find anything ;) I'll patch that new struct to apr_off_t in a bit. c-remaining was already apr_off_t. - Original Message - From: William A. Rowe, Jr. [EMAIL PROTECTED] To: [EMAIL

Re: .asis handler isn't driven

2001-10-01 Thread William A. Rowe, Jr.
From: Greg Ames [EMAIL PROTECTED] Sent: Monday, October 01, 2001 9:44 AM William A. Rowe, Jr. wrote: Greg, this isn't an error, and the early Success was a catastrophic failure for many cases. Sir, you are mistaken. daedalus's config file contains AddHandler send-as-is asis

add unique_id and vhost_alias to Win32?

2001-10-01 Thread Günter Knauf
Hi Bill, can you also add these mods to the Apache 2.0 project please, or is there a reason against this? have attached the *.dsp. Guenter. mod_unique_id.dsp mod_vhost_alias.dsp

Re: cvs commit: httpd-2.0/docs/docroot index.html.hr.iso8859-2

2001-10-01 Thread Jeff Trawick
[EMAIL PROTECTED] writes: wrowe 01/10/01 06:27:06 Modified:docs/docroot index.html.hr.iso8859-2 Log: Wording changes Obtained from: news:hr.comp.www Submitted by: Mr. Vlatko Juric-Kokic [EMAIL PROTECTED] Reviewed by:Mladen Turk [EMAIL

Re: add unique_id and vhost_alias to Win32?

2001-10-01 Thread William A. Rowe, Jr.
Will do. I've been kicking around ways to build _all_ the loadable modules from the make files, adding these projects would have dropped my incentive to finish that project :) However, I've had too much on my plate. I'll drop these in and get the modules building on Win32, right after I finish

Re: Not-a-bug: .asis handler isn't driven

2001-10-01 Thread Bill Stoddard
Testing in 1.3... It isn't a problem, 1.3 mime/negotation is subtely broken, so of course this works in 1.3. OK ... let's start from page one. Two files in a directory: index.html.en1590 bytes index.html.fr1632 bytes if the user's Accept-Language header is simply en, and they

Re: .asis handler isn't driven

2001-10-01 Thread Greg Ames
William A. Rowe, Jr. wrote: From: Greg Ames [EMAIL PROTECTED] Sent: Monday, October 01, 2001 9:44 AM ... daedalus's config file contains AddHandler send-as-is asis That says that if /search.html is requested, and file docroot/search.html.asis exists, it is a match and it to be

Re: Tag time?

2001-10-01 Thread TOKILEY
In a message dated 01-10-01 04:37:59 EDT, Greg Stein wrote... I have been looking and looking at the patch and someone want to tell me where it checks for TE: which is the only way to REALLY know how the Transfer-Encoding will end? ( Blank CR/LF following CR/LF following 0 byte

Re: .asis handler isn't driven

2001-10-01 Thread Dirk-Willem van Gulik
On Mon, 1 Oct 2001, William A. Rowe, Jr. wrote: We still have no mechanism to 'quantify' the quality of one handler or filter over another. Funny that index.html 4000 bytes index.cgi500 bytes will serve index.cgi, based on size, when the cpu impact of index.html is

Re: .asis handler isn't driven

2001-10-01 Thread William A. Rowe, Jr.
From: Greg Ames [EMAIL PROTECTED] Sent: Monday, October 01, 2001 11:59 AM Greg Ames wrote: William A. Rowe, Jr. wrote: We still have no mechanism to 'quantify' the quality of one handler or filter over another. Funny that index.html 4000 bytes index.cgi500 bytes

Re: Not-a-bug: .asis handler isn't driven

2001-10-01 Thread Bill Stoddard
Still working on recreating this... The sub_req for index.html.temp is destroyed because sub_req-content_type == NULL, which looks correct to me. Try index.html.en.temp - which may have been what I was thinking of. .temp is the last extension inspected by mod_mime. If temp is not in any

Re: .asis handler isn't driven

2001-10-01 Thread William A. Rowe, Jr.
Dirk, we aren't discussing the AddFoo content-value ext directives, those continue to work fine. And yes, it would be nice to add a bit of server-side 'quality control' over negotiation (say, an additional 'multiplier' where 1.000 is as-requested, .500 would cut the client assigned weight

Re: .asis handler isn't driven

2001-10-01 Thread William A. Rowe, Jr.
From: William A. Rowe, Jr. [EMAIL PROTECTED] Sent: Monday, October 01, 2001 1:03 PM From: Greg Ames [EMAIL PROTECTED] Sent: Monday, October 01, 2001 11:59 AM Actually, for the / situation, it looks like mod_dir will pick the first match. daedalus has DirectoryIndex index.html index.cgi

Re: .asis handler isn't driven

2001-10-01 Thread William A. Rowe, Jr.
From: Dirk-Willem van Gulik [EMAIL PROTECTED] Sent: Monday, October 01, 2001 1:37 PM I am trying your change at the moment by stepping through it with the debugger.; I am worried that it fails for the case where CGI is not only language authenticated but also on something else; say charset.

Re: Not-a-bug: .asis handler isn't driven

2001-10-01 Thread Joshua Slive
On Mon, 1 Oct 2001, William A. Rowe, Jr. wrote: If it's an element of the Accept-* negotiation, it needs to be multiview-matched. If it isn't, it has no business in there. If you disagree with the above sentence, let's narrow the argument to that statement. I've only read this thread

Re: SSL configuration file

2001-10-01 Thread Rodent of Unusual Size
Ryan Bloom wrote: The reality is that most people just use the default config, and modify it to fit their needs. I think that actually the reality is that most people get a massaged config as part of their OS distribution, which probably bears only a nodding resemblance to our file. The

part of request duplicated

2001-10-01 Thread Cliff Woolley
I can't remember if this has been fixed since 2.0.24 (whatever version is running on daedalus), but if you GET the URL http://httpd.apache.org/docs-2.0/programs/httpd.html you'll see that the first few lines are duplicated (didn't count the exact number of characters). Can anyone confirm or

Re: [PATCH] 1.3: transparent configure and build of shared DLL modules

2001-10-01 Thread Stipe Tolj
sorry to be pendantic, but current CVS of apache-1.3 is broken for Cygwin platform, since Martin missed to commit first hunk of the patch for src/Configure: Please commit to CVS. diff -urN apache-1.3/src/Configure apache-1.3-cygwin/src/Configure --- apache-1.3/src/ConfigureSun Jul 15

Re: SSL configuration file

2001-10-01 Thread Ryan Bloom
On Monday 01 October 2001 02:56 pm, MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: I thought we were going to have a file that just had the SSL directives in it, so that people could easily just Include that one file in their current config files. I wouldn't want to have an httpd-ssl.conf that

Re: SSL configuration file

2001-10-01 Thread William A. Rowe, Jr.
IfModule mod_ssl.c Include conf/httpd-ssl.conf /IfModule Bill - Original Message - From: MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, October 01, 2001 4:56 PM Subject: RE: SSL configuration file Quick related question : should I

[PATCH] convert AP_CHILD_THREAD_FROM_ID into two assignable macros

2001-10-01 Thread Aaron Bannert
This patch converts the AP_CHILD_THREAD_FROM_ID macro into two macros: AP_CHILD_PSLOT_FROM_ID and AP_CHILD_TSLOT_FROM_ID. This was done so that the values returned could be cached and reused, instead of calling the macro over and over (which in many cases hides a multiplcation and division of a

Re: cvs commit: httpd-2.0/modules/generators mod_status.c

2001-10-01 Thread Greg Stein
On Mon, Oct 01, 2001 at 03:51:07PM -, [EMAIL PROTECTED] wrote: wrowe 01/10/01 08:51:07 Modified:modules/generators mod_status.c Log: Clean up some warnings by summing bytecounts into apr_off_t holders instead of ulongs. Ah! Good stuff. Cheers, -g -- Greg

Re: [PATCH] some STATUS info, volunteering

2001-10-01 Thread Aaron Bannert
On Mon, Oct 01, 2001 at 05:31:48PM -0700, Roy Fielding wrote: On Mon, Oct 01, 2001 at 04:59:20PM -0700, Aaron Bannert wrote: I've been fooling around with this for the last week or so and I have some more clues: - any module that is declared with APACHE_MODULE( most) while we have

RE: SSL configuration file

2001-10-01 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
Yes.. exactly.. but is it not required that the httpd-ssl.conf in the CVS ?.. Where else would the user get the httpd-ssl.conf from ?.. -Madhu -Original Message- From: Ryan Bloom [mailto:[EMAIL PROTECTED]] Sent: Monday, October 01, 2001 3:10 PM To: [EMAIL PROTECTED]; William A. Rowe,

Re: SSL configuration file

2001-10-01 Thread Justin Erenkrantz
On Mon, Oct 01, 2001 at 05:45:22PM -0700, MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: Yes.. exactly.. but is it not required that the httpd-ssl.conf in the CVS ?.. Where else would the user get the httpd-ssl.conf from ?.. Yes, it needs to be in CVS, but you were talking about requiring

RE: SSL configuration file

2001-10-01 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
Two POV for separating out the SSL configuration : 1. As Ryan mentioned, SSL is not built into the binary - so, why put the SSL information in the httpd.conf at all. Another view is if a user doesn't want to enable SSL, why should he at all see any SSL config in the httpd.conf 2. The no. of

[ejw@cse.ucsc.edu: RE: Protocol Action: Versioning Extensions to WebDAV to Proposed Standard]

2001-10-01 Thread Greg Stein
FYI From here, some minor edits (grammatical and the like) go into the draft, then it is assigned an RFC number. Cheers, -g - Forwarded message from Jim Whitehead [EMAIL PROTECTED] - From: Jim Whitehead [EMAIL PROTECTED] Subject: RE: Protocol Action: Versioning Extensions to WebDAV to

[PATCH] adding xml output to mod_status -- [REPOST]

2001-10-01 Thread Ian Holsman
Greg Stein wrote: On Mon, Oct 01, 2001 at 03:51:07PM -, [EMAIL PROTECTED] wrote: wrowe 01/10/01 08:51:07 Modified:modules/generators mod_status.c Log: Clean up some warnings by summing bytecounts into apr_off_t holders instead of ulongs. Ah! Good stuff.