Skip to content

Commit bf0feb3

Browse files
committed
Updated doc release: development
1 parent 303350e commit bf0feb3

39 files changed

+11083
-584
lines changed

development/.buildinfo

Lines changed: 2 additions & 2 deletions
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: 505f0eb99280abbb76e4dea000562d38
4-
tags: fbb0d17656682115ca4d033fb2f83ba1
3+
config: 2184d67a629dc785a387d6f7d50c5f55
4+
tags: 645f666f9bcd5a90fca523b33c5a78b7

development/_static/basic.css

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2013 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,14 +402,14 @@ dl.glossary dt {
401402
margin: 0;
402403
}
403404

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

409+
.sig-paren {
410+
font-size: larger;
411+
}
412+
412413
.versionmodified {
413414
font-style: italic;
414415
}
@@ -474,22 +475,36 @@ table.highlighttable td {
474475
padding: 0 0.5em 0 0.5em;
475476
}
476477

477-
tt.descname {
478+
div.code-block-caption {
479+
padding: 2px 5px;
480+
font-size: small;
481+
}
482+
483+
div.code-block-filename code {
484+
background-color: transparent;
485+
}
486+
487+
div.code-block-caption + pre,
488+
div.code-block-caption + div.highlight > pre {
489+
margin-top: 0;
490+
}
491+
492+
code.descname {
478493
background-color: transparent;
479494
font-weight: bold;
480495
font-size: 1.2em;
481496
}
482497

483-
tt.descclassname {
498+
code.descclassname {
484499
background-color: transparent;
485500
}
486501

487-
tt.xref, a tt {
502+
code.xref, a code {
488503
background-color: transparent;
489504
font-weight: bold;
490505
}
491506

492-
h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt {
507+
h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
493508
background-color: transparent;
494509
}
495510

development/_static/default.css

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- default theme.
66
*
7-
* :copyright: Copyright 2007-2013 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
*/
@@ -227,7 +227,7 @@ pre {
227227
border-right: none;
228228
}
229229

230-
tt {
230+
code {
231231
background-color: #ecf0f3;
232232
padding: 0 1px 0 1px;
233233
font-size: 0.95em;
@@ -237,11 +237,11 @@ th {
237237
background-color: #ede;
238238
}
239239

240-
.warning tt {
240+
.warning code {
241241
background: #efc2c2;
242242
}
243243

244-
.note tt {
244+
.note code {
245245
background: #d6d6d6;
246246
}
247247

@@ -253,4 +253,9 @@ div.viewcode-block:target {
253253
background-color: #f4debf;
254254
border-top: 1px solid #ac9;
255255
border-bottom: 1px solid #ac9;
256+
}
257+
258+
div.code-block-caption {
259+
color: #efefef;
260+
background-color: #1c4e63;
256261
}

development/_static/doctools.js

Lines changed: 5 additions & 2 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-2013 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
return decodeURIComponent(x).replace(/\+/g, ' ');
35-
}
35+
};
3636

3737
/**
3838
* small helper function to urlencode strings
@@ -168,6 +168,9 @@ var Documentation = {
168168
var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : [];
169169
if (terms.length) {
170170
var body = $('div.body');
171+
if (!body.length) {
172+
body = $('body');
173+
}
171174
window.setTimeout(function() {
172175
$.each(terms, function() {
173176
body.highlightText(this.toLowerCase(), 'highlighted');
-21 Bytes
Loading

development/_static/down.png

-16 Bytes
Loading

development/_static/file.png

-34 Bytes
Loading

0 commit comments

Comments
 (0)