Skip to content

Commit dfbf28c

Browse files
committed
Rebuild dev docs at master=1b9e791
1 parent bddf8c2 commit dfbf28c

File tree

660 files changed

+28858
-12824
lines changed

Some content is hidden

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

660 files changed

+28858
-12824
lines changed

dev/.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: 96192945f5a847c90e85df04f0f90d4e
3+
config: e63c2b988a3b44ccb911a6df83005e54
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

dev/_static/basic.css

Lines changed: 6 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2015 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
*/
@@ -197,10 +197,7 @@ h3:hover > a.headerlink,
197197
h4:hover > a.headerlink,
198198
h5:hover > a.headerlink,
199199
h6:hover > a.headerlink,
200-
dt:hover > a.headerlink,
201-
caption:hover > a.headerlink,
202-
p.caption:hover > a.headerlink,
203-
div.code-block-caption:hover > a.headerlink {
200+
dt:hover > a.headerlink {
204201
visibility: visible;
205202
}
206203

@@ -317,13 +314,6 @@ table.docutils {
317314
border-collapse: collapse;
318315
}
319316

320-
table caption span.caption-number {
321-
font-style: italic;
322-
}
323-
324-
table caption span.caption-text {
325-
}
326-
327317
table.docutils td, table.docutils th {
328318
padding: 1px 8px 1px 5px;
329319
border-top: 0;
@@ -354,25 +344,6 @@ table.citation td {
354344
border-bottom: none;
355345
}
356346

357-
/* -- figures --------------------------------------------------------------- */
358-
359-
div.figure {
360-
margin: 0.5em;
361-
padding: 0.5em;
362-
}
363-
364-
div.figure p.caption {
365-
padding: 0.3em;
366-
}
367-
368-
div.figure p.caption span.caption-number {
369-
font-style: italic;
370-
}
371-
372-
div.figure p.caption span.caption-text {
373-
}
374-
375-
376347
/* -- other body styles ----------------------------------------------------- */
377348

378349
ol.arabic {
@@ -435,10 +406,6 @@ dl.glossary dt {
435406
font-size: 1.3em;
436407
}
437408

438-
.sig-paren {
439-
font-size: larger;
440-
}
441-
442409
.versionmodified {
443410
font-style: italic;
444411
}
@@ -504,51 +471,22 @@ table.highlighttable td {
504471
padding: 0 0.5em 0 0.5em;
505472
}
506473

507-
div.code-block-caption {
508-
padding: 2px 5px;
509-
font-size: small;
510-
}
511-
512-
div.code-block-caption code {
513-
background-color: transparent;
514-
}
515-
516-
div.code-block-caption + div > div.highlight > pre {
517-
margin-top: 0;
518-
}
519-
520-
div.code-block-caption span.caption-number {
521-
padding: 0.1em 0.3em;
522-
font-style: italic;
523-
}
524-
525-
div.code-block-caption span.caption-text {
526-
}
527-
528-
div.literal-block-wrapper {
529-
padding: 1em 1em 0;
530-
}
531-
532-
div.literal-block-wrapper div.highlight {
533-
margin: 0;
534-
}
535-
536-
code.descname {
474+
tt.descname {
537475
background-color: transparent;
538476
font-weight: bold;
539477
font-size: 1.2em;
540478
}
541479

542-
code.descclassname {
480+
tt.descclassname {
543481
background-color: transparent;
544482
}
545483

546-
code.xref, a code {
484+
tt.xref, a tt {
547485
background-color: transparent;
548486
font-weight: bold;
549487
}
550488

551-
h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
489+
h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt {
552490
background-color: transparent;
553491
}
554492

dev/_static/doctools.js

Lines changed: 2 additions & 27 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-2015 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
*/
@@ -91,30 +91,6 @@ jQuery.fn.highlightText = function(text, className) {
9191
});
9292
};
9393

94-
/*
95-
* backward compatibility for jQuery.browser
96-
* This will be supported until firefox bug is fixed.
97-
*/
98-
if (!jQuery.browser) {
99-
jQuery.uaMatch = function(ua) {
100-
ua = ua.toLowerCase();
101-
102-
var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
103-
/(webkit)[ \/]([\w.]+)/.exec(ua) ||
104-
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
105-
/(msie) ([\w.]+)/.exec(ua) ||
106-
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) ||
107-
[];
108-
109-
return {
110-
browser: match[ 1 ] || "",
111-
version: match[ 2 ] || "0"
112-
};
113-
};
114-
jQuery.browser = {};
115-
jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true;
116-
}
117-
11894
/**
11995
* Small JavaScript module for the documentation.
12096
*/
@@ -176,10 +152,9 @@ var Documentation = {
176152

177153
/**
178154
* workaround a firefox stupidity
179-
* see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075
180155
*/
181156
fixFirefoxAnchorBug : function() {
182-
if (document.___location.hash)
157+
if (document.___location.hash && $.browser.mozilla)
183158
window.setTimeout(function() {
184159
document.___location.href += '';
185160
}, 10);

dev/_static/down-pressed.png

21 Bytes
Loading

dev/_static/down.png

16 Bytes
Loading

dev/_static/file.png

34 Bytes
Loading

dev/_static/minus.png

26 Bytes
Loading

dev/_static/plus.png

26 Bytes
Loading

dev/_static/searchtools.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilties for the full-text search.
66
*
7-
* :copyright: Copyright 2007-2015 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
*/
@@ -439,7 +439,7 @@ var Search = {
439439
dataType: "text",
440440
complete: function(jqxhr, textstatus) {
441441
var data = jqxhr.responseText;
442-
if (data !== '' && data !== undefined) {
442+
if (data !== '') {
443443
listItem.append(Search.makeSearchSummary(data, searchterms, hlterms));
444444
}
445445
Search.output.append(listItem);

dev/_static/up-pressed.png

27 Bytes
Loading

0 commit comments

Comments
 (0)