From bfcecbffd37a68b5fffe81954c17aedeacb1ba22 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 21 Jul 2008 07:57:10 +0000 Subject: Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (or equivalents). Basically, URL resolving will only use the PATH_INFO and the SCRIPT_NAME will be prepended by reverse() automatically. Allows for more portable development and installation. Also exposes SCRIPT_NAME in the HttpRequest instance. There are a number of cases where things don't work completely transparently, so mod_python and fastcgi users should read the relevant docs. Fixed #285, #1516, #3414. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8015 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/requests/tests.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/regressiontests/requests/tests.py b/tests/regressiontests/requests/tests.py index aaaef1d8b0..a091113515 100644 --- a/tests/regressiontests/requests/tests.py +++ b/tests/regressiontests/requests/tests.py @@ -20,8 +20,9 @@ META:{...}> ... def __init__(self, *args, **kwargs): ... super(FakeModPythonRequest, self).__init__(*args, **kwargs) ... self._get = self._post = self._meta = self._cookies = {} ->>> class Dummy: pass -... +>>> class Dummy: +... def get_options(self): +... return {} >>> req = Dummy() >>> req.uri = 'bogus' >>> print repr(FakeModPythonRequest(req)) -- cgit v1.3