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

« back to all changes in this revision

Viewing changes to ivle/webapp/console/overlay.html

  • Committer: William Grant
  • Date: 2009-12-08 03:50:24 UTC
  • mfrom: (1294.2.143 ui-the-third)
  • Revision ID: grantw@unimelb.edu.au-20091208035024-wjx8zp54gth15ph8
Merge ui-the-third. This is another UI revamp.

The header is now thin! Thin! The yellow bar is gone. The tabs are gone.
Breadcrumbs are here. Routes is replaced (with an object publishing
mechanism). Views are less repetitive. etc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
      
5
5
  <body py:strip="">
6
6
    <div id="console_body" py:attrs="start_body_attrs">
7
 
      <h1 py:if="not windowpane">Python Console</h1>
8
7
      <div id="console_heading" py:if="windowpane">Python Console
9
8
        <span class="console_button minimize">
10
9
          <a onclick="console_minimize()"
16
15
      <div id="console_body2">
17
16
        <pre id="console_output" class='outputMsg'></pre>
18
17
        <div id="console_input">
19
 
          <div id="console_inputArea">
 
18
          <div>
 
19
            <div>
 
20
              <label id="console_prompt">&gt;&gt;&gt; </label>
 
21
            </div>
 
22
            <div id="console_inputCell">
 
23
              <input id="console_inputText" type="text" 
 
24
                  onkeydown="return catch_input(event.keyCode)" />
 
25
            </div>
 
26
            <div>
 
27
              <input type='button' value='Interrupt'
 
28
                  onclick='set_interrupt();'/>
 
29
              <input type='button' value='Clear Output'
 
30
                  onclick='return clear_output();'/>
 
31
              <input type='button' value='Reset'
 
32
                  onclick='console_reset();'/>
 
33
            </div>
 
34
            <div py:if="windowpane" class="console_button maximize">
 
35
              <a onclick="console_maximize()"
 
36
                  title="Open up the Python console">
 
37
                <img src="${maximize_path}" alt="Maximize"/>
 
38
              </a>
 
39
            </div>
20
40
          </div>
21
 
          <label id="console_prompt">&gt;&gt;&gt; </label>
22
 
          <input id="console_inputText" type="text" size="80" 
23
 
              onkeypress="return catch_input(event.keyCode)" />
24
 
          <input type='button' value='Interrupt' onclick='set_interrupt();'/>
25
 
          <input type='button' value='Clear Output' onclick='return clear_output();'/>
26
 
          <input type='button' value='Reset' onclick='console_reset();'/>
27
 
          <span py:if="windowpane" class="console_button maximize">
28
 
            <a onclick="console_maximize()"
29
 
                title="Open up the Python console">
30
 
              <img src="${maximize_path}" alt="Maximize"/>
31
 
            </a>
32
 
          </span>
33
41
        </div>
34
42
      </div>
35
43
    </div>