Added site for HttpClient cache module
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@945824 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e47331c369
commit
ec44b2c26e
|
@ -0,0 +1,42 @@
|
||||||
|
~~ ====================================================================
|
||||||
|
~~ 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 Cache Module
|
||||||
|
----------
|
||||||
|
----------
|
||||||
|
----------
|
||||||
|
|
||||||
|
HttpClient Cache
|
||||||
|
|
||||||
|
This module provides support for HTTP/1.1 response caching.
|
||||||
|
|
||||||
|
{{{apidocs/index.html}Javadocs}}
|
||||||
|
|
||||||
|
{{{xref/index.html}Project sources}}
|
||||||
|
|
||||||
|
{{{dependencies.html}Dependencies}}
|
||||||
|
|
||||||
|
{{{issue-tracking.html}Issue Tracking}}
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
@import url("http://hc.apache.org/css/hc-maven.css");
|
|
@ -0,0 +1,53 @@
|
||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<!--
|
||||||
|
====================================================================
|
||||||
|
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 ref="modules" />
|
||||||
|
<menu ref="reports"/>
|
||||||
|
</body>
|
||||||
|
</project>
|
|
@ -23,12 +23,12 @@
|
||||||
~~ <http://www.apache.org/>.
|
~~ <http://www.apache.org/>.
|
||||||
|
|
||||||
----------
|
----------
|
||||||
HttpComponents HttpClient Module
|
HttpComponents HttpMime Module
|
||||||
----------
|
----------
|
||||||
----------
|
----------
|
||||||
----------
|
----------
|
||||||
|
|
||||||
HttpClient
|
HttpMime
|
||||||
|
|
||||||
This module provides support for MIME multipart encoded entities.
|
This module provides support for MIME multipart encoded entities.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue