3
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local Io = require "luan:Io.luan"
|
91
|
4 local Site_translator = require "luan:gpt/Site_translator.luan"
|
|
5 local get_lang = Site_translator.get_lang or error()
|
|
6 local text_writer = Site_translator.text_writer or error()
|
3
|
7 local Shared = require "site:/lib/Shared.luan"
|
|
8 local head = Shared.head or error()
|
|
9 local needed_header = Shared.needed_header or error()
|
|
10
|
|
11
|
|
12 return function()
|
91
|
13 Io.stdout = text_writer()
|
3
|
14 %>
|
|
15 <!doctype html>
|
91
|
16 <html lang="<%=get_lang()%>">
|
3
|
17 <head>
|
|
18 <% head() %>
|
55
|
19 <title>Reactionary Software - Mercurial Development</title>
|
15
|
20 </head>
|
3
|
21 <body>
|
|
22 <% needed_header() %>
|
|
23 <div content>
|
55
|
24 <h1>Mercurial Development</h1>
|
3
|
25
|
72
|
26 <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 culture programmers don't ruin it.</p>
|
3
|
27
|
55
|
28 <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
|
29
|
55
|
30 <p>Mercurial is written in Python, so this is for a Python programmer.</p>
|
3
|
31 </div>
|
|
32 </body>
|
|
33 </html>
|
|
34 <%
|
|
35 end
|