##// END OF EJS Templates
Prevent qtconsole frontend freeze on lots of output....
Prevent qtconsole frontend freeze on lots of output. The output from the kernel is now clipped to last `buffer_size` before displaying and a timer is used to flush the pending output text instead of attempting to display text on every stream output from kernel. The timer interval is adjusted based on actual time taken to append a screenful of text to widget. This throttles the widget repaints and avoids choking the Qt event loop leaving time to handle other Qt events. Test cases: In [1]: for i in xrange(1000000): print i In [2]: range(100000) Without this commit the first input causes the qtconsole frontend to freeze, not responding to `Ctrl+C`.

File last commit:

r11335:2c546c48
r11519:c7a90e39
Show More
page.html
94 lines | 3.1 KiB | text/html | HtmlLexer
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350
Stefan van der Walt
Use template inheritance.
r5324 <!DOCTYPE HTML>
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% macro static_url(name) -%}
Bussonnier Matthias
diverse fixes for project url...
r8938 {{ base_project_url }}static/{{ name }}
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {%- endmacro %}
Stefan van der Walt
Use template inheritance.
r5324 <html>
<head>
<meta charset="utf-8">
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 <title>{% block title %}IPython Notebook{% endblock %}</title>
MinRK
use responsive bootstrap
r10900 <link rel="shortcut icon" type="image/x-icon" href="{{static_url("base/images/favicon.ico") }}">
debjan
Chrome frame awareness
r9092 <meta http-equiv="X-UA-Compatible" content="chrome=1">
MinRK
use components jquery-ui
r10894 <link rel="stylesheet" href="{{static_url("components/jquery-ui/themes/smoothness/jquery-ui.min.css") }}" type="text/css" />
MinRK
use responsive bootstrap
r10900 <meta name="viewport" content="width=device-width, initial-scale=1.0">
MinRK
start using bootstrap
r10884
Matthias BUSSONNIER
use super in templates
r9387 {% block stylesheet %}
Matthias BUSSONNIER
propagate use_less flag in all pages
r9384 {% block lesscss %}
Brian E. Granger
Updating fabfile and templates for global style.min.css.
r10716 {% if use_less %}
<link rel="stylesheet/less" href="{{ static_url("style/style.less") }}" type="text/css" />
{% else %}
<link rel="stylesheet" href="{{ static_url("style/style.min.css") }}" type="text/css"/>
{% endif %}
Brian E. Granger
Creating override.css for each page....
r10723 {% endblock %}
Matthias BUSSONNIER
re-fix cluster list
r9386 {% endblock %}
Brian E. Granger
Removing one level uf subdirs in static/custom.
r10739 <link rel="stylesheet" href="{{ static_url("custom/custom.css") }}" type="text/css" />
Matthias BUSSONNIER
Inject requirejs in notebook and start using it.
r10758 <script src="{{static_url("components/requirejs/require.js") }}" type="text/javascript" charset="utf-8"></script>
<script>
require.config({
Matthias BUSSONNIER
Use {{static_url}} as require search root
r10861 baseUrl: '{{static_url() }}',
Matthias BUSSONNIER
Inject requirejs in notebook and start using it.
r10758 });
</script>
Stefan van der Walt
Use template inheritance.
r5324
Stefan van der Walt
Add logout button.
r5325 {% block meta %}
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}
Stefan van der Walt
Use template inheritance.
r5324
</head>
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 <body {% block params %}{% endblock %}>
Stefan van der Walt
Use template inheritance.
r5324
Paul Ivanov
Notice for users who disable javascript
r10981 <noscript>
Paul Ivanov
use less.css for the style of the noscript message
r10988 <div id='noscript'>
Paul Ivanov
Notice for users who disable javascript
r10981 IPython Notebook requires JavaScript.<br>
Please enable it to proceed.
</div>
</noscript>
MinRK
tweak header styling...
r10906 <div id="header" class="navbar navbar-static-top">
<div class="navbar-inner navbar-nobg">
<div class="container">
<div id="ipython_notebook" class="nav brand pull-left"><a href="{{base_project_url}}" alt='dashboard'><img src='{{static_url("base/images/ipynblogo.png") }}' alt='IPython Notebook'/></a></div>
Stefan van der Walt
Hide top login/logout buttons on login/logout pages.
r5723
{% block login_widget %}
<span id="login_widget">
{% if logged_in %}
<button id="logout">Logout</button>
{% elif login_available and not logged_in %}
<button id="login">Login</button>
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endif %}
Stefan van der Walt
Hide top login/logout buttons on login/logout pages.
r5723 </span>
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}
Stefan van der Walt
Hide top login/logout buttons on login/logout pages.
r5723
Stefan van der Walt
Use template inheritance.
r5324 {% block header %}
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}
MinRK
use responsive bootstrap
r10900 </div>
MinRK
tweak header styling...
r10906 </div>
Stefan van der Walt
Use template inheritance.
r5324 </div>
MinRK
tweak header styling...
r10906 <div id="site">
Brian Granger
Refactoring templates and top level js/css organization.
r6192 {% block site %}
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}
Stefan van der Walt
Use template inheritance.
r5324 </div>
MinRK
start using bootstrap
r10884 <script src="{{static_url("components/jquery/jquery.min.js") }}" type="text/javascript" charset="utf-8"></script>
MinRK
jquery-ui.custom has been renamed
r10887 <script src="{{static_url("components/jquery-ui/ui/minified/jquery-ui.min.js") }}" type="text/javascript" charset="utf-8"></script>
MinRK
start using bootstrap
r10884 <script src="{{static_url("components/bootstrap/bootstrap/js/bootstrap.min.js") }}" type="text/javascript" charset="utf-8"></script>
Brian E. Granger
More work on the less setup.
r10706 <script src="{{static_url("base/js/namespace.js") }}" type="text/javascript" charset="utf-8"></script>
<script src="{{static_url("base/js/page.js") }}" type="text/javascript" charset="utf-8"></script>
<script src="{{static_url("auth/js/loginwidget.js") }}" type="text/javascript" charset="utf-8"></script>
Brian Granger
Initial work to add Wijmo based menu.
r5856
Stefan van der Walt
Use template inheritance.
r5324 {% block script %}
Matthias BUSSONNIER
propagate use_less flag in all pages
r9384 {% if use_less %}
MinRK
fix a few URLs from previous PR...
r10528 <script src="{{ static_url("components/less.js/dist/less-1.3.3.min.js") }}" charset="utf-8"></script>
Matthias BUSSONNIER
propagate use_less flag in all pages
r9384 {% endif %}
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}
Stefan van der Walt
Use template inheritance.
r5324
Brian E. Granger
Removing one level uf subdirs in static/custom.
r10739 <script src="{{static_url("custom/custom.js") }}" type="text/javascript" charset="utf-8"></script>
MinRK
add empty custom.js/css...
r7925
Stefan van der Walt
Use template inheritance.
r5324 </body>
</html>