summaryrefslogtreecommitdiff
path: root/lib/uri.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2024-03-28 09:45:01 +0900
committerHiroshi SHIBATA <[email protected]>2024-03-28 11:44:45 +0900
commit7630a89a4bf352e1310b5323e3e2ee976eecddca ()
tree2a94debc016a50936501015b8145c466cf8bde13 /lib/uri.rb
parent67bdb7aabaef106ee377dd7757365db1ce46d531 (diff)
Use www.rfc-editor.org for RFC text.
We use the following site for that now: * https://tools.ietf.org/ or http * https://datatracker.ietf.org or http Today, IETF said the official site of RFC is www.rfc-editor.org. FYI: https://authors.ietf.org/en/references-in-rfcxml I replaced them to www.rfc-editor.org.
-rw-r--r--lib/uri.rb18
1 files changed, 9 insertions, 9 deletions
@@ -1,6 +1,6 @@
# frozen_string_literal: false
# URI is a module providing classes to handle Uniform Resource Identifiers
-# (RFC2396[https://datatracker.ietf.org/doc/html/rfc2396]).
#
# == Features
#
@@ -47,14 +47,14 @@
# A good place to view an RFC spec is http://www.ietf.org/rfc.html.
#
# Here is a list of all related RFC's:
-# - RFC822[https://datatracker.ietf.org/doc/html/rfc822]
-# - RFC1738[https://datatracker.ietf.org/doc/html/rfc1738]
-# - RFC2255[https://datatracker.ietf.org/doc/html/rfc2255]
-# - RFC2368[https://datatracker.ietf.org/doc/html/rfc2368]
-# - RFC2373[https://datatracker.ietf.org/doc/html/rfc2373]
-# - RFC2396[https://datatracker.ietf.org/doc/html/rfc2396]
-# - RFC2732[https://datatracker.ietf.org/doc/html/rfc2732]
-# - RFC3986[https://datatracker.ietf.org/doc/html/rfc3986]
#
# == Class tree
#