Re: [proposal] styleguide tweak

2003-10-02 Thread Cliff Woolley
On Thu, 2 Oct 2003, Jeff Trawick wrote: > I'm quite happy that > [httpd-2.0] $ find . -name '*.c' | xargs grep '^[ \t]+{' > currently produces no output, and I'd prefer that it stay that way ;) That it does, but [httpd-2.0] $ find . -name '*.c' | xargs egrep '^[ \t]+{' (note the 'e' on egrep) p

[Apache Newsletter Draft] News as to Apache HTTP Webserver Project from Aug. to Sep.

2003-10-02 Thread Tetsuya Kitahata
Dear Apache HTTP Webserver Development Team, (http://httpd.apache.org/) Hello, Apache newsletter is in progress of preparing the second all-Apache newsletter, news from August to September 2003, which will be published in the middle of October 2003. === What is "The Apache Newsletter"? ===

Re: [proposal] styleguide tweak

2003-10-02 Thread William A. Rowe, Jr.
At 07:12 PM 10/2/2003, Greg Stein wrote: >On Thu, Oct 02, 2003 at 05:38:12PM -0400, Cliff Woolley wrote: >> >> So this is NOT intended to be the catalyst for a huge heated debate, it's >> just a suggestion, but I propose the following tweaks to the styleguide. >> For the most part, it's just clari

Re: [proposal] styleguide tweak

2003-10-02 Thread Greg Stein
On Thu, Oct 02, 2003 at 05:38:12PM -0400, Cliff Woolley wrote: > > So this is NOT intended to be the catalyst for a huge heated debate, it's > just a suggestion, but I propose the following tweaks to the styleguide. > For the most part, it's just clarifying the English. The only real > changes ar

Re: adding map_to_storate to mod_example.c

2003-10-02 Thread Greg Stein
That's not much of an example. All it really shows is how to register a hook. A better example would be to *use* the hook in some way. Cheers, -g On Thu, Oct 02, 2003 at 04:20:40PM -0400, Geoffrey Young wrote: > the recent thread on map_to_storage got me interested, and I noticed that > mod_exam

Re: [proposal] styleguide tweak

2003-10-02 Thread Bill Stoddard
Jeff Trawick wrote: Cliff Woolley wrote: eg: if (foo) { then(); } not if (foo) then(); fine with me +1 and if (foo && bar && baz && quux && crash && burn) { then(); } not if (foo && bar && baz && quux && crash && burn) {

Re: [proposal] styleguide tweak

2003-10-02 Thread Jeff Trawick
Cliff Woolley wrote: eg: if (foo) { then(); } not if (foo) then(); fine with me and if (foo && bar && baz && quux && crash && burn) { then(); } not if (foo && bar && baz && quux && crash && burn) { then(); } I'm quit

mod_ldap Cache Issues

2003-10-02 Thread Jess Holle
I have been using Apache 2.0.47 on Windows with util_ldap and mod_auth_ldap for some time, but never heavily. I populated an LDAP directory with thousands of users, placed a 25K static HTML page in a directory configured to "require valid-user" against the LDAP in questiono, and then did a sim

[proposal] styleguide tweak

2003-10-02 Thread Cliff Woolley
So this is NOT intended to be the catalyst for a huge heated debate, it's just a suggestion, but I propose the following tweaks to the styleguide. For the most part, it's just clarifying the English. The only real changes are ones intended to codify two items most of us already do anyway: (a) if

adding map_to_storate to mod_example.c

2003-10-02 Thread Geoffrey Young
the recent thread on map_to_storage got me interested, and I noticed that mod_example.c didn't hook into it. patch attached. --Geoff Index: mod_example.c === RCS file: /home/cvspublic/httpd-2.0/modules/experimental/mod_example.c,v r

Re: map_to_storage hook question..

2003-10-02 Thread Henri Gomez
Bill Stoddard a écrit : Bill Stoddard wrote: Esteban Pizzini wrote: Hi, Anybody can explain me what map_to_storage hook does?? or where can I find and example of its use?? Thank You!, Esteban One use of map_to_storage is to bypass directory walk and file walk if your handler module -kno