fedipod-server 0.17.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,43 +0,0 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1">
6
- <title>FediPod — access the Fediverse and ATProto from a Solid pod</title>
7
- <style>
8
- :root { color-scheme: light dark; --line:#d9d4c7; --dim:#45443d; --accent:#6a8a5a; }
9
- @media (prefers-color-scheme: dark) { :root { --dim:#c2c0b4; } }
10
- body { font: 19px/1.6 system-ui, sans-serif; max-width: 44rem; margin: 2rem auto; padding: 0 1.1rem; }
11
- h1 { font-size: 1.7rem; margin: 0 0 .2rem; }
12
- h2 { font-size: 1.2rem; margin: 1.4rem 0 .4rem; }
13
- p.lede { color: var(--dim); margin-top: 0; }
14
- .hint { color: var(--dim); font-size: .95rem; }
15
- code { background: rgba(120,120,120,.12); padding: .05em .35em; border-radius: 4px; }
16
- pre { background: rgba(120,120,120,.12); padding: .7rem .9rem; border-radius: 8px; overflow-x: auto; }
17
- ol.steps li { margin: .5rem 0; }
18
- [hidden] { display: none !important; }
19
- </style>
20
- </head>
21
- <body>
22
- <h1>FediPod - join the Fediverse from a Solid pod.</h1>
23
- <p class="lede">Welcome to <b>FediPod</b>! Here, you can get a free pod and Fediverse account or link to your existing pod/account.</p>
24
-
25
- <p class="hint" id="current-version" hidden>Current FediPod: <strong id="current-version-num"></strong><br>
26
- — install or update an existing install with <code id="current-version-cmd"></code></p>
27
-
28
- <p>
29
- FediPod is experimental and free to use. See the <a href="https://github.com/jeff-zucker/FediPod">FediPod repository</a> for details.
30
- </p>
31
-
32
- <script>
33
- fetch('/api/handle?handle=__probe__').then(r => r.json()).then(d => {
34
- if (d.version) {
35
- document.getElementById('current-version-num').textContent = d.version;
36
- document.getElementById('current-version-cmd').textContent = `curl -fsSL ${location.origin}/install | sh`;
37
- document.getElementById('current-version').hidden = false;
38
- }
39
- }).catch(() => {});
40
- </script>
41
- <i style="text-align:right">(cc) 4.0 By, Jeff Zucker, 2026</i>
42
- </body>
43
- </html>
@@ -1,50 +0,0 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1">
6
- <title>FediPod — access the Fediverse and ATProto from a Solid pod</title>
7
- <style>
8
- :root { color-scheme: light dark; --line:#d9d4c7; --dim:#45443d; --accent:#6a8a5a; }
9
- @media (prefers-color-scheme: dark) { :root { --dim:#c2c0b4; } }
10
- body { font: 19px/1.6 system-ui, sans-serif; max-width: 44rem; margin: 2rem auto; padding: 0 1.1rem; }
11
- h1 { font-size: 1.7rem; margin: 0 0 .2rem; }
12
- h2 { font-size: 1.2rem; margin: 1.4rem 0 .4rem; }
13
- p.lede { color: var(--dim); margin-top: 0; }
14
- .hint { color: var(--dim); font-size: .95rem; }
15
- code { background: rgba(120,120,120,.12); padding: .05em .35em; border-radius: 4px; }
16
- pre { background: rgba(120,120,120,.12); padding: .7rem .9rem; border-radius: 8px; overflow-x: auto; }
17
- ol.steps li { margin: .5rem 0; }
18
- [hidden] { display: none !important; }
19
- </style>
20
- </head>
21
- <body>
22
- <h1>FediPod - join the fediverse from a Solid pod.</h1>
23
- <p class="lede">Welcome to <b>FediPod</b! Here, you can get a free pod and fediverse account or link to your existing pod/account.</p>
24
-
25
-
26
- <p>
27
- FediPod is experimental and free to use. See the <a href="https://github.com/jeff-zucker/FediPod">FediPod repository</a> for details.
28
- </p>
29
-
30
- <p class="hint" id="current-version" hidden>Current FediPod: <strong id="current-version-num"></strong><br>
31
- — update an existing install with <code id="current-version-cmd"></code></p>
32
-
33
- <script>
34
- // Another host deploying this front serves the same page: the command names
35
- // that host, not fedipod.net.
36
- if (location.origin !== 'https://fedipod.net' && location.protocol.startsWith('http')) {
37
- document.getElementById('install-cmd').textContent =
38
- `curl -fsSL ${location.origin}/install | sh\n\nfedipod start`;
39
- }
40
- fetch('/api/handle?handle=__probe__').then(r => r.json()).then(d => {
41
- if (d.version) {
42
- document.getElementById('current-version-num').textContent = d.version;
43
- document.getElementById('current-version-cmd').textContent = `curl -fsSL ${location.origin}/install | sh`;
44
- document.getElementById('current-version').hidden = false;
45
- }
46
- }).catch(() => {});
47
- </script>
48
- <i style="text-align:right">(cc) 4.0 By, Jeff Zucker, 2026</i>
49
- </body>
50
- </html>