view 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
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