0
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local Io = require "luan:Io.luan"
|
|
4 local Http = require "luan:http/Http.luan"
|
|
5 local Shared = require "site:/lib/Shared.luan"
|
|
6 local head = Shared.head or error()
|
|
7 local header = Shared.header or error()
|
|
8
|
|
9
|
|
10 return function()
|
|
11 Io.stdout = Http.response.text_writer()
|
|
12 %>
|
|
13 <!doctype html>
|
|
14 <html>
|
|
15 <head>
|
|
16 <% head() %>
|
|
17 </head>
|
|
18 <body>
|
|
19 <% header() %>
|
|
20 <div content>
|
25
|
21 <h1>About Web Chat</h1>
|
|
22
|
|
23 <p>This is a free web-based instant messaging service written for websites wanting to provide support through chat. The other existing solutions are overcomplicated enterprise services that are often expensive. All that is really needed is a simple general chat. Each user gets a URL and other people can chat with the user through that URL.</p>
|
|
24
|
|
25 <p>As a simple service, this doesn't implement features that can be handled elsewhere. In particular we don't provide:</p>
|
|
26 <ul>
|
|
27 <li>file transfer - Use email instead.</li>
|
|
28 <li>voice, video, and screen share - Use <a href="https://talky.io/">talky</a> instead. Just make a talky URL and then post it in our chat.</li>
|
|
29 </ul>
|
|
30
|
|
31 <p>This is an open <a href="https://hg.reactionary.software/repo/chat/">source</a> project.</p>
|
0
|
32 </div>
|
|
33 </body>
|
|
34 </html>
|
|
35 <%
|
|
36 end
|