diff options
author | Chase DuBois <cdubois@goodreads.com> | 2013-04-14 16:33:41 -0700 |
---|---|---|
committer | Chase DuBois <cdubois@goodreads.com> | 2013-04-14 16:33:41 -0700 |
commit | b1286d391897e3228013295b574de4fa0f856efa (patch) | |
tree | 7361f031ab57715336ca6ae9e93fb2ad6b9ead59 /guides | |
parent | 1ed40d7c2e86da5fc10e7d735a657e7fc3552e24 (diff) | |
download | rails-b1286d391897e3228013295b574de4fa0f856efa.tar.gz rails-b1286d391897e3228013295b574de4fa0f856efa.tar.bz2 rails-b1286d391897e3228013295b574de4fa0f856efa.zip |
Align table of HTTP status codes with set supported by current Rack
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/layouts_and_rendering.md | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/guides/source/layouts_and_rendering.md b/guides/source/layouts_and_rendering.md index abd41c2dee..1ab841b137 100644 --- a/guides/source/layouts_and_rendering.md +++ b/guides/source/layouts_and_rendering.md @@ -1,7 +1,7 @@ Layouts and Rendering in Rails ============================== -This guide covers the basic layout features of Action Controller and Action View. +This guide covers the basic layout features of Action Controller and Action View. After reading this guide, you will know: @@ -342,6 +342,7 @@ Rails understands both numeric status codes and the corresponding symbols shown | | 205 | :reset_content | | | 206 | :partial_content | | | 207 | :multi_status | +| | 208 | :already_reported | | | 226 | :im_used | | **Redirection** | 300 | :multiple_choices | | | 301 | :moved_permanently | @@ -351,6 +352,7 @@ Rails understands both numeric status codes and the corresponding symbols shown | | 305 | :use_proxy | | | 306 | :reserved | | | 307 | :temporary_redirect | +| | 308 | :permanent_redirect | | **Client Error** | 400 | :bad_request | | | 401 | :unauthorized | | | 402 | :payment_required | @@ -369,11 +371,13 @@ Rails understands both numeric status codes and the corresponding symbols shown | | 415 | :unsupported_media_type | | | 416 | :requested_range_not_satisfiable | | | 417 | :expectation_failed | -| | 418 | :i'm_a_teapot | | | 422 | :unprocessable_entity | | | 423 | :locked | | | 424 | :failed_dependency | | | 426 | :upgrade_required | +| | 423 | :precondition_required | +| | 424 | :too_many_requests | +| | 426 | :request_header_fields_too_large | | **Server Error** | 500 | :internal_server_error | | | 501 | :not_implemented | | | 502 | :bad_gateway | @@ -382,7 +386,9 @@ Rails understands both numeric status codes and the corresponding symbols shown | | 505 | :http_version_not_supported | | | 506 | :variant_also_negotiates | | | 507 | :insufficient_storage | +| | 508 | :loop_detected | | | 510 | :not_extended | +| | 511 | :network_authentication_required | #### Finding Layouts |