Web site updates for the 4.0-alpha3 release

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@627080 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2008-02-12 20:25:32 +00:00
parent fb02238bb7
commit b6f3d188bb
9 changed files with 129 additions and 3 deletions

View File

@ -25,6 +25,7 @@ mvn package
The resultant packages can be found in the target folders of their respective modules
module-client/target/httpclient-<VERSION>.jar
module-httpmime/target/httpmime-<VERSION>.jar
where <VERSION> is the release version

View File

@ -3,6 +3,6 @@ Apache HttpComponents Client
Welcome to the HttpClient component of the HttpComponents project.
Visit the project site at
http://jakarta.apache.org/httpcomponents/
http://hc.apache.org/
for more information.

View File

@ -53,6 +53,7 @@
</menu>
<menu name="Modules">
<item name="HttpClient" href="index.html"/>
<item name="HttpMime" href="../httpmime/index.html"/>
</menu>
</body>
</project>

View File

@ -0,0 +1,47 @@
~~ $HeadURL$
~~ $Revision$
~~ $Date$
~~
~~ ====================================================================
~~ Licensed to the Apache Software Foundation (ASF) under one
~~ or more contributor license agreements. See the NOTICE file
~~ distributed with this work for additional information
~~ regarding copyright ownership. The ASF licenses this file
~~ to you under the Apache License, Version 2.0 (the
~~ "License"); you may not use this file except in compliance
~~ with the License. You may obtain a copy of the License at
~~
~~ http://www.apache.org/licenses/LICENSE-2.0
~~
~~ Unless required by applicable law or agreed to in writing,
~~ software distributed under the License is distributed on an
~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~~ KIND, either express or implied. See the License for the
~~ specific language governing permissions and limitations
~~ under the License.
~~ ====================================================================
~~
~~ This software consists of voluntary contributions made by many
~~ individuals on behalf of the Apache Software Foundation. For more
~~ information on the Apache Software Foundation, please see
~~ <http://www.apache.org/>.
----------
HttpComponents HttpClient Module
----------
----------
----------
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.
{{{apidocs/index.html}Javadocs}}
{{{xref/index.html}Project sources}}
{{{dependencies.html}Dependencies}}
{{{issue-tracking.html}Issue Tracking}}

View File

@ -0,0 +1 @@
@import url("http://hc.apache.org/css/hc-maven.css");

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
$HeadURL:$
$Revision:$
$Date:$
====================================================================
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
====================================================================
This software consists of voluntary contributions made by many
individuals on behalf of the Apache Software Foundation. For more
information on the Apache Software Foundation, please see
<http://www.apache.org/>.
-->
<project name="HttpClient">
<bannerLeft>
<name>Apache</name>
<src>http://www.apache.org/images/asf_logo_wide.gif</src>
<href>http://www.apache.org/</href>
</bannerLeft>
<bannerRight>
<name>HttpComponents</name>
<src>http://hc.apache.org/images/logos/httpcomponents.png</src>
<href>http://hc.apache.org/</href>
</bannerRight>
<body>
<menu name="HttpComponents">
<item name="Home" href="../.."/>
</menu>
<menu name="HttpClient Overview">
<item name="Description" href="../index.html"/>
<item name="Download" href="../download.html"/>
<item name="Examples" href="../examples.html"/>
</menu>
<menu name="Modules">
<item name="HttpClient" href="../httpclient/index.html"/>
<item name="HttpMime" href="index.html"/>
</menu>
</body>
</project>

View File

@ -36,7 +36,7 @@ HttpClient Downloads
The latest release available for download:
{{{http://hc.apache.org/downloads.cgi}4.0-alpha2}} -
{{{http://hc.apache.org/downloads.cgi}4.0-alpha3}} -
{{{http://www.apache.org/dist/httpcomponents/httpclient/RELEASE_NOTES.txt}Release Notes}} -
{{{http://www.apache.org/dist/java-repository/httpcomponents-httpclient/licenses/LICENSE.txt}License}}
@ -52,7 +52,18 @@ Dependency management with Maven
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.0-alpha2</version>
<version>4.0-alpha3</version>
<scope>compile</scope>
</dependency>
-------------------------
* HttpComponents HttpMime
-------------------------
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.0-alpha3</version>
<scope>compile</scope>
</dependency>
-------------------------

View File

@ -102,6 +102,12 @@ Modules
The {{{httpclient/index.html}HttpClient}} module is a full-featured, standards compliant HTTP
client built on top of {{{/httpcomponents/httpcomponents-core/index.html}HttpCore}}.
* HttpMime module
The {{{httpmime/index.html}HttpMime}} module extends
{{{http://james.apache.org/mime4j/index.html}mime4j}} library with some HTTP specific
functionality and integrates it with the HttpComponents framework.
Standards Compliance
HttpClient strives to conform to the following specifications endorsed by the Internet

View File

@ -53,6 +53,7 @@
</menu>
<menu name="Modules">
<item name="HttpClient" href="httpclient/index.html"/>
<item name="HttpMime" href="httpmime/index.html"/>
</menu>
</body>
</project>