~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:
 
1
<html xmlns="http://www.w3.org/1999/xhtml"
 
2
      xmlns:xi="http://www.w3.org/2001/XInclude"
 
3
      xmlns:py="http://genshi.edgewall.org/" py:strip="">
 
4
      
 
5
  <body py:strip="">
 
6
    <div id="console_body" py:attrs="start_body_attrs">
 
7
      <h1 py:if="not windowpane">Python Console</h1>
 
8
      <div id="console_heading" py:if="windowpane">Python Console
 
9
        <span class="console_button minimize">
 
10
          <a onclick="console_minimize()"
 
11
              title="Minimize the Python console">
 
12
            <img src="${minimize_path}" alt="Minimize" />
 
13
          </a>
 
14
        </span>
 
15
      </div>
 
16
      <div id="console_body2">
 
17
        <pre id="console_output" class='outputMsg'></pre>
 
18
        <div id="console_input">
 
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>
 
41
          </div>
 
42
        </div>
 
43
      </div>
 
44
    </div>
 
45
    <div py:if="windowpane" id="console_filler" class="windowpane minimal">
 
46
    <!-- Console filler, provides extra vertical space to stop the console
 
47
                                            covering over the bottom content -->
 
48
    </div>
 
49
  </body>
 
50
</html>