Apache2-API

 view release on metacpan or  search on metacpan

lib/Apache2/API/Status.pm  view on Meta::CPAN

    502 => "Schlechtes Gateway",
    503 => "Dienst nicht verfügbar",
    504 => "Gateway-Zeitüberschreitung",
    505 => "HTTP-Version nicht unterstützt",
    506 => "Variante verhandelt auch",
    507 => "Unzureichende Lagerung",
    508 => "Schleife erkannt",
    509 => "Bandbreitenlimit überschritten",
    510 => "Nicht erweitert",
    511 => "Netzwerkauthentifizierung erforderlich",
    599 => "Timeout-Fehler bei Netzwerkverbindung",
    },
'en_GB' => 
    {
    100 => "Continue",
    101 => "Switching Protocols",
    102 => "Processing",
    103 => "Early Hints",
    200 => "OK",
    201 => "Created",
    202 => "Accepted",

lib/Apache2/API/Status.pm  view on Meta::CPAN

    307 => "Temporary Redirect",
    308 => "Permanent Redirect",
    400 => "Bad Request",
    401 => "Unauthorized",
    402 => "Payment Required",
    403 => "Forbidden",
    404 => "Not Found",
    405 => "Method Not Allowed",
    406 => "Not Acceptable",
    407 => "Proxy Authentication Required",
    408 => "Request Timeout",
    409 => "Conflict",
    410 => "Gone",
    411 => "Length Required",
    412 => "Precondition Failed",
    413 => "Payload Too Large",
    414 => "Request-URI Too Long",
    415 => "Unsupported Media Type",
    416 => "Requested Range Not Satisfiable",
    417 => "Expectation Failed",
    # Humour: April's fool

lib/Apache2/API/Status.pm  view on Meta::CPAN

    428 => "Precondition Required",
    429 => "Too Many Requests",
    431 => "Request Header Fields Too Large",
    444 => "Connection Closed Without Response",
    451 => "Unavailable For Legal Reasons",
    499 => "Client Closed Request",
    500 => "Internal Server Error",
    501 => "Not Implemented",
    502 => "Bad Gateway",
    503 => "Service Unavailable",
    504 => "Gateway Timeout",
    505 => "HTTP Version Not Supported",
    506 => "Variant Also Negotiates",
    507 => "Insufficient Storage",
    508 => "Loop Detected",
    509 => "Bandwidth Limit Exceeded",
    510 => "Not Extended",
    511 => "Network Authentication Required",
    599 => "Network Connect Timeout Error",
    },
'fr_FR' =>
    {
    100 => "Continuer",
    101 => "Changement de protocole",
    102 => "En traitement",
    103 => "Premiers indices",
    200 => "OK",
    201 => "Créé",
    202 => "Accepté",

lib/Apache2/API/Status.pm  view on Meta::CPAN

See L<rfc 7235, section 3.2 on Authentication|https://tools.ietf.org/html/rfc7235#section-3.2>

This is returned to indicate the proxy used requires authentication. This is similar to the status code C<401 Unauthorized>.

=head2 HTTP_REQUEST_TIME_OUT (408)

See L<rfc 7231, section 6.5.7|https://tools.ietf.org/html/rfc7231#section-6.5.7>

This is returned to indicate the request took too long to be received and timed out. For example:

    HTTP/1.1 408 Request Timeout
    Connection: close
    Content-Type: text/plain
    Content-Length: 19

    Too slow! Try again

=head2 HTTP_CONFLICT (409)

See L<rfc 7231, section 6.5.8|https://tools.ietf.org/html/rfc7231#section-6.5.8>



( run in 0.225 second using v1.01-cache-2.11-cpan-4d50c553e7e )