File: status.py

package info (click to toggle)
davix 0.8.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,184 kB
  • sloc: ansic: 164,612; cpp: 38,741; python: 17,726; perl: 14,124; sh: 13,458; xml: 3,567; makefile: 1,959; javascript: 885; pascal: 570; lisp: 7
file content (24 lines) | stat: -rw-r--r-- 689 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

STATUS_CODES={
        100:    "Continue",
        102:    "Processing",
        200:    "Ok",
        201:    "Created",
        204:    "No Content",
        207:    "Multi-Status",
        201:    "Created",
        400:    "Bad Request",
        403:    "Forbidden",
        404:    "Not Found",
        405:    "Method Not Allowed",
        409:    "Conflict",
        412:    "Precondition failed",
        423:    "Locked",
        415:    "Unsupported Media Type",
        507:    "Insufficient Storage",
        422:    "Unprocessable Entity",
        423:    "Locked",
        424:    "Failed Dependency",
        502:    "Bad Gateway",
        507:    "Insufficient Storage"
}