#612 closed enhancement (fixed)
[patch] decorator for managing cache-control header
Reported by: | hugo | Owned by: | Jacob |
---|---|---|---|
Component: | Core (Cache system) | Version: | |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
The attached patch is a decorator that allows management of the Cache-Control header for django views. The idea is to tag all views that contain sensible data with:
@cache_control(private=True) def private_view(request): ....
That way a Cache-Control: private header will be generated. This decorator merges the cache-control value with already set values and the patch changes the caching utilities to use this merging technique, too.
I patched the documentation to contain a short chapter on the cache_control decorator, too.
Attachments (1)
Change History (3)
comment:1 by , 19 years ago
Description: | modified (diff) |
---|
by , 19 years ago
Attachment: | cache-control.diff added |
---|
comment:2 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Cache-Control managing decorator and function