Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Jonathan Frederic
- Thu, 10 Jul 2014 20:47:22
Show More
IPython/html/static/auth/js/loginmain.js
0
+4
-2
@@
-3,8
+3,10
3
3
4
4
var ipython = ipython || {};
5
5
require ([ 'base/js/page' ], function ( page ) {
6
ipython.page = new page . Page ();
6
var page_instanc e = new page . Page ();
7
7
$ ( 'button#login_submit' ). addClass ( "btn btn-default" );
8
ipython.page. show ();
8
page_instanc e. show ();
9
9
$ ( 'input#password_input' ). focus ();
10
11
ipython . page = page_instance ;
10
12
});
IPython/html/static/auth/js/logoutmain.js
0
+5
-3
@@
-2,8
+2,10
2
2
// Distributed under the terms of the Modified BSD License.
3
3
4
4
var ipython = ipython || {};
5
require ([ 'base/js/page' ], function ( Page) {
6
ipython.page = new page . Page ();
5
require ([ 'base/js/page' ], function ( p age) {
6
var page_instanc e = new page . Page ();
7
7
$ ( '#ipython-main-app' ). addClass ( 'border-box-sizing' );
8
ipython.page. show ();
8
page_instanc e. show ();
9
10
ipython . page = page_instance ;
9
11
});
IPython/html/static/base/js/dialog.js
0
+3
-3
IPython/html/static/base/js/pagemain.js
0
+5
-3
@@
-2,7
+2,9
2
2
// Distributed under the terms of the Modified BSD License.
3
3
4
4
var ipython = ipython || {};
5
require ([ 'base/js/page' ], function ( Page) {
6
ipython.page = new page . Page ();
7
ipython.page. show ();
5
require ([ 'base/js/page' ], function ( p age) {
6
var page_instanc e = new page . Page ();
7
page_instanc e. show ();
8
9
ipython . page = page_instance ;
8
10
});
IPython/html/static/base/js/utils.js
0
+3
-3
IPython/html/static/notebook/js/main.js
0
0
-2
@@
-63,8
+63,6
require([
63
63
var notification_area = new notificationarea . NotificationArea ( '#notification_area' , events , save_widget , notebook );
64
64
notification_area . init_notification_widgets ();
65
65
66
layout_manager . do_resize ();
67
68
66
$ ( 'body' ). append ( '<div id="fonttest"><pre><span id="test1">x</span>' +
69
67
'<span id="test2" style="font-weight: bold;">x</span>' +
70
68
'<span id="test3" style="font-style: italic;">x</span></pre></div>' );
IPython/html/static/notebook/js/notebook.js
0
+2
-2
@@
-42,14
+42,14
define([
42
42
this . config = config ;
43
43
this . events = events ;
44
44
this . keyboard_manager = keyboard_manager ;
45
// TODO: This code smells (and the other `= this` line a couple lines down)
46
// We need a better way to deal with circular instance references.
45
47
keyboard_manager . notebook = this ;
46
48
this . save_widget = save_widget ;
47
49
save_widget . notebook = this ;
48
50
49
51
mathjaxutils . init ();
50
52
51
52
window . marked = window . marked || marked ;
53
53
if ( marked ) {
54
54
marked . setOptions ({
55
55
gfm : true ,
IPython/html/templates/login.html
0
+1
0
@@
-46,6
+46,7
46
46
47
47
48
48
{% block script %}
49
{{super()}}
49
50
50
51
< script src = "{{static_url(" auth / js / loginmain . js ") }}" type = "text/javascript" charset = "utf-8" ></ script >
51
52
IPython/html/templates/logout.html
0
+1
0
@@
-32,6
+32,7
32
32
{% endblock %}
33
33
34
34
{% block script %}
35
{{super()}}
35
36
36
37
< script src = "{{static_url(" auth / js / logoutmain . js ") }}" type = "text/javascript" charset = "utf-8" ></ script >
37
38
IPython/html/templates/notebook.html
0
+1
0
@@
-293,6
+293,7
class="notebook_app"
293
293
294
294
295
295
{% block script %}
296
{{super()}}
296
297
297
298
< script src = "{{ static_url(" components / codemirror / lib / codemirror . js ") }}" charset = "utf-8" ></ script >
298
299
< script type = "text/javascript" >
IPython/html/templates/tree.html
0
+3
-1
@@
-110,5
+110,7
data-notebook-path="{{notebook_path}}"
110
110
{% endblock %}
111
111
112
112
{% block script %}
113
< script src = "{{ static_url(" tree / js / main . js ") }}" type = "text/javascript" charset = "utf-8" ></ script >
113
{{super()}}
114
115
< script src = "{{ static_url(" tree / js / main . js ") }}" type = "text/javascript" charset = "utf-8" ></ script >
114
116
{% endblock %}
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages