[ruby/net-http] Adding links to references

https://github.com/ruby/net-http/commit/1c8151aaf3
This commit is contained in:
BurdetteLamar 2022-12-24 15:55:32 +00:00 committed by git
parent d5985049c7
commit 8f678d61a5

View File

@ -117,6 +117,7 @@ module Net
# #
# References: # References:
# #
# - {RFC 2518}[https://www.rfc-editor.org/rfc/rfc2518#section-10.1].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#102]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#102].
# #
class HTTPProcessing < HTTPInformation class HTTPProcessing < HTTPInformation
@ -132,6 +133,7 @@ module Net
# References: # References:
# #
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103]. # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103].
# - {RFC 8297}[https://www.rfc-editor.org/rfc/rfc8297.html#section-2].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#103]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#103].
# #
class HTTPEarlyHints < HTTPInformation class HTTPEarlyHints < HTTPInformation
@ -255,6 +257,7 @@ module Net
# #
# References: # References:
# #
# - {RFC 4818}[https://www.rfc-editor.org/rfc/rfc4918#section-11.1].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#207]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#207].
# #
class HTTPMultiStatus < HTTPSuccess class HTTPMultiStatus < HTTPSuccess
@ -271,6 +274,7 @@ module Net
# #
# References: # References:
# #
# - {RFC 5842}[https://www.rfc-editor.org/rfc/rfc5842.html#section-7.1].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#208]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#208].
# #
class HTTPAlreadyReported < HTTPSuccess class HTTPAlreadyReported < HTTPSuccess
@ -285,6 +289,7 @@ module Net
# #
# References: # References:
# #
# - {RFC 3229}[https://www.rfc-editor.org/rfc/rfc3229.html#section-10.4.1].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#226]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#226].
# #
class HTTPIMUsed < HTTPSuccess class HTTPIMUsed < HTTPSuccess
@ -710,6 +715,7 @@ module Net
# #
# References: # References:
# #
# - {RFC 4918}[https://www.rfc-editor.org/rfc/rfc4918#section-11.3].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#423]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#423].
# #
class HTTPLocked < HTTPClientError class HTTPLocked < HTTPClientError
@ -723,6 +729,7 @@ module Net
# #
# References: # References:
# #
# - {RFC 4918}[https://www.rfc-editor.org/rfc/rfc4918#section-11.4].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#424]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#424].
# #
class HTTPFailedDependency < HTTPClientError class HTTPFailedDependency < HTTPClientError
@ -753,6 +760,7 @@ module Net
# References: # References:
# #
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/428]. # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/428].
# - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-3].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#428]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#428].
# #
class HTTPPreconditionRequired < HTTPClientError class HTTPPreconditionRequired < HTTPClientError
@ -766,6 +774,7 @@ module Net
# References: # References:
# #
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429]. # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429].
# - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-4].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#429]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#429].
# #
class HTTPTooManyRequests < HTTPClientError class HTTPTooManyRequests < HTTPClientError
@ -780,6 +789,7 @@ module Net
# References: # References:
# #
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/431]. # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/431].
# - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-5].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#431]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#431].
# #
class HTTPRequestHeaderFieldsTooLarge < HTTPClientError class HTTPRequestHeaderFieldsTooLarge < HTTPClientError
@ -794,6 +804,7 @@ module Net
# References: # References:
# #
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/451]. # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/451].
# - {RFC 7725}[https://www.rfc-editor.org/rfc/rfc7725.html#section-3].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#451]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#451].
# #
class HTTPUnavailableForLegalReasons < HTTPClientError class HTTPUnavailableForLegalReasons < HTTPClientError
@ -900,6 +911,7 @@ module Net
# References: # References:
# #
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/506]. # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/506].
# - {RFC 2295}[https://www.rfc-editor.org/rfc/rfc2295#section-8.1].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#506]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#506].
# #
class HTTPVariantAlsoNegotiates < HTTPServerError class HTTPVariantAlsoNegotiates < HTTPServerError
@ -913,6 +925,7 @@ module Net
# References: # References:
# #
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/507]. # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/507].
# - {RFC 4918}[https://www.rfc-editor.org/rfc/rfc4918#section-11.5].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#507]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#507].
# #
class HTTPInsufficientStorage < HTTPServerError class HTTPInsufficientStorage < HTTPServerError
@ -926,6 +939,7 @@ module Net
# References: # References:
# #
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/508]. # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/508].
# - {RFC 5942}[https://www.rfc-editor.org/rfc/rfc5842.html#section-7.2].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#508]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#508].
# #
class HTTPLoopDetected < HTTPServerError class HTTPLoopDetected < HTTPServerError
@ -940,6 +954,7 @@ module Net
# References: # References:
# #
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/510]. # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/510].
# - {RFC 2774}[https://www.rfc-editor.org/rfc/rfc2774.html#section-7].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#510]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#510].
# #
class HTTPNotExtended < HTTPServerError class HTTPNotExtended < HTTPServerError
@ -953,6 +968,7 @@ module Net
# References: # References:
# #
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511]. # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511].
# - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-6].
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#511]. # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#511].
# #
class HTTPNetworkAuthenticationRequired < HTTPServerError class HTTPNetworkAuthenticationRequired < HTTPServerError