diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-04-01 18:19:32 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-04-01 18:19:32 +0000 |
| commit | 16c9df0a761732b8e3acbfa39b940ffde0b1dbf3 (patch) | |
| tree | 9985b1fcadf01a8405ebf933d71da22e3c2f52fa /django/utils/cache.py | |
| parent | 644e98136ad0e1d3c79b465a045440c2f77be660 (diff) | |
Fixed #10016: the cache middleware no longer vomits when handed long URLs. Thanks, Matt Croydon.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10335 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/utils/cache.py')
| -rw-r--r-- | django/utils/cache.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/django/utils/cache.py b/django/utils/cache.py index 31111a44fd..3c40e17e90 100644 --- a/django/utils/cache.py +++ b/django/utils/cache.py @@ -29,6 +29,7 @@ from django.core.cache import cache from django.utils.encoding import smart_str, iri_to_uri from django.utils.http import http_date from django.utils.hashcompat import md5_constructor +from django.http import HttpRequest cc_delim_re = re.compile(r'\s*,\s*') @@ -143,13 +144,14 @@ def _generate_cache_key(request, headerlist, key_prefix): value = request.META.get(header, None) if value is not None: ctx.update(value) + path = md5_constructor(iri_to_uri(request.path)) return 'views.decorators.cache.cache_page.%s.%s.%s' % ( - key_prefix, iri_to_uri(request.path), ctx.hexdigest()) + key_prefix, path.hexdigest(), ctx.hexdigest()) def _generate_cache_header_key(key_prefix, request): """Returns a cache key for the header cache.""" - return 'views.decorators.cache.cache_header.%s.%s' % ( - key_prefix, iri_to_uri(request.path)) + path = md5_constructor(iri_to_uri(request.path)) + return 'views.decorators.cache.cache_header.%s.%s' % (key_prefix, path.hexdigest()) def get_cache_key(request, key_prefix=None): """ |
