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 2006/03/04 14:42:29 UTC

svn commit: r383113 - in /jakarta/httpcomponents/trunk: http-async/src/site/site.xml http-core/src/site/apt/examples.apt http-core/src/site/site.xml src/site/apt/charter.apt src/site/apt/goals.apt src/site/apt/news.apt

Author: olegk
Date: Sat Mar  4 05:42:28 2006
New Revision: 383113

URL: http://svn.apache.org/viewcvs?rev=383113&view=rev
Log:
Fixed a number of typos. Rephrased some of the project goals per Roland's suggestion

Modified:
    jakarta/httpcomponents/trunk/http-async/src/site/site.xml
    jakarta/httpcomponents/trunk/http-core/src/site/apt/examples.apt
    jakarta/httpcomponents/trunk/http-core/src/site/site.xml
    jakarta/httpcomponents/trunk/src/site/apt/charter.apt
    jakarta/httpcomponents/trunk/src/site/apt/goals.apt
    jakarta/httpcomponents/trunk/src/site/apt/news.apt

Modified: jakarta/httpcomponents/trunk/http-async/src/site/site.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/http-async/src/site/site.xml?rev=383113&r1=383112&r2=383113&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/http-async/src/site/site.xml (original)
+++ jakarta/httpcomponents/trunk/http-async/src/site/site.xml Sat Mar  4 05:42:28 2006
@@ -18,11 +18,11 @@
     <links>
       <item name="Apache" href="http://www.apache.org/" />
       <item name="Jakarta" href="http://jakarta.apache.org/"/>
-      <item name="HttpComponents" href="http://jakarta.apache.org/httpcomponents/"/>
+      <item name="HttpComponents" href=".."/>
     </links>
 
     <menu name="HttpComponents">
-      <item name="Home" href="http://jakarta.apache.org/httpcomponents/"/>
+      <item name="Home" href=".."/>
     </menu>
     <menu name="HttpAsync Overview">
       <item name="Description" href="index.html"/>

Modified: jakarta/httpcomponents/trunk/http-core/src/site/apt/examples.apt
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/http-core/src/site/apt/examples.apt?rev=383113&r1=383112&r2=383113&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/http-core/src/site/apt/examples.apt (original)
+++ jakarta/httpcomponents/trunk/http-core/src/site/apt/examples.apt Sat Mar  4 05:42:28 2006
@@ -8,11 +8,11 @@
 
     * {{{http://svn.apache.org/repos/asf/jakarta/httpcomponents/trunk/http-core/src/examples/org/apache/http/examples/ElementalHttpGet.java}Simple HTTP GET}}
     
-    This example dempnstrates how to execute a series of simple HTTP GET requests.
+    This example demonstrates how to execute a series of simple HTTP GET requests.
 
     * {{{http://svn.apache.org/repos/asf/jakarta/httpcomponents/trunk/http-core/src/examples/org/apache/http/examples/ElementalHttpPost.java}Simple HTTP POST}}
     
-    This example dempnstrates how to execute a series of simple HTTP POST requests that enclose entity 
+    This example demonstrates how to execute a series of simple HTTP POST requests that enclose entity 
     content of various types: a string, a byte array, an arbitrary input stream.  
 
     * {{{http://svn.apache.org/repos/asf/jakarta/httpcomponents/trunk/http-core/src/examples/org/apache/http/examples/ElementalHttpServer.java}Simple HTTP server}}

Modified: jakarta/httpcomponents/trunk/http-core/src/site/site.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/http-core/src/site/site.xml?rev=383113&r1=383112&r2=383113&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/http-core/src/site/site.xml (original)
+++ jakarta/httpcomponents/trunk/http-core/src/site/site.xml Sat Mar  4 05:42:28 2006
@@ -18,11 +18,11 @@
     <links>
       <item name="Apache" href="http://www.apache.org/" />
       <item name="Jakarta" href="http://jakarta.apache.org/"/>
-      <item name="HttpComponents" href="http://jakarta.apache.org/httpcomponents/"/>
+      <item name="HttpComponents" href=".."/>
     </links>
 
     <menu name="HttpComponents">
-      <item name="Home" href="http://jakarta.apache.org/httpcomponents/"/>
+      <item name="Home" href=".."/>
     </menu>
     <menu name="HttpCore Overview">
       <item name="Description" href="index.html"/>

Modified: jakarta/httpcomponents/trunk/src/site/apt/charter.apt
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/src/site/apt/charter.apt?rev=383113&r1=383112&r2=383113&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/src/site/apt/charter.apt (original)
+++ jakarta/httpcomponents/trunk/src/site/apt/charter.apt Sat Mar  4 05:42:28 2006
@@ -11,7 +11,7 @@
 
 * Rationale
 
-    The original Jakarta Commons HttpClient API has a number limitations that cannot be resolved without 
+    The original Jakarta Commons HttpClient API has a number of limitations that cannot be resolved without 
     a significant architectural redesign. Moreover, Jakarta Commons HttpClient has been increasingly used 
     in applications and environments it has not been specifically designed for. The existing monolithic 
     design no longer adequately reflects the use patterns of HttpClient. HttpClient needs to be refactored 
@@ -31,7 +31,7 @@
     * Jakarta HttpComponents continues the development of Jakarta HttpClient (formerly Jakarta Commons 
     HttpClient ) based on the toolset of HTTP components. This tool focuses on the client side of HTTP.
 
-    * Jakarta HttpComponents is additional charged with the maintenance of the existing Jakarta Commons 
+    * Jakarta HttpComponents is additionally charged with the maintenance of the existing Jakarta Commons 
     HttpClient component.
 
     * Jakarta HttpComponents MAY develop application layer components (such as an HTTP connector, a 

Modified: jakarta/httpcomponents/trunk/src/site/apt/goals.apt
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/src/site/apt/goals.apt?rev=383113&r1=383112&r2=383113&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/src/site/apt/goals.apt (original)
+++ jakarta/httpcomponents/trunk/src/site/apt/goals.apt Sat Mar  4 05:42:28 2006
@@ -26,12 +26,13 @@
 
     * HttpComponents is assembled from groups of cooperating classes rather than through inheritance.
     This makes it quite simple for someone to completely customize a single aspect of the HTTP
-    process without effecting other unrelated tasks.  It also makes it simple to make changes
+    process without affecting other unrelated tasks.  It also makes it simple to make changes
     that cut across different kinds of requests (GETs, POSTs, etc).  Again this design remedies
     one of the {{{commons-httpclient-lessons.html}major deficiencies}} discovered in the HttpClient 
     model.
 
 * Minimal external dependencies
 
-    * HttpComponents strives to remove the need for any unnecessary external dependencies, including 
-    logging.  In our experience external libraries only complicate integration for users.
+    * HttpComponents strives to minimize the use of external dependencies in the low level
+    components to make them easier to integrate with complex systems that may depend on a
+    significant number of external libraries. 

Modified: jakarta/httpcomponents/trunk/src/site/apt/news.apt
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/src/site/apt/news.apt?rev=383113&r1=383112&r2=383113&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/src/site/apt/news.apt (original)
+++ jakarta/httpcomponents/trunk/src/site/apt/news.apt Sat Mar  4 05:42:28 2006
@@ -10,7 +10,7 @@
 
     By 5 binding votes in favor and none against Roland Weber has been voted in as a new 
     HttpComponents committer. Roland has been an invaluable contributor to the Jakarta 
-    Commons HttpClient preoject for many years and he is the very first committer to
+    Commons HttpClient project for many years and he is the very first committer to
     join the Jakarta HttpComponents project.
 
     Welcome, Roland