Used for showing size of the page in human readable format and time taken to generate the page on the server. To use it, in your base template, somewhere put the line: <!-- ____SIZE_AND_DATE_PLACEHOLDER____ -->
. May be used on production.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import time
from django.utils.encoding import smart_unicode
from django.template.defaultfilters import filesizeformat
class SizeAndTimeMiddleware(object):
def process_request(self, request):
request._request_start_time = time.time()
def process_response(self, request, response):
if not hasattr(request, "_request_start_time"): return response
if response['Content-Type'].split(';')[0] in (
'text/html', 'application/xhtml+xml'
):
response.content = smart_unicode(response.content).replace(
"<!-- ____SIZE_AND_DATE_PLACEHOLDER____ -->",
"(%s, %0.3f seconds)" % (
filesizeformat(len(response.content)),
time.time() - request._request_start_time,
)
)
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, 3 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
Please login first before commenting.