##// END OF EJS Templates
fix regular expression for detecting links in stdout...
fix regular expression for detecting links in stdout The previous expression was matching both the beginning and the end of the line, which would end up swallowing the next match, ultimately matching every other URL in the string. This removes the end-of-line check, so it will match every URL. The wrapURLs function to make URLs easier to identify does not seem to have been necessary, and has thus been removed. closes #2834

File last commit:

r9265:45c3a2ef
r10045:d8ed554e
Show More
login.html
42 lines | 876 B | text/html | HtmlLexer
Cameron Bates
fix jinja2 rendering for password protected notebooks
r8896 {% extends "page.html" %}
Stefan van der Walt
Use template inheritance.
r5324
Brian Granger
Refactoring templates and top level js/css organization.
r6192 {% block stylesheet %}
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 <link rel="stylesheet" href="{{static_url("css/login.css") }}" type="text/css"/>
Cameron Bates
fix jinja2 rendering for password protected notebooks
r8896 {% 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
Bussonnier Matthias
main_app -> ipython-main-app
r9265 <div id="ipython-main-app">
Brian Granger
Refactoring templates and top level js/css organization.
r6192
{% if login_available %}
Cameron Bates
fix jinja2 rendering for password protected notebooks
r8896 <form action="{{base_project_url}}login?next={{next}}" method="post">
Matthias BUSSONNIER
clean html, style logon form
r6840 Password: <input type="password" class='ui-widget ui-widget-content' name="password" id="password_input">
Brian Granger
Refactoring templates and top level js/css organization.
r6192 <input type="submit" value="Log in" id="login_submit">
Stefan van der Walt
Use template inheritance.
r5324 </form>
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
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
Brian Granger
Refactoring templates and top level js/css organization.
r6192 <div/>
Stefan van der Walt
On the login page, focus on the password field.
r5720
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
Brian Granger
Refactoring templates and top level js/css organization.
r6192
Stefan van der Walt
On the login page, focus on the password field.
r5720 {% block script %}
Brian Granger
Refactoring templates and top level js/css organization.
r6192
<script src="{{static_url("js/loginmain.js") }}" type="text/javascript" charset="utf-8"></script>
Cameron Bates
fix jinja2 rendering for password protected notebooks
r8896 {% endblock %}