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 2007/12/17 17:19:54 UTC

svn commit: r604906 - in /httpcomponents/httpcore/trunk/src/site: apt/download.apt apt/examples.apt apt/index.apt site.xml

Author: olegk
Date: Mon Dec 17 08:19:53 2007
New Revision: 604906

URL: http://svn.apache.org/viewvc?rev=604906&view=rev
Log:
Web site changes reflecting promotion to the TLP status

Modified:
    httpcomponents/httpcore/trunk/src/site/apt/download.apt
    httpcomponents/httpcore/trunk/src/site/apt/examples.apt
    httpcomponents/httpcore/trunk/src/site/apt/index.apt
    httpcomponents/httpcore/trunk/src/site/site.xml

Modified: httpcomponents/httpcore/trunk/src/site/apt/download.apt
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/src/site/apt/download.apt?rev=604906&r1=604905&r2=604906&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/src/site/apt/download.apt (original)
+++ httpcomponents/httpcore/trunk/src/site/apt/download.apt Mon Dec 17 08:19:53 2007
@@ -40,13 +40,3 @@
   </dependency>
 -------------------------
 
-* HttpComponents Core NIOSSL extensions
-
--------------------------
-  <dependency>
-    <groupId>org.apache.httpcomponents</groupId>
-    <artifactId>httpcore-niossl</artifactId>
-    <version>4.0-alpha6</version>
-    <scope>compile</scope>
-  </dependency>
--------------------------

Modified: httpcomponents/httpcore/trunk/src/site/apt/examples.apt
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/src/site/apt/examples.apt?rev=604906&r1=604905&r2=604906&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/src/site/apt/examples.apt (original)
+++ httpcomponents/httpcore/trunk/src/site/apt/examples.apt Mon Dec 17 08:19:53 2007
@@ -6,34 +6,34 @@
 
 HttpCore Examples
 
-    * {{{http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk/module-main/src/examples/org/apache/http/examples/ElementalHttpGet.java}Basic HTTP GET}}
+    * {{{http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/examples/org/apache/http/examples/ElementalHttpGet.java}Basic HTTP GET}}
     
     This example demonstrates how to execute a series of simple HTTP GET requests.
 
-    * {{{http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk/module-main/src/examples/org/apache/http/examples/ElementalHttpPost.java}Basic HTTP POST}}
+    * {{{http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/examples/org/apache/http/examples/ElementalHttpPost.java}Basic HTTP POST}}
     
     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/httpcore/trunk/module-main/src/examples/org/apache/http/examples/ElementalHttpServer.java}Basic HTTP server}}
+    * {{{http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/examples/org/apache/http/examples/ElementalHttpServer.java}Basic HTTP server}}
     
     This is an example of a simple but fully functional HTTP/1.1 server written with only a few dozen 
     lines of Java code.
 
-    * {{{http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk/module-nio/src/examples/org/apache/http/examples/nio/NHttpServer.java}Basic non-blocking HTTP server}}
+    * {{{http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-nio/src/examples/org/apache/http/examples/nio/NHttpServer.java}Basic non-blocking HTTP server}}
     
     This example demonstrates the use of HttpCore NIO extensions to build a non-blocking HTTP/1.1 server.
 
-    * {{{http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk/module-nio/src/examples/org/apache/http/examples/nio/NHttpClient.java}Basic non-blocking HTTP client}}
+    * {{{http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-nio/src/examples/org/apache/http/examples/nio/NHttpClient.java}Basic non-blocking HTTP client}}
     
     This example demonstrates how HttpCore NIO can be used to execute multiple HTTP requests using
     only one I/O thread.
 
-    * {{{http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk/module-niossl/src/examples/org/apache/http/examples/nio/NHttpSSLServer.java}Basic non-blocking HTTPS server}}
+    * {{{http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-nio/src/examples/org/apache/http/examples/nio/NHttpSSLServer.java}Basic non-blocking HTTPS server}}
     
-    This example demonstrates the use of HttpCore NIO and NIOSSL extensions to build a non-blocking HTTPS/1.1 server.
+    This example demonstrates the use of HttpCore NIO extensions to build a non-blocking HTTPS/1.1 server.
 
-    * {{{http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk/contrib/src/main/java/org/apache/http/contrib/compress/}Content compression}}
+    * {{{http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/contrib/src/main/java/org/apache/http/contrib/compress/}Content compression}}
 
     These request/response interceptors implement client- and server-side content
     compression/decompression logic. They can simply be added to any existing HTTP processor to enable it for 

Modified: httpcomponents/httpcore/trunk/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/src/site/apt/index.apt?rev=604906&r1=604905&r2=604906&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/src/site/apt/index.apt (original)
+++ httpcomponents/httpcore/trunk/src/site/apt/index.apt Mon Dec 17 08:19:53 2007
@@ -25,14 +25,7 @@
 
     HttpCore {{{httpcore-nio/index.html}NIO extensions}} contain optional 
     components that leverage the event driven, non-blocking I/O (NIO) model. HttpCore NIO 
-    extensions require a Java 1.4 compatible runtime and the HttpCore base module.
-
-* HttpCore NIOSSL extensions
-
-    HttpCore {{{httpcore-niossl/index.html}NIOSSL extensions}} provide optional 
-    components enabling HttpCore {{{jakarta-httpcore-nio/index.html}NIO}} to transparently
-    encrypt data in transit using SSL/TLS protocol. HttpCore NIOSSL extensions require a 
-    Java 1.5 compatible runtime and the HttpCore NIO module.
+    extensions require a Java 1.5 compatible runtime and the HttpCore base module.
 
 Standards Compliance
 

Modified: httpcomponents/httpcore/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/src/site/site.xml?rev=604906&r1=604905&r2=604906&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/src/site/site.xml (original)
+++ httpcomponents/httpcore/trunk/src/site/site.xml Mon Dec 17 08:19:53 2007
@@ -31,22 +31,21 @@
 
 <project name="HttpCore">
   <bannerLeft>
-    <name>Jakarta</name>
-    <src>http://jakarta.apache.org/images/logos/jakarta-logo.png</src>
-    <href>http://jakarta.apache.org/</href>
+    <name>Apache</name>
+    <src>http://www.apache.org/images/asf_logo_wide.gif</src>
+    <href>http://www.apache.org/</href>
   </bannerLeft>
 
   <bannerRight>
-    <name>HttpComponents HttpCore</name>
-    <src>http://jakarta.apache.org/httpcomponents/images/logos/httpcomponents.png</src>
-    <href>http://jakarta.apache.org/httpcomponents/httpcomponents-core/</href>
+    <name>HttpComponents</name>
+    <src>../images/logos/httpcomponents.png</src>
+    <href>http://hc.apache.org/</href>
   </bannerRight>
 
   <body>
     <links>
       <item name="Apache" href="http://www.apache.org/" />
-      <item name="Jakarta" href="http://jakarta.apache.org/"/>
-      <item name="HttpComponents" href=".."/>
+      <item name="HttpComponents" href="http://hc.apache.org/"/>
     </links>
 
     <menu name="HttpComponents">
@@ -60,7 +59,6 @@
     <menu name="Modules">
       <item name="HttpCore" href="httpcore/index.html"/>
       <item name="HttpCore NIO" href="httpcore-nio/index.html"/>
-      <item name="HttpCore NIOSSL" href="httpcore-niossl/index.html"/>
     </menu>
 
   </body>