##// END OF EJS Templates
Addressed issues: renamed ZMQHistoryManager (appears to do need to do more than just an Accessor) in IPython/terminal/console/zmqhistory.py; added abc methods; rewrote access methods to load the history from the kernel client; works with 'ipython console' and with 'ipython console --kernel'
Addressed issues: renamed ZMQHistoryManager (appears to do need to do more than just an Accessor) in IPython/terminal/console/zmqhistory.py; added abc methods; rewrote access methods to load the history from the kernel client; works with 'ipython console' and with 'ipython console --kernel'

File last commit:

r18557:7350bfc2
r18846:9fa40ff7
Show More
tree.html
142 lines | 5.3 KiB | text/html | HtmlLexer
Brian E. Granger
More work on the less setup.
r10706 {% extends "page.html" %}
Stefan van der Walt
Use template inheritance.
r5324
Brian E. Granger
Nice dashboard page titles like /.../examples/notebooks/
r15085 {% block title %}{{page_title}}{% endblock %}
Stefan van der Walt
Use template inheritance.
r5324
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("tree/css/override.css") }}" type="text/css" />
{% endblock %}
Stefan van der Walt
Add logout button.
r5325 {% block params %}
Brian Granger
Major refactoring of notebook....
r6193
MinRK
s/base_project_url/base_url/...
r15238 data-base-url="{{base_url}}"
MinRK
quote data attributes...
r13061 data-notebook-path="{{notebook_path}}"
Thomas Kluyver
Only display terminals in dashboard if terminals are available
r18557 data-terminals-available="{{terminals_available}}"
Brian Granger
Major refactoring of notebook....
r6193
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}
Stefan van der Walt
Use template inheritance.
r5324
Brian Granger
Major refactoring of notebook....
r6193
Brian Granger
Refactoring templates and top level js/css organization.
r6192 {% block site %}
MinRK
ipython-main-app should be a bootstrap container
r10898 <div id="ipython-main-app" class="container">
Brian Granger
Refactoring templates and top level js/css organization.
r6192
Brian E. Granger
Tighten spacing of dashboard.
r15077 <div id="tab_content" class="tabbable">
<ul id="tabs" class="nav nav-tabs">
MinRK
use named tabs in tree
r10928 <li class="active"><a href="#notebooks" data-toggle="tab">Notebooks</a></li>
Paul Ivanov
put Running tab on the page
r15380 <li><a href="#running" data-toggle="tab">Running</a></li>
Thomas Kluyver
Only display terminals in dashboard if terminals are available
r18557 {% if terminals_available %}
Thomas Kluyver
Add list of available terminals in the dashboard
r18555 <li><a href="#terminals" data-toggle="tab">Terminals</a></li>
Thomas Kluyver
Only display terminals in dashboard if terminals are available
r18557 {% endif %}
MinRK
use named tabs in tree
r10928 <li><a href="#clusters" data-toggle="tab">Clusters</a></li>
Brian Granger
Initial try at adding tabs to project dashboard.
r6194 </ul>
MinRK
bootstrap base, auth
r10885 <div class="tab-content">
MinRK
use named tabs in tree
r10928 <div id="notebooks" class="tab-pane active">
Jonathan Frederic
Ran jdfreder/bootstrap2to3
r16913 <div id="notebook_toolbar" class="row">
MinRK
move some responsive bootstrap transitions...
r17358 <div class="col-sm-8 no-padding">
Brian E. Granger
Tighten spacing of dashboard.
r15077 <form id='alternate_upload' class='alternate_upload' >
Paul Ivanov
small whitespace cleanup, renamed drag_info...
r15518 <span id="notebook_list_info" style="position:absolute" >
Brian E. Granger
Tighten spacing of dashboard.
r15077 To import a notebook, drag the file onto the listing below or <strong>click here</strong>.
Paul Ivanov
small whitespace cleanup, renamed drag_info...
r15518 </span>
Brian E. Granger
Tighten spacing of dashboard.
r15077 <input type="file" name="datafile" class="fileinput" multiple='multiple'>
</form>
</div>
MinRK
move some responsive bootstrap transitions...
r17358 <div class="col-sm-4 no-padding tree-buttons">
Brian E. Granger
Tighten spacing of dashboard.
r15077 <span id="notebook_buttons" class="pull-right">
Jonathan Frederic
Lots of small alignment tweaks to get Bootstrap3 looking better
r16937 <button id="new_notebook" title="Create new notebook" class="btn btn-default btn-xs">New Notebook</button>
Thomas Spura
Port more icons to fontawesome-4
r17413 <button id="refresh_notebook_list" title="Refresh notebook list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
Brian E. Granger
Tighten spacing of dashboard.
r15077 </span>
</div>
Brian Granger
Initial try at adding tabs to project dashboard.
r6194 </div>
MinRK
use row-fluid for tree_list
r10919 <div id="notebook_list">
Jonathan Frederic
Ran jdfreder/bootstrap2to3
r16913 <div id="notebook_list_header" class="row list_header">
MinRK
use row-fluid for tree_list
r10919 <div id="project_name">
Bussonnier Matthias
Fix project path url in dashbord...
r9275 <ul class="breadcrumb">
Thomas Spura
Port more icons to fontawesome-4
r17413 <li><a href="{{breadcrumbs[0][0]}}"><i class="fa fa-home"></i></a></li>
Brian E. Granger
Adding proper breadcrumb support.
r15073 {% for crumb in breadcrumbs[1:] %}
Jonathan Frederic
Lots of small alignment tweaks to get Bootstrap3 looking better
r16937 <li><a href="{{crumb[0]}}">{{crumb[1]}}</a></li>
Bussonnier Matthias
Fix project path url in dashbord...
r9275 {% endfor %}
</ul>
MinRK
fight with bootstrap a little less in tree view
r10911 </div>
MinRK
use row-fluid for tree_list
r10919 </div>
</div>
Brian E. Granger
File upload/import working from notebook browser.
r4491 </div>
MinRK
bootstrap base, auth
r10885
Paul Ivanov
put Running tab on the page
r15380 <div id="running" class="tab-pane">
Jonathan Frederic
Ran jdfreder/bootstrap2to3
r16913 <div id="running_toolbar" class="row">
MinRK
move some responsive bootstrap transitions...
r17358 <div class="col-sm-8 no-padding">
Paul Ivanov
put Running tab on the page
r15380 <span id="running_list_info">Currently running IPython notebooks</span>
</div>
MinRK
move some responsive bootstrap transitions...
r17358 <div class="col-sm-4 no-padding tree-buttons">
Paul Ivanov
put Running tab on the page
r15380 <span id="running_buttons" class="pull-right">
Thomas Spura
Port more icons to fontawesome-4
r17413 <button id="refresh_running_list" title="Refresh running list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
Paul Ivanov
put Running tab on the page
r15380 </span>
</div>
</div>
<div id="running_list">
Jonathan Frederic
Fixed float
r16924 <div id="running_list_header" class="row list_header">
Paul Ivanov
refer to notebooks, not kernels.
r15482 <div> There are no notebooks running. </div>
Paul Ivanov
ok, Running tab is working now
r15454 </div>
Paul Ivanov
put Running tab on the page
r15380 </div>
</div>
Thomas Kluyver
Only display terminals in dashboard if terminals are available
r18557
{% if terminals_available %}
Thomas Kluyver
Add list of available terminals in the dashboard
r18555 <div id="terminals" class="tab-pane">
<div id="terminal_toolbar" class="row">
<div class="col-xs-8 no-padding">
<span id="terminal_list_info">Currently running terminals</span>
</div>
<div class="col-xs-4 no-padding tree-buttons">
<span id="terminal_buttons" class="pull-right">
<button id="new_terminal" title="New terminal" class="btn btn-default btn-xs">New Terminal</button>
<button id="refresh_terminal_list" title="Refresh terminal list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
</span>
</div>
</div>
<div id="terminal_list">
<div id="terminal_list_header" class="row list_header">
<div> There are no terminals running. </div>
</div>
</div>
</div>
Thomas Kluyver
Only display terminals in dashboard if terminals are available
r18557 {% endif %}
Thomas Kluyver
Add list of available terminals in the dashboard
r18555
MinRK
use named tabs in tree
r10928 <div id="clusters" class="tab-pane">
Brian Granger
Draft of the cluster list UI....
r6195
Jonathan Frederic
Ran jdfreder/bootstrap2to3
r16913 <div id="cluster_toolbar" class="row">
MinRK
move some responsive bootstrap transitions...
r17358 <div class="col-xs-8 no-padding">
Brian E. Granger
Tighten spacing of dashboard.
r15077 <span id="cluster_list_info">IPython parallel computing clusters</span>
</div>
MinRK
move some responsive bootstrap transitions...
r17358 <div class="col-xs-4 no-padding tree-buttons">
Brian E. Granger
Tighten spacing of dashboard.
r15077 <span id="cluster_buttons" class="pull-right">
Thomas Spura
Port more icons to fontawesome-4
r17413 <button id="refresh_cluster_list" title="Refresh cluster list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
Brian E. Granger
Tighten spacing of dashboard.
r15077 </span>
</div>
Brian Granger
Draft of the cluster list UI....
r6195 </div>
MinRK
use row-fluid for cluster list
r10920 <div id="cluster_list">
Jonathan Frederic
Ran jdfreder/bootstrap2to3
r16913 <div id="cluster_list_header" class="row list_header">
MinRK
move some responsive bootstrap transitions...
r17358 <div class="profile_col col-xs-4">profile</div>
<div class="status_col col-xs-3">status</div>
<div class="engines_col col-xs-3" title="Enter the number of engines to start or empty for default"># of engines</div>
<div class="action_col col-xs-2">action</div>
MinRK
use row-fluid for cluster list
r10920 </div>
</div>
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 </div>
Brian Granger
Initial try at adding tabs to project dashboard.
r6194 </div>
Brian Granger
Refactoring templates and top level js/css organization.
r6192
</div>
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488
Stefan van der Walt
Use template inheritance.
r5324 {% block script %}
Jonathan Frederic
@carreau review changes
r17204 {{super()}}
<script src="{{ static_url("tree/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}