dirs (owner)

Revisions

gist: 199933 Download_button fork
public
Public Clone URL: git://gist.github.com/199933.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  HTTPResponse
      HTTPUnknownResponse
      HTTPInformation # 1xx
          HTTPContinue # 100
          HTTPSwitchProtocl # 101
      HTTPSuccess # 2xx
          HTTPOK # 200
          HTTPCreated # 201
          HTTPAccepted # 202
          HTTPNonAuthoritativeInformation # 203
          HTTPNoContent # 204
          HTTPResetContent # 205
          HTTPPartialContent # 206
      HTTPRedirection # 3xx
          HTTPMultipleChoice # 300
          HTTPMovedPermanently # 301
          HTTPFound # 302
          HTTPSeeOther # 303
          HTTPNotModified # 304
          HTTPUseProxy # 305
          HTTPTemporaryRedirect # 307
      HTTPClientError # 4xx
          HTTPBadRequest # 400
          HTTPUnauthorized # 401
          HTTPPaymentRequired # 402
          HTTPForbidden # 403
          HTTPNotFound # 404
          HTTPMethodNotAllowed # 405
          HTTPNotAcceptable # 406
          HTTPProxyAuthenticationRequired # 407
          HTTPRequestTimeOut # 408
          HTTPConflict # 409
          HTTPGone # 410
          HTTPLengthRequired # 411
          HTTPPreconditionFailed # 412
          HTTPRequestEntityTooLarge # 413
          HTTPRequestURITooLong # 414
          HTTPUnsupportedMediaType # 415
          HTTPRequestedRangeNotSatisfiable # 416
          HTTPExpectationFailed # 417
      HTTPServerError # 5xx
          HTTPInternalServerError # 500
          HTTPNotImplemented # 501
          HTTPBadGateway # 502
          HTTPServiceUnavailable # 503
          HTTPGatewayTimeOut # 504
          HTTPVersionNotSupported # 505