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

1093 by chadnickbok
Adding the changes from my genshi branch into trunk.
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="">
1099.1.94 by William Grant
Start the console overlay minimised in the XHTML - previously the JavaScript
6
    <div id="console_body" py:attrs="start_body_attrs">
1100.1.26 by Matt Giuca
Console: Replaced the console-specific (black&grey) header with the standard
7
      <div id="console_heading" py:if="windowpane">Python Console
8
        <span class="console_button minimize">
1093 by chadnickbok
Adding the changes from my genshi branch into trunk.
9
          <a onclick="console_minimize()"
10
              title="Minimize the Python console">
1099.1.78 by William Grant
Add alt text to the console's minimize and maximize buttons.
11
            <img src="${minimize_path}" alt="Minimize" />
1093 by chadnickbok
Adding the changes from my genshi branch into trunk.
12
          </a>
13
        </span>
14
      </div>
15
      <div id="console_body2">
16
        <pre id="console_output" class='outputMsg'></pre>
17
        <div id="console_input">
1299 by William Grant
Clean up the new tablesque console.
18
          <div>
19
            <div>
1297 by David Coles
Fix the console input UI so that it displays propperly regardless of window width
20
              <label id="console_prompt">&gt;&gt;&gt; </label>
21
            </div>
1299 by William Grant
Clean up the new tablesque console.
22
            <div id="console_inputCell">
1297 by David Coles
Fix the console input UI so that it displays propperly regardless of window width
23
              <input id="console_inputText" type="text" 
1308 by William Grant
Unbreak console history retrieval in IE/WebKit.
24
                  onkeydown="return catch_input(event.keyCode)" />
1297 by David Coles
Fix the console input UI so that it displays propperly regardless of window width
25
            </div>
1299 by William Grant
Clean up the new tablesque console.
26
            <div>
1297 by David Coles
Fix the console input UI so that it displays propperly regardless of window width
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>
1299 by William Grant
Clean up the new tablesque console.
34
            <div py:if="windowpane" class="console_button maximize">
1297 by David Coles
Fix the console input UI so that it displays propperly regardless of window width
35
              <a onclick="console_maximize()"
36
                  title="Open up the Python console">
37
                <img src="${maximize_path}" alt="Maximize"/>
38
              </a>
39
            </div>
1093 by chadnickbok
Adding the changes from my genshi branch into trunk.
40
          </div>
41
        </div>
42
      </div>
43
    </div>
1099.1.94 by William Grant
Start the console overlay minimised in the XHTML - previously the JavaScript
44
    <div py:if="windowpane" id="console_filler" class="windowpane minimal">
1093 by chadnickbok
Adding the changes from my genshi branch into trunk.
45
    <!-- Console filler, provides extra vertical space to stop the console
46
                                            covering over the bottom content -->
47
    </div>
48
  </body>
49
</html>