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/09 00:08:21 UTC

svn commit: r384367 - in /jakarta/httpcomponents/trunk: http-async/pom.xml http-core/pom.xml pom.xml src/site/apt/charter.apt src/site/apt/index.apt src/site/site.xml

Author: olegk
Date: Wed Mar  8 15:08:19 2006
New Revision: 384367

URL: http://svn.apache.org/viewcvs?rev=384367&view=rev
Log:
Imlemented changed suggested by Bindul Bhowmik and Sebastian (sebb)

Modified:
    jakarta/httpcomponents/trunk/http-async/pom.xml
    jakarta/httpcomponents/trunk/http-core/pom.xml
    jakarta/httpcomponents/trunk/pom.xml
    jakarta/httpcomponents/trunk/src/site/apt/charter.apt
    jakarta/httpcomponents/trunk/src/site/apt/index.apt
    jakarta/httpcomponents/trunk/src/site/site.xml

Modified: jakarta/httpcomponents/trunk/http-async/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/http-async/pom.xml?rev=384367&r1=384366&r2=384367&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/http-async/pom.xml (original)
+++ jakarta/httpcomponents/trunk/http-async/pom.xml Wed Mar  8 15:08:19 2006
@@ -99,7 +99,6 @@
              <reportSet>
                <reports>
                  <report>dependencies</report>
-                 <report>mailing-list</report>
                  <report>issue-tracking</report>
                  <report>license</report>
                  <report>scm</report>

Modified: jakarta/httpcomponents/trunk/http-core/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/http-core/pom.xml?rev=384367&r1=384366&r2=384367&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/http-core/pom.xml (original)
+++ jakarta/httpcomponents/trunk/http-core/pom.xml Wed Mar  8 15:08:19 2006
@@ -49,17 +49,6 @@
     <url>http://svn.apache.org/repos/asf/jakarta/httpcomponents/trunk/${pom.artifactId}</url>
   </scm>
 
-  <developers>
-    <developer>
-      <name>Oleg Kalnichevski</name>
-      <id>olegk</id>
-      <email>olegk -at- apache.org</email>
-      <roles>
-        <role>Java Developer</role>
-      </roles>
-    </developer>
-  </developers>
-
   <licenses>
     <license>
       <name>Apache License</name>
@@ -111,7 +100,6 @@
              <reportSet>
                <reports>
                  <report>dependencies</report>
-                 <report>mailing-list</report>
                  <report>issue-tracking</report>
                  <report>license</report>
                  <report>scm</report>

Modified: jakarta/httpcomponents/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/pom.xml?rev=384367&r1=384366&r2=384367&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/pom.xml (original)
+++ jakarta/httpcomponents/trunk/pom.xml Wed Mar  8 15:08:19 2006
@@ -85,6 +85,10 @@
       <unsubscribe>httpclient-dev-unsubscribe@jakarta.apache.org</unsubscribe>
       <post>httpclient-dev@jakarta.apache.org</post>
       <archive>http://mail-archives.apache.org/mod_mbox/jakarta-httpclient-dev</archive>
+      <otherArchives>
+        <archive>http://www.mail-archive.com/httpclient-dev%40jakarta.apache.org/</archive>
+        <archive>http://marc.theaimsgroup.com/?l=httpclient-commons-dev</archive>
+      </otherArchives>
     </mailingList>
     <mailingList>
       <name>HttpClient User List</name>
@@ -92,6 +96,9 @@
       <unsubscribe>httpclient-user-unsubscribe@jakarta.apache.org</unsubscribe>
       <post>httpclient-user@jakarta.apache.org</post>
       <archive>http://mail-archives.apache.org/mod_mbox/jakarta-httpclient-user</archive>
+      <otherArchives>
+        <archive>http://www.mail-archive.com/httpclient-user%40jakarta.apache.org/</archive>
+      </otherArchives>
     </mailingList>
   </mailingLists>
 

Modified: jakarta/httpcomponents/trunk/src/site/apt/charter.apt
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/src/site/apt/charter.apt?rev=384367&r1=384366&r2=384367&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/src/site/apt/charter.apt (original)
+++ jakarta/httpcomponents/trunk/src/site/apt/charter.apt Wed Mar  8 15:08:19 2006
@@ -29,7 +29,7 @@
     produce or consume content of HTTP messages.
 
     * 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.
+    HttpClient) based on the toolset of HTTP components. This tool focuses on the client side of HTTP.
 
     * Jakarta HttpComponents is additionally charged with the maintenance of the existing Jakarta Commons 
     HttpClient component.

Modified: jakarta/httpcomponents/trunk/src/site/apt/index.apt
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/src/site/apt/index.apt?rev=384367&r1=384366&r2=384367&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/src/site/apt/index.apt (original)
+++ jakarta/httpcomponents/trunk/src/site/apt/index.apt Wed Mar  8 15:08:19 2006
@@ -45,3 +45,45 @@
 
     * {{{http://www.robotstxt.org/wc/norobots-rfc.html}norobots-rfc}} - A standard for robot 
     exclusion 
+
+Modules
+
+* HttpCore
+
+    The {{{http-core/index.html}HttpCore}} components implement the most fundamental aspects of the 
+    HTTP protocol. They are nonetheless sufficient to develop basic client-side and server-side 
+    HTTP services with a minimal footprint and no external dependencies.
+
+* HttpAsync
+
+    The {{{http-async/index.html}HttpAsync}} module provides an asynchronous interface for client 
+    side HTTP communication, which separates the sending of a request from the receiving of the 
+    response. This simplifies development of multithreaded HTTP applications and allows for new 
+    features such as pipelining.
+
+* HttpNIO (planned)
+
+    HttpNIO will provide a non-blocking implementation of the HTTP protocol. 
+
+* HttpAuth (planned)
+
+    HttpAuth will provide an abstract API and pluggable implementations of standard authentication 
+    schemes such as Basic, Digest and Kerberos (SPNEGO)
+
+* HttpCookie (planned)
+
+    HttpCookie will provide an abstract API and pluggable implementations of standard cookie policies 
+    such as those based on RFC 2109 and RFC 2965 specifications as well as cookie policies compatible 
+    with Netscate Cookie draft and common practices of popular web browsers
+
+* HttpConn (planned)
+
+    HttpConn will provide an API and a number of default implementations of components for efficient 
+    management of HTTP connections
+
+* HttpClient (planned)
+
+    Jakarta HttpClient developed by HttpComponents project will serve as an easy to use facade to the 
+    lower level components of HttpCore, HttpAuth, HttpCookie, HttpConn and is intended as a successor 
+    and a replacement for Jakarta Commons HttpClient 3.x
+

Modified: jakarta/httpcomponents/trunk/src/site/site.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/src/site/site.xml?rev=384367&r1=384366&r2=384367&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/src/site/site.xml (original)
+++ jakarta/httpcomponents/trunk/src/site/site.xml Wed Mar  8 15:08:19 2006
@@ -22,10 +22,10 @@
 
     <menu name="Overview">
       <item name="Description" href="index.html"/>
-      <item name="Project charter" href="charter.html"/>
-      <item name="Project goals" href="goals.html"/>
+      <item name="Project Charter" href="charter.html"/>
+      <item name="Project Goals" href="goals.html"/>
       <item name="News" href="news.html"/>
-      <item name="Wiki" href="http://wiki.apache.org/jakarta-httpclient/FrontPage"/>
+      <item name="Wiki (external)" href="http://wiki.apache.org/jakarta-httpclient/FrontPage"/>
     </menu>
     <menu name="Modules">
       <item name="HttpCore" href="http-core/index.html"/>