mbecke      2003/12/14 14:41:37

  Modified:    httpclient/src/java/org/apache/commons/httpclient/methods
                        Tag: HTTPCLIENT_2_0_BRANCH PostMethod.java
                        EntityEnclosingMethod.java MultipartPostMethod.java
               httpclient/src/java/org/apache/commons/httpclient/auth Tag:
                        HTTPCLIENT_2_0_BRANCH HttpAuthRealm.java
               httpclient/src/java/org/apache/commons/httpclient/util Tag:
                        HTTPCLIENT_2_0_BRANCH HttpURLConnection.java
               httpclient/src/java/org/apache/commons/httpclient Tag:
                        HTTPCLIENT_2_0_BRANCH HttpMethodBase.java
  Log:
  Fixes for unmatched javadoc <tt> and <code> tags.
  
  PR: 25004
  Submitted by: Michael Becke
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.45.2.4  +5 -5      
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/PostMethod.java
  
  Index: PostMethod.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/PostMethod.java,v
  retrieving revision 1.45.2.3
  retrieving revision 1.45.2.4
  diff -u -r1.45.2.3 -r1.45.2.4
  --- PostMethod.java   12 Sep 2003 07:33:20 -0000      1.45.2.3
  +++ PostMethod.java   14 Dec 2003 22:41:37 -0000      1.45.2.4
  @@ -226,7 +226,7 @@
        * </p>   
        * 
        * @return request body as an array of bytes. If the request content 
  -     *          has not been set, returns <tt>null</null>.
  +     *          has not been set, returns <tt>null</tt>.
        * 
        * @since 2.0beta1
        */
  
  
  
  1.18.2.3  +5 -5      
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/EntityEnclosingMethod.java
  
  Index: EntityEnclosingMethod.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/EntityEnclosingMethod.java,v
  retrieving revision 1.18.2.2
  retrieving revision 1.18.2.3
  diff -u -r1.18.2.2 -r1.18.2.3
  --- EntityEnclosingMethod.java        4 Oct 2003 02:31:26 -0000       1.18.2.2
  +++ EntityEnclosingMethod.java        14 Dec 2003 22:41:37 -0000      1.18.2.3
  @@ -223,7 +223,7 @@
        * alternative request content input methods.</p>
        * 
        * @return request body as an array of bytes. If the request content 
  -     *          has not been set, returns <tt>null</null>.
  +     *          has not been set, returns <tt>null</tt>.
        * 
        * @since 2.0beta1
        */
  
  
  
  1.17.2.2  +4 -4      
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/MultipartPostMethod.java
  
  Index: MultipartPostMethod.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/MultipartPostMethod.java,v
  retrieving revision 1.17.2.1
  retrieving revision 1.17.2.2
  diff -u -r1.17.2.1 -r1.17.2.2
  --- MultipartPostMethod.java  9 Aug 2003 19:36:39 -0000       1.17.2.1
  +++ MultipartPostMethod.java  14 Dec 2003 22:41:37 -0000      1.17.2.2
  @@ -83,7 +83,7 @@
    * Implements the HTTP multipart POST method.
    * <p>
    * The HTTP multipart POST method is defined in section 3.3 of
  - * <a href="http://http://www.ietf.org/rfc/rfc1867.txt";>RFC1867</a>:
  + * <a href="http://www.ietf.org/rfc/rfc1867.txt";>RFC1867</a>:
    * <blockquote>
    * The media-type multipart/form-data follows the rules of all multipart
    * MIME data streams as outlined in RFC 1521. The multipart/form-data contains 
  
  
  
  No                   revision
  No                   revision
  1.3.2.1   +5 -5      
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/auth/HttpAuthRealm.java
  
  Index: HttpAuthRealm.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/auth/HttpAuthRealm.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- HttpAuthRealm.java        26 May 2003 21:51:37 -0000      1.3
  +++ HttpAuthRealm.java        14 Dec 2003 22:41:37 -0000      1.3.2.1
  @@ -80,10 +80,10 @@
        * <tt>realm</tt>.
        * 
        * @param domain the domain the credentials apply to. May be set
  -     *   to <tt>null</null> if credenticals are applicable to
  +     *   to <tt>null</tt> if credenticals are applicable to
        *   any domain. 
        * @param realm the realm the credentials apply to. May be set 
  -     *   to <tt>null</null> if credenticals are applicable to
  +     *   to <tt>null</tt> if credenticals are applicable to
        *   any realm. 
        *   
        */
  
  
  
  No                   revision
  No                   revision
  1.12.2.1  +5 -5      
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/util/HttpURLConnection.java
  
  Index: HttpURLConnection.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/util/HttpURLConnection.java,v
  retrieving revision 1.12
  retrieving revision 1.12.2.1
  diff -u -r1.12 -r1.12.2.1
  --- HttpURLConnection.java    22 Apr 2003 18:11:01 -0000      1.12
  +++ HttpURLConnection.java    14 Dec 2003 22:41:37 -0000      1.12.2.1
  @@ -79,7 +79,7 @@
    * Provides a <code>HttpURLConnection</code> wrapper around HttpClient's
    * <code>HttpMethod</code>. This allows existing code to easily switch to
    * HttpClieht without breaking existing interfaces using the JDK
  - * <code>HttpURLConnection<code>.
  + * <code>HttpURLConnection</code>.
    *
    * Note 1: The current implementations wraps only a connected
    * <code>HttpMethod</code>, ie a method that has alreayd been used to connect
  
  
  
  No                   revision
  No                   revision
  1.159.2.20 +7 -7      
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java
  
  Index: HttpMethodBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java,v
  retrieving revision 1.159.2.19
  retrieving revision 1.159.2.20
  diff -u -r1.159.2.19 -r1.159.2.20
  --- HttpMethodBase.java       10 Dec 2003 20:44:37 -0000      1.159.2.19
  +++ HttpMethodBase.java       14 Dec 2003 22:41:37 -0000      1.159.2.20
  @@ -364,7 +364,7 @@
        * (status code 302, etc.)
        * 
        * @param followRedirects <tt>true</tt> if the method will automatically follow 
redirects,
  -     * <tt>false</ff> otherwise.
  +     * <tt>false</tt> otherwise.
        */
       public void setFollowRedirects(boolean followRedirects) {
           this.followRedirects = followRedirects;
  @@ -375,7 +375,7 @@
        * (status code 302, etc.), <tt>false</tt> otherwise.
        * 
        * @return <tt>true</tt> if the method will automatically follow HTTP 
redirects, 
  -     * <tt>false</ff> otherwise.
  +     * <tt>false</tt> otherwise.
        */
       public boolean getFollowRedirects() {
           return this.followRedirects;
  @@ -1372,7 +1372,7 @@
       // ---------------------------------------------------------------- Queries
   
       /**
  -     * Returns <tt>true</tt> the method is ready to execute, <tt>false</ff> 
otherwise.
  +     * Returns <tt>true</tt> the method is ready to execute, <tt>false</tt> 
otherwise.
        * 
        * @return This implementation always returns <tt>true</tt>.
        */
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to