Mercurial > hg > rlgwebd
annotate index-sh.html @ 0:bd412f63ce0d
Put this project under version control, finally.
| author | John "Elwin" Edwards <elwin@sdf.org> | 
|---|---|
| date | Sun, 06 May 2012 08:45:40 -0700 | 
| parents | |
| children | 21738794755e | 
| 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> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
4 <title>WebTTY</title> | 
| 
 
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> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
6 <script type="text/javascript" src="shterm.js"></script> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
7 <link rel="stylesheet" type="text/css" href="tty.css"> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
8 </head> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
9 <body onload="setup()" onkeydown="sendkey(event)"> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
10 <h1>WebTTY</h1> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
11 <div id ="top"> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
12 <span id="ttitle"></span> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
13 <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
 | 
14 </div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
15 <div id="termwrap"> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
16 Browsing with Javascript turned off? I sympathize. I didn't want Javascript to be necessary for WebTerm. Unfortunately, the only other way to make it work was Java applets. | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
17 </div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
18 <div class="keyrow"> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
19 <div class="key" onclick="vkey('`')">`</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
20 <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
 | 
21 <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
 | 
22 <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
 | 
23 <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
 | 
24 <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
 | 
25 <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
 | 
26 <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
 | 
27 <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
 | 
28 <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
 | 
29 <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
 | 
30 <div class="key" onclick="vkey('-')">-</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
31 <div class="key" onclick="vkey('=')">=</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
32 <div class="key" onclick="vkey('\b')" style="width: 2.5em">Bksp</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
33 </div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
34 <div class="keyrow"> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
35 <div class="key" onclick="vkey('\t')" style="width: 2.5em">Tab</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
36 <div class="key" onclick="vkey('q')">Q</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
37 <div class="key" onclick="vkey('w')">W</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
38 <div class="key" onclick="vkey('e')">E</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
39 <div class="key" onclick="vkey('r')">R</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
40 <div class="key" onclick="vkey('t')">T</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
41 <div class="key" onclick="vkey('y')">Y</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
42 <div class="key" onclick="vkey('u')">U</div> | 
| 
 
bd412f63ce0d
Put this project under version control, finally.
 
John "Elwin" Edwards <elwin@sdf.org> 
parents:  
diff
changeset
 | 
43 <div class="key" onclick="vkey('i')">I</div> | 
