Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Bussonnier Matthias
- Thu, 07 Feb 2013 23:38:12
Show More
IPython/frontend/html/notebook/static/js/clusterlist.js
0
+7
-3
@@
-20,6
+20,10
var IPython = (function (IPython) {
20
20
}
21
21
};
22
22
23
ClusterList . prototype . baseProjectUrl = function (){
24
return this . _baseProjectUrl || $ ( 'body' ). data ( 'baseProjectUrl' );
25
};
26
23
27
ClusterList . prototype . style = function () {
24
28
$ ( '#cluster_toolbar' ). addClass ( 'list_toolbar' );
25
29
$ ( '#cluster_list_info' ). addClass ( 'toolbar_info' );
@@
-52,7
+56,7
var IPython = (function (IPython) {
52
56
dataType : "json" ,
53
57
success : $ . proxy ( this . load_list_success , this )
54
58
};
55
var url = $( 'body').data('baseProjectUrl') + 'clusters' ;
59
var url = this . baseProjectUrl () + 'clusters' ;
56
60
$ . ajax ( url , settings );
57
61
};
58
62
@@
-134,7
+138,7
var IPython = (function (IPython) {
134
138
}
135
139
};
136
140
status_col . html ( 'starting' );
137
var url = $( 'body').data('baseProjectUrl') + 'clusters/' + that . data . profile + '/start' ;
141
var url = this . baseProjectUrl () + 'clusters/' + that . data . profile + '/start' ;
138
142
$ . ajax ( url , settings );
139
143
};
140
144
});
@@
-168,7
+172,7
var IPython = (function (IPython) {
168
172
}
169
173
};
170
174
status_col . html ( 'stopping' )
171
var url = $( 'body').data('baseProjectUrl') + 'clusters/' + that . data . profile + '/stop' ;
175
var url = this . baseProjectUrl () + 'clusters/' + that . data . profile + '/stop' ;
172
176
$ . ajax ( url , settings );
173
177
});
174
178
};
IPython/frontend/html/notebook/static/js/loginwidget.js
0
+5
-4
IPython/frontend/html/notebook/static/js/menubar.js
0
+1
-1
IPython/frontend/html/notebook/static/js/notebook.js
0
+6
-2
@@
-46,6
+46,10
var IPython = (function (IPython) {
46
46
$ ( 'div#notebook' ). addClass ( 'border-box-sizing' );
47
47
};
48
48
49
Notebook . prototype . baseProjectUrl = function (){
50
return this . _baseProjectUrl || $ ( 'body' ). data ( 'baseProjectUrl' );
51
};
52
49
53
50
54
Notebook . prototype . create_elements = function () {
51
55
// We add this end_space div to the end of the notebook div to:
@@
-1237,7
+1241,7
var IPython = (function (IPython) {
1237
1241
error : $ . proxy ( this . save_notebook_error , this )
1238
1242
};
1239
1243
$ ([ IPython . events ]). trigger ( 'notebook_saving.Notebook' );
1240
var url = $( 'body').data('baseProjectUrl') + 'notebooks/' + this . notebook_id ;
1244
var url = this . baseProjectUrl () + 'notebooks/' + this . notebook_id ;
1241
1245
$ . ajax ( url , settings );
1242
1246
};
1243
1247
@@
-1266,7
+1270,7
var IPython = (function (IPython) {
1266
1270
error : $ . proxy ( this . load_notebook_error , this ),
1267
1271
};
1268
1272
$ ([ IPython . events ]). trigger ( 'notebook_loading.Notebook' );
1269
var url = $( 'body').data('baseProjectUrl') + 'notebooks/' + this . notebook_id ;
1273
var url = this . baseProjectUrl () + 'notebooks/' + this . notebook_id ;
1270
1274
$ . ajax ( url , settings );
1271
1275
};
1272
1276
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