##// END OF EJS Templates
This feature was discussed in #6123, but it doesn't look like anything was ever incorporated into the IPython Notebook....
This feature was discussed in #6123, but it doesn't look like anything was ever incorporated into the IPython Notebook. Here's a brief overview of the changes: - Display of messages from other clients can be toggled on and off from within a notebook, either using the ``<M-m>e`` keyboard shortcut in the web UI, or through the option in the "Kernel" menu. - notebook.js controls whether messages are displayed through a callback that is invoked from kernel.js when no callbacks are available for a message. - The UI displays ``execute_input`` messages originating from an other clients in new cells at the end of the notebook. Output messages (``execute_result`` et al.) will only be displayed if a cell exists with a matching message ID. Pending design questions: - Should each ``execute_input`` message cause a new cell to be created? - Should new cells be placed at the end of the notebook, or elsewhere? If the latter, what criteria should be followed?

File last commit:

r17204:b67653df
r19164:17ac8ca3
Show More
logout.html
39 lines | 806 B | text/html | HtmlLexer
Brian E. Granger
More work on the less setup.
r10706 {% extends "page.html" %}
Stefan van der Walt
Add logout button.
r5325
Brian E. Granger
Creating override.css for each page....
r10723 {% block stylesheet %}
{{super()}}
<link rel="stylesheet" href="{{ static_url("auth/css/override.css") }}" type="text/css" />
{% endblock %}
Brian Granger
Refactoring templates and top level js/css organization.
r6192
{% block login_widget %}
Cameron Bates
fix jinja2 rendering for password protected notebooks
r8896 {% endblock %}
Brian Granger
Refactoring templates and top level js/css organization.
r6192
{% block site %}
Stefan van der Walt
Split read-only logic into three functions: read_only, logged_in, and login_available. Move display logic from javascript into templates.
r5722
MinRK
ipython-main-app should be a bootstrap container
r10898 <div id="ipython-main-app" class="container">
Stefan van der Walt
Split read-only logic into three functions: read_only, logged_in, and login_available. Move display logic from javascript into templates.
r5722
Brian Granger
Refactoring templates and top level js/css organization.
r6192 {% if message %}
{% for key in message %}
<div class="message {{key}}">
{{message[key]}}
</div>
Cameron Bates
fix jinja2 rendering for password protected notebooks
r8896 {% endfor %}
{% endif %}
Stefan van der Walt
Split read-only logic into three functions: read_only, logged_in, and login_available. Move display logic from javascript into templates.
r5722
MinRK
remove notebook read-only view...
r11644 {% if not login_available %}
MinRK
s/base_project_url/base_url/...
r15238 Proceed to the <a href="{{base_url}}">dashboard</a>.
Brian Granger
Refactoring templates and top level js/css organization.
r6192 {% else %}
MinRK
s/base_project_url/base_url/...
r15238 Proceed to the <a href="{{base_url}}login">login page</a>.
Cameron Bates
fix jinja2 rendering for password protected notebooks
r8896 {% endif %}
Stefan van der Walt
Split read-only logic into three functions: read_only, logged_in, and login_available. Move display logic from javascript into templates.
r5722
Stefan van der Walt
On the login page, focus on the password field.
r5720
Brian Granger
Refactoring templates and top level js/css organization.
r6192 <div/>
Cameron Bates
fix jinja2 rendering for password protected notebooks
r8896 {% endblock %}
Stefan van der Walt
Hide top login/logout buttons on login/logout pages.
r5723
Stefan van der Walt
On the login page, focus on the password field.
r5720 {% block script %}
Jonathan Frederic
@carreau review changes
r17204 {{super()}}
Brian Granger
Refactoring templates and top level js/css organization.
r6192
Brian E. Granger
More work on the less setup.
r10706 <script src="{{static_url("auth/js/logoutmain.js") }}" type="text/javascript" charset="utf-8"></script>
Brian Granger
Refactoring templates and top level js/css organization.
r6192
Cameron Bates
fix jinja2 rendering for password protected notebooks
r8896 {% endblock %}