﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
7228	ETag value does not meet HTTP  spec	skjohn@…	nobody	"The HTTP spec says that ETag values should be quoted either as {{{""etag""}}} or {{{W/""etag""}}}. The current implementation (in modules django.middleware.common and django.utils.cache) do not quote these.

The code would therefore change as follows:

{{{ etag = md5.new(response.content).hexdigest() }}}

{{{ etag = '""%s""' %  md5.new(response.content).hexdigest() }}}"		closed	HTTP handling	dev		fixed			Ready for checkin	1	0	0	0	0	0
