-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
191 lines (191 loc) · 7.77 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Dillo Website</title>
<link rel="icon" type="image/png" href="img/favicon.png">
<style>
body {
background: white;
line-height: 1.5;
margin: 3em;
font-family: sans-serif;
}
.main {
margin: 2em auto;
width: 50em;
}
h1 {
margin-top: 0.25em;
margin-bottom: 0.25em
}
h3 {
color: #56f;
background: #f0f0f0;
padding: 0.5em
}
.birthday {
border: 1px solid black;
background: #ffffea;
padding: 1em;
}
.github-button { padding: 0.5em; border: 1px solid lightgrey; float: right;
background: #f5f5f5 }
.github-logo { height: 1.5em; vertical-align: middle; }
.shot { width: 8em; margin: 0; border: none }
table, th, td { padding: 0.25em; border-collapse: collapse; border: solid 1px #ddd; }
th { background-color: #eee; }
table { margin: 1.5em; }
</style>
</head>
<body>
<div class="main">
<div class="github-button">
<img alt="GitHub logo" class="github-logo" src="img/gh.png">
<a href="https://github.com/dillo-browser/dillo">View on GitHub</a>
</div>
<h1>Welcome to the Dillo Website</h1>
<p>Dillo is a fast and small graphical web browser with the following features: </p>
<ul>
<li>Multi-platform, running on Linux, BSD, MacOS, Windows (via Cygwin) and even Atari.</li>
<li>Written in C and C++ with few dependencies.</li>
<li>Implements its own real-time rendering engine.</li>
<li>Low memory usage and fast rendering, even with large pages.</li>
<li>Uses the fast and bloat-free <a href="https://www.fltk.org/">FLTK</a> GUI library.</li>
<li>Support for HTTP, HTTPS, FTP and local files.</li>
<li>Extensible with plugins written in any language
(<a href="#plugins">see the list of plugins</a>).
</li>
<li>Is free software licensed with the GPLv3.</li>
<li>Helps authors to comply with web standards by using the
<a href="old/help/bug_meter.html">bug meter</a>
<img alt="Bugmeter icon" style="vertical-align:middle" src="img/bugmeter.png">.</li>
</ul>
<p>
Read the <a href="user_help.html">user manual</a> to discover how to use
all the features.
</p>
<div class=birthday style="text-align:center">
<img style="display:inline; padding:5px" alt="Birthday" src="25-years/birthday.gif">
<span style="font-size:20px">
<a href="25-years/index.html">25 years
of Dillo</a>
<p>Dillo is now 25 years old!, since the first release in Dec 1999
</span>
</div>
<h2>Screenshots</h2>
<a href="img/plan9.png"><img alt="Plan9 website" class="shot" src="img/mini-plan9.png"></a>
<a href="img/armadillo.png"><img alt="Armadillo Wikipedia page" class="shot" src="img/mini-armadillo.png"></a>
<a href="img/suckless.png"><img alt="Suckless website" class="shot" src="img/mini-suckless.png"></a>
<a href="img/aaronsw.png"><img alt="Aaron Swartz website" class="shot" src="img/mini-aaronsw.png"></a>
<a href="img/hackernews.png"><img alt="Hacker News website" class="shot" src="img/mini-hackernews.png"></a>
<a href="img/100r.png"><img alt="100 Rabbits website" class="shot" src="img/mini-100r.png"></a>
<p style="text-align:right">...see
<a href="gallery/index.html">the gallery</a> for more pictures and
screenshots.</p>
<h2>Project objectives</h2>
<ul>
<li>Lower the barrier of entry to the web.</li>
<li>Support old or small machines and slow connections.</li>
<li>Personal security and privacy.</li>
<li>High software efficiency.</li>
</ul>
<p>
Check the <a href="old/index.html">old website</a> for more details.
The domain <code>dillo.org</code> is
<a href="dillo.org.html">no longer under control</a> of Dillo developers.
</p>
<h2>Download</h2>
<p>Download the <a href="release/3.1.1">latest release 3.1.1</a>
and follow the <code>README.md</code>
instructions to build Dillo. You can also clone the latest changes
directly from the
<a href="https://github.com/dillo-browser/dillo/">GitHub repository</a>.
</p>
<h2>Contributing</h2>
<p>We always welcome contributions, here are several ways in which
you can help:</p>
<ul>
<li>Use Dillo to browse the web and if you find something that
is not working,
<a href="https://github.com/dillo-browser/dillo/issues/new">open an issue</a>
or send an email to
<a href="mailto:[email protected]">[email protected]</a>.
</li>
<li>Spread the word, so the world knows Dillo exists and is
still alive.</li>
<li>Implement some new feature or fix some bug and send us a
patch or create a pull request (check the
<a href="doxygen/index.html">developer documentation</a>).</li>
<li>Donate to the project via <a href="https://liberapay.com/dillo/">Liberapay</a>
to cover testing and infrastructure costs.</li>
</ul>
<h2 id=plugins>Plugins</h2>
<p>Dillo can <em>easily</em> be extended by plugins to support new
protocols. Plugins are written in any language and interact using the
standard input and output. Here are some of them:</p>
<!-- Keep the list sorted by protocol name -->
<table>
<thead>
<tr>
<th>Plugin</th>
<th>Protocol</th>
<th>Language</th>
<th>Description</th>
</tr>
</thead>
<tr>
<td><a href="https://github.com/dillo-browser/dillo-plugin-gemini">dillo-plugin-gemini</a></td>
<td>gemini://</td>
<td>Bash</td>
<td><a href="https://en.wikipedia.org/wiki/Gemini_(protocol)">Gemini protocol</a> plugin</td>
</tr>
<tr>
<td><a
href="https://github.com/dillo-browser/dillo-plugin-gopher">dillo-plugin-gopher</a></td>
<td>gopher://</td>
<td>C</td>
<td><a href="https://en.wikipedia.org/wiki/Gopher_(protocol)">Gopher
protocol</a> plugin</td>
</tr>
<tr>
<td><a
href="https://github.com/dillo-browser/dillo-plugin-ipfs">dillo-plugin-ipfs</a></td>
<td>ipfs://, ipns://</td>
<td>Go</td>
<td><a href="https://en.wikipedia.org/wiki/InterPlanetary_File_System">IPFS
protocol</a> plugin</td>
</tr>
<tr>
<td><a
href="https://github.com/dillo-browser/dillo-plugin-man">dillo-plugin-man</a></td>
<td>man://</td>
<td>Bash</td>
<td>Renders <a href="https://en.wikipedia.org/wiki/Man_page">man
pages</a> in HTML</td>
</tr>
<tr>
<td><a
href="https://github.com/dillo-browser/dillo-plugin-spartan">dillo-plugin-spartan</a></td>
<td>spartan://</td>
<td>Bash</td>
<td><a href="https://portal.mozz.us/spartan/spartan.mozz.us/">Spartan
protocol</a> plugin</td>
</tr>
</table>
<p>To add a new plugin to this list,
<a href="https://github.com/dillo-browser/dillo-browser.github.io/pulls">open
a PR</a>
or
<a href="mailto:[email protected]">send an email</a>
with a link to your repository and a short description.</p>
<p style="text-align: center; margin-top: 2em">
<a href="https://github.com/dillo-browser/dillo">GitHub</a> -
<a rel="me" href="https://fosstodon.org/@dillo">Mastodon</a> -
<a href="irc://irc.libera.chat/#dillo">IRC</a> -
<a href="https://lists.mailman3.com/postorius/lists/dillo-dev.mailman3.com/">Mailing list</a> -
<a href="https://liberapay.com/dillo/">Liberapay</a>
</p>
</div>
</body>
</html>