Skip to content

Commit 38c117f

Browse files
TravisBotTravisBot
authored andcommitted
Updated website (automated commit) – Friday, 03. April 2015 09:20PM
1 parent 22dc273 commit 38c117f

38 files changed

+11574
-180
lines changed

_static/basic.css

Lines changed: 68 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -197,7 +197,10 @@ h3:hover > a.headerlink,
197197
h4:hover > a.headerlink,
198198
h5:hover > a.headerlink,
199199
h6:hover > a.headerlink,
200-
dt: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 {
201204
visibility: visible;
202205
}
203206

@@ -314,6 +317,13 @@ table.docutils {
314317
border-collapse: collapse;
315318
}
316319

320+
table caption span.caption-number {
321+
font-style: italic;
322+
}
323+
324+
table caption span.caption-text {
325+
}
326+
317327
table.docutils td, table.docutils th {
318328
padding: 1px 8px 1px 5px;
319329
border-top: 0;
@@ -344,6 +354,25 @@ table.citation td {
344354
border-bottom: none;
345355
}
346356

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+
347376
/* -- other body styles ----------------------------------------------------- */
348377

349378
ol.arabic {
@@ -406,6 +435,10 @@ dl.glossary dt {
406435
font-size: 1.3em;
407436
}
408437

438+
.sig-paren {
439+
font-size: larger;
440+
}
441+
409442
.versionmodified {
410443
font-style: italic;
411444
}
@@ -471,22 +504,51 @@ table.highlighttable td {
471504
padding: 0 0.5em 0 0.5em;
472505
}
473506

474-
tt.descname {
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 {
475537
background-color: transparent;
476538
font-weight: bold;
477539
font-size: 1.2em;
478540
}
479541

480-
tt.descclassname {
542+
code.descclassname {
481543
background-color: transparent;
482544
}
483545

484-
tt.xref, a tt {
546+
code.xref, a code {
485547
background-color: transparent;
486548
font-weight: bold;
487549
}
488550

489-
h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt {
551+
h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
490552
background-color: transparent;
491553
}
492554

_static/doctools.js

Lines changed: 27 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-2014 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -91,6 +91,30 @@ 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+
94118
/**
95119
* Small JavaScript module for the documentation.
96120
*/
@@ -152,9 +176,10 @@ var Documentation = {
152176

153177
/**
154178
* workaround a firefox stupidity
179+
* see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075
155180
*/
156181
fixFirefoxAnchorBug : function() {
157-
if (document.location.hash && $.browser.mozilla)
182+
if (document.location.hash)
158183
window.setTimeout(function() {
159184
document.location.href += '';
160185
}, 10);

_static/down-pressed.png

-21 Bytes
Loading

_static/down.png

-16 Bytes
Loading

_static/file.png

-34 Bytes
Loading

0 commit comments

Comments
 (0)