Re: Updated documentation on apache.import_module()

2006-12-04 Thread Clodoaldo
2006/12/4, Graham Dumpleton [EMAIL PROTECTED]: Clodoaldo wrote .. 2006/12/3, Graham Dumpleton [EMAIL PROTECTED]: Can you and anyone else who is interested, read through the documentation I have added and comment on whether it is adequate. Ie., is there anything that you can think is

Re: [Mod_python Wiki] Update of LocalSpellingWords by MartinStoufer

2006-12-04 Thread Deron Meranda
On 12/4/06, Jim Gallacher [EMAIL PROTECTED] wrote: Can someone explain the significance of this? The following page has been changed by MartinStoufer: http://wiki.apache.org/mod_python/LocalSpellingWords ... + programattic The wiki has a special page which contains exceptions for a

Re: {VOTE] Import mod_wombat

2006-12-04 Thread Brian McCallister
Thursday came and went, and the tally seems positive: +1 Paul Querna, Jim Jagielski, Justin Erenkrantz, Sander Temme, Garrett Rooney, Brian McCallister +0 Andre Malo May I start the paperwork? -Brian On Nov 26, 2006, at 7:37 PM, Paul Querna wrote: -BEGIN PGP SIGNED MESSAGE-

PATCH #40075 - using ldap groups that contain DNs and usernames for AuthZ

2006-12-04 Thread Johanna Bromberg Craig
Hi, I've addressed the feedback I received on my patch from Brad Nicholes as follows: I've reviewed all instances of util_ldap_compare() and util_ldap_cache_comparedn() to confirm that each is protected from cases where req-dn might be NULL or '\0'. I've addressed the differences

Re: {VOTE] Import mod_wombat

2006-12-04 Thread Roy T. Fielding
On Dec 4, 2006, at 9:58 AM, Brian McCallister wrote: Thursday came and went, and the tally seems positive: +1 Paul Querna, Jim Jagielski, Justin Erenkrantz, Sander Temme, Garrett Rooney, Brian McCallister +0 Andre Malo May I start the paperwork? Yes, go ahead and submit the software

Issues with Session use with classes wiki example.

2006-12-04 Thread Graham Dumpleton
Some more details on issues I brought up before about session example. BTW, in respect of what version of mod_python we write examples for, my preference would be that we target mod_python 3.3 and then as followup by way of embedded notes, footnotes or subpages, indicate how it may have to be

Re: Issues with Session use with classes wiki example.

2006-12-04 Thread Graham Dumpleton
Graham Dumpleton wrote .. Next option is to use a wrapper class and you wrap every function that wants to be able to use sessions: class SessionEnabled: def __init__(self, target): self.__target = target def __call__(self): return util.apply_fs_data(self.__target,