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

« back to all changes in this revision

Viewing changes to console/index.html

  • Committer: mattgiuca
  • Date: 2007-12-20 22:41:14 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:105
Removed all use of ivlepath variable. It is no longer set.
Instead, use ivle_install_dir which is taken from the admin-setup
configuration file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
  <title>IVLE Python Console</title>
6
6
  <script type='text/javascript' src='scripts/console.js'></script>
7
7
  <style type='text/css'>
8
 
    #output {
 
8
    div.output {
9
9
        border: solid blue 1pt;
10
10
        height: 24em;
11
11
        overflow: scroll;
12
12
        margin-bottom: 4pt;
13
13
    }
14
 
    #errors {
 
14
    div.errors {
15
15
        border: solid red 1pt;
16
16
        height: 6em;
17
17
        overflow: scroll;
18
18
        margin-bottom: 4pt;
19
19
    }
20
 
    #input {
 
20
    div.input {
 
21
        
21
22
        border: solid green 1pt;
22
23
    }
23
24
  </style>
24
25
 </head>
25
26
 <body>
26
 
  <div id='output'>
27
 
  </div>
28
 
  <div id='errors'>
29
 
  </div>
30
 
  <div id='input'>
31
 
   <input type='text' size='80' onchange='enter_line(this)'/>
 
27
  <div class='output'>
 
28
  </div>
 
29
  <div class='errors'>
 
30
  </div>
 
31
  <div class='input'>
 
32
   <input type='text' size='80'/>
32
33
  </div>
33
34
 </body>
34
35
</html>