[modwsgi] Re: trouble with django and trailing slashes.

2008-09-18 Thread bobince
I'm not using Django, but there's definitely something wacky about trailing slashes in mod_wsgi (2.3, running on Apache 2.2). It's not a problem for me, but it's rather curious. With a WSGI app mounted at /app, a request to /app/x/y/z gives (as expected): SCRIPT_NAME: /app PATH_INFO: /x/y/z

[modwsgi] Re: trouble with django and trailing slashes.

2008-09-18 Thread Graham Dumpleton
2008/9/19 Graham Dumpleton [EMAIL PROTECTED]: 2008/9/19 bobince [EMAIL PROTECTED]: I'm not using Django, but there's definitely something wacky about trailing slashes in mod_wsgi (2.3, running on Apache 2.2). It's not a problem for me, but it's rather curious. With a WSGI app mounted at

[modwsgi] Re: trouble with django and trailing slashes.

2008-09-17 Thread Walter Cruz
For the sake of the archives and spiders, it workerd after FORCE_SCRIPT_NAME='' has been added to settings.py in django. []'s - Walter --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups modwsgi group. To post to this

[modwsgi] Re: trouble with django and trailing slashes.

2008-09-17 Thread Graham Dumpleton
2008/9/18 Walter Cruz [EMAIL PROTECTED]: For the sake of the archives and spiders, it workerd after FORCE_SCRIPT_NAME='' has been added to settings.py in django. What version of Django are you using? Graham --~--~-~--~~~---~--~~ You received this message

[modwsgi] Re: trouble with django and trailing slashes.

2008-09-17 Thread Graham Dumpleton
2008/9/18 Graham Dumpleton [EMAIL PROTECTED]: 2008/9/18 Walter Cruz [EMAIL PROTECTED]: For the sake of the archives and spiders, it workerd after FORCE_SCRIPT_NAME='' has been added to settings.py in django. What version of Django are you using? And also post what you have in your urls.py

[modwsgi] Re: trouble with django and trailing slashes.

2008-09-17 Thread Walter Cruz
On Wed, Sep 17, 2008 at 9:37 PM, Graham Dumpleton [EMAIL PROTECTED] wrote: 2008/9/18 Graham Dumpleton [EMAIL PROTECTED]: 2008/9/18 Walter Cruz [EMAIL PROTECTED]: For the sake of the archives and spiders, it workerd after FORCE_SCRIPT_NAME='' has been added to settings.py in django. What

[modwsgi] Re: trouble with django and trailing slashes.

2008-09-17 Thread Graham Dumpleton
2008/9/18 Walter Cruz [EMAIL PROTECTED]: On Wed, Sep 17, 2008 at 9:37 PM, Graham Dumpleton [EMAIL PROTECTED] wrote: 2008/9/18 Graham Dumpleton [EMAIL PROTECTED]: 2008/9/18 Walter Cruz [EMAIL PROTECTED]: For the sake of the archives and spiders, it workerd after FORCE_SCRIPT_NAME='' has

[modwsgi] Re: trouble with django and trailing slashes.

2008-09-17 Thread Walter Cruz
hum.. my prefix is 'unb' :) (I had simplified the case in the first e-mail). Should I take it off the urls.py? []'s - Walter --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups modwsgi group. To post to this group,

[modwsgi] Re: trouble with django and trailing slashes.

2008-09-17 Thread Graham Dumpleton
2008/9/18 Walter Cruz [EMAIL PROTECTED]: hum.. my prefix is 'unb' :) (I had simplified the case in the first e-mail). Should I take it off the urls.py? Let me quote the documentation below. All that below applies only to pre Django 1.0. So if using Django 1.0 and you have made both the