Re: TLP Name

2007-05-17 Thread Gregory (Grisha) Trubetskoy
I like Quetzalcoatl and PyPache. Terrarium seemed nice at first, but then the ophidiophobia in me took over. (Nobody suggested ophis, btw..) On Wed, 16 May 2007, Gregory (Grisha) Trubetskoy wrote: So I think we've got (in no particular order): PythonScript Pythonidae PyPache pythonalia Que

Re: TLP Name

2007-05-17 Thread Jim Gallacher
Gregory (Grisha) Trubetskoy wrote: I like Quetzalcoatl and PyPache. Quetzalcoatl is still my sentimental favourite. Perhaps I'm overly concerned with potential search problems for Quetzalcoatl, considering that Google is pretty good at figuring out spelling errors. Also the mod_python name

Re: TLP Name

2007-05-17 Thread Gregory (Grisha) Trubetskoy
On Thu, 17 May 2007, Jim Gallacher wrote: Quetzalcoatl is still my sentimental favourite. Perhaps I'm overly concerned with potential search problems for Quetzalcoatl, considering that Google is pretty good at figuring out spelling errors. Also the mod_python name will not disappear, as it'l

sys.path and htaccess change?

2007-05-17 Thread Daniel J. Popowich
In mod_python 3.2.x, if I set a directory to use mod_python with a .htaccess file, I will find that directory in sys.path. That is, if: /var/www/somedir/.htaccess contains: SetHandler python-program then sys.path will have "/var/www/somedir" as element zero. With 3.3.x this does not hap

sys.path and htaccess change?

2007-05-17 Thread Daniel J. Popowich
In mod_python 3.2.x, if I set a directory to use mod_python with a .htaccess file, I will find that directory in sys.path. That is, if: /var/www/somedir/.htaccess contains: SetHandler python-program then sys.path will have "/var/www/somedir" as element zero. With 3.3.x this does not hap

Re: TLP Name

2007-05-17 Thread Ulf Wostner
+1 for PyPache On Wed May 16 2007 02:06 pm Gregory (Grisha) Trubetskoy wrote: > So I think we've got (in no particular order): > > PythonScript > Pythonidae > PyPache > pythonalia > Quetzalcoatl > Asphyxia > Scales > Pythonistas > PigeonPy > Pungi > > Would people (ANYONE here on the list, yes, t

RE: TLP Name

2007-05-17 Thread Scott Sanders
>How about this last minute entry as a place to keep our snake? > >Apache Terrarium +1 on terrarium.apache.org

Re: TLP Name

2007-05-17 Thread Graham Dumpleton
On 18/05/07, Gregory (Grisha) Trubetskoy <[EMAIL PROTECTED]> wrote: On Thu, 17 May 2007, Jim Gallacher wrote: > Quetzalcoatl is still my sentimental favourite. > > Perhaps I'm overly concerned with potential search problems for > Quetzalcoatl, considering that Google is pretty good at figuring

Re: sys.path and htaccess change?

2007-05-17 Thread Daniel J. Popowich
Graham Dumpleton writes: > Read: > > http://www.modpython.org/live/current/doc-html/pyapi-apmeth.html > > Especially the area which starts just before: > > PythonOption mod_python.importer.path "['~']" > > Your particular issue is mentioned just after this example. Doesn't work, either in

Re: sys.path and htaccess change?

2007-05-17 Thread Graham Dumpleton
On 18/05/07, Daniel J. Popowich <[EMAIL PROTECTED]> wrote: Graham Dumpleton writes: > Read: > > http://www.modpython.org/live/current/doc-html/pyapi-apmeth.html > > Especially the area which starts just before: > > PythonOption mod_python.importer.path "['~']" > > Your particular issue is me

Re: sys.path and htaccess change?

2007-05-17 Thread Daniel J. Popowich
Graham Dumpleton writes: > > When I go to http://localhost/~dpopowich/py/syspath, a simple > > mpservlet that writes out the current value of sys.path, I do NOT see > > /home/dpopowich/public_html/py in the path. > > You will not see the path listed in sys.path. The mod_python module > importer p

Re: sys.path and htaccess change?

2007-05-17 Thread Graham Dumpleton
I worked it out. As my change didn't disable the mpservlets caching system, it was never triggering the module importer again to perform its own checks. Thus, if I add: klass, cached_mtime, servlets = self.class_cache.get(fname, (

Re: sys.path and htaccess change?

2007-05-17 Thread Graham Dumpleton
On 18/05/07, Daniel J. Popowich <[EMAIL PROTECTED]> wrote: Graham Dumpleton writes: > > When I go to http://localhost/~dpopowich/py/syspath, a simple > > mpservlet that writes out the current value of sys.path, I do NOT see > > /home/dpopowich/public_html/py in the path. > > You will not see the

Re: sys.path and htaccess change?

2007-05-17 Thread Daniel J. Popowich
Graham Dumpleton writes: > And that is what the documentation I pointed you at states: > > """Note that with the new module importer, as directories associated > with Python*Handler directives are no longer being added automatically > to sys.path and they are instead used directly by the module i

Re: sys.path and htaccess change?

2007-05-17 Thread Graham Dumpleton
On 18/05/07, Daniel J. Popowich <[EMAIL PROTECTED]> wrote: Graham Dumpleton writes: > And that is what the documentation I pointed you at states: > > """Note that with the new module importer, as directories associated > with Python*Handler directives are no longer being added automatically > to