view src/hg_dev.html.luan @ 91:76baf48ea36b

add translation
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 02 May 2025 17:17:52 -0600
parents 8bd99d5f468e
children
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.error
local Io = require "luan:Io.luan"
local Site_translator = require "luan:gpt/Site_translator.luan"
local get_lang = Site_translator.get_lang or error()
local text_writer = Site_translator.text_writer or error()
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 = text_writer()
%>
<!doctype html>
<html lang="<%=get_lang()%>">
	<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 culture programmers 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