Mercurial Hosting > reactionary
view src/hg_dev.html.luan @ 67:b1982e401900
security
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 15 Sep 2024 08:09:27 -0600 |
parents | 04501bde187d |
children |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local Shared = require "site:/lib/Shared.luan" local head = Shared.head or error() local needed_header = Shared.needed_header or error() return function() Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <% head() %> <title>Reactionary Software - Mercurial Development</title> </head> <body> <% needed_header() %> <div content> <h1>Mercurial Development</h1> <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> <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> <p>Mercurial is written in Python, so this is for a Python programmer.</p> </div> </body> </html> <% end