Collin Grady wrote:
> It would be helpful if you provide more info - how are you passing the 
> requests to django, for instance?

I'm passing them in a context processor which is:

--------------
from django.conf import settings

def media_url_and_request(request):
     return {'media_url': settings.MEDIA_URL, 'request': request}
--------------

And my context-processors are the following:

TEMPLATE_CONTEXT_PROCESSORS = (
     'django.core.context_processors.auth',
     'django.core.context_processors.debug',
     'django.core.context_processors.i18n',
     'project.app.context_processors.media_url_and_request',
)

hope this is enough info...


  - bram

> On Jan 29, 11:42 am, Bram - Smartelectronix <[EMAIL PROTECTED]> 
> wrote:
>> hello everyone,
>>
>> Short question!
>>
>> If I go tohttp://my.server.com/hello/this/is/my/path/
>>
>> and request.META.PATH_INFO is set to "/path" not to
>> "/hello/this/is/my/path/"
>>
>> Running mod_python / apache. In the dev-server it obviously ( ;-) )
>> works just fine...
>>
>> Any clues?
>>
>> Thanks a lot,
>>
>>   - bram
> 
> 
> > 


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to