Changes between Initial Version and Version 5 of Ticket #22461


Ignore:
Timestamp:
Dec 20, 2014, 2:42:08 PM (9 years ago)
Author:
tanner
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22461

    • Property Version 1.6master
    • Property Triage Stage UnreviewedAccepted
    • Property Summary condition decorator: support fo if-unmodified-since and updating etagssupport for if-unmodified-since in the condition decorator
  • Ticket #22461 – Description

    initial v5  
    11I have implemented support for the If-Unmodified-Since header
    22http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.28
    3 in the condition decorator and added an parameter to support updating
    4 of the etags for write operations
    5 http://tools.ietf.org/id/draft-reschke-http-etag-on-write-09.txt
     3in the condition decorator
     4
     5PR: https://github.com/django/django/pull/3764
     6
     7UPDATE: In the previous version of this PR I had added updating of etags for write operations. However, the RFCs are quite confusing and the new HTTPs RFC 7231,7232,7234 did not improve the situation. Therefore I've removed those changes for now and would submit them as an independent patch.
     8(OLD: added an parameter to support updating of the etags for write operations http://tools.ietf.org/id/draft-reschke-http-etag-on-write-09.txt)
    69
    710tests are included
Back to Top