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

Commitb540ff3

Browse files
committed
Generate documentation for 0.11.2.
1 parenteb4a810 commitb540ff3

Some content is hidden

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

41 files changed

+620
-10693
lines changed

‎libs/network/doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
# The short X.Y version.
5555
version='0.11'
5656
# The full version, including alpha/beta/rc tags.
57-
release='0.11.1'
57+
release='0.11.2'
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.
@@ -99,7 +99,7 @@
9999

100100
# The name for this set of Sphinx documents. If None, it defaults to
101101
# "<project> v<release> documentation".
102-
html_title='cpp-netlib v0.11.1'
102+
html_title='cpp-netlib v0.11.2'
103103

104104
# A shorter title for the navigation bar. Default is the same as html_title.
105105
# html_short_title = 'cpp-netlib'

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

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

10+
v0.11.2
11+
~~~~~~~
12+
* Support a source_port setting for connections made by the client per-request.
13+
* Allow using cpp-netlib without OpenSSL.
14+
* Fix build breakage for Visual Studio 2015.
15+
* Add more options for HTTP client use of SSL/TLS options/ciphers.
16+
* Made client_get_timeout_test less flaky.
17+
* Fixes to URI encoding issues with multibyte strings.
18+
* Make cpp-netlib not crash on unstable networks.
19+
* Allow parsing empty query parameters (`#499`_).
20+
* CMake build changes to simplify dependencies on cppnetlib-client-connections.
21+
* Handle EOF correctly (`#496`_).
22+
* Fix fileserver example to chunk data correctly.
23+
* Copy hostname to avoid dangling reference to a temporary request object. (`#482`_)
24+
* Catch exceptions in parse_headers to avoid propagating issues in parsing upwards.
25+
* Fix some GCC warnings on signed/unsigned comparison.
26+
* Support environment variable-based peer verification (via OpenSSL).
27+
* Support IPv6 connections.
28+
* Support certificate-based verification, and option to always verify hosts.
29+
30+
.. _`#499`: https://github.com/cpp-netlib/cpp-netlib/issues/499
31+
.. _`#496`: https://github.com/cpp-netlib/cpp-netlib/issues/496
32+
.. _`#482`: https://github.com/cpp-netlib/cpp-netlib/issues/482
33+
34+
1035
v0.11.1
1136
~~~~~~~
1237
* Add support for request timeouts.

‎libs/network/doc/html/_static/basic.css

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -89,6 +89,7 @@ div.sphinxsidebar #searchbox input[type="submit"] {
8989

9090
img {
9191
border:0;
92+
max-width:100%;
9293
}
9394

9495
/* -- search page ----------------------------------------------------------- */
@@ -401,10 +402,6 @@ dl.glossary dt {
401402
margin:0;
402403
}
403404

404-
.refcount {
405-
color:#060;
406-
}
407-
408405
.optional {
409406
font-size:1.3em;
410407
}

‎libs/network/doc/html/_static/doctools.js

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for all documentation.
66
*
7-
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -32,7 +32,7 @@ if (!window.console || !console.firebug) {
3232
*/
3333
jQuery.urldecode=function(x){
3434
returndecodeURIComponent(x).replace(/\+/g,' ');
35-
}
35+
};
3636

3737
/**
3838
* small helper function to urlencode strings
@@ -61,18 +61,6 @@ jQuery.getQueryParameters = function(s) {
6161
returnresult;
6262
};
6363

64-
/**
65-
* small function to check if an array contains
66-
* a given item.
67-
*/
68-
jQuery.contains=function(arr,item){
69-
for(vari=0;i<arr.length;i++){
70-
if(arr[i]==item)
71-
returntrue;
72-
}
73-
returnfalse;
74-
};
75-
7664
/**
7765
* highlight a given string on a jquery object by wrapping it in
7866
* span elements with the given class name.
@@ -180,6 +168,9 @@ var Documentation = {
180168
varterms=(params.highlight) ?params.highlight[0].split(/\s+/) :[];
181169
if(terms.length){
182170
varbody=$('div.body');
171+
if(!body.length){
172+
body=$('body');
173+
}
183174
window.setTimeout(function(){
184175
$.each(terms,function(){
185176
body.highlightText(this.toLowerCase(),'highlighted');

‎libs/network/doc/html/_static/epub.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- default theme.
66
*
7-
* :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp