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
- Form field with fixed value by roam 1 week, 4 days ago
- New Snippet! by Antoliny0919 2 weeks, 4 days ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months, 1 week ago
- get_object_or_none by azwdevops 6 months, 4 weeks ago
- Mask sensitive data from logger by agusmakmun 8 months, 3 weeks ago
Comments
Please login first before commenting.