6967036: Need to fix links with // in Javadoc comments jdk7-b100
authorohair
Wed, 07 Jul 2010 10:21:59 -0700
changeset 2540820b4e843d51
parent 2539 511ddf6938ea
child 2541 93c4e6d14010
child 2554 48aa2a1edd2b
6967036: Need to fix links with // in Javadoc comments
Reviewed-by: mchung
src/share/classes/com/sun/org/apache/xml/internal/security/utils/Base64.java
src/share/classes/com/sun/security/auth/LdapPrincipal.java
src/share/classes/com/sun/security/sasl/CramMD5Client.java
src/share/classes/com/sun/security/sasl/CramMD5Server.java
src/share/classes/com/sun/security/sasl/ExternalClient.java
src/share/classes/com/sun/security/sasl/gsskerb/GssKrb5Client.java
src/share/classes/com/sun/security/sasl/gsskerb/GssKrb5Server.java
src/share/classes/java/net/URI.java
src/share/classes/java/nio/charset/package.html
src/share/classes/javax/management/remote/JMXServiceURL.java
src/share/classes/javax/naming/ldap/LdapName.java
src/share/classes/javax/naming/ldap/Rdn.java
src/share/classes/javax/net/ssl/SSLContext.java
src/share/classes/javax/print/DocFlavor.java
src/share/classes/sun/awt/image/PNGImageDecoder.java
     1.1 --- a/src/share/classes/com/sun/org/apache/xml/internal/security/utils/Base64.java	Wed Jun 30 18:57:51 2010 -0700
     1.2 +++ b/src/share/classes/com/sun/org/apache/xml/internal/security/utils/Base64.java	Wed Jul 07 10:21:59 2010 -0700
     1.3 @@ -41,7 +41,7 @@
     1.4   * @author Raul Benito(Of the xerces copy, and little adaptations).
     1.5   * @author Anli Shundi
     1.6   * @author Christian Geuer-Pollmann
     1.7 - * @see <A HREF="ftp://ftp.isi.edu/in-notes/rfc2045.txt">RFC 2045</A>
     1.8 + * @see <A HREF="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</A>
     1.9   * @see com.sun.org.apache.xml.internal.security.transforms.implementations.TransformBase64Decode
    1.10   */
    1.11  public class Base64 {
     2.1 --- a/src/share/classes/com/sun/security/auth/LdapPrincipal.java	Wed Jun 30 18:57:51 2010 -0700
     2.2 +++ b/src/share/classes/com/sun/security/auth/LdapPrincipal.java	Wed Jul 07 10:21:59 2010 -0700
     2.3 @@ -31,7 +31,7 @@
     2.4  
     2.5  /**
     2.6   * A principal identified by a distinguished name as specified by
     2.7 - * <a href="http://ietf.org//rfc/rfc2253.txt">RFC 2253</a>.
     2.8 + * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>.
     2.9   *
    2.10   * <p>
    2.11   * After successful authentication, a user {@link java.security.Principal}
    2.12 @@ -122,7 +122,7 @@
    2.13  
    2.14      /**
    2.15       * Creates a string representation of this principal's name in the format
    2.16 -     * defined by <a href="http://ietf.org/rfc/rfc2253.txt">RFC 2253</a>.
    2.17 +     * defined by <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>.
    2.18       * If the name has zero components an empty string is returned.
    2.19       *
    2.20       * @return The principal's string name.
     3.1 --- a/src/share/classes/com/sun/security/sasl/CramMD5Client.java	Wed Jun 30 18:57:51 2010 -0700
     3.2 +++ b/src/share/classes/com/sun/security/sasl/CramMD5Client.java	Wed Jul 07 10:21:59 2010 -0700
     3.3 @@ -33,7 +33,7 @@
     3.4  
     3.5  /**
     3.6    * Implements the CRAM-MD5 SASL client-side mechanism.
     3.7 -  * (<A HREF="ftp://ftp.isi.edu/in-notes/rfc2195.txt">RFC 2195</A>).
     3.8 +  * (<A HREF="http://www.ietf.org/rfc/rfc2195.txt">RFC 2195</A>).
     3.9    * CRAM-MD5 has no initial response. It receives bytes from
    3.10    * the server as a challenge, which it hashes by using MD5 and the password.
    3.11    * It concatenates the authentication ID with this result and returns it
     4.1 --- a/src/share/classes/com/sun/security/sasl/CramMD5Server.java	Wed Jun 30 18:57:51 2010 -0700
     4.2 +++ b/src/share/classes/com/sun/security/sasl/CramMD5Server.java	Wed Jul 07 10:21:59 2010 -0700
     4.3 @@ -38,7 +38,7 @@
     4.4  
     4.5  /**
     4.6    * Implements the CRAM-MD5 SASL server-side mechanism.
     4.7 -  * (<A HREF="ftp://ftp.isi.edu/in-notes/rfc2195.txt">RFC 2195</A>).
     4.8 +  * (<A HREF="http://www.ietf.org/rfc/rfc2195.txt">RFC 2195</A>).
     4.9    * CRAM-MD5 has no initial response.
    4.10    *
    4.11    * client <---- M={random, timestamp, server-fqdn} ------- server
     5.1 --- a/src/share/classes/com/sun/security/sasl/ExternalClient.java	Wed Jun 30 18:57:51 2010 -0700
     5.2 +++ b/src/share/classes/com/sun/security/sasl/ExternalClient.java	Wed Jul 07 10:21:59 2010 -0700
     5.3 @@ -29,7 +29,7 @@
     5.4  
     5.5  /**
     5.6    * Implements the EXTERNAL SASL client mechanism.
     5.7 -  * (<A HREF="ftp://ftp.isi.edu/in-notes/rfc2222.txt">RFC 2222</A>).
     5.8 +  * (<A HREF="http://www.ietf.org/rfc/rfc2222.txt">RFC 2222</A>).
     5.9    * The EXTERNAL mechanism returns the optional authorization ID as
    5.10    * the initial response. It processes no challenges.
    5.11    *
     6.1 --- a/src/share/classes/com/sun/security/sasl/gsskerb/GssKrb5Client.java	Wed Jun 30 18:57:51 2010 -0700
     6.2 +++ b/src/share/classes/com/sun/security/sasl/gsskerb/GssKrb5Client.java	Wed Jul 07 10:21:59 2010 -0700
     6.3 @@ -39,10 +39,10 @@
     6.4  
     6.5  /**
     6.6    * Implements the GSSAPI SASL client mechanism for Kerberos V5.
     6.7 -  * (<A HREF="ftp://ftp.isi.edu/in-notes/rfc2222.txt">RFC 2222</A>,
     6.8 +  * (<A HREF="http://www.ietf.org/rfc/rfc2222.txt">RFC 2222</A>,
     6.9    * <a HREF="http://www.ietf.org/internet-drafts/draft-ietf-cat-sasl-gssapi-04.txt">draft-ietf-cat-sasl-gssapi-04.txt</a>).
    6.10    * It uses the Java Bindings for GSSAPI
    6.11 -  * (<A HREF="ftp://ftp.isi.edu/in-notes/rfc2853.txt">RFC 2853</A>)
    6.12 +  * (<A HREF="http://www.ietf.org/rfc/rfc2853.txt">RFC 2853</A>)
    6.13    * for getting GSSAPI/Kerberos V5 support.
    6.14    *
    6.15    * The client/server interactions are:
     7.1 --- a/src/share/classes/com/sun/security/sasl/gsskerb/GssKrb5Server.java	Wed Jun 30 18:57:51 2010 -0700
     7.2 +++ b/src/share/classes/com/sun/security/sasl/gsskerb/GssKrb5Server.java	Wed Jul 07 10:21:59 2010 -0700
     7.3 @@ -39,7 +39,7 @@
     7.4  
     7.5  /**
     7.6    * Implements the GSSAPI SASL server mechanism for Kerberos V5.
     7.7 -  * (<A HREF="ftp://ftp.isi.edu/in-notes/rfc2222.txt">RFC 2222</A>,
     7.8 +  * (<A HREF="http://www.ietf.org/rfc/rfc2222.txt">RFC 2222</A>,
     7.9    * <a HREF="http://www.ietf.org/internet-drafts/draft-ietf-cat-sasl-gssapi-00.txt">draft-ietf-cat-sasl-gssapi-00.txt</a>).
    7.10    *
    7.11    * Expects thread's Subject to contain server's Kerberos credentials
     8.1 --- a/src/share/classes/java/net/URI.java	Wed Jun 30 18:57:51 2010 -0700
     8.2 +++ b/src/share/classes/java/net/URI.java	Wed Jul 07 10:21:59 2010 -0700
     8.3 @@ -457,7 +457,7 @@
     8.4   * @author Mark Reinhold
     8.5   * @since 1.4
     8.6   *
     8.7 - * @see <a href="http://ietf.org/rfc/rfc2279.txt"><i>RFC&nbsp;2279: UTF-8, a
     8.8 + * @see <a href="http://www.ietf.org/rfc/rfc2279.txt"><i>RFC&nbsp;2279: UTF-8, a
     8.9   * transformation format of ISO 10646</i></a>, <br><a
    8.10   * href="http://www.ietf.org/rfc/rfc2373.txt"><i>RFC&nbsp;2373: IPv6 Addressing
    8.11   * Architecture</i></a>, <br><a
     9.1 --- a/src/share/classes/java/nio/charset/package.html	Wed Jun 30 18:57:51 2010 -0700
     9.2 +++ b/src/share/classes/java/nio/charset/package.html	Wed Jul 07 10:21:59 2010 -0700
     9.3 @@ -48,7 +48,7 @@
     9.4  
     9.5  <p> A <i>charset</i> is named mapping between sequences of sixteen-bit Unicode
     9.6  characters and sequences of bytes, in the sense defined in <a
     9.7 -href="http://ietf.org/rfc/rfc2278.txt"><i>RFC&nbsp;2278</i></a>.  A
     9.8 +href="http://www.ietf.org/rfc/rfc2278.txt"><i>RFC&nbsp;2278</i></a>.  A
     9.9  <i>decoder</i> is an engine which transforms bytes in a specific charset into
    9.10  characters, and an <i>encoder</i> is an engine which transforms characters into
    9.11  bytes.  Encoders and decoders operate on byte and character buffers.  They are
    10.1 --- a/src/share/classes/javax/management/remote/JMXServiceURL.java	Wed Jun 30 18:57:51 2010 -0700
    10.2 +++ b/src/share/classes/javax/management/remote/JMXServiceURL.java	Wed Jul 07 10:21:59 2010 -0700
    10.3 @@ -107,10 +107,10 @@
    10.4   * significant in the <code><em>url-path</em></code>.</p>
    10.5   *
    10.6   * @see <a
    10.7 - * href="ftp://ftp.rfc-editor.org/in-notes/rfc2609.txt">RFC 2609,
    10.8 + * href="http://www.ietf.org/rfc/rfc2609.txt">RFC 2609,
    10.9   * "Service Templates and <code>Service:</code> Schemes"</a>
   10.10   * @see <a
   10.11 - * href="ftp://ftp.rfc-editor.org/in-notes/rfc3111.txt">RFC 3111,
   10.12 + * href="http://www.ietf.org/rfc/rfc3111.txt">RFC 3111,
   10.13   * "Service Location Protocol Modifications for IPv6"</a>
   10.14   *
   10.15   * @since 1.5
    11.1 --- a/src/share/classes/javax/naming/ldap/LdapName.java	Wed Jun 30 18:57:51 2010 -0700
    11.2 +++ b/src/share/classes/javax/naming/ldap/LdapName.java	Wed Jul 07 10:21:59 2010 -0700
    11.3 @@ -42,7 +42,7 @@
    11.4  
    11.5  /**
    11.6   * This class represents a distinguished name as specified by
    11.7 - * <a href="http://ietf.org//rfc/rfc2253.txt">RFC 2253</a>.
    11.8 + * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>.
    11.9   * A distinguished name, or DN, is composed of an ordered list of
   11.10   * components called <em>relative distinguished name</em>s, or RDNs.
   11.11   * Details of a DN's syntax are described in RFC 2253.
   11.12 @@ -115,7 +115,7 @@
   11.13       *
   11.14       * @param name  This is a non-null distinguished name formatted
   11.15       * according to the rules defined in
   11.16 -     * <a href="http://ietf.org/rfc/rfc2253.txt">RFC 2253</a>.
   11.17 +     * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>.
   11.18       *
   11.19       * @throws InvalidNameException if a syntax violation is detected.
   11.20       * @see Rdn#escapeValue(Object value)
   11.21 @@ -614,7 +614,7 @@
   11.22  
   11.23      /**
   11.24       * Returns a string representation of this LDAP name in a format
   11.25 -     * defined by <a href="http://ietf.org/rfc/rfc2253.txt">RFC 2253</a>
   11.26 +     * defined by <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>
   11.27       * and described in the class description. If the name has zero
   11.28       * components an empty string is returned.
   11.29       *
    12.1 --- a/src/share/classes/javax/naming/ldap/Rdn.java	Wed Jun 30 18:57:51 2010 -0700
    12.2 +++ b/src/share/classes/javax/naming/ldap/Rdn.java	Wed Jul 07 10:21:59 2010 -0700
    12.3 @@ -45,7 +45,7 @@
    12.4  /**
    12.5   * This class represents a relative distinguished name, or RDN, which is a
    12.6   * component of a distinguished name as specified by
    12.7 - * <a href="http://ietf.org/rfc/rfc2253.txt">RFC 2253</a>.
    12.8 + * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>.
    12.9   * An example of an RDN is "OU=Sales+CN=J.Smith". In this example,
   12.10   * the RDN consist of multiple attribute type/value pairs. The
   12.11   * RDN is parsed as described in the class description for
   12.12 @@ -117,7 +117,7 @@
   12.13       * {@link javax.naming.directory.Attributes Attributes}.
   12.14       * <p>
   12.15       * The string attribute values are not interpretted as
   12.16 -     * <a href="http://ietf.org/rfc/rfc2253.txt">RFC 2253</a>
   12.17 +     * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>
   12.18       * formatted RDN strings. That is, the values are used
   12.19       * literally (not parsed) and assumed to be unescaped.
   12.20       *
   12.21 @@ -152,7 +152,7 @@
   12.22      /**
   12.23       * Constructs an Rdn from the given string.
   12.24       * This constructor takes a string formatted according to the rules
   12.25 -     * defined in <a href="http://ietf.org//rfc/rfc2253.txt">RFC 2253</a>
   12.26 +     * defined in <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>
   12.27       * and described in the class description for
   12.28       * {@link javax.naming.ldap.LdapName}.
   12.29       *
   12.30 @@ -180,7 +180,7 @@
   12.31       * Constructs an Rdn from the given attribute type and
   12.32       * value.
   12.33       * The string attribute values are not interpretted as
   12.34 -     * <a href="http://ietf.org/rfc/rfc2253.txt">RFC 2253</a>
   12.35 +     * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>
   12.36       * formatted RDN strings. That is, the values are used
   12.37       * literally (not parsed) and assumed to be unescaped.
   12.38       *
   12.39 @@ -216,7 +216,7 @@
   12.40      /*
   12.41       * Adds the given attribute type and value to this Rdn.
   12.42       * The string attribute values are not interpretted as
   12.43 -     * <a href="http://ietf.org/rfc/rfc2253.txt">RFC 2253</a>
   12.44 +     * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>
   12.45       * formatted RDN strings. That is the values are used
   12.46       * literally (not parsed) and assumed to be unescaped.
   12.47       *
   12.48 @@ -280,7 +280,7 @@
   12.49  
   12.50      /**
   12.51       * Returns this Rdn as a string represented in a format defined by
   12.52 -     * <a href="http://ietf.org//rfc/rfc2253.txt">RFC 2253</a> and described
   12.53 +     * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a> and described
   12.54       * in the class description for {@link javax.naming.ldap.LdapName LdapName}.
   12.55       *
   12.56       * @return The string representation of the Rdn.
   12.57 @@ -503,7 +503,7 @@
   12.58      /**
   12.59       * Given the value of an attribute, returns a string escaped according
   12.60       * to the rules specified in
   12.61 -     * <a href="http://ietf.org/rfc/rfc2253.txt">RFC 2253</a>.
   12.62 +     * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>.
   12.63       * <p>
   12.64       * For example, if the val is "Sue, Grabbit and Runn", the escaped
   12.65       * value returned by this method is "Sue\, Grabbit and Runn".
   12.66 @@ -582,7 +582,7 @@
   12.67      /**
   12.68       * Given an attribute value string formated according to the rules
   12.69       * specified in
   12.70 -     * <a href="http://ietf.org//rfc/rfc2253.txt">RFC 2253</a>,
   12.71 +     * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a>,
   12.72       * returns the unformated value.  Escapes and quotes are
   12.73       * stripped away, and hex-encoded UTF-8 is converted to equivalent
   12.74       * UTF-16 characters. Returns a string value as a String, and a
    13.1 --- a/src/share/classes/javax/net/ssl/SSLContext.java	Wed Jun 30 18:57:51 2010 -0700
    13.2 +++ b/src/share/classes/javax/net/ssl/SSLContext.java	Wed Jul 07 10:21:59 2010 -0700
    13.3 @@ -160,7 +160,7 @@
    13.4       *
    13.5       * @param protocol the standard name of the requested protocol.
    13.6       *          See Appendix A in the <a href=
    13.7 -     *  "{@docRoot}/../technotes/guides//security/jsse/JSSERefGuide.html#AppA">
    13.8 +     *  "{@docRoot}/../technotes/guides/security/jsse/JSSERefGuide.html#AppA">
    13.9       *          Java Secure Socket Extension Reference Guide </a>
   13.10       *          for information about standard protocol names.
   13.11       *
    14.1 --- a/src/share/classes/javax/print/DocFlavor.java	Wed Jun 30 18:57:51 2010 -0700
    14.2 +++ b/src/share/classes/javax/print/DocFlavor.java	Wed Jul 07 10:21:59 2010 -0700
    14.3 @@ -450,7 +450,7 @@
    14.4      /**
    14.5       * A String representing the host operating system encoding.
    14.6       * This will follow the conventions documented in
    14.7 -     * <a href="http://ietf.org/rfc/rfc2278.txt">
    14.8 +     * <a href="http://www.ietf.org/rfc/rfc2278.txt">
    14.9       * <i>RFC&nbsp;2278:&nbsp;IANA Charset Registration Procedures</i></a>
   14.10       * except where historical names are returned for compatibility with
   14.11       * previous versions of the Java platform.
    15.1 --- a/src/share/classes/sun/awt/image/PNGImageDecoder.java	Wed Jun 30 18:57:51 2010 -0700
    15.2 +++ b/src/share/classes/sun/awt/image/PNGImageDecoder.java	Wed Jul 07 10:21:59 2010 -0700
    15.3 @@ -32,7 +32,7 @@
    15.4  import java.awt.Color;
    15.5  
    15.6  /** PNG - Portable Network Graphics - image file reader.
    15.7 -    See <a href=ftp://ds.internic.net/rfc/rfc2083.txt>RFC2083</a> for details. */
    15.8 +    See <a href=http://www.ietf.org/rfc/rfc2083.txt>RFC2083</a> for details. */
    15.9  
   15.10  /* this is changed
   15.11  public class PNGImageDecoder extends FilterInputStream implements Runnable