Mercurial Hosting > reactionary
annotate src/mercurial_hosting.html.luan @ 9:a47430dc4b50
add to this.html
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 13 Apr 2022 11:59:14 -0600 |
parents | ecc67abdde3f |
children | 9694eff797bf |
rev | line source |
---|---|
1 | 1 local Luan = require "luan:Luan.luan" |
2 local error = Luan.error | |
3 local Io = require "luan:Io.luan" | |
4 local Http = require "luan:http/Http.luan" | |
5 local Shared = require "site:/lib/Shared.luan" | |
6 local head = Shared.head or error() | |
7 local needed_header = Shared.needed_header or error() | |
8 | |
9 | |
10 return function() | |
11 Io.stdout = Http.response.text_writer() | |
12 %> | |
13 <!doctype html> | |
14 <html> | |
15 <head> | |
16 <% head() %> | |
17 <title>Reactionary Software - Mercurial Hosting</title> | |
18 <head> | |
19 <body> | |
20 <% needed_header() %> | |
21 <div content> | |
22 <h1>Mercurial Hosting</h1> | |
23 | |
24 <p>Last I checked, there are no good <a href="/mercurial.html">Mercurial</a> hosting solutions available. So I use my own hack, for example for <a href="https://hg.luan.software/reactionary">this site</a>. But a good solution is needed. If you know of any good solutions, please let me know in a <a href="/discussion.html">discussion</a>. If there aren't any good solutions, then it would worthwhile to develop one.</p> | |
5
ecc67abdde3f
more on mercurial hosting
Franklin Schmidt <fschmidt@gmail.com>
parents:
1
diff
changeset
|
25 |
ecc67abdde3f
more on mercurial hosting
Franklin Schmidt <fschmidt@gmail.com>
parents:
1
diff
changeset
|
26 <p>While this is a relatively small project, it is incredibly important for reactionary software. As I explained in <a href="/mercurial.html">my post on Mercurial</a>, programmers who use Mercurial are likely to have good reactionary programming values, so a good Mercurial hosting service would be the best imaginable way to attract good programmers to the Reactionary Software cause.</p> |
1 | 27 </div> |
28 </body> | |
29 </html> | |
30 <% | |
31 end |