Update the documentation.

This commit is contained in:
John "Elwin" Edwards 2015-01-14 15:32:21 -05:00
parent e7aa19136d
commit 6872cd6ae1
3 changed files with 18 additions and 9 deletions

View file

@ -28,6 +28,7 @@ server.
The following files need to be copied into CHROOT/var/www: The following files need to be copied into CHROOT/var/www:
about.html about.html
bell.svg bell.svg
index.html
options.html options.html
options.js options.js
rlgterm.js rlgterm.js
@ -35,7 +36,6 @@ The following files need to be copied into CHROOT/var/www:
termemu.js termemu.js
termemu-keys.js termemu-keys.js
tty.css tty.css
Copy index-rlg.html to CHROOT/var/www/index.html.
sqlickrypt sqlickrypt
--- ---
@ -51,7 +51,16 @@ running ldd.
sqlickrypt needs /dev/urandom to exist in the chroot. Run as root: sqlickrypt needs /dev/urandom to exist in the chroot. Run as root:
mknod CHROOT/dev/urandom c 1 9 mknod CHROOT/dev/urandom c 1 9
Starting and stopping dglwatcher
---
RLGWebD uses another C program to monitor the inprogress directories, because
Node's fs.watch() can't distinguish between file creation and deletion.
Compile with
cc -o dglwatcher dglwatcher.c
and copy into CHROOT/bin.
Starting and stopping RLGWebD
--- ---
Run the 'rlgwebd' shell script as root. Run the 'rlgwebd' shell script as root.

View file

@ -1,11 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html> <html>
<head> <head>
<title>RLG-Web β7 Information</title> <title>RLG-Web β8 Information</title>
<link rel="stylesheet" type="text/css" href="style-rlg.css"> <link rel="stylesheet" type="text/css" href="style-rlg.css">
</head> </head>
<body> <body>
<h1>RLG-Web β7 Help and Information</h1> <h1>RLG-Web β8 Help and Information</h1>
<p>This page explains <a href="/">RLG-Web</a> and how to use it. Since the project is still under rapid development, details may change.</p> <p>This page explains <a href="/">RLG-Web</a> and how to use it. Since the project is still under rapid development, details may change.</p>
<h2>Browser Compatibility</h2> <h2>Browser Compatibility</h2>
<p>RLG-Web uses WebSockets, which means the server can send data to your browser as soon as Rogue generates it, instead of waiting for the browser <p>RLG-Web uses WebSockets, which means the server can send data to your browser as soon as Rogue generates it, instead of waiting for the browser
@ -36,8 +36,8 @@ them.</p>
<p>rlgallery.org doesn't use https yet, so you should not assume your password is safe. Don't use the same one you use on your bank's website, etc.</p> <p>rlgallery.org doesn't use https yet, so you should not assume your password is safe. Don't use the same one you use on your bank's website, etc.</p>
<p>You don't have to supply a valid e-mail address. It will only be used if you ask to have your password reset.</p> <p>You don't have to supply a valid e-mail address. It will only be used if you ask to have your password reset.</p>
<p>You can change your e-mail or password on the <a href="/options.html">options page</a>.</p> <p>You can change your e-mail or password on the <a href="/options.html">options page</a>.</p>
<h2>Missing Features</h2> <h2>Compatibility</h2>
<p>You can't watch games that are being played in dgamelaunch yet. The opposite situation works: you can use dgamelaunch to watch games being played <p>RLG-Web cooperates with dgamelaunch. It uses the same account database. You can save a game in one and resume play with the other. Both systems
in RLG-Web.</p> are capable of watching games being played in the other.</p>
</body> </body>
</html> </html>

View file

@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html> <html>
<head> <head>
<title>RLG-Web β7</title> <title>RLG-Web β8</title>
<script type="text/javascript" src="termemu.js"></script> <script type="text/javascript" src="termemu.js"></script>
<script type="text/javascript" src="termemu-keys.js"></script> <script type="text/javascript" src="termemu-keys.js"></script>
<script type="text/javascript" src="rlgterm.js"></script> <script type="text/javascript" src="rlgterm.js"></script>
@ -9,7 +9,7 @@
<link rel="stylesheet" type="text/css" href="style-rlg.css"> <link rel="stylesheet" type="text/css" href="style-rlg.css">
</head> </head>
<body onload="setup()" onkeydown="sendkey(event)"> <body onload="setup()" onkeydown="sendkey(event)">
<h1>RLG-Web β7</h1> <h1>RLG-Web β8</h1>
<div id ="top"> <div id ="top">
<img src="/bell.svg" alt="bell" id="bell"> <img src="/bell.svg" alt="bell" id="bell">
</div> </div>