##// END OF EJS Templates
relax default heartbeat period in IPython.parallel to 3s (from 1s)...
relax default heartbeat period in IPython.parallel to 3s (from 1s) Matches heartbeats elsewhere. 3s should be extremely conservative, as most heartbeat responses are O(1ms).

File last commit:

r5723:8326cad4
r5953:a4d4ccc5
Show More
logout.html
28 lines | 495 B | text/html | HtmlLexer
{% extends layout.html %}
{% block content_panel %}
<ul>
{% if read_only or not login_available %}
Proceed to the <a href="/">list of notebooks</a>.</li>
{% else %}
Proceed to the <a href="/login">login page</a>.</li>
{% end %}
</ul>
{% end %}
{% block login_widget %}
{% end %}
{% block script %}
<script type="text/javascript">
$(document).ready(function() {
IPython.login_widget = new IPython.LoginWidget('span#login_widget');
});
</script>
{% end %}