comparison src/hg_dev.html.luan @ 55:04501bde187d

add hg_dev
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 14 Jan 2024 21:36:09 -0700
parents src/java_fork.html.luan@c385a4f75b10
children
comparison
equal deleted inserted replaced
54:50db01566278 55:04501bde187d
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 Development</title>
18 </head>
19 <body>
20 <% needed_header() %>
21 <div content>
22 <h1>Mercurial Development</h1>
23
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>
25
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>
27
28 <p>Mercurial is written in Python, so this is for a Python programmer.</p>
29 </div>
30 </body>
31 </html>
32 <%
33 end