Re: svn commit: r190339 - in /httpd/site/trunk/xdocs: ./ cli/ cli/mod/ info/

2005-06-12 Thread William A. Rowe, Jr.
Sorry, ignore httpd/site/trunk/xdocs/cli/mod/mod_aspdotnet.xml and cli/index.xml - totally seperate commit that I had forgotten that I had staged. [note to self; svn status is goodness] Anyone who wants to join, it sure seems like it's time to update the overall content; the stuff I'm touching s

Re: [PATCH] mod_disk_cache: Handling of Varied Content

2005-06-12 Thread William A. Rowe, Jr.
At 03:57 PM 6/12/2005, Paul Querna wrote: >Justin Erenkrantz wrote: > >>>ap_get_list_item() returns them lower-cased, avoiding this whole issue. >> >>Relying on lowercased header names is not enough. In certain cases, the >>header *values* are supposed to be rendered case-insensitively as well >>(

Re: [PATCH] mod_disk_cache: Handling of Varied Content

2005-06-12 Thread Paul Querna
Justin Erenkrantz wrote: On Sun, Jun 12, 2005 at 10:06:30AM -0700, Paul Querna wrote: I believe so. Yes, it clutters the code, but my objective is to have a switch where I can easily add logging to the common case code, and leave it in there, instead of deleting it before I commit. I thin

Re: [PATCH] mod_disk_cache: Handling of Varied Content

2005-06-12 Thread Justin Erenkrantz
On Sun, Jun 12, 2005 at 10:06:30AM -0700, Paul Querna wrote: > I believe so. Yes, it clutters the code, but my objective is to have a > switch where I can easily add logging to the common case code, and leave > it in there, instead of deleting it before I commit. I think in the > long run, we

Re: session handling - the next generation

2005-06-12 Thread Jim Gallacher
Nicolas, It fails to compile when I add your bit of code. Sure looks like it should work though. requestobject.c: In function `request_tp_traverse': requestobject.c:1539: error: structure has no member named `session' requestobject.c:1540: error: structure has no member named `session' Just t

Re: [PATCH] mod_disk_cache: Handling of Varied Content

2005-06-12 Thread Paul Querna
Graham Leggett wrote: Paul Querna wrote: If any varied page isn't fresh, it will fetch a new version of the page. When any new version is fetched, it will replace the ".vary" file atomically. If I'm reading you correctly, are you meaning that different variants of the same URL can be cac

Re: [PATCH] mod_disk_cache: Handling of Varied Content

2005-06-12 Thread Paul Querna
Justin Erenkrantz wrote: On Fri, Jun 10, 2005 at 06:14:09PM -0700, Paul Querna wrote: Comments inline. replys inline. Index: modules/cache/mod_disk_cache.c === --- modules/cache/mod_disk_cache.c (revision 190047) +++

Re: LDAP futures

2005-06-12 Thread Graham Leggett
Jess Holle wrote: So does http://directory.apache.org/ mean that soon we'll be able to stop using OpenLDAP, Microsoft, and/or iPlanet LDAP SDKs to build mod_auth_ldap? My understanding is no - the SDKs are client libraries, while directory.apache.org is an LDAP server. You will be able to

Re: session handling - the next generation

2005-06-12 Thread Jim Gallacher
Hi Nicolas, Nicolas Lehuen wrote: Hi Jim, How where you creating the session object in requestobject.c ? If you were using PythonObject_New, then this may explain the memory leak. Objects that must be managed by the garbage collector have to be created with PyObject_GC_New. The c-code loads t

Re: [PATCH] mod_disk_cache: Handling of Varied Content

2005-06-12 Thread Graham Leggett
Paul Querna wrote: If any varied page isn't fresh, it will fetch a new version of the page. When any new version is fetched, it will replace the ".vary" file atomically. If I'm reading you correctly, are you meaning that different variants of the same URL can be cached independently of each

[PATCH] displaying thread id in mod_status ExtendedStatus table

2005-06-12 Thread Jeff Trawick
On 6/11/05, Jeff Trawick <[EMAIL PROTECTED]> wrote: > On 6/11/05, William A. Rowe, Jr. <[EMAIL PROTECTED]> wrote: > > At 12:34 PM 6/11/2005, Jeff Trawick wrote: > > >> I like the idea of toggling columns, I'd make it more like > > >> columns=pid,tid,ss,m,req to allow for abbreviated displays. > > >

Re: [PATCH] mod_disk_cache: Handling of Varied Content

2005-06-12 Thread Justin Erenkrantz
On Fri, Jun 10, 2005 at 06:14:09PM -0700, Paul Querna wrote: Comments inline. > Index: modules/cache/mod_disk_cache.c > === > --- modules/cache/mod_disk_cache.c(revision 190047) > +++ modules/cache/mod_disk_cache.c(working co