- Author:
- mwolgemuth
- Posted:
- September 25, 2008
- Language:
- Python
- Version:
- 1.0
- Score:
- 0 (after 0 ratings)
This is like snippet 786, except it does it at the middleware layer, so you don't have to reference it in every view. Super simple.
refer to: http://www.djangosnippets.org/snippets/786/
1 2 3 4 5 6 7 8 9 10 | P3P_COMPACT = 'some string' # I import this from a global constants file
# eg. P3P_COMPACT='CP="CAO DSP CURa ADMa DEVa TAIa CONa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA"'
class MiddlewareResponseInjectP3P(object):
def __init__(self):
self.process_response = self.inject
def inject(self, request, response):
response['P3P'] = P3P_COMPACT
return response
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Excellent, thanks!
#
Please login first before commenting.