etwist/http.py
changeset 8316 d5b1b75805dd
parent 7855 54283a5b7afc
child 8930 6a02be304486
--- a/etwist/http.py	Thu Mar 15 17:57:40 2012 +0100
+++ b/etwist/http.py	Thu Mar 15 17:59:27 2012 +0100
@@ -43,19 +43,3 @@
 
     def __repr__(self):
         return "<%s.%s code=%d>" % (self.__module__, self.__class__.__name__, self._code)
-
-
-def not_modified_response(twisted_request, headers_in):
-    headers_out = Headers()
-
-    for header in (
-        # Required from sec 10.3.5:
-        'date', 'etag', 'content-location', 'expires',
-        'cache-control', 'vary',
-        # Others:
-        'server', 'proxy-authenticate', 'www-authenticate', 'warning'):
-        value = headers_in.getRawHeaders(header)
-        if value is not None:
-            headers_out.setRawHeaders(header, value)
-    return HTTPResponse(twisted_request=twisted_request,
-                        headers=headers_out)