Skip to content

Commit b5eb21f

Browse files
committed
Rebuilding with updates.
1 parent 9148501 commit b5eb21f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+94
-38
lines changed
Binary file not shown.
Binary file not shown.
631 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

libs/network/doc/html/_sources/getting_started.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@
77
Downloading an official release
88
===============================
99

10-
All stable versions of :mod:`cpp-netlib` can be downloaded from
10+
You can find links to the latest official release from the project's official
11+
website:
12+
13+
http://cpp-netlib.org/
14+
15+
All previous stable versions of :mod:`cpp-netlib` can be downloaded from
1116
Github_ from this url:
1217

1318
http://github.com/cpp-netlib/cpp-netlib/downloads

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

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ http://cpp-netlib.org/.
2020

2121
**Download**
2222

23+
You can get the latest official version of the library from the official
24+
project website at:
25+
26+
http://cpp-netlib.org/
27+
2328
This version of :mod:`cpp-netlib` is tagged as cpp-netlib-0.10.0 in the GitHub_
2429
repository. You can find more information about the progress of the development
2530
by checking our GitHub_ project page at:

libs/network/doc/html/_sources/reference/http_request.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ and also supports the following constructs.
118118
| ``r.body`` | ``S`` | The body of the request. |
119119
+-------------------------------+--------+-------------------------------------+
120120

121-
.. _Message Concept: message.html#message-concept
121+
.. _Message Concept: ../in_depth/message.html#message-concept
122122

123123
Directives
124124
----------

libs/network/doc/html/_sources/reference/http_response.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ supports the following constructs.
7070
| | | ``r``. |
7171
+-------------------------------------+----------+-----------------------------+
7272

73-
.. _Message Concept: message.html#message-concept
73+
.. _Message Concept: ../in_depth/message.html#message-concept
7474

7575
Directives
7676
----------

libs/network/doc/html/_sources/reference/http_server.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ synchronous server implementation in three ways:
334334

335335
The asynchronous server is meant to allow for better scalability in terms of the
336336
number of concurrent connections and for performing asynchronous actions within
337-
the handlers. If your applacation does not need to write out information
337+
the handlers. If your application does not need to write out information
338338
asynchronously or perform potentially long computations, then the synchronous
339339
server gives a generally better performance profile than the asynchronous
340340
server.

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

+16
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@
44
What's New
55
************
66

7+
:mod:`cpp-netlib` 0.10
8+
----------------------
9+
10+
v0.10.0
11+
~~~~~~~
12+
* Added support for more HTTP status codes (206, 408, 412, 416, 507).
13+
* Refactored the parser for chunked encoding.
14+
* Fixed parsing chunked encoding if the response body has ``<chunk>CLRF<hex>CLRF<data>``.
15+
* Added librt dependency on Linux.
16+
* Check the callback in the asynchronous client before calling it.
17+
* Fixed issues `#110`_, `#168`_, `#213`_.
18+
19+
.. _`#110`: https://github.com/cpp-netlib/cpp-netlib/issues/110
20+
.. _`#168`: https://github.com/cpp-netlib/cpp-netlib/issues/168
21+
.. _`#213`: https://github.com/cpp-netlib/cpp-netlib/issues/213
22+
723
:mod:`cpp-netlib` 0.9
824
---------------------
925

libs/network/doc/html/contents.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ <h3>Navigation</h3>
5858
<li class="toctree-l1"><a class="reference internal" href="index.html#hello-world">Hello, world!</a></li>
5959
<li class="toctree-l1"><a class="reference internal" href="index.html#want-to-learn-more">Want to learn more?</a></li>
6060
<li class="toctree-l1"><a class="reference internal" href="whats_new.html">What&#8217;s New</a><ul>
61+
<li class="toctree-l2"><a class="reference internal" href="whats_new.html#cpp-netlib-0-10"><tt class="docutils literal"><span class="pre">cpp-netlib</span></tt> 0.10</a><ul>
62+
<li class="toctree-l3"><a class="reference internal" href="whats_new.html#v0-10-0">v0.10.0</a></li>
63+
</ul>
64+
</li>
6165
<li class="toctree-l2"><a class="reference internal" href="whats_new.html#cpp-netlib-0-9"><tt class="docutils literal"><span class="pre">cpp-netlib</span></tt> 0.9</a><ul>
6266
<li class="toctree-l3"><a class="reference internal" href="whats_new.html#v0-9-5">v0.9.5</a></li>
6367
<li class="toctree-l3"><a class="reference internal" href="whats_new.html#v0-9-4">v0.9.4</a></li>
@@ -266,7 +270,7 @@ <h3>Navigation</h3>
266270
</div>
267271
<div class="footer">
268272
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
269-
Last updated on Jun 27, 2013.
273+
Last updated on Jun 28, 2013.
270274
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
271275
</div>
272276
</body>

libs/network/doc/html/examples.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ <h3>Navigation</h3>
131131
</div>
132132
<div class="footer">
133133
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
134-
Last updated on Jun 27, 2013.
134+
Last updated on Jun 28, 2013.
135135
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
136136
</div>
137137
</body>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ <h3>Navigation</h3>
175175
</div>
176176
<div class="footer">
177177
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
178-
Last updated on Jun 27, 2013.
178+
Last updated on Jun 28, 2013.
179179
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
180180
</div>
181181
</body>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ <h3>Navigation</h3>
192192
</div>
193193
<div class="footer">
194194
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
195-
Last updated on Jun 27, 2013.
195+
Last updated on Jun 28, 2013.
196196
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
197197
</div>
198198
</body>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ <h3>Navigation</h3>
233233
</div>
234234
<div class="footer">
235235
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
236-
Last updated on Jun 27, 2013.
236+
Last updated on Jun 28, 2013.
237237
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
238238
</div>
239239
</body>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ <h3>Navigation</h3>
206206
</div>
207207
<div class="footer">
208208
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
209-
Last updated on Jun 27, 2013.
209+
Last updated on Jun 28, 2013.
210210
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
211211
</div>
212212
</body>

libs/network/doc/html/examples/http/simple_wget.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ <h3>Navigation</h3>
203203
</div>
204204
<div class="footer">
205205
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
206-
Last updated on Jun 27, 2013.
206+
Last updated on Jun 28, 2013.
207207
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
208208
</div>
209209
</body>

libs/network/doc/html/examples/http/twitter_search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ <h3>Navigation</h3>
209209
</div>
210210
<div class="footer">
211211
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
212-
Last updated on Jun 27, 2013.
212+
Last updated on Jun 28, 2013.
213213
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
214214
</div>
215215
</body>

libs/network/doc/html/getting_started.html

+6-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ <h3>Navigation</h3>
5757
<span id="id1"></span><h1>Getting Started<a class="headerlink" href="#getting-started" title="Permalink to this headline"></a></h1>
5858
<div class="section" id="downloading-an-official-release">
5959
<h2>Downloading an official release<a class="headerlink" href="#downloading-an-official-release" title="Permalink to this headline"></a></h2>
60-
<p>All stable versions of <tt class="xref py py-mod docutils literal"><span class="pre">cpp-netlib</span></tt> can be downloaded from
60+
<p>You can find links to the latest official release from the project&#8217;s official
61+
website:</p>
62+
<blockquote>
63+
<div><a class="reference external" href="http://cpp-netlib.org/">http://cpp-netlib.org/</a></div></blockquote>
64+
<p>All previous stable versions of <tt class="xref py py-mod docutils literal"><span class="pre">cpp-netlib</span></tt> can be downloaded from
6165
<a class="reference external" href="http://github.com/cpp-netlib/cpp-netlib/downloads">Github</a> from this url:</p>
6266
<blockquote>
6367
<div><a class="reference external" href="http://github.com/cpp-netlib/cpp-netlib/downloads">http://github.com/cpp-netlib/cpp-netlib/downloads</a></div></blockquote>
@@ -276,7 +280,7 @@ <h3>Navigation</h3>
276280
</div>
277281
<div class="footer">
278282
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
279-
Last updated on Jun 27, 2013.
283+
Last updated on Jun 28, 2013.
280284
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
281285
</div>
282286
</body>

libs/network/doc/html/history.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ <h3>Navigation</h3>
149149
</div>
150150
<div class="footer">
151151
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
152-
Last updated on Jun 27, 2013.
152+
Last updated on Jun 28, 2013.
153153
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
154154
</div>
155155
</body>

libs/network/doc/html/in_depth.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ <h3>Navigation</h3>
125125
</div>
126126
<div class="footer">
127127
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
128-
Last updated on Jun 27, 2013.
128+
Last updated on Jun 28, 2013.
129129
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
130130
</div>
131131
</body>

libs/network/doc/html/in_depth/http.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ <h3>Navigation</h3>
304304
</div>
305305
<div class="footer">
306306
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
307-
Last updated on Jun 27, 2013.
307+
Last updated on Jun 28, 2013.
308308
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
309309
</div>
310310
</body>

libs/network/doc/html/in_depth/http_client_tags.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ <h3>Navigation</h3>
132132
</div>
133133
<div class="footer">
134134
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
135-
Last updated on Jun 27, 2013.
135+
Last updated on Jun 28, 2013.
136136
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
137137
</div>
138138
</body>

libs/network/doc/html/in_depth/message.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ <h3>Navigation</h3>
392392
</div>
393393
<div class="footer">
394394
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
395-
Last updated on Jun 27, 2013.
395+
Last updated on Jun 28, 2013.
396396
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
397397
</div>
398398
</body>

libs/network/doc/html/in_depth/uri.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ <h3>Navigation</h3>
281281
</div>
282282
<div class="footer">
283283
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
284-
Last updated on Jun 27, 2013.
284+
Last updated on Jun 28, 2013.
285285
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
286286
</div>
287287
</body>

libs/network/doc/html/index.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ <h1>Getting cpp-netlib<a class="headerlink" href="#getting-cpp-netlib" title="Pe
5959
<p>You can find out more about the <tt class="xref py py-mod docutils literal"><span class="pre">cpp-netlib</span></tt> project at
6060
<a class="reference external" href="http://cpp-netlib.org/">http://cpp-netlib.org/</a>.</p>
6161
<p><strong>Download</strong></p>
62+
<p>You can get the latest official version of the library from the official
63+
project website at:</p>
64+
<blockquote>
65+
<div><a class="reference external" href="http://cpp-netlib.org/">http://cpp-netlib.org/</a></div></blockquote>
6266
<p>This version of <tt class="xref py py-mod docutils literal"><span class="pre">cpp-netlib</span></tt> is tagged as cpp-netlib-0.10.0 in the <a class="reference external" href="http://github.com/">GitHub</a>
6367
repository. You can find more information about the progress of the development
6468
by checking our <a class="reference external" href="http://github.com/">GitHub</a> project page at:</p>
@@ -198,7 +202,7 @@ <h3>Navigation</h3>
198202
</div>
199203
<div class="footer">
200204
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
201-
Last updated on Jun 27, 2013.
205+
Last updated on Jun 28, 2013.
202206
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
203207
</div>
204208
</body>

libs/network/doc/html/objects.inv

-1 Bytes
Binary file not shown.

libs/network/doc/html/reference.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ <h3>Navigation</h3>
133133
</div>
134134
<div class="footer">
135135
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
136-
Last updated on Jun 27, 2013.
136+
Last updated on Jun 28, 2013.
137137
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
138138
</div>
139139
</body>

libs/network/doc/html/reference/http_client.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ <h3>Navigation</h3>
523523
</div>
524524
<div class="footer">
525525
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
526-
Last updated on Jun 27, 2013.
526+
Last updated on Jun 28, 2013.
527527
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
528528
</div>
529529
</body>

libs/network/doc/html/reference/http_request.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h2>Request Concepts<a class="headerlink" href="#request-concepts" title="Permal
7979
Concept</a>, otherwise it chooses the <a class="reference internal" href="#normal-client-request-concept">Normal Client Request Concept</a>.</p>
8080
<div class="section" id="normal-client-request-concept">
8181
<h3>Normal Client Request Concept<a class="headerlink" href="#normal-client-request-concept" title="Permalink to this headline"></a></h3>
82-
<p>A type models the Normal Client Request Concept if it models the <a class="reference external" href="message.html#message-concept">Message
82+
<p>A type models the Normal Client Request Concept if it models the <a class="reference external" href="../in_depth/message.html#message-concept">Message
8383
Concept</a> and also supports the following constructs.</p>
8484
<p><strong>Legend</strong></p>
8585
<table class="docutils field-list" frame="void" rules="none">
@@ -173,7 +173,7 @@ <h3>Normal Client Request Concept<a class="headerlink" href="#normal-client-requ
173173
</div>
174174
<div class="section" id="pod-server-request-concept">
175175
<h3>Pod Server Request Concept<a class="headerlink" href="#pod-server-request-concept" title="Permalink to this headline"></a></h3>
176-
<p>A type models the Pod Server Request Concept if it models the <a class="reference external" href="message.html#message-concept">Message Concept</a>
176+
<p>A type models the Pod Server Request Concept if it models the <a class="reference external" href="../in_depth/message.html#message-concept">Message Concept</a>
177177
and also supports the following constructs.</p>
178178
<p><strong>Legend</strong></p>
179179
<table class="docutils field-list" frame="void" rules="none">
@@ -436,7 +436,7 @@ <h3>Navigation</h3>
436436
</div>
437437
<div class="footer">
438438
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
439-
Last updated on Jun 27, 2013.
439+
Last updated on Jun 28, 2013.
440440
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
441441
</div>
442442
</body>

libs/network/doc/html/reference/http_response.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h1>HTTP Response<a class="headerlink" href="#http-response" title="Permalink to
6363
with the HTTP Response objects.</p>
6464
<div class="section" id="response-concept">
6565
<h2>Response Concept<a class="headerlink" href="#response-concept" title="Permalink to this headline"></a></h2>
66-
<p>A type models the Response Concept if it models the <a class="reference external" href="message.html#message-concept">Message Concept</a> and also
66+
<p>A type models the Response Concept if it models the <a class="reference external" href="../in_depth/message.html#message-concept">Message Concept</a> and also
6767
supports the following constructs.</p>
6868
<p><strong>Legend</strong></p>
6969
<table class="docutils field-list" frame="void" rules="none">
@@ -462,7 +462,7 @@ <h3>Navigation</h3>
462462
</div>
463463
<div class="footer">
464464
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
465-
Last updated on Jun 27, 2013.
465+
Last updated on Jun 28, 2013.
466466
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
467467
</div>
468468
</body>

libs/network/doc/html/reference/http_server.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ <h2>Asynchronous Servers<a class="headerlink" href="#asynchronous-servers" title
461461
</div></blockquote>
462462
<p>The asynchronous server is meant to allow for better scalability in terms of the
463463
number of concurrent connections and for performing asynchronous actions within
464-
the handlers. If your applacation does not need to write out information
464+
the handlers. If your application does not need to write out information
465465
asynchronously or perform potentially long computations, then the synchronous
466466
server gives a generally better performance profile than the asynchronous
467467
server.</p>
@@ -721,7 +721,7 @@ <h3>Navigation</h3>
721721
</div>
722722
<div class="footer">
723723
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
724-
Last updated on Jun 27, 2013.
724+
Last updated on Jun 28, 2013.
725725
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
726726
</div>
727727
</body>

libs/network/doc/html/references.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ <h3>Navigation</h3>
116116
</div>
117117
<div class="footer">
118118
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
119-
Last updated on Jun 27, 2013.
119+
Last updated on Jun 28, 2013.
120120
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
121121
</div>
122122
</body>

libs/network/doc/html/search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ <h3>Navigation</h3>
9494
</div>
9595
<div class="footer">
9696
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
97-
Last updated on Jun 27, 2013.
97+
Last updated on Jun 28, 2013.
9898
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
9999
</div>
100100
</body>

libs/network/doc/html/searchindex.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/network/doc/html/techniques.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ <h3>Navigation</h3>
109109
</div>
110110
<div class="footer">
111111
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
112-
Last updated on Jun 27, 2013.
112+
Last updated on Jun 28, 2013.
113113
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
114114
</div>
115115
</body>

libs/network/doc/html/techniques/directives.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ <h3>Navigation</h3>
184184
</div>
185185
<div class="footer">
186186
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
187-
Last updated on Jun 27, 2013.
187+
Last updated on Jun 28, 2013.
188188
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
189189
</div>
190190
</body>

libs/network/doc/html/techniques/polymorphism.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ <h3>Navigation</h3>
182182
</div>
183183
<div class="footer">
184184
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
185-
Last updated on Jun 27, 2013.
185+
Last updated on Jun 28, 2013.
186186
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
187187
</div>
188188
</body>

libs/network/doc/html/techniques/tag_metafunctions.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ <h3>Navigation</h3>
258258
</div>
259259
<div class="footer">
260260
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
261-
Last updated on Jun 27, 2013.
261+
Last updated on Jun 28, 2013.
262262
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
263263
</div>
264264
</body>

0 commit comments

Comments
 (0)