Apache2-API

 view release on metacpan or  search on metacpan

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

        502 => "Fehlerhaftes Gateway!",
        503 => "Dienst nicht verfügbar!",
        504 => "Gateway-Zeitüberschreitung!",
        505 => "HTTP-Version nicht unterstützt",
        506 => "Variante variiert ebenfalls!",
        507 => "Unzureichender Speicherplatz!",
        508 => "Endlosschleife 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",
        203 => "Non-authoritative Information",

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

        502 => "Bad Gateway!",
        503 => "Service unavailable!",
        504 => "Gateway timeout!",
        505 => "HTTP Version Not Supported",
        506 => "Variant also varies!",
        507 => "Insufficient storage!",
        508 => "Loop detected!",
        509 => "Bandwidth Limit Exceeded",
        510 => "Not Extended",
        511 => "Network Authentication Required",
        599 => "Network Connect Timeout Error",
    },
    es_ES => {
        100 => "Continuar",
        101 => "Cambio de protocolos",
        102 => "Procesando",
        103 => "Pistas tempranas",
        200 => "OK",
        201 => "Creado",
        202 => "Aceptado",
        203 => "Información no autoritativa",

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

        428 => "Precondizione richiesta",
        429 => "Troppe richieste!",
        431 => "Intestazioni di richiesta troppo grandi!",
        444 => "Connessione chiusa senza risposta",
        451 => "Non disponibile per motivi legali!",
        499 => "Richiesta chiusa dal client",
        500 => "Errore del server!",
        501 => "La richiesta non può essere soddisfatta!",
        502 => "Gateway errato!",
        503 => "Servizio non disponibile!",
        504 => "Timeout del gateway!",
        505 => "Versione HTTP non supportata",
        506 => "La variante varia anch’essa!",
        507 => "Spazio di archiviazione insufficiente!",
        508 => "Rilevato loop!",
        509 => "Limite di banda superato",
        510 => "Non esteso",
        511 => "Autenticazione di rete richiesta",
        599 => "Errore di timeout della connessione di rete",
    },
    ja_JP => {

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.204 second using v1.01-cache-2.11-cpan-62ea2d55848 )