~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to console/index.html

  • Committer: drtomc
  • Date: 2008-01-02 04:45:20 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:126
A basic version of the console going!

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
<html>
4
4
 <head>
5
5
  <title>IVLE Python Console</title>
6
 
  <script type='text/javascript' src='scripts/console.js'></script>
 
6
  <script type='text/javascript' src='md5.js'></script>
 
7
  <script type='text/javascript' src='json2.js'></script>
 
8
  <script type='text/javascript' src='console.js'></script>
7
9
  <style type='text/css'>
8
10
    #output {
9
11
        border: solid blue 1pt;
20
22
    #input {
21
23
        border: solid green 1pt;
22
24
    }
 
25
    #prompt {
 
26
        font-family: monospace;
 
27
    }
23
28
  </style>
24
29
 </head>
25
30
 <body>
26
31
  <div id='output'>
 
32
    <pre id='outputArea'></pre>
27
33
  </div>
28
34
  <div id='errors'>
 
35
    <pre id='errorArea'></pre>
29
36
  </div>
30
37
  <div id='input'>
31
 
   <input type='text' size='80' onchange='enter_line(this)'/>
 
38
    <pre id='inputArea'></pre>
 
39
   <label id='prompt'>&gt;&gt;&gt;&nbsp;</label><input id='inputText' type='text' size='80' onkeypress='catch_input(event.keyCode)'/>
32
40
  </div>
33
41
 </body>
34
42
</html>