Changeset 8490
- Timestamp:
- 08/23/08 12:28:12 (3 months ago)
- Files:
-
- django/trunk/django/http/__init__.py (modified) (3 diffs)
- django/trunk/tests/regressiontests/requests/tests.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/http/__init__.py
r8460 r8490 1 1 import os 2 import re 2 3 from Cookie import SimpleCookie, CookieError 3 4 from pprint import pformat … … 18 19 19 20 RESERVED_CHARS="!*'();:@&=+$,/?%#[]" 21 22 absolute_http_url_re = re.compile(r"^https?://", re.I) 20 23 21 24 class Http404(Exception): … … 66 69 if not location: 67 70 location = self.get_full_path() 68 if not ':' in location:71 if not absolute_http_url_re.match(location): 69 72 current_uri = '%s://%s%s' % (self.is_secure() and 'https' or 'http', 70 73 self.get_host(), self.path) django/trunk/tests/regressiontests/requests/tests.py
r8015 r8490 37 37 >>> parse_cookie('invalid:key=true') 38 38 {} 39 40 >>> request = HttpRequest() 41 >>> print request.build_absolute_uri(location="https://www.example.com/asdf") 42 https://www.example.com/asdf 43 >>> request.get_host = lambda: 'www.example.com' 44 >>> request.path = '' 45 >>> print request.build_absolute_uri(location="/path/with:colons") 46 http://www.example.com/path/with:colons 39 47 """
