Home | History | Annotate | Download | only in webob

Lines Matching refs:etag

2 Does parsing of ETag-related headers: If-None-Matches, If-Matches
22 doc += " Converts it as a Etag."
47 Represents an ETag of *, or a missing ETag when matching is 'safe'
51 return '<ETag *>'
71 Represents a missing ETag when matching is unsafe
75 return '<No ETag>'
107 return '<ETag %s>' % (' or '.join(self.etags))
131 def __init__(self, etag):
132 self.etag = etag
149 Return True if the If-Range header matches the given etag or last_modified
151 return resp.etag_strong in self.etag
154 return bool(self.etag)
159 self.etag
163 return str(self.etag) if self.etag else ''