1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Align table of HTTP status codes with set supported by current Rack

This commit is contained in:
Chase DuBois 2013-04-14 16:33:41 -07:00
parent 1ed40d7c2e
commit b1286d3918

View file

@ -342,6 +342,7 @@ Rails understands both numeric status codes and the corresponding symbols shown
| | 205 | :reset_content | | | 205 | :reset_content |
| | 206 | :partial_content | | | 206 | :partial_content |
| | 207 | :multi_status | | | 207 | :multi_status |
| | 208 | :already_reported |
| | 226 | :im_used | | | 226 | :im_used |
| **Redirection** | 300 | :multiple_choices | | **Redirection** | 300 | :multiple_choices |
| | 301 | :moved_permanently | | | 301 | :moved_permanently |
@ -351,6 +352,7 @@ Rails understands both numeric status codes and the corresponding symbols shown
| | 305 | :use_proxy | | | 305 | :use_proxy |
| | 306 | :reserved | | | 306 | :reserved |
| | 307 | :temporary_redirect | | | 307 | :temporary_redirect |
| | 308 | :permanent_redirect |
| **Client Error** | 400 | :bad_request | | **Client Error** | 400 | :bad_request |
| | 401 | :unauthorized | | | 401 | :unauthorized |
| | 402 | :payment_required | | | 402 | :payment_required |
@ -369,11 +371,13 @@ Rails understands both numeric status codes and the corresponding symbols shown
| | 415 | :unsupported_media_type | | | 415 | :unsupported_media_type |
| | 416 | :requested_range_not_satisfiable | | | 416 | :requested_range_not_satisfiable |
| | 417 | :expectation_failed | | | 417 | :expectation_failed |
| | 418 | :i'm_a_teapot |
| | 422 | :unprocessable_entity | | | 422 | :unprocessable_entity |
| | 423 | :locked | | | 423 | :locked |
| | 424 | :failed_dependency | | | 424 | :failed_dependency |
| | 426 | :upgrade_required | | | 426 | :upgrade_required |
| | 423 | :precondition_required |
| | 424 | :too_many_requests |
| | 426 | :request_header_fields_too_large |
| **Server Error** | 500 | :internal_server_error | | **Server Error** | 500 | :internal_server_error |
| | 501 | :not_implemented | | | 501 | :not_implemented |
| | 502 | :bad_gateway | | | 502 | :bad_gateway |
@ -382,7 +386,9 @@ Rails understands both numeric status codes and the corresponding symbols shown
| | 505 | :http_version_not_supported | | | 505 | :http_version_not_supported |
| | 506 | :variant_also_negotiates | | | 506 | :variant_also_negotiates |
| | 507 | :insufficient_storage | | | 507 | :insufficient_storage |
| | 508 | :loop_detected |
| | 510 | :not_extended | | | 510 | :not_extended |
| | 511 | :network_authentication_required |
#### Finding Layouts #### Finding Layouts