Skip to content

Documentation updates. #258

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 28, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion libs/network/doc/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@
Downloading an official release
===============================

All stable versions of :mod:`cpp-netlib` can be downloaded from
You can find links to the latest official release from the project's official
website:

http://cpp-netlib.org/

All previous stable versions of :mod:`cpp-netlib` can be downloaded from
Github_ from this url:

http://github.com/cpp-netlib/cpp-netlib/downloads
Expand Down
Binary file modified libs/network/doc/html/.doctrees/environment.pickle
Binary file not shown.
Binary file modified libs/network/doc/html/.doctrees/getting_started.doctree
Binary file not shown.
Binary file modified libs/network/doc/html/.doctrees/index.doctree
Binary file not shown.
Binary file modified libs/network/doc/html/.doctrees/reference/http_request.doctree
Binary file not shown.
Binary file modified libs/network/doc/html/.doctrees/reference/http_response.doctree
Binary file not shown.
Binary file modified libs/network/doc/html/.doctrees/reference/http_server.doctree
Binary file not shown.
Binary file modified libs/network/doc/html/.doctrees/whats_new.doctree
Binary file not shown.
7 changes: 6 additions & 1 deletion libs/network/doc/html/_sources/getting_started.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@
Downloading an official release
===============================

All stable versions of :mod:`cpp-netlib` can be downloaded from
You can find links to the latest official release from the project's official
website:

http://cpp-netlib.org/

All previous stable versions of :mod:`cpp-netlib` can be downloaded from
Github_ from this url:

http://github.com/cpp-netlib/cpp-netlib/downloads
Expand Down
5 changes: 5 additions & 0 deletions libs/network/doc/html/_sources/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ http://cpp-netlib.org/.

**Download**

You can get the latest official version of the library from the official
project website at:

http://cpp-netlib.org/

This version of :mod:`cpp-netlib` is tagged as cpp-netlib-0.10.0 in the GitHub_
repository. You can find more information about the progress of the development
by checking our GitHub_ project page at:
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/_sources/reference/http_request.txt
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ and also supports the following constructs.
| ``r.body`` | ``S`` | The body of the request. |
+-------------------------------+--------+-------------------------------------+

.. _Message Concept: message.html#message-concept
.. _Message Concept: ../in_depth/message.html#message-concept

Directives
----------
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/_sources/reference/http_response.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ supports the following constructs.
| | | ``r``. |
+-------------------------------------+----------+-----------------------------+

.. _Message Concept: message.html#message-concept
.. _Message Concept: ../in_depth/message.html#message-concept

Directives
----------
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/_sources/reference/http_server.txt
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ synchronous server implementation in three ways:

The asynchronous server is meant to allow for better scalability in terms of the
number of concurrent connections and for performing asynchronous actions within
the handlers. If your applacation does not need to write out information
the handlers. If your application does not need to write out information
asynchronously or perform potentially long computations, then the synchronous
server gives a generally better performance profile than the asynchronous
server.
Expand Down
16 changes: 16 additions & 0 deletions libs/network/doc/html/_sources/whats_new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@
What's New
************

:mod:`cpp-netlib` 0.10
----------------------

v0.10.0
~~~~~~~
* Added support for more HTTP status codes (206, 408, 412, 416, 507).
* Refactored the parser for chunked encoding.
* Fixed parsing chunked encoding if the response body has ``<chunk>CLRF<hex>CLRF<data>``.
* Added librt dependency on Linux.
* Check the callback in the asynchronous client before calling it.
* Fixed issues `#110`_, `#168`_, `#213`_.

.. _`#110`: https://github.com/cpp-netlib/cpp-netlib/issues/110
.. _`#168`: https://github.com/cpp-netlib/cpp-netlib/issues/168
.. _`#213`: https://github.com/cpp-netlib/cpp-netlib/issues/213

:mod:`cpp-netlib` 0.9
---------------------

Expand Down
6 changes: 5 additions & 1 deletion libs/network/doc/html/contents.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ <h3>Navigation</h3>
<li class="toctree-l1"><a class="reference internal" href="index.html#hello-world">Hello, world!</a></li>
<li class="toctree-l1"><a class="reference internal" href="index.html#want-to-learn-more">Want to learn more?</a></li>
<li class="toctree-l1"><a class="reference internal" href="whats_new.html">What&#8217;s New</a><ul>
<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>
<li class="toctree-l3"><a class="reference internal" href="whats_new.html#v0-10-0">v0.10.0</a></li>
</ul>
</li>
<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>
<li class="toctree-l3"><a class="reference internal" href="whats_new.html#v0-9-5">v0.9.5</a></li>
<li class="toctree-l3"><a class="reference internal" href="whats_new.html#v0-9-4">v0.9.4</a></li>
Expand Down Expand Up @@ -266,7 +270,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/examples/http/atom_reader.html
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/examples/http/http_client.html
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/examples/http/simple_wget.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/examples/http/twitter_search.html
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
8 changes: 6 additions & 2 deletions libs/network/doc/html/getting_started.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ <h3>Navigation</h3>
<span id="id1"></span><h1>Getting Started<a class="headerlink" href="#getting-started" title="Permalink to this headline">¶</a></h1>
<div class="section" id="downloading-an-official-release">
<h2>Downloading an official release<a class="headerlink" href="#downloading-an-official-release" title="Permalink to this headline">¶</a></h2>
<p>All stable versions of <tt class="xref py py-mod docutils literal"><span class="pre">cpp-netlib</span></tt> can be downloaded from
<p>You can find links to the latest official release from the project&#8217;s official
website:</p>
<blockquote>
<div><a class="reference external" href="http://cpp-netlib.org/">http://cpp-netlib.org/</a></div></blockquote>
<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
<a class="reference external" href="http://github.com/cpp-netlib/cpp-netlib/downloads">Github</a> from this url:</p>
<blockquote>
<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>
Expand Down Expand Up @@ -276,7 +280,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/history.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/in_depth.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/in_depth/http.html
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/in_depth/http_client_tags.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/in_depth/message.html
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/in_depth/uri.html
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
6 changes: 5 additions & 1 deletion libs/network/doc/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ <h1>Getting cpp-netlib<a class="headerlink" href="#getting-cpp-netlib" title="Pe
<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
<a class="reference external" href="http://cpp-netlib.org/">http://cpp-netlib.org/</a>.</p>
<p><strong>Download</strong></p>
<p>You can get the latest official version of the library from the official
project website at:</p>
<blockquote>
<div><a class="reference external" href="http://cpp-netlib.org/">http://cpp-netlib.org/</a></div></blockquote>
<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>
repository. You can find more information about the progress of the development
by checking our <a class="reference external" href="http://github.com/">GitHub</a> project page at:</p>
Expand Down Expand Up @@ -198,7 +202,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
Binary file modified libs/network/doc/html/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion libs/network/doc/html/reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/reference/http_client.html
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions libs/network/doc/html/reference/http_request.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h2>Request Concepts<a class="headerlink" href="#request-concepts" title="Permal
Concept</a>, otherwise it chooses the <a class="reference internal" href="#normal-client-request-concept">Normal Client Request Concept</a>.</p>
<div class="section" id="normal-client-request-concept">
<h3>Normal Client Request Concept<a class="headerlink" href="#normal-client-request-concept" title="Permalink to this headline">¶</a></h3>
<p>A type models the Normal Client Request Concept if it models the <a class="reference external" href="message.html#message-concept">Message
<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
Concept</a> and also supports the following constructs.</p>
<p><strong>Legend</strong></p>
<table class="docutils field-list" frame="void" rules="none">
Expand Down Expand Up @@ -173,7 +173,7 @@ <h3>Normal Client Request Concept<a class="headerlink" href="#normal-client-requ
</div>
<div class="section" id="pod-server-request-concept">
<h3>Pod Server Request Concept<a class="headerlink" href="#pod-server-request-concept" title="Permalink to this headline">¶</a></h3>
<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>
<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>
and also supports the following constructs.</p>
<p><strong>Legend</strong></p>
<table class="docutils field-list" frame="void" rules="none">
Expand Down Expand Up @@ -436,7 +436,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions libs/network/doc/html/reference/http_response.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ <h1>HTTP Response<a class="headerlink" href="#http-response" title="Permalink to
with the HTTP Response objects.</p>
<div class="section" id="response-concept">
<h2>Response Concept<a class="headerlink" href="#response-concept" title="Permalink to this headline">¶</a></h2>
<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
<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
supports the following constructs.</p>
<p><strong>Legend</strong></p>
<table class="docutils field-list" frame="void" rules="none">
Expand Down Expand Up @@ -462,7 +462,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions libs/network/doc/html/reference/http_server.html
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ <h2>Asynchronous Servers<a class="headerlink" href="#asynchronous-servers" title
</div></blockquote>
<p>The asynchronous server is meant to allow for better scalability in terms of the
number of concurrent connections and for performing asynchronous actions within
the handlers. If your applacation does not need to write out information
the handlers. If your application does not need to write out information
asynchronously or perform potentially long computations, then the synchronous
server gives a generally better performance profile than the asynchronous
server.</p>
Expand Down Expand Up @@ -721,7 +721,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/references.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion libs/network/doc/html/techniques.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/techniques/directives.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion libs/network/doc/html/techniques/polymorphism.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ <h3>Navigation</h3>
</div>
<div class="footer">
&copy; Copyright 2008-2013, Glyn Matthews, Dean Michael Berris; 2013 Google, Inc..
Last updated on Jun 27, 2013.
Last updated on Jun 28, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
Expand Down
Loading