8000 Update docs · Powercoder64/ffmpeg-python@c65c03b · GitHub
[go: up one dir, main page]

Skip to content

Commit c65c03b

Browse files
committed
Update docs
1 parent 06d4a6f commit c65c03b

14 files changed

+648
-457
lines changed

doc/html/.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: d3019c15b90af9d4beabe6f0fbc238a9
3+
config: ddab88374862866bf6c9e1a22614e4c7
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

doc/html/_static/basic.css

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -82,9 +82,21 @@ div.sphinxsidebar input {
8282
}
8383

8484
div.sphinxsidebar #searchbox input[type="text"] {
85-
width: 170px;
85+
float: left;
86+
width: 80%;
87+
padding: 0.25em;
88+
box-sizing: border-box;
89+
}
90+
91+
div.sphinxsidebar #searchbox input[type="submit"] {
92+
float: left;
93+
width: 20%;
94+
border-left: none;
95+
padding: 0.25em;
96+
box-sizing: border-box;
8697
}
8798

99+
88100
img {
89101
border: 0;
90102
max-width: 100%;
@@ -199,6 +211,11 @@ table.modindextable td {
199211

200212
/* -- general body styles --------------------------------------------------- */
201213

214+
div.body {
215+
min-width: 450px;
216+
max-width: 800px;
217+
}
218+
202219
div.body p, div.body dd, div.body li, div.body blockquote {
203220
-moz-hyphens: auto;
204221
-ms-hyphens: auto;
@@ -332,6 +349,11 @@ table.docutils {
332349
border-collapse: collapse;
333350
}
334351

352+
table.align-center {
353+
margin-left: auto;
354+
margin-right: auto;
355+
}
356+
335357
table caption span.caption-number {
336358
font-style: italic;
337359
}

doc/html/_static/doctools.js

Lines changed: 5 additions & 3 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-2017 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -70,7 +70,9 @@ jQuery.fn.highlightText = function(text, className) {
7070
if (node.nodeType === 3) {
7171
var val = node.nodeValue;
7272
var pos = val.toLowerCase().indexOf(text);
73-
if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) {
73+
if (pos >= 0 &&
74+
!jQuery(node.parentNode).hasClass(className) &&
75+
!jQuery(node.parentNode).hasClass("nohighlight")) {
7476
var span;
7577
var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg");
7678
if (isInSVG) {
@@ -204,7 +206,7 @@ var Documentation = {
204206
* see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075
205207
*/
206208
fixFirefoxAnchorBug : function() {
207-
if (document.location.hash)
209+
if (document.location.hash && $.browser.mozilla)
208210
window.setTimeout(function() {
209211
document.location.href += '';
210212
}, 10);
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
var DOCUMENTATION_OPTIONS = {
2+
URL_ROOT: '',
3+
VERSION: '',
4+
LANGUAGE: 'None',
5+
COLLAPSE_INDEX: false,
6+
FILE_SUFFIX: '.html',
7+
HAS_SOURCE: true,
8+
SOURCELINK_SUFFIX: '.txt'
9+
};

0 commit comments

Comments
 (0)
0