You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2010/04/15 12:14:42 UTC

svn commit: r934353 - in /httpcomponents/httpclient/trunk/httpmime: ./ src/main/java/org/apache/http/entity/mime/ src/site/apt/

Author: olegk
Date: Thu Apr 15 10:14:42 2010
New Revision: 934353

URL: http://svn.apache.org/viewvc?rev=934353&view=rev
Log:
Removed references to mime4j from javadocs

Removed:
    httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/UnexpectedMimeException.java
Modified:
    httpcomponents/httpclient/trunk/httpmime/pom.xml
    httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/FormBodyPart.java
    httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/HttpMultipart.java
    httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/MinimalField.java
    httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/package.html
    httpcomponents/httpclient/trunk/httpmime/src/site/apt/index.apt

Modified: httpcomponents/httpclient/trunk/httpmime/pom.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpmime/pom.xml?rev=934353&r1=934352&r2=934353&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/httpmime/pom.xml (original)
+++ httpcomponents/httpclient/trunk/httpmime/pom.xml Thu Apr 15 10:14:42 2010
@@ -170,7 +170,6 @@
           <links>
             <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
             <link>http://hc.apache.org/httpcomponents-core/httpcore/apidocs/</link>
-            <link>http://james.apache.org/mime4j/apidocs/</link>
           </links>
         </configuration>
         <reportSets>

Modified: httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/FormBodyPart.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/FormBodyPart.java?rev=934353&r1=934352&r2=934353&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/FormBodyPart.java (original)
+++ httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/FormBodyPart.java Thu Apr 15 10:14:42 2010
@@ -30,9 +30,9 @@ package org.apache.http.entity.mime;
 import org.apache.http.entity.mime.content.ContentBody;
 
 /**
- * An extension of the mime4j standard {@link BodyPart} class that 
- * automatically populates the header with standard fields based 
- * on the content description of the enclosed body.
+ * FormBodyPart class represents a content body that can be used as a part of multipart encoded
+ * entities. This class automatically populates the header with standard fields based on 
+ * the content description of the enclosed body.
  *
  * @since 4.0
  */

Modified: httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/HttpMultipart.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/HttpMultipart.java?rev=934353&r1=934352&r2=934353&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/HttpMultipart.java (original)
+++ httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/HttpMultipart.java Thu Apr 15 10:14:42 2010
@@ -40,9 +40,9 @@ import org.apache.http.entity.mime.conte
 import org.apache.http.util.ByteArrayBuffer;
 
 /**
- * An extension of the mime4j standard {@link Multipart} class, which is capable of operating 
- * either in the strict (fully RFC 822, RFC 2045, RFC 2046 compliant) or the browser compatible 
- * modes.
+ * HttpMultipart represents a collection of MIME multipart encoded content bodies. This class is 
+ * capable of operating either in the strict (RFC 822, RFC 2045, RFC 2046 compliant) or 
+ * the browser compatible modes.
  *
  * @since 4.0
  */

Modified: httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/MinimalField.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/MinimalField.java?rev=934353&r1=934352&r2=934353&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/MinimalField.java (original)
+++ httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/MinimalField.java Thu Apr 15 10:14:42 2010
@@ -28,11 +28,10 @@
 package org.apache.http.entity.mime;
 
 /**
- * Minimal implementation of {@link Field}.
+ * Minimal MIME field.
  *
  * @since 4.0
  */
-//@Immutable
 public class MinimalField {
 
     private final String name;

Modified: httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/package.html
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/package.html?rev=934353&r1=934352&r2=934353&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/package.html (original)
+++ httpcomponents/httpclient/trunk/httpmime/src/main/java/org/apache/http/entity/mime/package.html Thu Apr 15 10:14:42 2010
@@ -30,7 +30,6 @@
 -->
 </head>
 <body>
-Support for MIME multipart messages based on 
-<a href="http://james.apache.org/mime4j/index.html">Apache Mime4J</a> 
+Support for MIME multipart encoded entities 
 </body>
 </html>

Modified: httpcomponents/httpclient/trunk/httpmime/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpmime/src/site/apt/index.apt?rev=934353&r1=934352&r2=934353&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/httpmime/src/site/apt/index.apt (original)
+++ httpcomponents/httpclient/trunk/httpmime/src/site/apt/index.apt Thu Apr 15 10:14:42 2010
@@ -30,9 +30,7 @@
 
 HttpClient
 
-    This module extends {{{http://james.apache.org/mime4j/index.html}mime4j}} 
-    library with some HTTP specific functionality and integrates it with the 
-    HttpComponents framework.
+    This module provides support for MIME multipart encoded entities.
 
     {{{apidocs/index.html}Javadocs}}
     
@@ -41,3 +39,4 @@ HttpClient
     {{{dependencies.html}Dependencies}}    
     
     {{{issue-tracking.html}Issue Tracking}}    
+