##// END OF EJS Templates
update payloads for msg spec 5...
update payloads for msg spec 5 - remove auto_rewrite_input - remove doctest_mode - remove exit key from ask_exit - rename 'edit_magic' to 'edit' - remove screen_lines from page remaining payloads ('edit', 'ask_exit', 'set_next_input', 'page') are documented as deprecated in the msg spec

File last commit:

r18495:ea4bb886
r19025:8567e14d
Show More
terminal.html
57 lines | 961 B | text/html | HtmlLexer
{% extends "page.html" %}
{% block title %}{{page_title}}{% endblock %}
{% block params %}
data-base-url="{{base_url}}"
data-ws-path="{{ws_path}}"
{% endblock %}
{% block site %}
<div id="terminado-container"></div>
{% endblock %}
{% block script %}
<!-- Hack: this needs to be outside the display:none block, so we can measure
its size in JS in setting up the page. It is still invisible. Putting in
the script block gets it outside the initially undisplayed region. -->
<!-- test size: 25x80 -->
<div style='position:absolute; left:-1000em'>
<pre id="dummy-screen" style="border: solid 5px white;" class="terminal">0
1
2
3
4
5
6
7
8
9
0
1
2
3
4
5
6
7
8
9
0
1
2
3
<span id="dummy-screen-rows" style="">01234567890123456789012345678901234567890123456789012345678901234567890123456789</span>
</pre>
</div>
{{super()}}
<script src="{{ static_url("terminal/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
{% endblock %}