Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitaca0667

Browse files
committed
Updated HTML documentation.
1 parent4c77f80 commitaca0667

34 files changed

+197
-177
lines changed

‎libs/network/doc/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config:31a95735f192c1e856251f90a3552520
3+
config:2782e6e8740d26e9cc1f54812c829fe8
44
tags: fbb0d17656682115ca4d033fb2f83ba1

‎libs/network/doc/html/_sources/in_depth/uri.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ elements. For example the program:
104104

105105
will output::
106106

107-
htp://www.github.com/cpp-netlib
107+
http://www.github.com/cpp-netlib
108108

109109
``URI Concept``
110110
```````````````

‎libs/network/doc/html/_sources/index.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.. :Authors: Glyn Matthews <glyn.matthews@gmail.com>
55
.. Dean Michael Berris <mikhailberis@gmail.com>
66
.. :Date: Feb 22, 2012
7-
.. :Version: 0.9.3
7+
.. :Version: 0.9.4
88
.. :Description: Complete user documentation, with examples, for the :mod:`cpp-netlib`.
99
.. :Copyright: Copyright Glyn Matthews, Dean Michael Berris 2008-2012.
1010
.. Distributed under the Boost Software License, Version
@@ -76,8 +76,8 @@ The client is as simple as this:
7676
client::request request_("http://127.0.0.1:8000/");
7777
request_ << header("Connection", "close");
7878
client client_;
79-
client::response response_ = client_.get(request);
80-
std::stringbody = body(response_);
79+
client::response response_ = client_.get(request_);
80+
std::stringbody_ = body(response_);
8181

8282
And the corresponding server code is listed below:
8383

‎libs/network/doc/html/_sources/whats_new.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@
77
:mod:`cpp-netlib` 0.9
88
---------------------
99

10+
v0.9.4
11+
~~~~~~
12+
* Lots of URI fixes.
13+
* Fixed async_server's request handler so it doesn't make copies of the supplied handler.
14+
* Fix for issue `#73`_ regarding SSL connections ending in short read errors.
15+
* Final C++03-only release.
16+
17+
.. _`#73`: https://github.com/cpp-netlib/cpp-netlib/issues/73
18+
1019
v0.9.3
1120
~~~~~~
1221
* URI, HTTP client and HTTP server are now built as static libraries (``libcppnetlib-uri.a``, ``libcppnetlib-client-connections.a`` and ``libcppnetlib-server-parsers.a`` on Linux and ``cppnetlib-uri.lib``, ``cppnetlib-client-connections.lib`` and ``cppnetlib-server-parsers.lib`` on Windows).

‎libs/network/doc/html/contents.html

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<head>
88
<metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/>
99

10-
<title>Contents &mdash; cpp-netlib v0.9.3</title>
10+
<title>Contents &mdash; cpp-netlib v0.9.4</title>
1111
<linkrel="stylesheet"href="_static/cpp-netlib.css"type="text/css"/>
1212
<linkrel="stylesheet"href="_static/pygments.css"type="text/css"/>
1313
<scripttype="text/javascript">
1414
varDOCUMENTATION_OPTIONS={
1515
URL_ROOT:'',
16-
VERSION:'0.9.3',
16+
VERSION:'0.9.4',
1717
COLLAPSE_INDEX:false,
1818
FILE_SUFFIX:'.html',
1919
HAS_SOURCE:true
@@ -22,7 +22,7 @@
2222
<scripttype="text/javascript"src="_static/jquery.js"></script>
2323
<scripttype="text/javascript"src="_static/underscore.js"></script>
2424
<scripttype="text/javascript"src="_static/doctools.js"></script>
25-
<linkrel="top"title="cpp-netlib v0.9.3"href="index.html"/>
25+
<linkrel="top"title="cpp-netlib v0.9.4"href="index.html"/>
2626
<linkrel="next"title="What’s New"href="whats_new.html"/>
2727
<scripttype="text/javascript">
2828

@@ -44,7 +44,7 @@
4444
<divclass="document">
4545
<divid="custom-doc"class="yui-t4">
4646
<divid="hd">
47-
<h1><ahref="index.html">cpp-netlib v0.9.3</a></h1>
47+
<h1><ahref="index.html">cpp-netlib v0.9.4</a></h1>
4848
<divid="global-nav">
4949
<atitle="Home page"href="index.html">Home</a> |
5050
<atitle="Table of contents"href="#">Table of contents</a> |
@@ -55,7 +55,7 @@ <h1><a href="index.html">cpp-netlib v0.9.3</a></h1>
5555
<atitle="Reference"href="reference.html">Reference</a>
5656
</div>
5757
<divclass="nav">
58-
<atitle="cpp-netlib v0.9.3"href="index.html"accesskey="U">up</a>
58+
<atitle="cpp-netlib v0.9.4"href="index.html"accesskey="U">up</a>
5959
|
6060
<ahref="whats_new.html"title="What&amp;#8217;s New">next</a> &raquo;</div>
6161
</div>
@@ -71,6 +71,7 @@ <h1><a href="index.html">cpp-netlib v0.9.3</a></h1>
7171
<ul>
7272
<liclass="toctree-l1"><aclass="reference internal"href="whats_new.html">What&#8217;s New</a><ul>
7373
<liclass="toctree-l2"><aclass="reference internal"href="whats_new.html#cpp-netlib-0-9"><ttclass="docutils literal"><spanclass="pre">cpp-netlib</span></tt> 0.9</a><ul>
74+
<liclass="toctree-l3"><aclass="reference internal"href="whats_new.html#v0-9-4">v0.9.4</a></li>
7475
<liclass="toctree-l3"><aclass="reference internal"href="whats_new.html#v0-9-3">v0.9.3</a></li>
7576
<liclass="toctree-l3"><aclass="reference internal"href="whats_new.html#v0-9-2">v0.9.2</a></li>
7677
<liclass="toctree-l3"><aclass="reference internal"href="whats_new.html#v0-9-1">v0.9.1</a></li>
@@ -204,7 +205,7 @@ <h3>Browse</h3>
204205
<h3>You are here:</h3>
205206
<ul>
206207
<li>
207-
<ahref="index.html">cpp-netlib v0.9.3</a>
208+
<ahref="index.html">cpp-netlib v0.9.4</a>
208209

209210
<ul><li>Contents</li></ul>
210211

@@ -237,7 +238,7 @@ <h3>Quick search</h3>
237238

238239
<divid="ft">
239240
<divclass="nav">
240-
<atitle="cpp-netlib v0.9.3"href="index.html"accesskey="U">up</a>
241+
<atitle="cpp-netlib v0.9.4"href="index.html"accesskey="U">up</a>
241242
|
242243
<ahref="whats_new.html"title="What&amp;#8217;s New">next</a> &raquo;</div>
243244
</div>

‎libs/network/doc/html/examples.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<head>
88
<metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/>
99

10-
<title>Examples &mdash; cpp-netlib v0.9.3</title>
10+
<title>Examples &mdash; cpp-netlib v0.9.4</title>
1111
<linkrel="stylesheet"href="_static/cpp-netlib.css"type="text/css"/>
1212
<linkrel="stylesheet"href="_static/pygments.css"type="text/css"/>
1313
<scripttype="text/javascript">
1414
varDOCUMENTATION_OPTIONS={
1515
URL_ROOT:'',
16-
VERSION:'0.9.3',
16+
VERSION:'0.9.4',
1717
COLLAPSE_INDEX:false,
1818
FILE_SUFFIX:'.html',
1919
HAS_SOURCE:true
@@ -22,7 +22,7 @@
2222
<scripttype="text/javascript"src="_static/jquery.js"></script>
2323
<scripttype="text/javascript"src="_static/underscore.js"></script>
2424
<scripttype="text/javascript"src="_static/doctools.js"></script>
25-
<linkrel="top"title="cpp-netlib v0.9.3"href="index.html"/>
25+
<linkrel="top"title="cpp-netlib v0.9.4"href="index.html"/>
2626
<linkrel="next"title="HTTP client"href="examples/http/http_client.html"/>
2727
<linkrel="prev"title="Getting Started"href="getting_started.html"/>
2828
<scripttype="text/javascript">
@@ -45,7 +45,7 @@
4545
<divclass="document">
4646
<divid="custom-doc"class="yui-t4">
4747
<divid="hd">
48-
<h1><ahref="index.html">cpp-netlib v0.9.3</a></h1>
48+
<h1><ahref="index.html">cpp-netlib v0.9.4</a></h1>
4949
<divid="global-nav">
5050
<atitle="Home page"href="index.html">Home</a> |
5151
<atitle="Table of contents"href="contents.html">Table of contents</a> |
@@ -58,7 +58,7 @@ <h1><a href="index.html">cpp-netlib v0.9.3</a></h1>
5858
<divclass="nav">
5959
&laquo;<ahref="getting_started.html"title="Getting Started">previous</a>
6060
|
61-
<atitle="cpp-netlib v0.9.3"href="index.html"accesskey="U">up</a>
61+
<atitle="cpp-netlib v0.9.4"href="index.html"accesskey="U">up</a>
6262
|
6363
<ahref="examples/http/http_client.html"title="HTTP client">next</a> &raquo;</div>
6464
</div>
@@ -125,7 +125,7 @@ <h3>Browse</h3>
125125
<h3>You are here:</h3>
126126
<ul>
127127
<li>
128-
<ahref="index.html">cpp-netlib v0.9.3</a>
128+
<ahref="index.html">cpp-netlib v0.9.4</a>
129129

130130
<ul><li>Examples</li></ul>
131131

@@ -160,7 +160,7 @@ <h3>Quick search</h3>
160160
<divclass="nav">
161161
&laquo;<ahref="getting_started.html"title="Getting Started">previous</a>
162162
|
163-
<atitle="cpp-netlib v0.9.3"href="index.html"accesskey="U">up</a>
163+
<atitle="cpp-netlib v0.9.4"href="index.html"accesskey="U">up</a>
164164
|
165165
<ahref="examples/http/http_client.html"title="HTTP client">next</a> &raquo;</div>
166166
</div>

‎libs/network/doc/html/examples/http/atom_reader.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<head>
88
<metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/>
99

10-
<title>Atom feed reader &mdash; cpp-netlib v0.9.3</title>
10+
<title>Atom feed reader &mdash; cpp-netlib v0.9.4</title>
1111
<linkrel="stylesheet"href="../../_static/cpp-netlib.css"type="text/css"/>
1212
<linkrel="stylesheet"href="../../_static/pygments.css"type="text/css"/>
1313
<scripttype="text/javascript">
1414
varDOCUMENTATION_OPTIONS={
1515
URL_ROOT:'../../',
16-
VERSION:'0.9.3',
16+
VERSION:'0.9.4',
1717
COLLAPSE_INDEX:false,
1818
FILE_SUFFIX:'.html',
1919
HAS_SOURCE:true
@@ -22,7 +22,7 @@
2222
<scripttype="text/javascript"src="../../_static/jquery.js"></script>
2323
<scripttype="text/javascript"src="../../_static/underscore.js"></script>
2424
<scripttype="text/javascript"src="../../_static/doctools.js"></script>
25-
<linkrel="top"title="cpp-netlib v0.9.3"href="../../index.html"/>
25+
<linkrel="top"title="cpp-netlib v0.9.4"href="../../index.html"/>
2626
<linkrel="up"title="Examples"href="../../examples.html"/>
2727
<linkrel="next"title="Twitter search"href="twitter_search.html"/>
2828
<linkrel="prev"title="“Hello world” HTTP client"href="hello_world_client.html"/>
@@ -46,7 +46,7 @@
4646
<divclass="document">
4747
<divid="custom-doc"class="yui-t4">
4848
<divid="hd">
49-
<h1><ahref="../../index.html">cpp-netlib v0.9.3</a></h1>
49+
<h1><ahref="../../index.html">cpp-netlib v0.9.4</a></h1>
5050
<divid="global-nav">
5151
<atitle="Home page"href="../../index.html">Home</a> |
5252
<atitle="Table of contents"href="../../contents.html">Table of contents</a> |
@@ -167,7 +167,7 @@ <h3>Browse</h3>
167167
<h3>You are here:</h3>
168168
<ul>
169169
<li>
170-
<ahref="../../index.html">cpp-netlib v0.9.3</a>
170+
<ahref="../../index.html">cpp-netlib v0.9.4</a>
171171

172172
<ul><li><ahref="../../examples.html">Examples</a>
173173

‎libs/network/doc/html/examples/http/hello_world_client.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<head>
88
<metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/>
99

10-
<title>“Hello world” HTTP client &mdash; cpp-netlib v0.9.3</title>
10+
<title>“Hello world” HTTP client &mdash; cpp-netlib v0.9.4</title>
1111
<linkrel="stylesheet"href="../../_static/cpp-netlib.css"type="text/css"/>
1212
<linkrel="stylesheet"href="../../_static/pygments.css"type="text/css"/>
1313
<scripttype="text/javascript">
1414
varDOCUMENTATION_OPTIONS={
1515
URL_ROOT:'../../',
16-
VERSION:'0.9.3',
16+
VERSION:'0.9.4',
1717
COLLAPSE_INDEX:false,
1818
FILE_SUFFIX:'.html',
1919
HAS_SOURCE:true
@@ -22,7 +22,7 @@
2222
<scripttype="text/javascript"src="../../_static/jquery.js"></script>
2323
<scripttype="text/javascript"src="../../_static/underscore.js"></script>
2424
<scripttype="text/javascript"src="../../_static/doctools.js"></script>
25-
<linkrel="top"title="cpp-netlib v0.9.3"href="../../index.html"/>
25+
<linkrel="top"title="cpp-netlib v0.9.4"href="../../index.html"/>
2626
<linkrel="up"title="Examples"href="../../examples.html"/>
2727
<linkrel="next"title="Atom feed reader"href="atom_reader.html"/>
2828
<linkrel="prev"title="“Hello world” HTTP server"href="hello_world_server.html"/>
@@ -46,7 +46,7 @@
4646
<divclass="document">
4747
<divid="custom-doc"class="yui-t4">
4848
<divid="hd">
49-
<h1><ahref="../../index.html">cpp-netlib v0.9.3</a></h1>
49+
<h1><ahref="../../index.html">cpp-netlib v0.9.4</a></h1>
5050
<divid="global-nav">
5151
<atitle="Home page"href="../../index.html">Home</a> |
5252
<atitle="Table of contents"href="../../contents.html">Table of contents</a> |
@@ -184,7 +184,7 @@ <h3>Browse</h3>
184184
<h3>You are here:</h3>
185185
<ul>
186186
<li>
187-
<ahref="../../index.html">cpp-netlib v0.9.3</a>
187+
<ahref="../../index.html">cpp-netlib v0.9.4</a>
188188

189189
<ul><li><ahref="../../examples.html">Examples</a>
190190

‎libs/network/doc/html/examples/http/hello_world_server.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<head>
88
<metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/>
99

10-
<title>“Hello world” HTTP server &mdash; cpp-netlib v0.9.3</title>
10+
<title>“Hello world” HTTP server &mdash; cpp-netlib v0.9.4</title>
1111
<linkrel="stylesheet"href="../../_static/cpp-netlib.css"type="text/css"/>
1212
<linkrel="stylesheet"href="../../_static/pygments.css"type="text/css"/>
1313
<scripttype="text/javascript">
1414
varDOCUMENTATION_OPTIONS={
1515
URL_ROOT:'../../',
16-
VERSION:'0.9.3',
16+
VERSION:'0.9.4',
1717
COLLAPSE_INDEX:false,
1818
FILE_SUFFIX:'.html',
1919
HAS_SOURCE:true
@@ -22,7 +22,7 @@
2222
<scripttype="text/javascript"src="../../_static/jquery.js"></script>
2323
<scripttype="text/javascript"src="../../_static/underscore.js"></script>
2424
<scripttype="text/javascript"src="../../_static/doctools.js"></script>
25-
<linkrel="top"title="cpp-netlib v0.9.3"href="../../index.html"/>
25+
<linkrel="top"title="cpp-netlib v0.9.4"href="../../index.html"/>
2626
<linkrel="up"title="Examples"href="../../examples.html"/>
2727
<linkrel="next"title="“Hello world” HTTP client"href="hello_world_client.html"/>
2828
<linkrel="prev"title="Simple wget"href="simple_wget.html"/>
@@ -46,7 +46,7 @@
4646
<divclass="document">
4747
<divid="custom-doc"class="yui-t4">
4848
<divid="hd">
49-
<h1><ahref="../../index.html">cpp-netlib v0.9.3</a></h1>
49+
<h1><ahref="../../index.html">cpp-netlib v0.9.4</a></h1>
5050
<divid="global-nav">
5151
<atitle="Home page"href="../../index.html">Home</a> |
5252
<atitle="Table of contents"href="../../contents.html">Table of contents</a> |
@@ -225,7 +225,7 @@ <h3>Browse</h3>
225225
<h3>You are here:</h3>
226226
<ul>
227227
<li>
228-
<ahref="../../index.html">cpp-netlib v0.9.3</a>
228+
<ahref="../../index.html">cpp-netlib v0.9.4</a>
229229

230230
<ul><li><ahref="../../examples.html">Examples</a>
231231

‎libs/network/doc/html/examples/http/http_client.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<head>
88
<metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/>
99

10-
<title>HTTP client &mdash; cpp-netlib v0.9.3</title>
10+
<title>HTTP client &mdash; cpp-netlib v0.9.4</title>
1111
<linkrel="stylesheet"href="../../_static/cpp-netlib.css"type="text/css"/>
1212
<linkrel="stylesheet"href="../../_static/pygments.css"type="text/css"/>
1313
<scripttype="text/javascript">
1414
varDOCUMENTATION_OPTIONS={
1515
URL_ROOT:'../../',
16-
VERSION:'0.9.3',
16+
VERSION:'0.9.4',
1717
COLLAPSE_INDEX:false,
1818
FILE_SUFFIX:'.html',
1919
HAS_SOURCE:true
@@ -22,7 +22,7 @@
2222
<scripttype="text/javascript"src="../../_static/jquery.js"></script>
2323
<scripttype="text/javascript"src="../../_static/underscore.js"></script>
2424
<scripttype="text/javascript"src="../../_static/doctools.js"></script>
25-
<linkrel="top"title="cpp-netlib v0.9.3"href="../../index.html"/>
25+
<linkrel="top"title="cpp-netlib v0.9.4"href="../../index.html"/>
2626
<linkrel="up"title="Examples"href="../../examples.html"/>
2727
<linkrel="next"title="Simple wget"href="simple_wget.html"/>
2828
<linkrel="prev"title="Examples"href="../../examples.html"/>
@@ -46,7 +46,7 @@
4646
<divclass="document">
4747
<divid="custom-doc"class="yui-t4">
4848
<divid="hd">
49-
<h1><ahref="../../index.html">cpp-netlib v0.9.3</a></h1>
49+
<h1><ahref="../../index.html">cpp-netlib v0.9.4</a></h1>
5050
<divid="global-nav">
5151
<atitle="Home page"href="../../index.html">Home</a> |
5252
<atitle="Table of contents"href="../../contents.html">Table of contents</a> |
@@ -198,7 +198,7 @@ <h3>Browse</h3>
198198
<h3>You are here:</h3>
199199
<ul>
200200
<li>
201-
<ahref="../../index.html">cpp-netlib v0.9.3</a>
201+
<ahref="../../index.html">cpp-netlib v0.9.4</a>
202202

203203
<ul><li><ahref="../../examples.html">Examples</a>
204204

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp