Home | History | Annotate | Download | only in webob

Lines Matching refs:Accept

2 Parses a variety of ``Accept-*`` headers.
30 class Accept(object):
32 Represents a generic ``Accept-*`` style header.
46 Parse ``Accept-*`` style header.
86 if isinstance(other, Accept):
189 MasterClass = Accept
244 class AcceptCharset(Accept):
248 for m, q in Accept.parse(value):
256 class AcceptLanguage(Accept):
267 class MIMEAccept(Accept):
269 Represents the ``Accept`` header, which is a list of mimetypes.
275 for mask, q in Accept.parse(value):
325 AcceptClass=Accept, NilClass=NilAccept