Mercurial > hg > rlgwebd
annotate index-rlg.html @ 78:06375a159188
Try to guess a good text size.
When starting, resize the fonts if there isn't room for the terminal,
or if there is a lot of empty space.
| author | John "Elwin" Edwards <elwin@sdf.org> | 
|---|---|
| date | Sat, 23 Jun 2012 19:13:34 -0700 | 
| parents | a497ecd116d9 | 
| children | 3fd410c52a61 | 
| rev | line source | 
|---|---|
| 0 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 2 <html> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 3 <head> | 
| 68 | 4 <title>RLG-Web β2</title> | 
| 0 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 5 <script type="text/javascript" src="termemu.js"></script> | 
| 6 
21738794755e
Put common key tables into a common file.
 John "Elwin" Edwards <elwin@sdf.org> parents: 
0diff
changeset | 6 <script type="text/javascript" src="termemu-keys.js"></script> | 
| 0 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 7 <script type="text/javascript" src="rlgterm.js"></script> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 8 <link rel="stylesheet" type="text/css" href="tty.css"> | 
| 21 
82be54381964
RLG-Web client: some cleanup
 John "Elwin" Edwards <elwin@sdf.org> parents: 
19diff
changeset | 9 <link rel="stylesheet" type="text/css" href="style-rlg.css"> | 
| 0 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 10 </head> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 11 <body onload="setup()" onkeydown="sendkey(event)"> | 
| 68 | 12 <h1>RLG-Web β2</h1> | 
| 0 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 13 <div id ="top"> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 14 <span id="ttitle"></span> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 15 <img src="/bell.png" alt="bell" id="bell"> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 16 </div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 17 <div id="termwrap">TERM</div> | 
| 19 
188bbd857124
RLG-Web: add user registration
 John "Elwin" Edwards <elwin@sdf.org> parents: 
8diff
changeset | 18 <div class="modal" id="keyboard"> | 
| 76 
a497ecd116d9
Improvements to the keyboard.
 John "Elwin" Edwards <elwin@sdf.org> parents: 
74diff
changeset | 19 <div id="keys"> | 
| 0 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 20 <div class="keyrow"> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 21 <div class="key" onclick="vkey('`')">`</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 22 <div class="key" onclick="vkey('1')">1</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 23 <div class="key" onclick="vkey('2')">2</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 24 <div class="key" onclick="vkey('3')">3</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 25 <div class="key" onclick="vkey('4')">4</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 26 <div class="key" onclick="vkey('5')">5</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 27 <div class="key" onclick="vkey('6')">6</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 28 <div class="key" onclick="vkey('7')">7</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 29 <div class="key" onclick="vkey('8')">8</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 30 <div class="key" onclick="vkey('9')">9</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 31 <div class="key" onclick="vkey('0')">0</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 32 <div class="key" onclick="vkey('-')">-</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 33 <div class="key" onclick="vkey('=')">=</div> | 
| 
bd412f63ce0d
Put this project under version control, finally.
 John "Elwin" Edwards <elwin@sdf.org> parents: diff
changeset | 34 <div class="key" onclick="vkey('\b')" style="width: 2.5em">Bksp</div> | 
| 76 
a497ecd116d9
Improvements to the keyboard.
 John "Elwin" Edwards <elwin@sdf.org> parents: 
74diff
changeset | 35 <div class="rkey" onclick="vkey('KP9')">↗</div> | 
| 
a497ecd116d9
Improvements to the keyboard.
 John "Elwin" Edwards <elwin@sdf.org> parents: 
74diff
changeset | 36 <div class="rkey" onclick="vkey('KP8')">↑</div> | 
| 
a497ecd116d9
Improvements to the keyboard.
 John "Elwin" Edwards <elwin@sdf.org> | 
