3
|
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() %>
|
55
|
17 <title>Reactionary Software - Mercurial Development</title>
|
15
|
18 </head>
|
3
|
19 <body>
|
|
20 <% needed_header() %>
|
|
21 <div content>
|
55
|
22 <h1>Mercurial Development</h1>
|
3
|
23
|
55
|
24 <p><a href="mercurial.html">Mercurial</a> seems okay, but I have an older version. Are the newer versions still okay? It would be worth having someone involved with Mercurial to make sure that modern scum don't ruin it.</p>
|
3
|
25
|
55
|
26 <p>I can think of at least one extension worth adding. This would be to replace <a href="https://hg.reactionary.software/">my hosting solution</a> with an extension. Hosting should be available to everyone, and then I wouldn't need to maintain my hosting solution.</p>
|
3
|
27
|
55
|
28 <p>Mercurial is written in Python, so this is for a Python programmer.</p>
|
3
|
29 </div>
|
|
30 </body>
|
|
31 </html>
|
|
32 <%
|
|
33 end
|