mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8f23fa99a5
The 'admin' module will be split off from 'framework', where 'framework' only provides (mostly) frontend-agnostic PHP classes. For example, HTMLEditorField.php has a TinyMCEConfig.php driver, but doesn't come with its own JS includes.
40 lines
789 B
JavaScript
Executable File
40 lines
789 B
JavaScript
Executable File
|
|
// JSpec - Shell - Copyright TJ Holowaychuk <tj@vision-media.ca> (MIT Licensed)
|
|
|
|
;(function(){
|
|
|
|
var _quit = quit
|
|
|
|
Shell = {
|
|
|
|
// --- Global
|
|
|
|
main: this,
|
|
|
|
// --- Commands
|
|
|
|
commands: {
|
|
quit: ['Terminate the shell', function(){ _quit() }],
|
|
exit: ['Terminate the shell', function(){ _quit() }],
|
|
p: ['Inspect an object', function(o){ return o.toSource() }]
|
|
},
|
|
|
|
/**
|
|
* Start the interactive shell.
|
|
*
|
|
* @api public
|
|
*/
|
|
|
|
start : function() {
|
|
for (var name in this.commands)
|
|
if (this.commands.hasOwnProperty(name))
|
|
this.commands[name][1].length ?
|
|
this.main[name] = this.commands[name][1] :
|
|
this.main.__defineGetter__(name, this.commands[name][1])
|
|
}
|
|
}
|
|
|
|
Shell.start()
|
|
|
|
})()
|