Mercurial Hosting > reactionary
view 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 |
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 Hosting</title> <head> <body> <% needed_header() %> <div content> <h1>Mercurial Hosting</h1> <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> <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> </div> </body> </html> <% end