1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:py="http://genshi.edgewall.org/" py:strip="">
<body py:strip="">
<div id="console_body" py:attrs="start_body_attrs">
<h1 py:if="not windowpane">Python Console</h1>
<div id="console_heading" py:if="windowpane">Python Console
<span class="console_button minimize">
<a onclick="console_minimize()"
title="Minimize the Python console">
<img src="${minimize_path}" alt="Minimize" />
</a>
</span>
</div>
<div id="console_body2">
<pre id="console_output" class='outputMsg'></pre>
<div id="console_input">
<div id="console_inputArea">
</div>
<label id="console_prompt">>>> </label>
<input id="console_inputText" type="text" size="80"
onkeypress="return catch_input(event.keyCode)" />
<input type='button' value='Interrupt' onclick='set_interrupt();'/>
<input type='button' value='Clear Output' onclick='return clear_output();'/>
<input type='button' value='Reset' onclick='console_reset();'/>
<span py:if="windowpane" class="console_button maximize">
<a onclick="console_maximize()"
title="Open up the Python console">
<img src="${maximize_path}" alt="Maximize"/>
</a>
</span>
</div>
</div>
</div>
<div py:if="windowpane" id="console_filler" class="windowpane minimal">
<!-- Console filler, provides extra vertical space to stop the console
covering over the bottom content -->
</div>
</body>
</html>
|