git ssb

0+

cel / dillo-dat



Commit d93a11d7ff75fa0ad133d2b731fc00d96dff0803

Add website

cel committed on 1/14/2019, 5:09:17 AM
Parent: b3c86e8a6db6e9897abcb15adcb0e69cfa3a06f0

Files changed

package.jsonchanged
README.mdadded
dat.jsonadded
readme.mddeleted
dillo-dat-logo-128.pngadded
favicon.icoadded
index.htmladded
screenshot.pngadded
package.jsonView
@@ -9,8 +9,9 @@
99 },
1010 "name": "dillo-dat",
1111 "license": "AGPL-3.0+",
1212 "author": "cel",
13 + "homepage": "dat://e16fa4a4a167105f3ff2ae14e6dd6fceda405e17f0ff7b241811305c1bdb90a9",
1314 "repository": {
1415 "type": "git",
1516 "url": "ssb://%44lamL1D9pK0SIxqDUgaL7+4FzqnyWs30SVmbcg5DhI=.sha256"
1617 }
README.mdView
@@ -1,0 +1,43 @@
1 +# dillo-dat
2 +
3 +Connect to [Dat][] sites in [Dillo][].
4 +
5 +# Install
6 +
7 +```sh
8 +git clone ssb://%44lamL1D9pK0SIxqDUgaL7+4FzqnyWs30SVmbcg5DhI=.sha256 dillo-dat
9 +cd dillo-dat
10 +npm install
11 +mkdir -p ~/.dillo/dpi/dat
12 +ln -rs dat.dpi ~/.dillo/dpi/dat
13 +test -f ~/.dillo/dpidrc || cp /etc/dillo/dpidrc ~/.dillo/dpidrc
14 +echo 'proto.dat=dat/dat.dpi' >> ~/.dillo/dpidrc
15 +dpidc stop
16 +```
17 +
18 +# Usage
19 +
20 +Navigate to `dat://` URLs in dillo like any other URLs.
21 +
22 +Examples:
23 +- <dat://c5d64071c632d706e07e4ab0b8f39c2af80aa07605ef73bc4c130110744e49d8/>
24 +- <dat://protozoa.nz>
25 +
26 +## Dashboard
27 +
28 +The dashboard page, <dpi:/dat/>, lists Dat archives that you are currently replicating, shows a list of connected peers for each one, and gives you an option to stop replicating each archive, and to stop replicating all of them.
29 +
30 +## Directory listings
31 +
32 +Normally, browsing to a directory will show the `index.html` if there is one in the directory. To override this and see the directory listing instead, put two slashes at the end of the URL. e.g. <dat://87ed2e3b160f261a032af03921a3bd09227d0a4cde73466c17114816cae43336//>
33 +
34 +[Dat]: https://datproject.org/
35 +[Dillo]: https://dillo.org/
36 +
37 +## Homepage
38 +
39 +<dat://e16fa4a4a167105f3ff2ae14e6dd6fceda405e17f0ff7b241811305c1bdb90a9/>
40 +
41 +## License
42 +
43 +AGPLv3+
dat.jsonView
@@ -1,0 +1,5 @@
1 +{
2 + "title": "dillo-dat",
3 + "description": "Dillo plugin for Dat protocol",
4 + "url": "dat://e16fa4a4a167105f3ff2ae14e6dd6fceda405e17f0ff7b241811305c1bdb90a9"
5 +}
readme.mdView
@@ -1,39 +1,0 @@
1-# dillo-dat
2-
3-Connect to [Dat][] sites in [Dillo][].
4-
5-# Install
6-
7-```sh
8-git clone ssb://%44lamL1D9pK0SIxqDUgaL7+4FzqnyWs30SVmbcg5DhI=.sha256 dillo-dat
9-cd dillo-dat
10-npm install
11-mkdir -p ~/.dillo/dpi/dat
12-ln -rs dat.dpi ~/.dillo/dpi/dat
13-test -f ~/.dillo/dpidrc || cp /etc/dillo/dpidrc ~/.dillo/dpidrc
14-echo 'proto.dat=dat/dat.dpi' >> ~/.dillo/dpidrc
15-dpidc stop
16-```
17-
18-# Usage
19-
20-Navigate to `dat://` URLs in dillo like any other URLs.
21-
22-Examples:
23-- <dat://c5d64071c632d706e07e4ab0b8f39c2af80aa07605ef73bc4c130110744e49d8/>
24-- <dat://protozoa.nz>
25-
26-## Dashboard
27-
28-The dashboard page, <dpi:/dat/>, lists Dat archives that you are currently replicating, shows a list of connected peers for each one, and gives you an option to stop replicating each archive, and to stop replicating all of them.
29-
30-## Directory listings
31-
32-Normally, browsing to a directory will show the `index.html` if there is one in the directory. To override this and see the directory listing instead, put two slashes at the end of the URL. e.g. <dat://87ed2e3b160f261a032af03921a3bd09227d0a4cde73466c17114816cae43336//>
33-
34-[Dat]: https://datproject.org/
35-[Dillo]: https://dillo.org/
36-
37-## License
38-
39-AGPLv3+
dillo-dat-logo-128.png
dillo-dat-logo-128.png
favicon.ico
favicon.ico
index.htmlView
@@ -1,0 +1,50 @@
1 +<!doctype html>
2 +<html>
3 +<head>
4 +<meta charset=utf-8>
5 +<title>dillo-dat: Dat in Dillo</title>
6 +<link rel="icon" type="image/x-icon" href="favicon.ico">
7 +</head>
8 +<body>
9 +
10 +<h1>dillo-dat</h1>
11 +<p>View <a href="https://datproject.org/">dat</a> websites in <a href="https://www.dillo.org/">Dillo</a>.</p>
12 +<p><img src="dillo-dat-logo-128.png" alt="dillo-dat logo"></p>
13 +
14 +<h2>Screenshot</h2>
15 +<img src=screenshot.png alt="Screenshot of dillo-dat rendering dat://inkdroid.org/" border=1>
16 +
17 +<h2>Download</h2>
18 +
19 +<p><em>via global dat gateway</em>:<br>
20 +<code>git clone https://dillo-dat.hashbase.io/.git dillo-dat</code></p>
21 +
22 +<p><em>via global git-ssb gateway</em>:<br>
23 +<code>git clone https://git.scuttlebot.io/%25C35b%2BMlZ%2Fy5TT1e7SG66eNKEIdX5DRl9PRUxbhvO89k%3D.sha256 dillo-dat</code>
24 +
25 +<p><em>via <a href="https://git.scuttlebot.io/%25n92DiQh7ietE%2BR%2BX%2FI403LQoyf2DtR3WQfCkDKlheQU%3D.sha256">git-ssb</a></em>:<br>
26 +<code>git clone ssb://%44lamL1D9pK0SIxqDUgaL7+4FzqnyWs30SVmbcg5DhI=.sha256 dillo-dat</code>
27 +
28 +<h2>Install</h2>
29 +<pre>
30 +cd dillo-dat
31 +npm install
32 +mkdir -p ~/.dillo/dpi/dat
33 +ln -rs dat.dpi ~/.dillo/dpi/dat
34 +test -f ~/.dillo/dpidrc || cp /etc/dillo/dpidrc ~/.dillo/dpidrc
35 +echo 'proto.dat=dat/dat.dpi' >> ~/.dillo/dpidrc
36 +dpidc stop
37 +</pre>
38 +
39 +<h2>Development</h2>
40 +<p>Collaborate on the <a href="https://www.scuttlebutt.nz/">Secure Scuttlebutt</a> (SSB) network.<br>
41 +git repo: <a href="https://git.scuttlebot.io/%2544lamL1D9pK0SIxqDUgaL7%2B4FzqnyWs30SVmbcg5DhI%3D.sha256"><code>ssb://%44lamL1D9pK0SIxqDUgaL7+4FzqnyWs30SVmbcg5DhI=.sha256</code></a><br>
42 +Discussion thread: <a href="https://viewer.scuttlebot.io/%25cAmfLllc4Breeh7diLMuYEhFRE8pNZNDe49NILkcIzM%3D.sha256"><code>%cAmfLllc4Breeh7diLMuYEhFRE8pNZNDe49NILkcIzM=.sha256</code></a><br>
43 +Author/maintainer: <code>@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519</code><br>
44 +Need an invite to SSB? Ask in <code>#scuttlebutt</code> channel on Freenode IRC.</p>
45 +
46 +<h2>License</h2>
47 +<p><a href="LICENSE">AGPL-3.0</a> &copy; 2017-2018 cel</p>
48 +
49 +</body>
50 +</html>
screenshot.png
screenshot.png

Built with git-ssb-web