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

« back to all changes in this revision

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

  • Committer: Matt Giuca
  • Date: 2009-12-01 04:27:58 UTC
  • mfrom: (1164.2.46 sphinx-docs)
  • Revision ID: matt.giuca@gmail.com-20091201042758-wuxd9bdec00c283i
Merged sphinx-docs branch. This adds Sphinx documentation for the entire IVLE system (for system administrators and developers), and removes all of our random old document files (all either irrelevant, or moved into the Sphinx docs nicely). Currently incomplete, but ready to merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
      <div id="console_body2">
17
17
        <pre id="console_output" class='outputMsg'></pre>
18
18
        <div id="console_input">
19
 
          <div id="console_inputArea">
 
19
          <div>
 
20
            <div>
 
21
              <label id="console_prompt">&gt;&gt;&gt; </label>
 
22
            </div>
 
23
            <div id="console_inputCell">
 
24
              <input id="console_inputText" type="text" 
 
25
                  onkeydown="return catch_input(event.keyCode)" />
 
26
            </div>
 
27
            <div>
 
28
              <input type='button' value='Interrupt'
 
29
                  onclick='set_interrupt();'/>
 
30
              <input type='button' value='Clear Output'
 
31
                  onclick='return clear_output();'/>
 
32
              <input type='button' value='Reset'
 
33
                  onclick='console_reset();'/>
 
34
            </div>
 
35
            <div py:if="windowpane" class="console_button maximize">
 
36
              <a onclick="console_maximize()"
 
37
                  title="Open up the Python console">
 
38
                <img src="${maximize_path}" alt="Maximize"/>
 
39
              </a>
 
40
            </div>
20
41
          </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
42
        </div>
34
43
      </div>
35
44
    </div>