[PATCH] mod_deflate, style cleanup

2002-02-17 Thread Sander Striker
Hi, This is a style cleanup only patch. It removes trailing spaces. Corrects some identation. Minor style nits, no code changes. Patch is attached, because the mailer can't cope with trailing spaces very well, so it seems. Sander deflate.patch Description: Binary data

Re: PROPOSAL: new directive for mod_proxy

2002-02-17 Thread Graham Leggett
Ian Holsman wrote: In that case +1 ReverseProxyEngine On ? I still don't understand why it is required. Reverse proxy behaviour is switched on using ProxyPass, and as I understand it also by some magic in mod_rewrite. Adding another directive means to get reverse proxy behaviour you need

Re: PROPOSAL: new directive for mod_proxy

2002-02-17 Thread Ian Holsman
Graham Leggett wrote: This is a cryptographically signed message in MIME format. --msCFE9391983F6F7937BC9AC92 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Ian Holsman wrote: In that case +1 ReverseProxyEngine On ? I still don't understand

Re: cvs commit: httpd-2.0/modules/mappers mod_rewrite.c

2002-02-17 Thread Aaron Bannert
On Sat, Feb 16, 2002 at 09:57:17PM -, [EMAIL PROTECTED] wrote: brianp 02/02/16 13:57:17 Modified:modules/mappers mod_rewrite.c Log: Converted the rewrite mapper lock to the new lock API Did mod_rewrite actually need a LOCKALL? If so, apr_proc_mutex_t is an insufficient

bugdb user database corrupted

2002-02-17 Thread Joshua Slive
Someone told Aaron to use htpasswd to add himself to the bug database password list on daedalus. This was a *bad* idea, since the bug database password list was in DB format. So now the bug database password list is corrupted, and nobody can login. I've played around with it a little, and I

Re: bugdb user database corrupted

2002-02-17 Thread David Ford
Run strings on the db, they keys will be in the form of RHS\nLHS. as in the right hand side will appear then the left hand side will appear. e.g. user, password: ... mypassword David ... You may have to rebuild the db. David Joshua Slive wrote: Someone told Aaron to use htpasswd to add

Re: bugdb user database corrupted

2002-02-17 Thread Cliff Woolley
On Sun, 17 Feb 2002, David Ford wrote: Someone told Aaron to use htpasswd to add himself to the bug database password list on daedalus. This was a *bad* idea, since the bug database password list was in DB format. So now the bug database password list is corrupted, and nobody can login.

Re: cvs commit: httpd-2.0/modules/mappers mod_rewrite.c

2002-02-17 Thread Brian Pane
You're right; the apr_proc_mutex_t won't be sufficient in this case. We'll really need apr_global_mutex_t for this. If that's going to be available soon, I'll switch the rewrite code to use it when it's released; but if not, I'll revert to the old lock API for now. --Brian Aaron Bannert wrote:

Re: bugdb user database corrupted

2002-02-17 Thread Joshua Slive
On Sun, 17 Feb 2002, David Ford wrote: Run strings on the db, they keys will be in the form of RHS\nLHS. as in the right hand side will appear then the left hand side will appear. e.g. user, password: ... mypassword David ... Hmmm... Good idea, but it didn't look quite that simple

Re: cvs commit: httpd-2.0/modules/mappers mod_rewrite.c

2002-02-17 Thread Aaron Bannert
On Sun, Feb 17, 2002 at 02:51:43PM -0800, Brian Pane wrote: You're right; the apr_proc_mutex_t won't be sufficient in this case. We'll really need apr_global_mutex_t for this. If that's going to be available soon, I'll switch the rewrite code to use it when it's released; but if not, I'll

Re: bugdb user database corrupted

2002-02-17 Thread Joshua Slive
On Sun, 17 Feb 2002, Cliff Woolley wrote: On Sun, 17 Feb 2002, David Ford wrote: Someone told Aaron to use htpasswd to add himself to the bug database password list on daedalus. This was a *bad* idea, since the bug database password list was in DB format. So now the bug database

Re: bugdb user database corrupted

2002-02-17 Thread Cliff Woolley
On Sun, 17 Feb 2002, Joshua Slive wrote: I don't think it is easily fixable. It's looking like that's the case. Aaron and I are playing with it and it looks pretty rightly toasted. Any objection if I simply erase the existing database and start a new one? I will provide instructions on how

Re: bugdb user database corrupted

2002-02-17 Thread Aaron Bannert
On Sun, Feb 17, 2002 at 04:48:39PM -0500, Joshua Slive wrote: Someone told Aaron to use htpasswd to add himself to the bug database password list on daedalus. This was a *bad* idea, since the bug database password list was in DB format. Uh oh... So now the bug database password list is

Re: bugdb user database corrupted

2002-02-17 Thread Aaron Bannert
On Sun, Feb 17, 2002 at 05:33:37PM -0500, Joshua Slive wrote: I don't think it is easily fixable. I agree. I think the line-by-line processing in htpasswd corrupted the db file entirely. Any objection if I simply erase the existing database and start a new one? I will provide instructions on

bugdb password database reset

2002-02-17 Thread Joshua Slive
On Sun, 17 Feb 2002, Cliff Woolley wrote: On Sun, 17 Feb 2002, Joshua Slive wrote: Any objection if I simply erase the existing database and start a new one? I will provide instructions on how to add yourself. +1 from me and Aaron. [We could have had someone grab the old one off a

Re: bugdb password database reset

2002-02-17 Thread Joshua Slive
On Sun, 17 Feb 2002, Aaron Bannert wrote: On Sun, Feb 17, 2002 at 05:45:37PM -0500, Joshua Slive wrote: Done. To add youself to the bugdatabase, you need to login to daedalus and type [incorrect command omitted] I think you meant: /usr/local/apache/bin/dbmmanage

mod_vhost_alias?

2002-02-17 Thread Cliff Woolley
Has anybody tried mass virtual hosting under 2.0 in a while? Have seen at least one report that it was unstable. --Cliff -- Cliff Woolley [EMAIL PROTECTED] Charlottesville, VA

Request for comments: leader/follower MPM design

2002-02-17 Thread Brian Pane
Now that APR is beginning to support atomic compare-and-set (CAS) operations, I decided to revisit an old idea: use a leader/follower design to improve upon the efficiency of the worker MPM. The following writeup describes my current design idea. It's somewhat radical, particularly in the parts

Open Source Convention, Apache Httpd, Call for Participation (dueMarch 1st) (fwd)

2002-02-17 Thread Ask Bjoern Hansen
Call for Participation - Proposals Due March 1, 2002 O'Reilly Associates is pleased to announce the 4th annual Open Source Convention. The Open Source Convention is a five-day event designed for programmers, developers, strategists, and technical staff involved in Open Source technology and

[PATCH] change mod_rewrite to use apr_global_mutex_t

2002-02-17 Thread Aaron Bannert
On Sun, Feb 17, 2002 at 02:51:43PM -0800, Brian Pane wrote: You're right; the apr_proc_mutex_t won't be sufficient in this case. We'll really need apr_global_mutex_t for this. If that's going to be available soon, I'll switch the rewrite code to use it when it's released; but if not, I'll

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

2002-02-17 Thread Cliff Woolley
On 18 Feb 2002 [EMAIL PROTECTED] wrote: jerenkrantz02/02/17 19:31:27 Modified:modules/generators mod_cgi.c Log: Correctly check script_in variable. (script_out and script_err are already correct.) PR: 9669 That's probably worth a STATUS note and credit to the bug

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

2002-02-17 Thread Cliff Woolley
On Mon, 18 Feb 2002, Cliff Woolley wrote: That's probably worth a STATUS note and credit to the bug submitter... s/STATUS/CHANGES/

[PATCH] Add content-type specific filters

2002-02-17 Thread Justin Erenkrantz
This adds AddOutputFilterByType directive. In our mod_deflate conversations, I think we kept coming back to this as a real good idea. So, a mod_deflate admin could do: AddOutputFilterByType DEFLATE text/html and mod_deflate would only work on text/html requests. Notice that it sticks the

Re: [PATCH] Add content-type specific filters

2002-02-17 Thread Brian Pane
+if (ctinfo) { +if (ctinfo-output_filters r-proxyreq == PROXYREQ_NONE) { +const char *filter, *filters = ctinfo-output_filters; +while (*filters + (filter = ap_getword(r-pool, filters, ';'))) { +