Update the documentation.
This commit is contained in:
parent
e7aa19136d
commit
6872cd6ae1
3 changed files with 18 additions and 9 deletions
13
README.txt
13
README.txt
|
|
@ -28,6 +28,7 @@ server.
|
|||
The following files need to be copied into CHROOT/var/www:
|
||||
about.html
|
||||
bell.svg
|
||||
index.html
|
||||
options.html
|
||||
options.js
|
||||
rlgterm.js
|
||||
|
|
@ -35,7 +36,6 @@ The following files need to be copied into CHROOT/var/www:
|
|||
termemu.js
|
||||
termemu-keys.js
|
||||
tty.css
|
||||
Copy index-rlg.html to CHROOT/var/www/index.html.
|
||||
|
||||
sqlickrypt
|
||||
---
|
||||
|
|
@ -51,7 +51,16 @@ running ldd.
|
|||
sqlickrypt needs /dev/urandom to exist in the chroot. Run as root:
|
||||
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.
|
||||
|
||||
|
|
|
|||
10
about.html
10
about.html
|
|
@ -1,11 +1,11 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>RLG-Web β7 Information</title>
|
||||
<title>RLG-Web β8 Information</title>
|
||||
<link rel="stylesheet" type="text/css" href="style-rlg.css">
|
||||
</head>
|
||||
<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>
|
||||
<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
|
||||
|
|
@ -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>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>
|
||||
<h2>Missing Features</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
|
||||
in RLG-Web.</p>
|
||||
<h2>Compatibility</h2>
|
||||
<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
|
||||
are capable of watching games being played in the other.</p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<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-keys.js"></script>
|
||||
<script type="text/javascript" src="rlgterm.js"></script>
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
<link rel="stylesheet" type="text/css" href="style-rlg.css">
|
||||
</head>
|
||||
<body onload="setup()" onkeydown="sendkey(event)">
|
||||
<h1>RLG-Web β7</h1>
|
||||
<h1>RLG-Web β8</h1>
|
||||
<div id ="top">
|
||||
<img src="/bell.svg" alt="bell" id="bell">
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue