##// END OF EJS Templates
Backport PR #5805: fix engine startup files...
Backport PR #5805: fix engine startup files engine startup_file and startup_command are ignored in 2.0 closes #5801

File last commit:

r16180:ee204ae0
r16605:8239e18f
Show More
namespace.js
34 lines | 881 B | application/javascript | JavascriptLexer
Brian E. Granger
More review changes....
r4609 //----------------------------------------------------------------------------
MinRK
add `setup.py jsversion`...
r13536 // Copyright (C) 2011 The IPython Development Team
Brian E. Granger
More review changes....
r4609 //
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 var IPython = IPython || {};
MinRK
use 'maint' for maintenance branch version_extra
r16180 IPython.version = "2.1.0-maint";
MinRK
add `setup.py jsversion`...
r13536
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 IPython.namespace = function (ns_string) {
Matthias BUSSONNIER
"use strict" in most (if not all) our javascript...
r12103 "use strict";
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 var parts = ns_string.split('.'),
parent = IPython,
i;
// String redundant leading global
if (parts[0] === "IPython") {
parts = parts.slice(1);
}
for (i=0; i<parts.length; i+=1) {
// Create property if it doesn't exist
if (typeof parent[parts[i]] === "undefined") {
Stefan van der Walt
Clean up javascript based on js2-mode feedback.
r5479 parent[parts[i]] = {};
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 }
}
return parent;
};
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349