Opened 16 years ago

Last modified 8 years ago

#6727 closed

django.utils.cache.patch_cache_control enhancement when response has empty cache control header — at Version 3

Reported by: pascal@… Owned by: nobody
Component: HTTP handling Version: dev
Severity: Normal Keywords:
Cc: doug@… Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Ramiro Morales)

See source:/django/trunk/django/utils/cache.py :

60: 	    if response.has_header('Cache-Control'):
61: 	        cc = cc_delim_re.split(response['Cache-Control'])
62: 	        cc = dict([dictitem(el) for el in cc])

If a Cache-Control header exists but is empty, this will add a useless comma in the result.
See:

>>> cache_control_header=''
>>> import re
>>> cc_delim_re = re.compile(r'\s*,\s*')
>>> cc = cc_delim_re.split(cache_control_header)
>>> def dictitem(s):
...         t = s.split('=',1)
...         if len(t) > 1:
...             return (t[0].lower(), t[1])
...         else:
...             return (t[0].lower(), True)
... 
>>> cc = dict([dictitem(el) for el in cc])
>>> cc
{'': True}
>>> def dictvalue(t):
...     if t[1] is True:
...         return t[0]
...     else:
...         return t[0] + '=' + smart_str(t[1])
... 
>>> from django.utils.encoding import smart_str
>>> cc['max-age']='300'
>>> cc = ', '.join([dictvalue(el) for el in cc.items()])
>>> cc
', max-age=300'

Note that this is still a valid cache control header according to:

But It would be nicer to test if existing cache control response header is empty, so something like:

60: 	    if response.has_header('Cache-Control') and response['Cache-Control']:

Change History (3)

comment:1 by Paul Egan, 16 years ago

Cc: paulegan@… removed

comment:2 by Jacob, 16 years ago

Triage Stage: UnreviewedAccepted

comment:3 by Ramiro Morales, 16 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top