Skip to content

Commit aa88ea7

Browse files
chore: automatic index update [skip ci]
1 parent 3feb0d7 commit aa88ea7

File tree

6 files changed

+414
-0
lines changed

6 files changed

+414
-0
lines changed

Diff for: docs/index.html

+230
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,230 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<title>My Private PyPI</title>
5+
<style>
6+
/* http://meyerweb.com/eric/tools/css/reset/
7+
v2.0 | 20110126
8+
License: none (public domain)
9+
*/
10+
11+
html, body, div, span, applet, object, iframe,
12+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
13+
a, abbr, acronym, address, big, cite, code,
14+
del, dfn, em, img, ins, kbd, q, s, samp,
15+
small, strike, strong, sub, sup, tt, var,
16+
b, u, i, center,
17+
dl, dt, dd, ol, ul, li,
18+
fieldset, form, label, legend,
19+
table, caption, tbody, tfoot, thead, tr, th, td,
20+
article, aside, canvas, details, embed,
21+
figure, figcaption, footer, header, hgroup,
22+
menu, nav, output, ruby, section, summary,
23+
time, mark, audio, video {
24+
margin: 0;
25+
padding: 0;
26+
border: 0;
27+
font: inherit;
28+
vertical-align: baseline;
29+
}
30+
/* HTML5 display-role reset for older browsers */
31+
article, aside, details, figcaption, figure,
32+
footer, header, hgroup, menu, nav, section {
33+
display: block;
34+
}
35+
body {
36+
line-height: 1;
37+
}
38+
ol, ul {
39+
list-style: none;
40+
}
41+
blockquote, q {
42+
quotes: none;
43+
}
44+
blockquote:before, blockquote:after,
45+
q:before, q:after {
46+
content: none;
47+
}
48+
table {
49+
border-collapse: collapse;
50+
border-spacing: 0;
51+
}
52+
</style>
53+
<style>
54+
body, html {
55+
padding: 0;
56+
margin: 0;
57+
font-family: Helvetica, Arial, sans-serif;
58+
}
59+
60+
.width {
61+
max-width: 960px;
62+
margin: 0 auto;
63+
}
64+
65+
.container {
66+
margin-top: 75px;
67+
}
68+
69+
.header-container {
70+
background-color: #e6f8ff;
71+
padding: 20px;
72+
border-bottom: solid 1px #e2e2e2;
73+
position: fixed;
74+
top: 0;
75+
left: 0;
76+
right: 0;
77+
}
78+
79+
.header {
80+
display: table;
81+
width: 100%;
82+
}
83+
84+
.title {
85+
display: table-cell;
86+
width: 1px;
87+
white-space: nowrap;
88+
vertical-align: middle;
89+
}
90+
91+
.title h1 {
92+
margin: 0 !important;
93+
}
94+
95+
p, h1, h2, h3, h4, table {
96+
margin-bottom: 10px;
97+
}
98+
99+
h1 {
100+
font-weight: bold;
101+
font-size: 24px;
102+
}
103+
104+
h2 {
105+
font-weight: bold;
106+
font-size: 20px;
107+
}
108+
109+
strong {
110+
font-weight: bold;
111+
}
112+
113+
.hide { display: none !important; }
114+
115+
.nowrap {
116+
white-space: nowrap;
117+
}
118+
</style>
119+
120+
<style>
121+
.searchbox {
122+
display: table-cell;
123+
padding-left: 15px;
124+
vertical-align: middle;
125+
}
126+
127+
.searchbox input {
128+
width: 100%;
129+
margin: 0;
130+
padding: 4px;
131+
font-size: 16px;
132+
box-sizing: border-box;
133+
border: none;
134+
line-height: 16px;
135+
}
136+
137+
.package {
138+
display: block;
139+
font-size: 14px;
140+
padding: 10px;
141+
color: #111;
142+
text-decoration: none;
143+
}
144+
145+
.package:hover {
146+
background-color: #ebf1ff !important;
147+
color: #333;
148+
}
149+
150+
.package.odd {
151+
background-color: #fefefe;
152+
}
153+
154+
.package.even {
155+
background-color: #f8f8f8;
156+
}
157+
</style>
158+
159+
</head>
160+
161+
<body>
162+
<div class="header-container">
163+
<div class="width">
164+
<div class="header">
165+
<div style="display: table-row">
166+
<div class="title">
167+
<h1>My Private PyPI</h1>
168+
</div>
169+
170+
171+
<div class="searchbox">
172+
<label for="search" style="display: none;">Search</label>
173+
<input id="search" type="text" autofocus="autofocus" placeholder="Filter" value="" />
174+
</div>
175+
176+
</div>
177+
</div>
178+
</div>
179+
</div>
180+
<div class="container width">
181+
182+
<div class="packages width" id="packages">
183+
184+
<a class="package odd" href="simple/ghpypi/index.html" data-name="ghpypi">
185+
<strong>ghpypi</strong> (latest version: 1.3.1)
186+
</a>
187+
188+
<a class="package even" href="simple/testrepo/index.html" data-name="testrepo">
189+
<strong>testrepo</strong> (latest version: 1.3.0)
190+
</a>
191+
192+
</div>
193+
194+
<script>
195+
(function() {
196+
function normalize(str) {
197+
return str.toLowerCase().replace(/[._-]+/g, '-');
198+
}
199+
function filter() {
200+
var words = normalize(search.value).trim().split();
201+
var rows = document.getElementsByClassName('package');
202+
var odd = true;
203+
for (var i = 0; i < rows.length; i++) {
204+
var row = rows[i];
205+
var name = row.dataset.name;
206+
var ok = true;
207+
for (var j = 0; j < words.length; j++) {
208+
if (!normalize(name).includes(words[j])) {
209+
ok = false;
210+
break;
211+
}
212+
}
213+
if (ok) {
214+
row.style.backgroundColor = odd ? '#fefefe' : '#f8f8f8';
215+
odd = !odd;
216+
}
217+
row.style.display = ok ? 'block' : 'none';
218+
}
219+
}
220+
221+
var search = document.getElementById('search');
222+
search.oninput = filter;
223+
search.onpaste = filter;
224+
search.onpropertychange = filter;
225+
})();
226+
</script>
227+
228+
</div>
229+
</body>
230+
</html>

Diff for: docs/pypi/ghpypi/json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"info": {"name": "ghpypi", "version": "1.3.1"}, "releases": {"1.0.0": [{"filename": "ghpypi-1.0.0-py3-none-any.whl", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.0.0/ghpypi-1.0.0-py3-none-any.whl", "digests": {"sha256": "8db833603bd5f71a7ae2d94364edcc996dd851f42da0069040cab954be53d48d"}}, {"filename": "ghpypi-1.0.0.tar.gz", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.0.0/ghpypi-1.0.0.tar.gz", "digests": {"sha256": "fa6dfbe92d7b150b788da980d53f07e6e84c4079118783d5905a72cc9b636ba3"}}], "1.0.1": [{"filename": "ghpypi-1.0.1-py3-none-any.whl", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.0.1/ghpypi-1.0.1-py3-none-any.whl", "digests": {"sha256": "ae36bbabd6424037f716c6a78f907d6f9b058ab399a042b2c8530087beca9c3c"}}, {"filename": "ghpypi-1.0.1.tar.gz", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.0.1/ghpypi-1.0.1.tar.gz", "digests": {"sha256": "0bca915a7d7129b4d5a21e5381fee0678016708139029c0c5ccadf71c0cf5265"}}], "1.1.0": [{"filename": "ghpypi-1.1.0-py3-none-any.whl", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.1.0/ghpypi-1.1.0-py3-none-any.whl", "digests": {"sha256": "2d22377a611d94b699c5c8d63934a6fc4bc8b861cfaea1a9455d73cd3e0fc6ef"}}, {"filename": "ghpypi-1.1.0.tar.gz", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.1.0/ghpypi-1.1.0.tar.gz", "digests": {"sha256": "450900585d8044833819d38eb52cda921ef54735da2b604dfc82612a2223b9e5"}}], "1.1.1": [{"filename": "ghpypi-1.1.1-py3-none-any.whl", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.1.1/ghpypi-1.1.1-py3-none-any.whl", "digests": {"sha256": "f326f52cf865b5e12748e245fb9a2a12f6680ab8b82da178fcbe12d1e8b84357"}}, {"filename": "ghpypi-1.1.1.tar.gz", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.1.1/ghpypi-1.1.1.tar.gz", "digests": {"sha256": "ae0fa52d81610733e93826eabefdbb7f9b719c335088750f5f1abafe63e7c153"}}], "1.2.0": [{"filename": "ghpypi-1.2.0-py3-none-any.whl", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.2.0/ghpypi-1.2.0-py3-none-any.whl", "digests": {"sha256": "92998bcad2b6696d5af2e99a53a2ae7e8e01bf818f9807814d67beea67fcde01"}}, {"filename": "ghpypi-1.2.0.tar.gz", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.2.0/ghpypi-1.2.0.tar.gz", "digests": {"sha256": "ef6c6571e7b2727fa254629ac1b40d335954815f5e5d95da28e394167f04ae19"}}], "1.2.1": [{"filename": "ghpypi-1.2.1-py3-none-any.whl", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.2.1/ghpypi-1.2.1-py3-none-any.whl", "digests": {"sha256": "94006d769497c67a6bab637db71df766aef9182554f658100bb6ce9cc1144db7"}}, {"filename": "ghpypi-1.2.1.tar.gz", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.2.1/ghpypi-1.2.1.tar.gz", "digests": {"sha256": "2f4a808b8edf5cf3be21d6bee2ecd40ceb32be15b9f7bb94afb7f92ce75349e0"}}], "1.3.0": [{"filename": "ghpypi-1.3.0-py3-none-any.whl", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.3.0/ghpypi-1.3.0-py3-none-any.whl", "digests": {"sha256": "4f6d92b3f9eb7af9afa7d823fea32ee5ddac691fbeec9ad78649a7c65c64bb88"}}, {"filename": "ghpypi-1.3.0.tar.gz", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.3.0/ghpypi-1.3.0.tar.gz", "digests": {"sha256": "62d13c7f3f1bc3fb6a3f1b6e86d88b86e6a7888e523758a66e53add434dd7995"}}], "1.3.1": [{"filename": "ghpypi-1.3.1-py3-none-any.whl", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.3.1/ghpypi-1.3.1-py3-none-any.whl", "digests": {"sha256": "215987f407821cbd9643cbf80837387b265879beebdae02dd45587b4252ec288"}}, {"filename": "ghpypi-1.3.1.tar.gz", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.3.1/ghpypi-1.3.1.tar.gz", "digests": {"sha256": "502f477cfc9be5c62d6ee9282157e5818d0e8939280d92cd2822cf7b4420714d"}}]}, "urls": [{"filename": "ghpypi-1.3.1-py3-none-any.whl", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.3.1/ghpypi-1.3.1-py3-none-any.whl", "digests": {"sha256": "215987f407821cbd9643cbf80837387b265879beebdae02dd45587b4252ec288"}}, {"filename": "ghpypi-1.3.1.tar.gz", "url": "https://github.com/paullockaby/ghpypi/releases/download/v1.3.1/ghpypi-1.3.1.tar.gz", "digests": {"sha256": "502f477cfc9be5c62d6ee9282157e5818d0e8939280d92cd2822cf7b4420714d"}}]}

Diff for: docs/pypi/testrepo/json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"info": {"name": "testrepo", "version": "1.3.0"}, "releases": {"0.0.0": [{"filename": "testrepo-0.0.0-py3-none-any.whl", "url": "https://github.com/paullockaby/test-repo/releases/download/v1.2.0/testrepo-0.0.0-py3-none-any.whl", "digests": {"sha256": "60c17298088a06e59190a82969f29352f4e7abd4f9e8e481c7dc17f4247e4309"}}, {"filename": "testrepo-0.0.0.tar.gz", "url": "https://github.com/paullockaby/test-repo/releases/download/v1.2.0/testrepo-0.0.0.tar.gz", "digests": {"sha256": "e74a44e4929f5561057c80670ae6d646e062178efcad20645f16b4dce5be9754"}}], "1.3.0": [{"filename": "testrepo-1.3.0-py3-none-any.whl", "url": "https://github.com/paullockaby/test-repo/releases/download/v1.3.0/testrepo-1.3.0-py3-none-any.whl", "digests": {"sha256": "b93e4f4d7c84066c74532b7c35b0d7e89d1b90e18ad46a05f7844a4490a2f660"}}, {"filename": "testrepo-1.3.0.tar.gz", "url": "https://github.com/paullockaby/test-repo/releases/download/v1.3.0/testrepo-1.3.0.tar.gz", "digests": {"sha256": "92b6c50f568895da519e3237b445a08359c6bf63f337a4e16e9066d1e5eb5283"}}]}, "urls": [{"filename": "testrepo-1.3.0-py3-none-any.whl", "url": "https://github.com/paullockaby/test-repo/releases/download/v1.3.0/testrepo-1.3.0-py3-none-any.whl", "digests": {"sha256": "b93e4f4d7c84066c74532b7c35b0d7e89d1b90e18ad46a05f7844a4490a2f660"}}, {"filename": "testrepo-1.3.0.tar.gz", "url": "https://github.com/paullockaby/test-repo/releases/download/v1.3.0/testrepo-1.3.0.tar.gz", "digests": {"sha256": "92b6c50f568895da519e3237b445a08359c6bf63f337a4e16e9066d1e5eb5283"}}]}

Diff for: docs/simple/ghpypi/index.html

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<title>ghpypi</title>
5+
</head>
6+
<body>
7+
<h1>ghpypi</h1>
8+
<p>Latest version: 1.3.1</p>
9+
<ul>
10+
11+
<li>
12+
13+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.3.1/ghpypi-1.3.1.tar.gz#sha256=502f477cfc9be5c62d6ee9282157e5818d0e8939280d92cd2822cf7b4420714d">ghpypi-1.3.1.tar.gz</a>
14+
15+
(1.3.1, 2024-05-08 01:40:10, github-actions[bot])
16+
</li>
17+
18+
<li>
19+
20+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.3.1/ghpypi-1.3.1-py3-none-any.whl#sha256=215987f407821cbd9643cbf80837387b265879beebdae02dd45587b4252ec288">ghpypi-1.3.1-py3-none-any.whl</a>
21+
22+
(1.3.1, 2024-05-08 01:40:11, github-actions[bot])
23+
</li>
24+
25+
<li>
26+
27+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.3.0/ghpypi-1.3.0.tar.gz#sha256=62d13c7f3f1bc3fb6a3f1b6e86d88b86e6a7888e523758a66e53add434dd7995">ghpypi-1.3.0.tar.gz</a>
28+
29+
(1.3.0, 2023-10-11 02:22:57, github-actions[bot])
30+
</li>
31+
32+
<li>
33+
34+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.3.0/ghpypi-1.3.0-py3-none-any.whl#sha256=4f6d92b3f9eb7af9afa7d823fea32ee5ddac691fbeec9ad78649a7c65c64bb88">ghpypi-1.3.0-py3-none-any.whl</a>
35+
36+
(1.3.0, 2023-10-11 02:22:57, github-actions[bot])
37+
</li>
38+
39+
<li>
40+
41+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.2.1/ghpypi-1.2.1.tar.gz#sha256=2f4a808b8edf5cf3be21d6bee2ecd40ceb32be15b9f7bb94afb7f92ce75349e0">ghpypi-1.2.1.tar.gz</a>
42+
43+
(1.2.1, 2022-11-20 06:51:32, github-actions[bot])
44+
</li>
45+
46+
<li>
47+
48+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.2.1/ghpypi-1.2.1-py3-none-any.whl#sha256=94006d769497c67a6bab637db71df766aef9182554f658100bb6ce9cc1144db7">ghpypi-1.2.1-py3-none-any.whl</a>
49+
50+
(1.2.1, 2022-11-20 06:51:32, github-actions[bot])
51+
</li>
52+
53+
<li>
54+
55+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.2.0/ghpypi-1.2.0.tar.gz#sha256=ef6c6571e7b2727fa254629ac1b40d335954815f5e5d95da28e394167f04ae19">ghpypi-1.2.0.tar.gz</a>
56+
57+
(1.2.0, 2022-10-18 02:18:51, github-actions[bot])
58+
</li>
59+
60+
<li>
61+
62+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.2.0/ghpypi-1.2.0-py3-none-any.whl#sha256=92998bcad2b6696d5af2e99a53a2ae7e8e01bf818f9807814d67beea67fcde01">ghpypi-1.2.0-py3-none-any.whl</a>
63+
64+
(1.2.0, 2022-10-18 02:18:50, github-actions[bot])
65+
</li>
66+
67+
<li>
68+
69+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.1.1/ghpypi-1.1.1.tar.gz#sha256=ae0fa52d81610733e93826eabefdbb7f9b719c335088750f5f1abafe63e7c153">ghpypi-1.1.1.tar.gz</a>
70+
71+
(1.1.1, 2022-06-12 01:03:42, github-actions[bot])
72+
</li>
73+
74+
<li>
75+
76+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.1.1/ghpypi-1.1.1-py3-none-any.whl#sha256=f326f52cf865b5e12748e245fb9a2a12f6680ab8b82da178fcbe12d1e8b84357">ghpypi-1.1.1-py3-none-any.whl</a>
77+
78+
(1.1.1, 2022-06-12 01:03:42, github-actions[bot])
79+
</li>
80+
81+
<li>
82+
83+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.1.0/ghpypi-1.1.0.tar.gz#sha256=450900585d8044833819d38eb52cda921ef54735da2b604dfc82612a2223b9e5">ghpypi-1.1.0.tar.gz</a>
84+
85+
(1.1.0, 2022-05-09 05:35:03, github-actions[bot])
86+
</li>
87+
88+
<li>
89+
90+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.1.0/ghpypi-1.1.0-py3-none-any.whl#sha256=2d22377a611d94b699c5c8d63934a6fc4bc8b861cfaea1a9455d73cd3e0fc6ef">ghpypi-1.1.0-py3-none-any.whl</a>
91+
92+
(1.1.0, 2022-05-09 05:35:03, github-actions[bot])
93+
</li>
94+
95+
<li>
96+
97+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.0.1/ghpypi-1.0.1.tar.gz#sha256=0bca915a7d7129b4d5a21e5381fee0678016708139029c0c5ccadf71c0cf5265">ghpypi-1.0.1.tar.gz</a>
98+
99+
(1.0.1, 2021-12-25 06:22:19, github-actions[bot])
100+
</li>
101+
102+
<li>
103+
104+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.0.1/ghpypi-1.0.1-py3-none-any.whl#sha256=ae36bbabd6424037f716c6a78f907d6f9b058ab399a042b2c8530087beca9c3c">ghpypi-1.0.1-py3-none-any.whl</a>
105+
106+
(1.0.1, 2021-12-25 06:22:19, github-actions[bot])
107+
</li>
108+
109+
<li>
110+
111+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.0.0/ghpypi-1.0.0.tar.gz#sha256=fa6dfbe92d7b150b788da980d53f07e6e84c4079118783d5905a72cc9b636ba3">ghpypi-1.0.0.tar.gz</a>
112+
113+
(1.0.0, 2021-12-25 06:16:09, github-actions[bot])
114+
</li>
115+
116+
<li>
117+
118+
<a href="https://github.com/paullockaby/ghpypi/releases/download/v1.0.0/ghpypi-1.0.0-py3-none-any.whl#sha256=8db833603bd5f71a7ae2d94364edcc996dd851f42da0069040cab954be53d48d">ghpypi-1.0.0-py3-none-any.whl</a>
119+
120+
(1.0.0, 2021-12-25 06:16:08, github-actions[bot])
121+
</li>
122+
123+
</ul>
124+
</body>
125+
</html>

Diff for: docs/simple/index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<title>Simple Index</title>
5+
</head>
6+
<body>
7+
<h1>Simple Index</h1>
8+
<ul>
9+
10+
<li><a href="ghpypi/index.html">ghpypi</a></li>
11+
12+
<li><a href="testrepo/index.html">testrepo</a></li>
13+
14+
</ul>
15+
</body>
16+
</html>

0 commit comments

Comments
 (0)