changeset 0:fddd11ae516c

start
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 23 Oct 2024 13:13:07 -0600
parents
children b116b6ef07bf
files .hgignore serve.sh src/index.html.luan src/lib/Shared.luan src/private/tools/index.html.luan src/site.css
diffstat 6 files changed, 135 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Wed Oct 23 13:13:07 2024 -0600
@@ -0,0 +1,3 @@
+syntax: glob
+
+err
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/serve.sh	Wed Oct 23 13:13:07 2024 -0600
@@ -0,0 +1,1 @@
+luan luan:http/serve.luan src 2>&1 | tee err
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/index.html.luan	Wed Oct 23 13:13:07 2024 -0600
@@ -0,0 +1,36 @@
+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 header = Shared.header or error()
+
+
+return function()
+	Io.stdout = Http.response.text_writer()
+%>
+<!doctype html>
+<html>
+	<head>
+<%		head() %>
+		<title>Reactionary Chat</title>
+		<style>
+			h1 {
+				margin-bottom: 0;
+			}
+			h3 {
+				margin-top: 8px;
+			}
+		</style>
+	</head>
+	<body>
+<%		header() %>
+		<div content>
+			<h1>Reactionary Chat</h1>
+			<h3>A free web-based instant messaging service by <a href="https://www.reactionary.software/">Reactionary Software</a></h3>
+		</div>
+	</body>
+</html>
+<%
+end
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/lib/Shared.luan	Wed Oct 23 13:13:07 2024 -0600
@@ -0,0 +1,36 @@
+local Luan = require "luan:Luan.luan"
+local error = Luan.error
+local ipairs = Luan.ipairs or error()
+
+
+local Shared = {}
+
+function Shared.head()
+%>
+		<meta name="viewport" content="width=device-width, initial-scale=1">
+		<style>
+			@import "/site.css";
+		</style>
+<%
+end
+
+local function header(crumbs)
+%>
+		<div header>
+			<a href="/">Reactionary Chat</a>
+<%	for _, crumb in ipairs(crumbs or {}) do %>
+			/ <%=crumb%>
+<%	end %>
+		</div>
+<%
+end
+Shared.header = header
+
+function Shared.private_header()
+	header{
+		[[<a href="/private/">private</a>]]
+		[[<a href="/private/tools/">tools</a>]]
+	}
+end
+
+return Shared
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/private/tools/index.html.luan	Wed Oct 23 13:13:07 2024 -0600
@@ -0,0 +1,32 @@
+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 header = Shared.private_header or error()
+
+
+return function()
+	Io.stdout = Http.response.text_writer()
+%>
+<!doctype html>
+<html>
+	<head>
+<%		head() %>
+		<title>Chat Private Tools</title>
+	</head>
+	<body>
+<%		header() %>
+		<div content>
+			<h1>Private Tools</h1>
+			<p><a href="private_users.html">edit private users</a></p>
+			<p><a href="backup.html">edit backup</a></p>
+			<p><a href="all_users.html">all users</a></p>
+			<p><a href="configure_mail.html">configure mail</a></p>
+			<p><a href="links.txt">links.txt</a></p>
+		</div>
+	</body>
+</html>
+<%
+end
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/site.css	Wed Oct 23 13:13:07 2024 -0600
@@ -0,0 +1,27 @@
+* {
+ 	box-sizing: border-box;
+}
+
+body {
+	font-family: Sans-Serif;
+	margin: 0;
+}
+
+a {
+	text-decoration: none;
+}
+a:hover {
+	text-decoration: underline;
+}
+
+div[header] {
+	font-size: 14px;
+	background-color: #ddd;
+	padding: 8px 3%;
+}
+
+[content] {
+	margin-left: 3%;
+	margin-right: 3%;
+	margin-bottom: 2em;
+}