Author: adrian
Date: 2010-01-10 12:09:26 -0600 (Sun, 10 Jan 2010)
New Revision: 12179

Modified:
   django/trunk/docs/topics/conditional-view-processing.txt
Log:
Fixed #11904 -- Fixed error in conditional-view-processing.txt. Thanks, bronger 
and timo

Modified: django/trunk/docs/topics/conditional-view-processing.txt
===================================================================
--- django/trunk/docs/topics/conditional-view-processing.txt    2010-01-10 
18:07:46 UTC (rev 12178)
+++ django/trunk/docs/topics/conditional-view-processing.txt    2010-01-10 
18:09:26 UTC (rev 12179)
@@ -21,9 +21,9 @@
 When the client next requests the same resource, it might send along a header
 such as `If-modified-since`_, containing the date of the last modification
 time it was sent, or `If-none-match`_, containing the ``ETag`` it was sent.
-If there is no match with the ETag, or if the resource has not been modified,
-a 304 status code can be sent back, instead of a full response, telling the
-client that nothing has changed.
+If the current version of the page matches the ``ETag`` sent by the client, or
+if the resource has not been modified, a 304 status code can be sent back,
+instead of a full response, telling the client that nothing has changed.
 
 .. _If-none-match: 
http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.26
 .. _If-modified-since: 
http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.25

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.


Reply via email to