Skip to content

Commit a2e6d3e

Browse files
committed
Deployed 0ddc4bd with MkDocs version: 1.6.1
1 parent cbfacf0 commit a2e6d3e

Some content is hidden

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

54 files changed

+6322
-4453
lines changed

.coverage-tmp.html

+49
Large diffs are not rendered by default.

404.html

+1-1
Large diffs are not rendered by default.

assets/_markdown_exec_pyodide.css

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ html[data-theme="dark"] {
4040
.pyodide-output {
4141
width: 100%;
4242
margin-bottom: -15px;
43+
min-height: 46px;
4344
max-height: 400px
4445
}
4546

assets/_mkdocstrings.css

+36-2
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,33 @@
2626
float: right;
2727
}
2828

29+
/* Parameter headings must be inline, not blocks. */
30+
.doc-heading-parameter {
31+
display: inline;
32+
}
33+
34+
/* Prefer space on the right, not the left of parameter permalinks. */
35+
.doc-heading-parameter .headerlink {
36+
margin-left: 0 !important;
37+
margin-right: 0.2rem;
38+
}
39+
40+
/* Backward-compatibility: docstring section titles in bold. */
41+
.doc-section-title {
42+
font-weight: bold;
43+
}
44+
2945
/* Symbols in Navigation and ToC. */
30-
:root,
46+
:root, :host,
3147
[data-md-color-scheme="default"] {
48+
--doc-symbol-parameter-fg-color: #df50af;
3249
--doc-symbol-attribute-fg-color: #953800;
3350
--doc-symbol-function-fg-color: #8250df;
3451
--doc-symbol-method-fg-color: #8250df;
3552
--doc-symbol-class-fg-color: #0550ae;
3653
--doc-symbol-module-fg-color: #5cad0f;
3754

55+
--doc-symbol-parameter-bg-color: #df50af1a;
3856
--doc-symbol-attribute-bg-color: #9538001a;
3957
--doc-symbol-function-bg-color: #8250df1a;
4058
--doc-symbol-method-bg-color: #8250df1a;
@@ -43,12 +61,14 @@
4361
}
4462

4563
[data-md-color-scheme="slate"] {
64+
--doc-symbol-parameter-fg-color: #ffa8cc;
4665
--doc-symbol-attribute-fg-color: #ffa657;
4766
--doc-symbol-function-fg-color: #d2a8ff;
4867
--doc-symbol-method-fg-color: #d2a8ff;
4968
--doc-symbol-class-fg-color: #79c0ff;
5069
--doc-symbol-module-fg-color: #baff79;
5170

71+
--doc-symbol-parameter-bg-color: #ffa8cc1a;
5272
--doc-symbol-attribute-bg-color: #ffa6571a;
5373
--doc-symbol-function-bg-color: #d2a8ff1a;
5474
--doc-symbol-method-bg-color: #d2a8ff1a;
@@ -63,6 +83,15 @@ code.doc-symbol {
6383
font-weight: bold;
6484
}
6585

86+
code.doc-symbol-parameter {
87+
color: var(--doc-symbol-parameter-fg-color);
88+
background-color: var(--doc-symbol-parameter-bg-color);
89+
}
90+
91+
code.doc-symbol-parameter::after {
92+
content: "param";
93+
}
94+
6695
code.doc-symbol-attribute {
6796
color: var(--doc-symbol-attribute-fg-color);
6897
background-color: var(--doc-symbol-attribute-bg-color);
@@ -106,4 +135,9 @@ code.doc-symbol-module {
106135

107136
code.doc-symbol-module::after {
108137
content: "mod";
109-
}
138+
}
139+
140+
.doc-signature .autorefs {
141+
color: inherit;
142+
border-bottom: 1px dotted currentcolor;
143+
}

assets/javascripts/bundle.203fd0bc.min.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/bundle.8e8db93a.min.js

-3
This file was deleted.

assets/javascripts/workers/search.1e90e0fb.min.js renamed to assets/javascripts/workers/search.c7c1ca2c.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/stylesheets/main.12320a83.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/stylesheets/main.67c3bdf0.min.css

-1
This file was deleted.

changelog/index.html

+35-1
Large diffs are not rendered by default.

code_of_conduct/index.html

+35-1
Large diffs are not rendered by default.

configuration/index.html

+36-2
Large diffs are not rendered by default.

contributing/index.html

+38-5
Large diffs are not rendered by default.

coverage/covindex.html

Whitespace-only changes.

coverage/index.html

-15
This file was deleted.

credits/index.html

+35-1
Large diffs are not rendered by default.

css/mkdocstrings.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ a.autorefs-external::after {
1818

1919
height: 1em;
2020
width: 1em;
21-
background-color: var(--md-typeset-a-color);
21+
background-color: currentColor;
2222
}
2323

2424
a.external:hover::after,

css/timeago.css

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
timeago output is dynamic, which breaks when you print a page.
3+
4+
This CSS is only included when type: timeago
5+
and ensures fallback to type "iso_date" when printing.
6+
7+
*/
8+
9+
.git-revision-date-localized-plugin-iso_date { display: none }
10+
11+
@media print {
12+
.git-revision-date-localized-plugin-iso_date { display: inline }
13+
.git-revision-date-localized-plugin-timeago { display: none }
14+
}
15+

index.html

+39-6
Large diffs are not rendered by default.

js/feedback.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
const feedback = document.forms.feedback;
2+
feedback.hidden = false;
3+
4+
feedback.addEventListener("submit", function(ev) {
5+
ev.preventDefault();
6+
const commentElement = document.getElementById("feedback");
7+
commentElement.style.display = "block";
8+
feedback.firstElementChild.disabled = true;
9+
const data = ev.submitter.getAttribute("data-md-value");
10+
const note = feedback.querySelector(".md-feedback__note [data-md-value='" + data + "']");
11+
if (note) {
12+
note.hidden = false;
13+
}
14+
})

js/timeago.min.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/timeago_mkdocs_material.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// Script to ensure timeago keeps working when
2+
// used with mkdocs-material's instant loading feature
3+
4+
function getLocale(element) {
5+
var raw_locale = element.getAttribute('locale');
6+
var locale = {
7+
bn: 'bn_IN',
8+
en: 'en_US',
9+
hi: 'hi_IN',
10+
id: 'id_ID',
11+
nb: 'nb_NO',
12+
nn: 'nn_NO',
13+
pt: 'pt_BR',
14+
zh: 'zh_CN'
15+
}[raw_locale];
16+
return locale ? locale : raw_locale;
17+
}
18+
19+
if (typeof document$ !== "undefined") {
20+
document$.subscribe(function() {
21+
var nodes = document.querySelectorAll('.timeago');
22+
if (nodes.length > 0) {
23+
var locale = getLocale(nodes[0]);
24+
timeago.render(nodes, locale);
25+
}
26+
})
27+
} else {
28+
var nodes = document.querySelectorAll('.timeago');
29+
if (nodes.length > 0) {
30+
var locale = getLocale(nodes[0]);
31+
timeago.render(nodes, locale);
32+
}
33+
}

license/index.html

+36-2
Large diffs are not rendered by default.

objects.inv

6 Bytes
Binary file not shown.

reference/SUMMARY/index.html

+35-1
Large diffs are not rendered by default.

reference/aria2p/api/index.html

+481-439
Large diffs are not rendered by default.

reference/aria2p/cli/commands/add/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/commands/add_magnet/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/commands/add_metalink/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/commands/add_torrent/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/commands/call/index.html

+39-5
Large diffs are not rendered by default.

reference/aria2p/cli/commands/index.html

+35-1
Large diffs are not rendered by default.

reference/aria2p/cli/commands/listen/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/commands/pause/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/commands/purge/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/commands/remove/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/commands/resume/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/commands/show/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/commands/top/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/index.html

+35-1
Large diffs are not rendered by default.

reference/aria2p/cli/main/index.html

+37-3
Large diffs are not rendered by default.

reference/aria2p/cli/parser/index.html

+42-8
Large diffs are not rendered by default.

reference/aria2p/client/index.html

+1,689-1,361
Large diffs are not rendered by default.

reference/aria2p/debug/index.html

+69-22
Large diffs are not rendered by default.

reference/aria2p/downloads/index.html

+140-106
Large diffs are not rendered by default.

reference/aria2p/index.html

+2,392-2,056
Large diffs are not rendered by default.

reference/aria2p/interface/index.html

+103-69
Large diffs are not rendered by default.

reference/aria2p/options/index.html

+235-201
Large diffs are not rendered by default.

reference/aria2p/stats/index.html

+46-12
Large diffs are not rendered by default.

reference/aria2p/utils/index.html

+53-19
Large diffs are not rendered by default.

search/search_index.json

+1-1
Large diffs are not rendered by default.

sitemap.xml

+35-70
Original file line numberDiff line numberDiff line change
@@ -2,177 +2,142 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://pawamoy.github.io/aria2p/</loc>
5-
<lastmod>2024-01-11</lastmod>
6-
<changefreq>daily</changefreq>
5+
<lastmod>2024-12-25</lastmod>
76
</url>
87
<url>
98
<loc>https://pawamoy.github.io/aria2p/changelog/</loc>
10-
<lastmod>2024-01-11</lastmod>
11-
<changefreq>daily</changefreq>
9+
<lastmod>2024-12-25</lastmod>
1210
</url>
1311
<url>
1412
<loc>https://pawamoy.github.io/aria2p/code_of_conduct/</loc>
15-
<lastmod>2024-01-11</lastmod>
16-
<changefreq>daily</changefreq>
13+
<lastmod>2024-12-25</lastmod>
1714
</url>
1815
<url>
1916
<loc>https://pawamoy.github.io/aria2p/configuration/</loc>
20-
<lastmod>2024-01-11</lastmod>
21-
<changefreq>daily</changefreq>
17+
<lastmod>2024-12-25</lastmod>
2218
</url>
2319
<url>
2420
<loc>https://pawamoy.github.io/aria2p/contributing/</loc>
25-
<lastmod>2024-01-11</lastmod>
26-
<changefreq>daily</changefreq>
21+
<lastmod>2024-12-25</lastmod>
2722
</url>
2823
<url>
2924
<loc>https://pawamoy.github.io/aria2p/credits/</loc>
30-
<lastmod>2024-01-11</lastmod>
31-
<changefreq>daily</changefreq>
25+
<lastmod>2024-12-25</lastmod>
3226
</url>
3327
<url>
3428
<loc>https://pawamoy.github.io/aria2p/license/</loc>
35-
<lastmod>2024-01-11</lastmod>
36-
<changefreq>daily</changefreq>
29+
<lastmod>2024-12-25</lastmod>
3730
</url>
3831
<url>
3932
<loc>https://pawamoy.github.io/aria2p/usage/</loc>
40-
<lastmod>2024-01-11</lastmod>
41-
<changefreq>daily</changefreq>
33+
<lastmod>2024-12-25</lastmod>
4234
</url>
4335
<url>
4436
<loc>https://pawamoy.github.io/aria2p/reference/SUMMARY/</loc>
45-
<lastmod>2024-01-11</lastmod>
46-
<changefreq>daily</changefreq>
37+
<lastmod>2024-12-25</lastmod>
4738
</url>
4839
<url>
4940
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/</loc>
50-
<lastmod>2024-01-11</lastmod>
51-
<changefreq>daily</changefreq>
41+
<lastmod>2024-12-25</lastmod>
5242
</url>
5343
<url>
5444
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/api/</loc>
55-
<lastmod>2024-01-11</lastmod>
56-
<changefreq>daily</changefreq>
45+
<lastmod>2024-12-25</lastmod>
5746
</url>
5847
<url>
5948
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/client/</loc>
60-
<lastmod>2024-01-11</lastmod>
61-
<changefreq>daily</changefreq>
49+
<lastmod>2024-12-25</lastmod>
6250
</url>
6351
<url>
6452
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/debug/</loc>
65-
<lastmod>2024-01-11</lastmod>
66-
<changefreq>daily</changefreq>
53+
<lastmod>2024-12-25</lastmod>
6754
</url>
6855
<url>
6956
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/downloads/</loc>
70-
<lastmod>2024-01-11</lastmod>
71-
<changefreq>daily</changefreq>
57+
<lastmod>2024-12-25</lastmod>
7258
</url>
7359
<url>
7460
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/interface/</loc>
75-
<lastmod>2024-01-11</lastmod>
76-
<changefreq>daily</changefreq>
61+
<lastmod>2024-12-25</lastmod>
7762
</url>
7863
<url>
7964
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/options/</loc>
80-
<lastmod>2024-01-11</lastmod>
81-
<changefreq>daily</changefreq>
65+
<lastmod>2024-12-25</lastmod>
8266
</url>
8367
<url>
8468
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/stats/</loc>
85-
<lastmod>2024-01-11</lastmod>
86-
<changefreq>daily</changefreq>
69+
<lastmod>2024-12-25</lastmod>
8770
</url>
8871
<url>
8972
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/utils/</loc>
90-
<lastmod>2024-01-11</lastmod>
91-
<changefreq>daily</changefreq>
73+
<lastmod>2024-12-25</lastmod>
9274
</url>
9375
<url>
9476
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/</loc>
95-
<lastmod>2024-01-11</lastmod>
96-
<changefreq>daily</changefreq>
77+
<lastmod>2024-12-25</lastmod>
9778
</url>
9879
<url>
9980
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/main/</loc>
100-
<lastmod>2024-01-11</lastmod>
101-
<changefreq>daily</changefreq>
81+
<lastmod>2024-12-25</lastmod>
10282
</url>
10383
<url>
10484
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/parser/</loc>
105-
<lastmod>2024-01-11</lastmod>
106-
<changefreq>daily</changefreq>
85+
<lastmod>2024-12-25</lastmod>
10786
</url>
10887
<url>
10988
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/</loc>
110-
<lastmod>2024-01-11</lastmod>
111-
<changefreq>daily</changefreq>
89+
<lastmod>2024-12-25</lastmod>
11290
</url>
11391
<url>
11492
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/add/</loc>
115-
<lastmod>2024-01-11</lastmod>
116-
<changefreq>daily</changefreq>
93+
<lastmod>2024-12-25</lastmod>
11794
</url>
11895
<url>
11996
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/add_magnet/</loc>
120-
<lastmod>2024-01-11</lastmod>
121-
<changefreq>daily</changefreq>
97+
<lastmod>2024-12-25</lastmod>
12298
</url>
12399
<url>
124100
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/add_metalink/</loc>
125-
<lastmod>2024-01-11</lastmod>
126-
<changefreq>daily</changefreq>
101+
<lastmod>2024-12-25</lastmod>
127102
</url>
128103
<url>
129104
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/add_torrent/</loc>
130-
<lastmod>2024-01-11</lastmod>
131-
<changefreq>daily</changefreq>
105+
<lastmod>2024-12-25</lastmod>
132106
</url>
133107
<url>
134108
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/call/</loc>
135-
<lastmod>2024-01-11</lastmod>
136-
<changefreq>daily</changefreq>
109+
<lastmod>2024-12-25</lastmod>
137110
</url>
138111
<url>
139112
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/listen/</loc>
140-
<lastmod>2024-01-11</lastmod>
141-
<changefreq>daily</changefreq>
113+
<lastmod>2024-12-25</lastmod>
142114
</url>
143115
<url>
144116
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/pause/</loc>
145-
<lastmod>2024-01-11</lastmod>
146-
<changefreq>daily</changefreq>
117+
<lastmod>2024-12-25</lastmod>
147118
</url>
148119
<url>
149120
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/purge/</loc>
150-
<lastmod>2024-01-11</lastmod>
151-
<changefreq>daily</changefreq>
121+
<lastmod>2024-12-25</lastmod>
152122
</url>
153123
<url>
154124
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/remove/</loc>
155-
<lastmod>2024-01-11</lastmod>
156-
<changefreq>daily</changefreq>
125+
<lastmod>2024-12-25</lastmod>
157126
</url>
158127
<url>
159128
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/resume/</loc>
160-
<lastmod>2024-01-11</lastmod>
161-
<changefreq>daily</changefreq>
129+
<lastmod>2024-12-25</lastmod>
162130
</url>
163131
<url>
164132
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/show/</loc>
165-
<lastmod>2024-01-11</lastmod>
166-
<changefreq>daily</changefreq>
133+
<lastmod>2024-12-25</lastmod>
167134
</url>
168135
<url>
169136
<loc>https://pawamoy.github.io/aria2p/reference/aria2p/cli/commands/top/</loc>
170-
<lastmod>2024-01-11</lastmod>
171-
<changefreq>daily</changefreq>
137+
<lastmod>2024-12-25</lastmod>
172138
</url>
173139
<url>
174140
<loc>https://pawamoy.github.io/aria2p/coverage/</loc>
175-
<lastmod>2024-01-11</lastmod>
176-
<changefreq>daily</changefreq>
141+
<lastmod>2024-12-25</lastmod>
177142
</url>
178143
</urlset>

sitemap.xml.gz

-15 Bytes
Binary file not shown.

usage/index.html

+36-2
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)