Hello,

I use HttpRequest.get_full_path() for saving current url.
When I use this with Django manage.py runserver, it works perfectly
fine.
But when I use get_full_path with Apache + mod_python, it does not
work. I only gives me HttpRequest.path value without QUERY_STRING.
I just use like the following

def some_view(req, id):
  return_url = req.get_full_path()
  return render_to_resposne("/some.html", {'return_url': return_url})

What should I do for getting proper full_path?

Regards,
KwonNam


--~--~---------~--~----~------------~-------~--~----~
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