Skip to content

Commit 8f339bb

Browse files
committed
Update doc
1 parent 3eee50b commit 8f339bb

28 files changed

+5959
-3807
lines changed

manual/en/html/README.html

Lines changed: 84 additions & 84 deletions
Large diffs are not rendered by default.

manual/en/html/_sources/aria2c.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1400,7 +1400,7 @@ Advanced Options
14001400
.. option:: --gid=<GID>
14011401

14021402
Set GID manually. aria2 identifies each download by the ID called
1403-
GID. The GID must be hex string of 16 characters, thus [0-9a-zA-Z]
1403+
GID. The GID must be hex string of 16 characters, thus [0-9a-fA-F]
14041404
are allowed and leading zeros must not be stripped. The GID all 0 is
14051405
reserved and must not be used. The GID must be unique, otherwise
14061406
error is reported and the download is not added. This option is

manual/en/html/_static/basic.css

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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
}

manual/en/html/_static/doctools.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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) {
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: document.getElementById("documentation_options").getAttribute('data-url_root'),
3+
VERSION: '1.34.0',
4+
LANGUAGE: 'None',
5+
COLLAPSE_INDEX: false,
6+
FILE_SUFFIX: '.html',
7+
HAS_SOURCE: true,
8+
SOURCELINK_SUFFIX: '.txt'
9+
};

manual/en/html/_static/websupport.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@
301301
li.hide();
302302

303303
// Determine where in the parents children list to insert this comment.
304-
for(i=0; i < siblings.length; i++) {
304+
for(var i=0; i < siblings.length; i++) {
305305
if (comp(comment, siblings[i]) <= 0) {
306306
$('#cd' + siblings[i].id)
307307
.parent()

manual/en/html/aria2c.html

Lines changed: 1055 additions & 1055 deletions
Large diffs are not rendered by default.

manual/en/html/genindex.html

Lines changed: 84 additions & 84 deletions
Large diffs are not rendered by default.

manual/en/html/libaria2.html

Lines changed: 329 additions & 329 deletions
Large diffs are not rendered by default.

manual/en/html/objects.inv

370 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)