OpenJDK / jdk7 / jdk7 / jdk
changeset 2395:ac74c3b96e49
6952701: Use http://www.ietf.org/rfc for rfc references in jdk public APIs
Summary: replace www.isi.edu/in-notes with www.ietf.org/rfc
Reviewed-by: martin
author | sherman |
---|---|
date | Fri, 14 May 2010 13:30:37 -0700 |
parents | e85e03ef61c1 |
children | 2fb3d7dbaa32 |
files | src/share/classes/java/util/zip/package.html src/share/classes/javax/naming/event/EventDirContext.java src/share/classes/javax/naming/ldap/Control.java src/share/classes/javax/naming/ldap/ControlFactory.java src/share/classes/javax/naming/ldap/ExtendedRequest.java src/share/classes/javax/naming/ldap/ExtendedResponse.java src/share/classes/javax/naming/ldap/UnsolicitedNotification.java src/share/classes/javax/naming/ldap/UnsolicitedNotificationListener.java src/share/classes/javax/print/DocFlavor.java |
diffstat | 9 files changed, 14 insertions(+), 17 deletions(-) [+] |
line wrap: on
line diff
--- a/src/share/classes/java/util/zip/package.html Thu May 13 21:56:13 2010 -0700 +++ b/src/share/classes/java/util/zip/package.html Fri May 14 13:30:37 2010 -0700 @@ -58,25 +58,22 @@ PKWARE ZIP File Format Specification</a> - Language Encoding Flag (EFS) to encode ZIP entry filename and comment fields using UTF-8. <p> - <li><a href="http://www.isi.edu/in-notes/rfc1950.txt"> + <li><a href="http://www.ietf.org/rfc/rfc1950.txt"> ZLIB Compressed Data Format Specification version 3.3</a> - <a href="http://www.isi.edu/in-notes/rfc1950.ps"> - (PostScript)</a> + <a href="http://www.ietf.org/rfc/rfc1950.txt.pdf">(pdf)</a> (RFC 1950) <p> - <li><a href="http://www.isi.edu/in-notes/rfc1951.txt"> + <li><a href="http://www.ietf.org/rfc/rfc1951.txt"> DEFLATE Compressed Data Format Specification version 1.3</a> - <a href="http://www.isi.edu/in-notes/rfc1951.ps"> - (PostScript)</a> + <a href="http://www.ietf.org/rfc/rfc1951.txt.pdf">(pdf)</a> (RFC 1951) <p> - <li><a href="http://www.isi.edu/in-notes/rfc1952.txt"> + <li><a href="http://www.ietf.org/rfc/rfc1952.txt"> GZIP file format specification version 4.3</a> - <a href="http://www.isi.edu/in-notes/rfc1952.ps"> - (PostScript)</a> + <a href="http://www.ietf.org/rfc/rfc1952.txt.pdf">(pdf)</a> (RFC 1952) <p> <li>CRC-32 checksum is described in RFC 1952 (above)
--- a/src/share/classes/javax/naming/event/EventDirContext.java Thu May 13 21:56:13 2010 -0700 +++ b/src/share/classes/javax/naming/event/EventDirContext.java Fri May 14 13:30:37 2010 -0700 @@ -34,7 +34,7 @@ * of events fired when objects named in a directory context changes. *<p> * The methods in this interface support identification of objects by - * <A HREF="ftp://ftp.isi.edu/in-notes/rfc2254.txt">RFC 2254</a> + * <A HREF="http://www.ietf.org/rfc/rfc2254.txt">RFC 2254</a> * search filters. * *<P>Using the search filter, it is possible to register interest in objects
--- a/src/share/classes/javax/naming/ldap/Control.java Thu May 13 21:56:13 2010 -0700 +++ b/src/share/classes/javax/naming/ldap/Control.java Fri May 14 13:30:37 2010 -0700 @@ -27,7 +27,7 @@ /** * This interface represents an LDAPv3 control as defined in - * <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>. + * <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>. *<p> * The LDAPv3 protocol uses controls to send and receive additional data * to affect the behavior of predefined operations.
--- a/src/share/classes/javax/naming/ldap/ControlFactory.java Thu May 13 21:56:13 2010 -0700 +++ b/src/share/classes/javax/naming/ldap/ControlFactory.java Fri May 14 13:30:37 2010 -0700 @@ -37,7 +37,7 @@ /** * This abstract class represents a factory for creating LDAPv3 controls. * LDAPv3 controls are defined in - * <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>. + * <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>. *<p> * When a service provider receives a response control, it uses control * factories to return the specific/appropriate control class implementation.
--- a/src/share/classes/javax/naming/ldap/ExtendedRequest.java Thu May 13 21:56:13 2010 -0700 +++ b/src/share/classes/javax/naming/ldap/ExtendedRequest.java Fri May 14 13:30:37 2010 -0700 @@ -29,7 +29,7 @@ /** * This interface represents an LDAPv3 extended operation request as defined in - * <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>. + * <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>. * <pre> * ExtendedRequest ::= [APPLICATION 23] SEQUENCE { * requestName [0] LDAPOID,
--- a/src/share/classes/javax/naming/ldap/ExtendedResponse.java Thu May 13 21:56:13 2010 -0700 +++ b/src/share/classes/javax/naming/ldap/ExtendedResponse.java Fri May 14 13:30:37 2010 -0700 @@ -27,7 +27,7 @@ /** * This interface represents an LDAP extended operation response as defined in - * <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>. + * <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>. * <pre> * ExtendedResponse ::= [APPLICATION 24] SEQUENCE { * COMPONENTS OF LDAPResult,
--- a/src/share/classes/javax/naming/ldap/UnsolicitedNotification.java Thu May 13 21:56:13 2010 -0700 +++ b/src/share/classes/javax/naming/ldap/UnsolicitedNotification.java Fri May 14 13:30:37 2010 -0700 @@ -29,7 +29,7 @@ /** * This interface represents an unsolicited notification as defined in - * <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>. + * <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>. * An unsolicited notification is sent by the LDAP server to the LDAP * client without any provocation from the client. * Its format is that of an extended response (<tt>ExtendedResponse</tt>).
--- a/src/share/classes/javax/naming/ldap/UnsolicitedNotificationListener.java Thu May 13 21:56:13 2010 -0700 +++ b/src/share/classes/javax/naming/ldap/UnsolicitedNotificationListener.java Fri May 14 13:30:37 2010 -0700 @@ -30,7 +30,7 @@ /** * This interface is for handling <tt>UnsolicitedNotificationEvent</tt>. * "Unsolicited notification" is defined in - * <A HREF="ftp://ftp.isi.edu/in-notes/rfc2251.txt">RFC 2251</A>. + * <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>. * It allows the server to send unsolicited notifications to the client. * A <tt>UnsolicitedNotificationListener</tt> must: *<ol>
--- a/src/share/classes/javax/print/DocFlavor.java Thu May 13 21:56:13 2010 -0700 +++ b/src/share/classes/javax/print/DocFlavor.java Fri May 14 13:30:37 2010 -0700 @@ -83,7 +83,7 @@ * doc flavor's MIME type is one of the standard media types telling how to * interpret the sequence of characters or bytes. For a list of standard media * types, see the Internet Assigned Numbers Authority's (IANA's) <A - * HREF="http://www.isi.edu/in-notes/iana/assignments/media-types/">Media Types + * HREF="http://www.iana.org/assignments/media-types/">Media Types * Directory</A>. Interface {@link Doc Doc} provides two utility operations, * {@link Doc#getReaderForText() getReaderForText} and * {@link Doc#getStreamForBytes() getStreamForBytes()}, to help a