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

« back to all changes in this revision

Viewing changes to console/index.html

  • Committer: mattgiuca
  • Date: 2007-12-21 03:21:27 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:120
setup.py: Added command-line argument mode for conf. This completely works!

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='md5.js'></script>
7
 
  <script type='text/javascript' src='json2.js'></script>
8
 
  <script type='text/javascript' src='console.js'></script>
 
6
  <script type='text/javascript' src='scripts/console.js'></script>
9
7
  <style type='text/css'>
10
8
    #output {
11
9
        border: solid blue 1pt;
12
10
        height: 24em;
13
11
        overflow: scroll;
14
12
        margin-bottom: 4pt;
15
 
        padding: 4pt;
 
13
    }
 
14
    #errors {
 
15
        border: solid red 1pt;
 
16
        height: 6em;
 
17
        overflow: scroll;
 
18
        margin-bottom: 4pt;
16
19
    }
17
20
    #input {
18
21
        border: solid green 1pt;
19
22
    }
20
 
    #prompt {
21
 
        font-family: monospace;
22
 
    }
23
 
    pre.errorMsg {
24
 
        color: red;
25
 
        margin-top: 0em;
26
 
        margin-bottom: 0em;
27
 
    }
28
 
    pre.inputMsg {
29
 
        color: gray;
30
 
        margin-top: 0em;
31
 
        margin-bottom: 0em;
32
 
    }
33
 
    pre.outputMsg {
34
 
        margin-top: 0em;
35
 
        margin-bottom: 0em;
36
 
    }
37
23
  </style>
38
24
 </head>
39
25
 <body>
40
26
  <div id='output'>
41
27
  </div>
 
28
  <div id='errors'>
 
29
  </div>
42
30
  <div id='input'>
43
 
   <div id='inputArea'>
44
 
   </div>
45
 
   <label id='prompt'>&gt;&gt;&gt;&nbsp;</label><input id='inputText' type='text' size='80' onkeypress='catch_input(event.keyCode)'/>
 
31
   <input type='text' size='80' onchange='enter_line(this)'/>
46
32
  </div>
47
33
 </body>
48
34
</html>