# Copyright (C) 2001-2018, Python Software Foundation # For licence information, see README file. # msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-03-11 12:59+0100\n" "PO-Revision-Date: 2018-09-27 11:39+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.1.1\n" #: ../Doc/library/http.rst:2 msgid ":mod:`http` --- HTTP modules" msgstr ":mod:`http` — modules HTTP" #: ../Doc/library/http.rst:7 msgid "**Source code:** :source:`Lib/http/__init__.py`" msgstr "**Code source :** :source:`Lib/http/__init__.py`" #: ../Doc/library/http.rst:15 msgid "" ":mod:`http` is a package that collects several modules for working with the " "HyperText Transfer Protocol:" msgstr "" ":mod:`http` est un paquet qui rassemble plusieurs modules servant à " "travailler avec le protocole HTTP (*HyperText Transfer Procotol*) :" #: ../Doc/library/http.rst:18 msgid "" ":mod:`http.client` is a low-level HTTP protocol client; for high-level URL " "opening use :mod:`urllib.request`" msgstr "" "Le module :mod:`http.client` est un client HTTP bas niveau. Pour accéder à " "des ressources web, utiliser le module haut niveau :mod:`urllib.request`" #: ../Doc/library/http.rst:20 msgid "" ":mod:`http.server` contains basic HTTP server classes based on :mod:" "`socketserver`" msgstr "" "Le module :mod:`http.server` contient des classes serveur HTTP basiques " "basées sur :mod:`socketserver`" #: ../Doc/library/http.rst:21 msgid "" ":mod:`http.cookies` has utilities for implementing state management with " "cookies" msgstr "" "Le module :mod:`http.cookies` contient des utilitaires liés à la gestion " "d'état HTTP via les cookies" #: ../Doc/library/http.rst:22 msgid ":mod:`http.cookiejar` provides persistence of cookies" msgstr "" "Le module :mod:`http.cookiejar` fournit un mécanisme de persistance des " "cookies" #: ../Doc/library/http.rst:24 msgid "" ":mod:`http` is also a module that defines a number of HTTP status codes and " "associated messages through the :class:`http.HTTPStatus` enum:" msgstr "" ":mod:`http` est aussi un module qui définit une liste de codes d'état HTTP " "et les messages associés par le biais de l'énumération :class:`http." "HTTPStatus` :" #: ../Doc/library/http.rst:31 msgid "" "A subclass of :class:`enum.IntEnum` that defines a set of HTTP status codes, " "reason phrases and long descriptions written in English." msgstr "" "Sous-classe de :class:`enum.IntEnum` qui définit un ensemble de codes d'état " "HTTP, messages explicatifs et descriptions complètes écrites en anglais." #: ../Doc/library/http.rst:34 msgid "Usage::" msgstr "Utilisation ::" #: ../Doc/library/http.rst:53 msgid "HTTP status codes" msgstr "Codes d'état HTTP" #: ../Doc/library/http.rst:55 msgid "" "Supported, `IANA-registered `_ status codes available in :class:`http." "HTTPStatus` are:" msgstr "" "Les codes d'état disponibles (`enregistrés auprès de l'IANA `_) dans :" "class:`http.HTTPStatus` sont :" #: ../Doc/library/http.rst:60 msgid "Code" msgstr "Code" #: ../Doc/library/http.rst:60 msgid "Enum Name" msgstr "Message" #: ../Doc/library/http.rst:60 msgid "Details" msgstr "Détails" #: ../Doc/library/http.rst:62 msgid "``100``" msgstr "``100``" #: ../Doc/library/http.rst:62 msgid "``CONTINUE``" msgstr "``CONTINUE``" #: ../Doc/library/http.rst:62 msgid "HTTP/1.1 :rfc:`7231`, Section 6.2.1" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.2.1" #: ../Doc/library/http.rst:63 msgid "``101``" msgstr "``101``" #: ../Doc/library/http.rst:63 msgid "``SWITCHING_PROTOCOLS``" msgstr "``SWITCHING_PROTOCOLS``" #: ../Doc/library/http.rst:63 msgid "HTTP/1.1 :rfc:`7231`, Section 6.2.2" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.2.2" #: ../Doc/library/http.rst:64 msgid "``102``" msgstr "``102``" #: ../Doc/library/http.rst:64 msgid "``PROCESSING``" msgstr "``PROCESSING``" #: ../Doc/library/http.rst:64 msgid "WebDAV :rfc:`2518`, Section 10.1" msgstr "*WebDAV* :rfc:`2518`, Section 10.1" #: ../Doc/library/http.rst:65 msgid "``200``" msgstr "``200``" #: ../Doc/library/http.rst:65 msgid "``OK``" msgstr "``OK``" #: ../Doc/library/http.rst:65 msgid "HTTP/1.1 :rfc:`7231`, Section 6.3.1" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.3.1" #: ../Doc/library/http.rst:66 msgid "``201``" msgstr "``201``" #: ../Doc/library/http.rst:66 msgid "``CREATED``" msgstr "``CREATED``" #: ../Doc/library/http.rst:66 msgid "HTTP/1.1 :rfc:`7231`, Section 6.3.2" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.3.2" #: ../Doc/library/http.rst:67 msgid "``202``" msgstr "``202``" #: ../Doc/library/http.rst:67 msgid "``ACCEPTED``" msgstr "``ACCEPTED``" #: ../Doc/library/http.rst:67 msgid "HTTP/1.1 :rfc:`7231`, Section 6.3.3" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.3.3" #: ../Doc/library/http.rst:68 msgid "``203``" msgstr "``203``" #: ../Doc/library/http.rst:68 msgid "``NON_AUTHORITATIVE_INFORMATION``" msgstr "``NON_AUTHORITATIVE_INFORMATION``" #: ../Doc/library/http.rst:68 msgid "HTTP/1.1 :rfc:`7231`, Section 6.3.4" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.3.4" #: ../Doc/library/http.rst:69 msgid "``204``" msgstr "``204``" #: ../Doc/library/http.rst:69 msgid "``NO_CONTENT``" msgstr "``NO_CONTENT``" #: ../Doc/library/http.rst:69 msgid "HTTP/1.1 :rfc:`7231`, Section 6.3.5" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.3.5" #: ../Doc/library/http.rst:70 msgid "``205``" msgstr "``205``" #: ../Doc/library/http.rst:70 msgid "``RESET_CONTENT``" msgstr "``RESET_CONTENT``" #: ../Doc/library/http.rst:70 msgid "HTTP/1.1 :rfc:`7231`, Section 6.3.6" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.3.6" #: ../Doc/library/http.rst:71 msgid "``206``" msgstr "``206``" #: ../Doc/library/http.rst:71 msgid "``PARTIAL_CONTENT``" msgstr "``PARTIAL_CONTENT``" #: ../Doc/library/http.rst:71 msgid "HTTP/1.1 :rfc:`7233`, Section 4.1" msgstr "HTTP/1.1 :rfc:`7233`, Section 4.1" #: ../Doc/library/http.rst:72 msgid "``207``" msgstr "``207``" #: ../Doc/library/http.rst:72 msgid "``MULTI_STATUS``" msgstr "``MULTI_STATUS``" #: ../Doc/library/http.rst:72 msgid "WebDAV :rfc:`4918`, Section 11.1" msgstr "*WebDAV* :rfc:`4918`, Section 11.1" #: ../Doc/library/http.rst:73 msgid "``208``" msgstr "``208``" #: ../Doc/library/http.rst:73 msgid "``ALREADY_REPORTED``" msgstr "``ALREADY_REPORTED``" #: ../Doc/library/http.rst:73 msgid "WebDAV Binding Extensions :rfc:`5842`, Section 7.1 (Experimental)" msgstr "*WebDAV* Binding Extensions :rfc:`5842`, Section 7.1 (Expérimental)" #: ../Doc/library/http.rst:74 msgid "``226``" msgstr "``226``" #: ../Doc/library/http.rst:74 msgid "``IM_USED``" msgstr "``IM_USED``" #: ../Doc/library/http.rst:74 msgid "Delta Encoding in HTTP :rfc:`3229`, Section 10.4.1" msgstr "Delta Encoding in HTTP :rfc:`3229`, Section 10.4.1" #: ../Doc/library/http.rst:75 msgid "``300``" msgstr "``300``" #: ../Doc/library/http.rst:75 msgid "``MULTIPLE_CHOICES``" msgstr "``MULTIPLE_CHOICES``" #: ../Doc/library/http.rst:75 msgid "HTTP/1.1 :rfc:`7231`, Section 6.4.1" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.4.1" #: ../Doc/library/http.rst:76 msgid "``301``" msgstr "``301``" #: ../Doc/library/http.rst:76 msgid "``MOVED_PERMANENTLY``" msgstr "``MOVED_PERMANENTLY``" #: ../Doc/library/http.rst:76 msgid "HTTP/1.1 :rfc:`7231`, Section 6.4.2" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.4.2" #: ../Doc/library/http.rst:77 msgid "``302``" msgstr "``302``" #: ../Doc/library/http.rst:77 msgid "``FOUND``" msgstr "``FOUND``" #: ../Doc/library/http.rst:77 msgid "HTTP/1.1 :rfc:`7231`, Section 6.4.3" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.4.3" #: ../Doc/library/http.rst:78 msgid "``303``" msgstr "``303``" #: ../Doc/library/http.rst:78 msgid "``SEE_OTHER``" msgstr "``SEE_OTHER``" #: ../Doc/library/http.rst:78 msgid "HTTP/1.1 :rfc:`7231`, Section 6.4.4" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.4.4" #: ../Doc/library/http.rst:79 msgid "``304``" msgstr "``304``" #: ../Doc/library/http.rst:79 msgid "``NOT_MODIFIED``" msgstr "``NOT_MODIFIED``" #: ../Doc/library/http.rst:79 msgid "HTTP/1.1 :rfc:`7232`, Section 4.1" msgstr "HTTP/1.1 :rfc:`7232`, Section 4.1" #: ../Doc/library/http.rst:80 msgid "``305``" msgstr "``305``" #: ../Doc/library/http.rst:80 msgid "``USE_PROXY``" msgstr "``USE_PROXY``" #: ../Doc/library/http.rst:80 msgid "HTTP/1.1 :rfc:`7231`, Section 6.4.5" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.4.5" #: ../Doc/library/http.rst:81 msgid "``307``" msgstr "``307``" #: ../Doc/library/http.rst:81 msgid "``TEMPORARY_REDIRECT``" msgstr "``TEMPORARY_REDIRECT``" #: ../Doc/library/http.rst:81 msgid "HTTP/1.1 :rfc:`7231`, Section 6.4.7" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.4.7" #: ../Doc/library/http.rst:82 msgid "``308``" msgstr "``308``" #: ../Doc/library/http.rst:82 msgid "``PERMANENT_REDIRECT``" msgstr "``PERMANENT_REDIRECT``" #: ../Doc/library/http.rst:82 msgid "Permanent Redirect :rfc:`7238`, Section 3 (Experimental)" msgstr "Permanent Redirect :rfc:`7238`, Section 3 (Expérimental)" #: ../Doc/library/http.rst:83 msgid "``400``" msgstr "``400``" #: ../Doc/library/http.rst:83 msgid "``BAD_REQUEST``" msgstr "``BAD_REQUEST``" #: ../Doc/library/http.rst:83 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.1" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.1" #: ../Doc/library/http.rst:84 msgid "``401``" msgstr "``401``" #: ../Doc/library/http.rst:84 msgid "``UNAUTHORIZED``" msgstr "``UNAUTHORIZED``" #: ../Doc/library/http.rst:84 msgid "HTTP/1.1 Authentication :rfc:`7235`, Section 3.1" msgstr "HTTP/1.1 Authentication :rfc:`7235`, Section 3.1" #: ../Doc/library/http.rst:85 msgid "``402``" msgstr "``402``" #: ../Doc/library/http.rst:85 msgid "``PAYMENT_REQUIRED``" msgstr "``PAYMENT_REQUIRED``" #: ../Doc/library/http.rst:85 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.2" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.2" #: ../Doc/library/http.rst:86 msgid "``403``" msgstr "``403``" #: ../Doc/library/http.rst:86 msgid "``FORBIDDEN``" msgstr "``FORBIDDEN``" #: ../Doc/library/http.rst:86 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.3" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.3" #: ../Doc/library/http.rst:87 msgid "``404``" msgstr "``404``" #: ../Doc/library/http.rst:87 msgid "``NOT_FOUND``" msgstr "``NOT_FOUND``" #: ../Doc/library/http.rst:87 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.4" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.4" #: ../Doc/library/http.rst:88 msgid "``405``" msgstr "``405``" #: ../Doc/library/http.rst:88 msgid "``METHOD_NOT_ALLOWED``" msgstr "``METHOD_NOT_ALLOWED``" #: ../Doc/library/http.rst:88 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.5" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.5" #: ../Doc/library/http.rst:89 msgid "``406``" msgstr "``406``" #: ../Doc/library/http.rst:89 msgid "``NOT_ACCEPTABLE``" msgstr "``NOT_ACCEPTABLE``" #: ../Doc/library/http.rst:89 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.6" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.6" #: ../Doc/library/http.rst:90 msgid "``407``" msgstr "``407``" #: ../Doc/library/http.rst:90 msgid "``PROXY_AUTHENTICATION_REQUIRED``" msgstr "``PROXY_AUTHENTICATION_REQUIRED``" #: ../Doc/library/http.rst:90 msgid "HTTP/1.1 Authentication :rfc:`7235`, Section 3.2" msgstr "HTTP/1.1 Authentication :rfc:`7235`, Section 3.2" #: ../Doc/library/http.rst:91 msgid "``408``" msgstr "``408``" #: ../Doc/library/http.rst:91 msgid "``REQUEST_TIMEOUT``" msgstr "``REQUEST_TIMEOUT``" #: ../Doc/library/http.rst:91 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.7" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.7" #: ../Doc/library/http.rst:92 msgid "``409``" msgstr "``409``" #: ../Doc/library/http.rst:92 msgid "``CONFLICT``" msgstr "``CONFLICT``" #: ../Doc/library/http.rst:92 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.8" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.8" #: ../Doc/library/http.rst:93 msgid "``410``" msgstr "``410``" #: ../Doc/library/http.rst:93 msgid "``GONE``" msgstr "``GONE``" #: ../Doc/library/http.rst:93 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.9" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.9" #: ../Doc/library/http.rst:94 msgid "``411``" msgstr "``411``" #: ../Doc/library/http.rst:94 msgid "``LENGTH_REQUIRED``" msgstr "``LENGTH_REQUIRED``" #: ../Doc/library/http.rst:94 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.10" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.10" #: ../Doc/library/http.rst:95 msgid "``412``" msgstr "``412``" #: ../Doc/library/http.rst:95 msgid "``PRECONDITION_FAILED``" msgstr "``PRECONDITION_FAILED``" #: ../Doc/library/http.rst:95 msgid "HTTP/1.1 :rfc:`7232`, Section 4.2" msgstr "HTTP/1.1 :rfc:`7232`, Section 4.2" #: ../Doc/library/http.rst:96 msgid "``413``" msgstr "``413``" #: ../Doc/library/http.rst:96 msgid "``REQUEST_ENTITY_TOO_LARGE``" msgstr "``REQUEST_ENTITY_TOO_LARGE``" #: ../Doc/library/http.rst:96 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.11" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.11" #: ../Doc/library/http.rst:97 msgid "``414``" msgstr "``414``" #: ../Doc/library/http.rst:97 msgid "``REQUEST_URI_TOO_LONG``" msgstr "``REQUEST_URI_TOO_LONG``" #: ../Doc/library/http.rst:97 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.12" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.12" #: ../Doc/library/http.rst:98 msgid "``415``" msgstr "``415``" #: ../Doc/library/http.rst:98 msgid "``UNSUPPORTED_MEDIA_TYPE``" msgstr "``UNSUPPORTED_MEDIA_TYPE``" #: ../Doc/library/http.rst:98 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.13" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.13" #: ../Doc/library/http.rst:99 msgid "``416``" msgstr "``416``" #: ../Doc/library/http.rst:99 msgid "``REQUESTED_RANGE_NOT_SATISFIABLE``" msgstr "``REQUESTED_RANGE_NOT_SATISFIABLE``" #: ../Doc/library/http.rst:99 msgid "HTTP/1.1 Range Requests :rfc:`7233`, Section 4.4" msgstr "HTTP/1.1 Range Requests :rfc:`7233`, Section 4.4" #: ../Doc/library/http.rst:100 msgid "``417``" msgstr "``417``" #: ../Doc/library/http.rst:100 msgid "``EXPECTATION_FAILED``" msgstr "``EXPECTATION_FAILED``" #: ../Doc/library/http.rst:100 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.14" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.14" #: ../Doc/library/http.rst:101 msgid "``421``" msgstr "``421``" #: ../Doc/library/http.rst:101 msgid "``MISDIRECTED_REQUEST``" msgstr "``MISDIRECTED_REQUEST``" #: ../Doc/library/http.rst:101 msgid "HTTP/2 :rfc:`7540`, Section 9.1.2" msgstr "HTTP/2 :rfc:`7540`, Section 9.1.2" #: ../Doc/library/http.rst:102 msgid "``422``" msgstr "``422``" #: ../Doc/library/http.rst:102 msgid "``UNPROCESSABLE_ENTITY``" msgstr "``UNPROCESSABLE_ENTITY``" #: ../Doc/library/http.rst:102 msgid "WebDAV :rfc:`4918`, Section 11.2" msgstr "*WebDAV* :rfc:`4918`, Section 11.2" #: ../Doc/library/http.rst:103 msgid "``423``" msgstr "``423``" #: ../Doc/library/http.rst:103 msgid "``LOCKED``" msgstr "``LOCKED``" #: ../Doc/library/http.rst:103 msgid "WebDAV :rfc:`4918`, Section 11.3" msgstr "*WebDAV* :rfc:`4918`, Section 11.3" #: ../Doc/library/http.rst:104 msgid "``424``" msgstr "``424``" #: ../Doc/library/http.rst:104 msgid "``FAILED_DEPENDENCY``" msgstr "``FAILED_DEPENDENCY``" #: ../Doc/library/http.rst:104 msgid "WebDAV :rfc:`4918`, Section 11.4" msgstr "*WebDAV* :rfc:`4918`, Section 11.4" #: ../Doc/library/http.rst:105 msgid "``426``" msgstr "``426``" #: ../Doc/library/http.rst:105 msgid "``UPGRADE_REQUIRED``" msgstr "``UPGRADE_REQUIRED``" #: ../Doc/library/http.rst:105 msgid "HTTP/1.1 :rfc:`7231`, Section 6.5.15" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.5.15" #: ../Doc/library/http.rst:106 msgid "``428``" msgstr "``428``" #: ../Doc/library/http.rst:106 msgid "``PRECONDITION_REQUIRED``" msgstr "``PRECONDITION_REQUIRED``" #: ../Doc/library/http.rst:106 ../Doc/library/http.rst:107 #: ../Doc/library/http.rst:108 msgid "Additional HTTP Status Codes :rfc:`6585`" msgstr "Additional HTTP Status Codes :rfc:`6585`" #: ../Doc/library/http.rst:107 msgid "``429``" msgstr "``429``" #: ../Doc/library/http.rst:107 msgid "``TOO_MANY_REQUESTS``" msgstr "``TOO_MANY_REQUESTS``" #: ../Doc/library/http.rst:108 msgid "``431``" msgstr "``431``" #: ../Doc/library/http.rst:108 msgid "``REQUEST_HEADER_FIELDS_TOO_LARGE``" msgstr "``REQUEST_HEADER_FIELDS_TOO_LARGE``" #: ../Doc/library/http.rst:109 msgid "``500``" msgstr "``500``" #: ../Doc/library/http.rst:109 msgid "``INTERNAL_SERVER_ERROR``" msgstr "``INTERNAL_SERVER_ERROR``" #: ../Doc/library/http.rst:109 msgid "HTTP/1.1 :rfc:`7231`, Section 6.6.1" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.6.1" #: ../Doc/library/http.rst:110 msgid "``501``" msgstr "``501``" #: ../Doc/library/http.rst:110 msgid "``NOT_IMPLEMENTED``" msgstr "``NOT_IMPLEMENTED``" #: ../Doc/library/http.rst:110 msgid "HTTP/1.1 :rfc:`7231`, Section 6.6.2" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.6.2" #: ../Doc/library/http.rst:111 msgid "``502``" msgstr "``502``" #: ../Doc/library/http.rst:111 msgid "``BAD_GATEWAY``" msgstr "``BAD_GATEWAY``" #: ../Doc/library/http.rst:111 msgid "HTTP/1.1 :rfc:`7231`, Section 6.6.3" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.6.3" #: ../Doc/library/http.rst:112 msgid "``503``" msgstr "``503``" #: ../Doc/library/http.rst:112 msgid "``SERVICE_UNAVAILABLE``" msgstr "``SERVICE_UNAVAILABLE``" #: ../Doc/library/http.rst:112 msgid "HTTP/1.1 :rfc:`7231`, Section 6.6.4" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.6.4" #: ../Doc/library/http.rst:113 msgid "``504``" msgstr "``504``" #: ../Doc/library/http.rst:113 msgid "``GATEWAY_TIMEOUT``" msgstr "``GATEWAY_TIMEOUT``" #: ../Doc/library/http.rst:113 msgid "HTTP/1.1 :rfc:`7231`, Section 6.6.5" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.6.5" #: ../Doc/library/http.rst:114 msgid "``505``" msgstr "``505``" #: ../Doc/library/http.rst:114 msgid "``HTTP_VERSION_NOT_SUPPORTED``" msgstr "``HTTP_VERSION_NOT_SUPPORTED``" #: ../Doc/library/http.rst:114 msgid "HTTP/1.1 :rfc:`7231`, Section 6.6.6" msgstr "HTTP/1.1 :rfc:`7231`, Section 6.6.6" #: ../Doc/library/http.rst:115 msgid "``506``" msgstr "``506``" #: ../Doc/library/http.rst:115 msgid "``VARIANT_ALSO_NEGOTIATES``" msgstr "``VARIANT_ALSO_NEGOTIATES``" #: ../Doc/library/http.rst:115 msgid "" "Transparent Content Negotiation in HTTP :rfc:`2295`, Section 8.1 " "(Experimental)" msgstr "" "Transparent Content Negotiation in HTTP :rfc:`2295`, Section 8.1 " "(Expérimental)" #: ../Doc/library/http.rst:116 msgid "``507``" msgstr "``507``" #: ../Doc/library/http.rst:116 msgid "``INSUFFICIENT_STORAGE``" msgstr "``INSUFFICIENT_STORAGE``" #: ../Doc/library/http.rst:116 msgid "WebDAV :rfc:`4918`, Section 11.5" msgstr "*WebDAV* :rfc:`4918`, Section 11.5" #: ../Doc/library/http.rst:117 msgid "``508``" msgstr "``508``" #: ../Doc/library/http.rst:117 msgid "``LOOP_DETECTED``" msgstr "``LOOP_DETECTED``" #: ../Doc/library/http.rst:117 msgid "WebDAV Binding Extensions :rfc:`5842`, Section 7.2 (Experimental)" msgstr "*WebDAV Binding Extensions* :rfc:`5842`, Section 7.2 (Expérimental)" #: ../Doc/library/http.rst:118 msgid "``510``" msgstr "``510``" #: ../Doc/library/http.rst:118 msgid "``NOT_EXTENDED``" msgstr "``NOT_EXTENDED``" #: ../Doc/library/http.rst:118 msgid "An HTTP Extension Framework :rfc:`2774`, Section 7 (Experimental)" msgstr "An HTTP Extension Framework :rfc:`2774`, Section 7 (Expérimental)" #: ../Doc/library/http.rst:119 msgid "``511``" msgstr "``511``" #: ../Doc/library/http.rst:119 msgid "``NETWORK_AUTHENTICATION_REQUIRED``" msgstr "``NETWORK_AUTHENTICATION_REQUIRED``" #: ../Doc/library/http.rst:119 msgid "Additional HTTP Status Codes :rfc:`6585`, Section 6" msgstr "Codes d'état HTTP supplémentaires :rfc:`6585`, Section 6" #: ../Doc/library/http.rst:122 msgid "" "In order to preserve backwards compatibility, enum values are also present " "in the :mod:`http.client` module in the form of constants. The enum name is " "equal to the constant name (i.e. ``http.HTTPStatus.OK`` is also available as " "``http.client.OK``)." msgstr "" "Dans le but de préserver la compatibilité descendante, les valeurs " "d'énumération sont aussi présentes dans le module :mod:`http.client` sous " "forme de constantes. Les noms de valeurs de l'énumération sont accessibles " "de deux manières : par exemple, le code HTTP 200 est accessible sous les " "noms ``http.HTTPStatus.OK`` et ``http.client.OK``." #: ../Doc/library/http.rst:127 msgid "Added ``421 MISDIRECTED_REQUEST`` status code." msgstr "Ajouté le code d'état ``421 MISDIRECTED_REQUEST``."