Your IP : 216.73.216.213


Current Path : /opt/alt/python37/lib/python3.7/site-packages/webob/__pycache__/
Upload File :
Current File : //opt/alt/python37/lib/python3.7/site-packages/webob/__pycache__/exc.cpython-37.pyc

B

��vP���@s0dZddlmZddlZddlZddlmZmZmZm	Z	ddl
mZddlm
Z
ddlmZmZe�dej�Ze�d	ejejB�Ze�d
�Zdd�Zd
d�ZGdd�de�ZGdd�de
e�ZGdd�de�ZGdd�de�ZGdd�de�ZGdd�de�ZGdd�de�Z Gdd�de�Z!Gdd �d e�Z"Gd!d"�d"e�Z#Gd#d$�d$e�Z$Gd%d&�d&e�Z%Gd'd(�d(e%�Z&Gd)d*�d*e%�Z'Gd+d,�d,e%�Z(Gd-d.�d.e%�Z)Gd/d0�d0e�Z*Gd1d2�d2e%�Z+Gd3d4�d4e%�Z,Gd5d6�d6e�Z-Gd7d8�d8e-�Z.Gd9d:�d:e-�Z/Gd;d<�d<e-�Z0Gd=d>�d>e-�Z1Gd?d@�d@e-�Z2GdAdB�dBe-�Z3GdCdD�dDe-�Z4GdEdF�dFe-�Z5GdGdH�dHe-�Z6GdIdJ�dJe-�Z7GdKdL�dLe-�Z8GdMdN�dNe-�Z9GdOdP�dPe-�Z:GdQdR�dRe-�Z;GdSdT�dTe-�Z<GdUdV�dVe-�Z=GdWdX�dXe-�Z>GdYdZ�dZe-�Z?Gd[d\�d\e-�Z@Gd]d^�d^e-�ZAGd_d`�d`e-�ZBGdadb�dbe-�ZCGdcdd�dde-�ZDGdedf�dfe-�ZEGdgdh�dhe�ZFGdidj�djeF�ZGGdkdl�dleF�ZHGdmdn�dneF�ZIGdodp�dpeF�ZJGdqdr�dreF�ZKGdsdt�dteF�ZLGdudv�dveF�ZMGdwdx�dxeF�ZNGdydz�dzeO�ZPydd{lQmRZRWneSk
�r$YnnXxdeTeR�D]XZUeV��WeU�ZXeX�r0eYeXeZ��r0e[eXe��r0eXek	�r0eXek	�r0eXj\e]eReU�feX_\�q0W[U[X[Rdzd|gZ^iZ_x�e`eV��a��D]v\ZUZbeYebeZef��r�e[ebe��r�eU�cd}��s�e^�deU�e]ebd~d��rebe_ebje<efebd��r�d��gebjh�i��j��eb_h�q�W[U[bdS)�a�
HTTP Exception
--------------
This module processes Python exceptions that relate to HTTP exceptions
by defining a set of exceptions, all subclasses of HTTPException.
Each exception, in addition to being a Python exception that can be
raised and caught, is also a WSGI application and ``webob.Response``
object.

This module defines exceptions according to RFC 2068 [1]_ : codes with
100-300 are not really errors; 400's are client errors, and 500's are
server errors.  According to the WSGI specification [2]_ , the application
can call ``start_response`` more then once only under two conditions:
(a) the response has not yet been sent, or (b) if the second and
subsequent invocations of ``start_response`` have a valid ``exc_info``
argument obtained from ``sys.exc_info()``.  The WSGI specification then
requires the server or gateway to handle the case where content has been
sent and then an exception was encountered.

Exception
  HTTPException
    HTTPOk
      * 200 - HTTPOk
      * 201 - HTTPCreated
      * 202 - HTTPAccepted
      * 203 - HTTPNonAuthoritativeInformation
      * 204 - HTTPNoContent
      * 205 - HTTPResetContent
      * 206 - HTTPPartialContent
    HTTPRedirection
      * 300 - HTTPMultipleChoices
      * 301 - HTTPMovedPermanently
      * 302 - HTTPFound
      * 303 - HTTPSeeOther
      * 304 - HTTPNotModified
      * 305 - HTTPUseProxy
      * 306 - Unused (not implemented, obviously)
      * 307 - HTTPTemporaryRedirect
    HTTPError
      HTTPClientError
        * 400 - HTTPBadRequest
        * 401 - HTTPUnauthorized
        * 402 - HTTPPaymentRequired
        * 403 - HTTPForbidden
        * 404 - HTTPNotFound
        * 405 - HTTPMethodNotAllowed
        * 406 - HTTPNotAcceptable
        * 407 - HTTPProxyAuthenticationRequired
        * 408 - HTTPRequestTimeout
        * 409 - HTTPConflict
        * 410 - HTTPGone
        * 411 - HTTPLengthRequired
        * 412 - HTTPPreconditionFailed
        * 413 - HTTPRequestEntityTooLarge
        * 414 - HTTPRequestURITooLong
        * 415 - HTTPUnsupportedMediaType
        * 416 - HTTPRequestRangeNotSatisfiable
        * 417 - HTTPExpectationFailed
        * 428 - HTTPPreconditionRequired
        * 429 - HTTPTooManyRequests
        * 431 - HTTPRequestHeaderFieldsTooLarge
      HTTPServerError
        * 500 - HTTPInternalServerError
        * 501 - HTTPNotImplemented
        * 502 - HTTPBadGateway
        * 503 - HTTPServiceUnavailable
        * 504 - HTTPGatewayTimeout
        * 505 - HTTPVersionNotSupported
        * 511 - HTTPNetworkAuthenticationRequired

Subclass usage notes:
---------------------

The HTTPException class is complicated by 4 factors:

  1. The content given to the exception may either be plain-text or
     as html-text.

  2. The template may want to have string-substitutions taken from
     the current ``environ`` or values from incoming headers. This
     is especially troublesome due to case sensitivity.

  3. The final output may either be text/plain or text/html
     mime-type as requested by the client application.

  4. Each exception has a default explanation, but those who
     raise exceptions may want to provide additional detail.

Subclass attributes and call parameters are designed to provide an easier path
through the complications.

Attributes:

   ``code``
       the HTTP status code for the exception

   ``title``
       remainder of the status line (stuff after the code)

   ``explanation``
       a plain-text explanation of the error message that is
       not subject to environment or header substitutions;
       it is accessible in the template via %(explanation)s

   ``detail``
       a plain-text message customization that is not subject
       to environment or header substitutions; accessible in
       the template via %(detail)s

   ``body_template``
       a content fragment (in HTML) used for environment and
       header substitution; the default template includes both
       the explanation and further detail provided in the
       message

Parameters:

   ``detail``
     a plain-text override of the default ``detail``

   ``headers``
     a list of (k,v) header pairs

   ``comment``
     a plain-text additional information which is
     usually stripped/hidden for end-users

   ``body_template``
     a string.Template object containing a content fragment in HTML
     that frames the explanation and further detail

To override the template (which is HTML content) or the plain-text
explanation, one must subclass the given exception; or customize it
after it has been created.  This particular breakdown of a message
into explanation, detail and template allows both the creation of
plain-text and html messages for various clients as well as
error-free substitution of environment variables and headers.


The subclasses of :class:`~_HTTPMove`
(:class:`~HTTPMultipleChoices`, :class:`~HTTPMovedPermanently`,
:class:`~HTTPFound`, :class:`~HTTPSeeOther`, :class:`~HTTPUseProxy` and
:class:`~HTTPTemporaryRedirect`) are redirections that require a ``Location``
field. Reflecting this, these subclasses have two additional keyword arguments:
``location`` and ``add_slash``.

Parameters:

    ``location``
      to set the location immediately

    ``add_slash``
      set to True to redirect to the same URL as the request, except with a
      ``/`` appended

Relative URLs in the location will be resolved to absolute.

References:

.. [1] http://www.python.org/peps/pep-0333.html#error-handling
.. [2] http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5


�)�TemplateN)�class_types�text_�	text_type�urlparse)�Request)�Response)�html_escape�warn_deprecationz<.*?>z<br.*?>z<!--|-->cCsJ|dkrdSt|t�sFt|d�r(|��}t|t�r>t|d�}nt|�}|S)N��__unicode__zutf-8)�
isinstancer�hasattrr�bytesr)�value�r�:/opt/alt/python37/lib/python3.7/site-packages/webob/exc.py�	no_escape�s


rcCs@|�dd�}|�dd�}t�d|�}t�d|�}t�d|�}|S)N�
� �
r)�replace�br_re�sub�
comment_re�tag_re)rrrr�
strip_tags�src@s(eZdZdd�Zdd�Zedd��ZdS)�
HTTPExceptioncCst�||�||_dS)N)�	Exception�__init__�
wsgi_response)�self�messager rrrr�szHTTPException.__init__cCs|�||�S)N)r )r!�environ�start_responserrr�__call__�szHTTPException.__call__cCstddd�|S)NzuAs of WebOb 1.2, raise the HTTPException instance directly instead of raising the result of 'HTTPException.exception'z1.3�)r
)r!rrr�	exception�szHTTPException.exceptionN)�__name__�
__module__�__qualname__rr%�propertyr'rrrrr�src@szeZdZdZdZdZed�Zed�Zed�Z	dZ
ddd�Zd	d
�Zdd�Z
d
d�Zdd�Zdd�Zdd�Zedd��ZdS)�WSGIHTTPExceptionNrz5${explanation}<br /><br />
${detail}
${html_comment}
z${status}

${body}zj<html>
 <head>
  <title>${status}</title>
 </head>
 <body>
  <h1>${status}</h1>
  ${body}
 </body>
</html>FcKsttj|fdd|j|jfi|��t�||�|r>|j�|�||_||_|dk	rb||_	t
|�|_|jrp|`
|`dS)N�statusz%s %s)rr�code�titler�headers�extend�detail�comment�
body_templater�body_template_obj�
empty_body�content_type�content_length)r!r2r0r3r4�kwrrrrs

zWSGIHTTPException.__init__cCs|jp
|jS)N)r2�explanation)r!rrr�__str__szWSGIHTTPException.__str__cCs�||j�||jpd�||jpd�d�}|jr@d||j�|d<nd|d<tj|jk	r�x |��D]\}}||�||<q^Wx&|j��D]\}}||�||��<q�W|j}|�|�S)Nr)r:r2r3z<!-- %s -->Zhtml_comment)	r:r2r3r,r5�itemsr0�lower�
substitute)r!r#�escape�args�k�vZt_objrrr�
_make_bodyszWSGIHTTPException._make_bodycCs*|�|t�}t|�}|jj|j|j|d�S)N)r-r/�body)rCrr�plain_template_objr>r-r/)r!r#rDrrr�
plain_body*s

zWSGIHTTPException.plain_bodycCs|�|t�}|jj|j|d�S)N)r-rD)rCr	�html_template_objr>r-)r!r#rDrrr�	html_body1s
zWSGIHTTPException.html_bodyc	Cs�|jdk	r|`t|j�}|�dd�}|r0d|ks8d|krHd}|�|�}nd}|�|�}i}t|t�rp|jdd�t	|f|j
||d	�|��}||_|||�S)
NZHTTP_ACCEPTr�htmlz*/*z	text/htmlz
text/plainzutf-8)�charset)r-�
headerlistr7)r8�listrK�getrHrFr
r�updaterr-r7)	r!r#r$rK�acceptr7rDZextra_kwZresprrr�generate_response6s&



z#WSGIHTTPException.generate_responsecCsD|ddk}|js|js|r,t�|||�}n|�||�}|r@g}|S)NZREQUEST_METHODZHEAD)rDr6rr%rP)r!r#r$Zis_headZapp_iterrrrr%MszWSGIHTTPException.__call__cCs|S)Nr)r!rrrr WszWSGIHTTPException.wsgi_response)NNNN)r(r)r*r.r/r:rr5rErGr6rr;rCrFrHrPr%r+r rrrrr,�s&	

r,c@seZdZdZdS)�	HTTPErrorz�
    base class for status codes in the 400's and 500's

    This is an exception which indicates that an error has occurred,
    and that any work in progress should not be committed.  These are
    typically results in the 400's and 500's.
    N)r(r)r*�__doc__rrrrrQ]srQc@seZdZdZdS)�HTTPRedirectiona
    base class for 300's status code (redirections)

    This is an abstract base class for 3xx redirection.  It indicates
    that further action needs to be taken by the user agent in order
    to fulfill the request.  It does not necessarly signal an error
    condition.
    N)r(r)r*rRrrrrrSfsrSc@seZdZdZdZdZdS)�HTTPOkz_
    Base class for the 200's status code (successful responses)

    code: 200, title: OK
    ��ZOKN)r(r)r*rRr.r/rrrrrTpsrTc@seZdZdZdZdZdS)�HTTPCreatedz�
    subclass of :class:`~HTTPOk`

    This indicates that request has been fulfilled and resulted in a new
    resource being created.

    code: 201, title: Created
    ��ZCreatedN)r(r)r*rRr.r/rrrrrV}srVc@seZdZdZdZdZdZdS)�HTTPAcceptedz�
    subclass of :class:`~HTTPOk`

    This indicates that the request has been accepted for processing, but the
    processing has not been completed.

    code: 202, title: Accepted
    ��ZAcceptedz'The request is accepted for processing.N)r(r)r*rRr.r/r:rrrrrX�srXc@seZdZdZdZdZdS)�HTTPNonAuthoritativeInformationa!
    subclass of :class:`~HTTPOk`

    This indicates that the returned metainformation in the entity-header is
    not the definitive set as available from the origin server, but is
    gathered from a local or a third-party copy.

    code: 203, title: Non-Authoritative Information
    ��zNon-Authoritative InformationN)r(r)r*rRr.r/rrrrrZ�s	rZc@seZdZdZdZdZdZdS)�
HTTPNoContentz�
    subclass of :class:`~HTTPOk`

    This indicates that the server has fulfilled the request but does
    not need to return an entity-body, and might want to return updated
    metainformation.

    code: 204, title: No Content
    ��z
No ContentTN)r(r)r*rRr.r/r6rrrrr\�s	r\c@seZdZdZdZdZdZdS)�HTTPResetContentz�
    subclass of :class:`~HTTPOk`

    This indicates that the the server has fulfilled the request and
    the user agent SHOULD reset the document view which caused the
    request to be sent.

    code: 205, title: Reset Content
    ��z
Reset ContentTN)r(r)r*rRr.r/r6rrrrr^�s	r^c@seZdZdZdZdZdS)�HTTPPartialContentz�
    subclass of :class:`~HTTPOk`

    This indicates that the server has fulfilled the partial GET
    request for the resource.

    code: 206, title: Partial Content
    ��zPartial ContentN)r(r)r*rRr.r/rrrrr`�sr`cs:eZdZdZdZed�Zd
�fdd�	Z�fdd	�Z�Z	S)�	_HTTPMovea�
    redirections which require a Location field

    Since a 'Location' header is a required attribute of 301, 302, 303,
    305 and 307 (but not 304), this base class provides the mechanics to
    make this easy.

    You can provide a location keyword argument to set the location
    immediately.  You may also give ``add_slash=True`` if you want to
    redirect to the same URL as the request, except with a ``/`` added
    to the end.

    Relative URLs in the location will be resolved to absolute.
    zThe resource has been moved tozw${explanation} <a href="${location}">${location}</a>;
you should be redirected automatically.
${detail}
${html_comment}NFcs<tt|�j||||d�|dk	r2||_|r2td��||_dS)N)r2r0r3r4z@You can only provide one of the arguments location and add_slash)�superrbr�location�	TypeError�	add_slash)r!r2r0r3r4rdrf)�	__class__rrr�s
z_HTTPMove.__init__csdt|�}|jr@|j}|d7}|j�d�r:|d|jd7}||_t�|j|j�|_tt	|��
||�S)N�/ZQUERY_STRING�?)rrfZpath_urlr#rMrdr�urljoinrcrbr%)r!r#r$�req�url)rgrrr%�s
z_HTTPMove.__call__)NNNNNF)
r(r)r*rRr:rr5rr%�
__classcell__rr)rgrrb�srbc@seZdZdZdZdZdS)�HTTPMultipleChoicesa�
    subclass of :class:`~_HTTPMove`

    This indicates that the requested resource corresponds to any one
    of a set of representations, each with its own specific location,
    and agent-driven negotiation information is being provided so that
    the user can select a preferred representation and redirect its
    request to that location.

    code: 300, title: Multiple Choices
    i,zMultiple ChoicesN)r(r)r*rRr.r/rrrrrn�srnc@seZdZdZdZdZdS)�HTTPMovedPermanentlya
    subclass of :class:`~_HTTPMove`

    This indicates that the requested resource has been assigned a new
    permanent URI and any future references to this resource SHOULD use
    one of the returned URIs.

    code: 301, title: Moved Permanently
    i-zMoved PermanentlyN)r(r)r*rRr.r/rrrrro
s	roc@seZdZdZdZdZdZdS)�	HTTPFoundz�
    subclass of :class:`~_HTTPMove`

    This indicates that the requested resource resides temporarily under
    a different URI.

    code: 302, title: Found
    i.ZFoundzThe resource was found atN)r(r)r*rRr.r/r:rrrrrpsrpc@seZdZdZdZdZdS)�HTTPSeeOtherz�
    subclass of :class:`~_HTTPMove`

    This indicates that the response to the request can be found under
    a different URI and SHOULD be retrieved using a GET method on that
    resource.

    code: 303, title: See Other
    i/z	See OtherN)r(r)r*rRr.r/rrrrrq)s	rqc@seZdZdZdZdZdZdS)�HTTPNotModifieda
    subclass of :class:`~HTTPRedirection`

    This indicates that if the client has performed a conditional GET
    request and access is allowed, but the document has not been
    modified, the server SHOULD respond with this status code.

    code: 304, title: Not Modified
    i0zNot ModifiedTN)r(r)r*rRr.r/r6rrrrrr6s	rrc@seZdZdZdZdZdZdS)�HTTPUseProxyz�
    subclass of :class:`~_HTTPMove`

    This indicates that the requested resource MUST be accessed through
    the proxy given by the Location field.

    code: 305, title: Use Proxy
    i1z	Use Proxyz8The resource must be accessed through a proxy located atN)r(r)r*rRr.r/r:rrrrrsEsrsc@seZdZdZdZdZdS)�HTTPTemporaryRedirectz�
    subclass of :class:`~_HTTPMove`

    This indicates that the requested resource resides temporarily
    under a different URI.

    code: 307, title: Temporary Redirect
    i3zTemporary RedirectN)r(r)r*rRr.r/rrrrrtTsrtc@seZdZdZdZdZdZdS)�HTTPClientErrora8
    base class for the 400's, where the client is in error

    This is an error condition in which the client is presumed to be
    in-error.  This is an expected problem, and thus is not considered
    a bug.  A server-side traceback is not warranted.  Unless specialized,
    this is a '400 Bad Request'
    i�zBad RequestzdThe server could not comply with the request since
it is either malformed or otherwise incorrect.
N)r(r)r*rRr.r/r:rrrrrudsruc@seZdZdS)�HTTPBadRequestN)r(r)r*rrrrrvrsrvc@seZdZdZdZdZdZdS)�HTTPUnauthorizedz�
    subclass of :class:`~HTTPClientError`

    This indicates that the request requires user authentication.

    code: 401, title: Unauthorized
    i�ZUnauthorizedz�This server could not verify that you are authorized to
access the document you requested.  Either you supplied the
wrong credentials (e.g., bad password), or your browser
does not understand how to supply the credentials required.
N)r(r)r*rRr.r/r:rrrrrwusrwc@seZdZdZdZdZdZdS)�HTTPPaymentRequiredzW
    subclass of :class:`~HTTPClientError`

    code: 402, title: Payment Required
    i�zPayment Requiredz(Access was denied for financial reasons.N)r(r)r*rRr.r/r:rrrrrx�srxc@seZdZdZdZdZdZdS)�
HTTPForbiddenz�
    subclass of :class:`~HTTPClientError`

    This indicates that the server understood the request, but is
    refusing to fulfill it.

    code: 403, title: Forbidden
    i�Z	Forbiddenz#Access was denied to this resource.N)r(r)r*rRr.r/r:rrrrry�sryc@seZdZdZdZdZdZdS)�HTTPNotFoundz�
    subclass of :class:`~HTTPClientError`

    This indicates that the server did not find anything matching the
    Request-URI.

    code: 404, title: Not Found
    i�z	Not Foundz The resource could not be found.N)r(r)r*rRr.r/r:rrrrrz�srzc@s eZdZdZdZdZed�ZdS)�HTTPMethodNotAllowedz�
    subclass of :class:`~HTTPClientError`

    This indicates that the method specified in the Request-Line is
    not allowed for the resource identified by the Request-URI.

    code: 405, title: Method Not Allowed
    i�zMethod Not AllowedzUThe method ${REQUEST_METHOD} is not allowed for this resource. <br /><br />
${detail}N)r(r)r*rRr.r/rr5rrrrr{�s
r{c@s eZdZdZdZdZed�ZdS)�HTTPNotAcceptablea3
    subclass of :class:`~HTTPClientError`

    This indicates the resource identified by the request is only
    capable of generating response entities which have content
    characteristics not acceptable according to the accept headers
    sent in the request.

    code: 406, title: Not Acceptable
    i�zNot AcceptablezThe resource could not be generated that was acceptable to your browser
(content of type ${HTTP_ACCEPT}. <br /><br />
${detail}N)r(r)r*rRr.r/r�templaterrrrr|�s

r|c@seZdZdZdZdZdZdS)�HTTPProxyAuthenticationRequiredz�
    subclass of :class:`~HTTPClientError`

    This is similar to 401, but indicates that the client must first
    authenticate itself with the proxy.

    code: 407, title: Proxy Authentication Required
    i�zProxy Authentication Requiredz,Authentication with a local proxy is needed.N)r(r)r*rRr.r/r:rrrrr~�sr~c@seZdZdZdZdZdZdS)�HTTPRequestTimeoutz�
    subclass of :class:`~HTTPClientError`

    This indicates that the client did not produce a request within
    the time that the server was prepared to wait.

    code: 408, title: Request Timeout
    i�zRequest TimeoutzHThe server has waited too long for the request to be sent by the client.N)r(r)r*rRr.r/r:rrrrr�src@seZdZdZdZdZdZdS)�HTTPConflictz�
    subclass of :class:`~HTTPClientError`

    This indicates that the request could not be completed due to a
    conflict with the current state of the resource.

    code: 409, title: Conflict
    i�ZConflictz:There was a conflict when trying to complete your request.N)r(r)r*rRr.r/r:rrrrr��sr�c@seZdZdZdZdZdZdS)�HTTPGonez�
    subclass of :class:`~HTTPClientError`

    This indicates that the requested resource is no longer available
    at the server and no forwarding address is known.

    code: 410, title: Gone
    i�ZGonezFThis resource is no longer available.  No forwarding address is given.N)r(r)r*rRr.r/r:rrrrr��sr�c@seZdZdZdZdZdZdS)�HTTPLengthRequiredz�
    subclass of :class:`~HTTPClientError`

    This indicates that the the server refuses to accept the request
    without a defined Content-Length.

    code: 411, title: Length Required
    i�zLength RequiredzContent-Length header required.N)r(r)r*rRr.r/r:rrrrr�sr�c@seZdZdZdZdZdZdS)�HTTPPreconditionFailedz�
    subclass of :class:`~HTTPClientError`

    This indicates that the precondition given in one or more of the
    request-header fields evaluated to false when it was tested on the
    server.

    code: 412, title: Precondition Failed
    i�zPrecondition FailedzRequest precondition failed.N)r(r)r*rRr.r/r:rrrrr�s	r�c@seZdZdZdZdZdZdS)�HTTPRequestEntityTooLargea
    subclass of :class:`~HTTPClientError`

    This indicates that the server is refusing to process a request
    because the request entity is larger than the server is willing or
    able to process.

    code: 413, title: Request Entity Too Large
    i�zRequest Entity Too Largez7The body of your request was too large for this server.N)r(r)r*rRr.r/r:rrrrr�s	r�c@seZdZdZdZdZdZdS)�HTTPRequestURITooLongz�
    subclass of :class:`~HTTPClientError`

    This indicates that the server is refusing to service the request
    because the Request-URI is longer than the server is willing to
    interpret.

    code: 414, title: Request-URI Too Long
    i�zRequest-URI Too Longz-The request URI was too long for this server.N)r(r)r*rRr.r/r:rrrrr�,s	r�c@s eZdZdZdZdZed�ZdS)�HTTPUnsupportedMediaTypea
    subclass of :class:`~HTTPClientError`

    This indicates that the server is refusing to service the request
    because the entity of the request is in a format not supported by
    the requested resource for the requested method.

    code: 415, title: Unsupported Media Type
    i�zUnsupported Media Typez^The request media type ${CONTENT_TYPE} is not supported by this server.
<br /><br />
${detail}N)r(r)r*rRr.r/rZtemplate_objrrrrr�:s
	r�c@seZdZdZdZdZdZdS)�HTTPRequestRangeNotSatisfiablea�
    subclass of :class:`~HTTPClientError`

    The server SHOULD return a response with this status code if a
    request included a Range request-header field, and none of the
    range-specifier values in this field overlap the current extent
    of the selected resource, and the request did not include an
    If-Range request-header field.

    code: 416, title: Request Range Not Satisfiable
    i�zRequest Range Not Satisfiablez%The Range requested is not available.N)r(r)r*rRr.r/r:rrrrr�Lsr�c@seZdZdZdZdZdZdS)�HTTPExpectationFailedz�
    subclass of :class:`~HTTPClientError`

    This indidcates that the expectation given in an Expect
    request-header field could not be met by this server.

    code: 417, title: Expectation Failed
    i�zExpectation FailedzExpectation failed.N)r(r)r*rRr.r/r:rrrrr�\sr�c@seZdZdZdZdZdZdS)�HTTPUnprocessableEntityz�
    subclass of :class:`~HTTPClientError`

    This indicates that the server is unable to process the contained
    instructions. Only for WebDAV.

    code: 422, title: Unprocessable Entity
    i�zUnprocessable Entityz,Unable to process the contained instructionsN)r(r)r*rRr.r/r:rrrrr�isr�c@seZdZdZdZdZdZdS)�
HTTPLockedz�
    subclass of :class:`~HTTPClientError`

    This indicates that the resource is locked. Only for WebDAV

    code: 423, title: Locked
    i�ZLockedzThe resource is lockedN)r(r)r*rRr.r/r:rrrrr�wsr�c@seZdZdZdZdZdZdS)�HTTPFailedDependencyz�
    subclass of :class:`~HTTPClientError`

    This indicates that the method could not be performed because the
    requested action depended on another action and that action failed.
    Only for WebDAV.

    code: 424, title: Failed Dependency
    i�zFailed DependencyzsThe method could not be performed because the requested action dependended on another action and that action failedN)r(r)r*rRr.r/r:rrrrr��s	r�c@seZdZdZdZdZdZdS)�HTTPPreconditionRequiredz�
    subclass of :class:`~HTTPClientError`

    This indicates that the origin server requires the request to be
    conditional.  From RFC 6585, "Additional HTTP Status Codes".

    code: 428, title: Precondition Required
    i�zPrecondition Requiredz*This request is required to be conditionalN)r(r)r*rRr.r/r:rrrrr��sr�c@seZdZdZdZdZdZdS)�HTTPTooManyRequestsa
    subclass of :class:`~HTTPClientError`

    This indicates that the client has sent too many requests in a
    given amount of time.  Useful for rate limiting.

    From RFC 6585, "Additional HTTP Status Codes".

    code: 429, title: Too Many Requests
    i�zToo Many Requestsz?The client has sent too many requests in a given amount of timeN)r(r)r*rRr.r/r:rrrrr��s
r�c@seZdZdZdZdZdZdS)�HTTPRequestHeaderFieldsTooLargeah
    subclass of :class:`~HTTPClientError`

    This indicates that the server is unwilling to process the request
    because its header fields are too large. The request may be resubmitted
    after reducing the size of the request header fields.

    From RFC 6585, "Additional HTTP Status Codes".

    code: 431, title: Request Header Fields Too Large
    i�zRequest Header Fields Too Largez(The request header fields were too largeN)r(r)r*rRr.r/r:rrrrr��sr�c@seZdZdZdZdZdZdS)�HTTPServerErroraF
    base class for the 500's, where the server is in-error

    This is an error condition in which the server is presumed to be
    in-error.  This is usually unexpected, and thus requires a traceback;
    ideally, opening a support ticket for the customer. Unless specialized,
    this is a '500 Internal Server Error'
    i�zInternal Server ErrorzUThe server has either erred or is incapable of performing
the requested operation.
N)r(r)r*rRr.r/r:rrrrr��sr�c@seZdZdS)�HTTPInternalServerErrorN)r(r)r*rrrrr��sr�c@s eZdZdZdZdZed�ZdS)�HTTPNotImplementedz�
    subclass of :class:`~HTTPServerError`

    This indicates that the server does not support the functionality
    required to fulfill the request.

    code: 501, title: Not Implemented
    i�zNot Implementedz`
The request method ${REQUEST_METHOD} is not implemented for this server. <br /><br />
${detail}N)r(r)r*rRr.r/rr}rrrrr��s
r�c@seZdZdZdZdZdZdS)�HTTPBadGatewaya
    subclass of :class:`~HTTPServerError`

    This indicates that the server, while acting as a gateway or proxy,
    received an invalid response from the upstream server it accessed
    in attempting to fulfill the request.

    code: 502, title: Bad Gateway
    i�zBad GatewayzBad gateway.N)r(r)r*rRr.r/r:rrrrr��s	r�c@seZdZdZdZdZdZdS)�HTTPServiceUnavailablez�
    subclass of :class:`~HTTPServerError`

    This indicates that the server is currently unable to handle the
    request due to a temporary overloading or maintenance of the server.

    code: 503, title: Service Unavailable
    i�zService UnavailablezFThe server is currently unavailable. Please try again at a later time.N)r(r)r*rRr.r/r:rrrrr��sr�c@seZdZdZdZdZdZdS)�HTTPGatewayTimeoutaw
    subclass of :class:`~HTTPServerError`

    This indicates that the server, while acting as a gateway or proxy,
    did not receive a timely response from the upstream server specified
    by the URI (e.g. HTTP, FTP, LDAP) or some other auxiliary server
    (e.g. DNS) it needed to access in attempting to complete the request.

    code: 504, title: Gateway Timeout
    i�zGateway TimeoutzThe gateway has timed out.N)r(r)r*rRr.r/r:rrrrr�s
r�c@seZdZdZdZdZdZdS)�HTTPVersionNotSupportedz�
    subclass of :class:`~HTTPServerError`

    This indicates that the server does not support, or refuses to
    support, the HTTP protocol version that was used in the request
    message.

    code: 505, title: HTTP Version Not Supported
    i�zHTTP Version Not Supportedz"The HTTP version is not supported.N)r(r)r*rRr.r/r:rrrrr�s	r�c@seZdZdZdZdZdZdS)�HTTPInsufficientStoragez�
    subclass of :class:`~HTTPServerError`

    This indicates that the server does not have enough space to save
    the resource.

    code: 507, title: Insufficient Storage
    i�zInsufficient Storagez/There was not enough space to save the resourceN)r(r)r*rRr.r/r:rrrrr�(sr�c@seZdZdZdZdZdZdS)�!HTTPNetworkAuthenticationRequiredz�
    subclass of :class:`~HTTPServerError`

    This indicates that the client needs to authenticate to gain
    network access.  From RFC 6585, "Additional HTTP Status Codes".

    code: 511, title: Network Authentication Required
    i�zNetwork Authentication Requiredz"Network authentication is requiredN)r(r)r*rRr.r/r:rrrrr�5sr�c@s eZdZdZdd�Zdd�ZdS)�HTTPExceptionMiddlewarea�
    Middleware that catches exceptions in the sub-application.  This
    does not catch exceptions in the app_iter; only during the initial
    calling of the application.

    This should be put *very close* to applications that might raise
    these exceptions.  This should not be applied globally; letting
    *expected* exceptions raise through the WSGI stack is dangerous.
    cCs
||_dS)N)�application)r!r�rrrrMsz HTTPExceptionMiddleware.__init__csHy|�|��Stk
rBt���d��fdd�	}�d||�SXdS)Ncs|dkr�}�|||�S)Nr)r-r0�exc_info)�parent_exc_infor$rr�repl_start_responseTsz=HTTPExceptionMiddleware.__call__.<locals>.repl_start_response�)N)r�r�sysr�)r!r#r$r�r)r�r$rr%Osz HTTPExceptionMiddleware.__call__N)r(r)r*rRrr%rrrrr�Bs	r�)�httpexceptions�
status_map�_r.r:r)krR�stringr�rer�Zwebob.compatrrrrZ
webob.requestrZwebob.responserZ
webob.utilr	r
�compile�Sr�Irrrrrrr,rQrSrTrVrXrZr\r^r`rbrnrorprqrrrsrtrurvrwrxryrzr{r|r~rr�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r��objectr�Zpaster��ImportError�dir�name�globalsrM�objr
�type�
issubclass�	__bases__�getattr�__all__r�rLr<r�
startswith�appendr.r�joinr:�strip�splitrrrr�<module>�s�
}	



/