2012-04-30 11:23:03 +00:00
|
|
|
/*\
|
2012-05-03 20:47:16 +00:00
|
|
|
title: $:/core/modules/startup.js
|
2012-04-30 11:23:03 +00:00
|
|
|
type: application/javascript
|
|
|
|
module-type: startup
|
|
|
|
|
|
|
|
This is the main application logic for both the client and server
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function(){
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
2012-05-04 17:49:04 +00:00
|
|
|
/*global $tw: false */
|
2012-04-30 11:23:03 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
exports.startup = function() {
|
2012-05-05 10:21:59 +00:00
|
|
|
var modules,n,m,f,commander;
|
2012-04-30 11:23:03 +00:00
|
|
|
// Set up additional global objects
|
2012-04-30 18:14:39 +00:00
|
|
|
$tw.plugins.applyMethods("global",$tw);
|
2012-05-05 10:21:59 +00:00
|
|
|
// Reinstall the plugin categories that were installed during the kernel boot process
|
|
|
|
$tw.Tiddler.fieldPlugins = $tw.plugins.getPluginsByTypeAsHashmap("tiddlerfield");
|
|
|
|
$tw.plugins.applyMethods("tiddlerdeserializer",$tw.Wiki.tiddlerDeserializerPlugins);
|
|
|
|
// Wire up other plugin modules
|
2012-04-30 18:14:39 +00:00
|
|
|
$tw.plugins.applyMethods("config",$tw.config);
|
|
|
|
$tw.plugins.applyMethods("utils",$tw.utils);
|
2012-05-02 10:02:47 +00:00
|
|
|
$tw.version = $tw.utils.extractVersionInfo();
|
2012-04-30 18:14:39 +00:00
|
|
|
$tw.plugins.applyMethods("tiddlermethod",$tw.Tiddler.prototype);
|
|
|
|
$tw.plugins.applyMethods("wikimethod",$tw.Wiki.prototype);
|
|
|
|
$tw.plugins.applyMethods("treeutils",$tw.Tree);
|
|
|
|
$tw.plugins.applyMethods("treenode",$tw.Tree);
|
2012-05-05 10:21:59 +00:00
|
|
|
// Load up the tiddlers in the root of the core directory (we couldn't do before because we didn't have the serializers installed)
|
2012-05-03 20:47:16 +00:00
|
|
|
if(!$tw.isBrowser) {
|
2012-05-05 10:21:59 +00:00
|
|
|
$tw.plugins.loadPluginsFromFolder($tw.boot.bootPath,"$:/core",/^\.DS_Store$|.meta$|^modules$/);
|
2012-05-03 20:47:16 +00:00
|
|
|
}
|
2012-04-30 11:23:03 +00:00
|
|
|
// Set up the wiki store
|
|
|
|
$tw.wiki.initMacros();
|
|
|
|
$tw.wiki.initEditors();
|
|
|
|
$tw.wiki.initParsers();
|
2012-05-02 10:02:47 +00:00
|
|
|
// Set up the command plugins
|
|
|
|
$tw.Commander.initCommands();
|
2012-05-05 10:21:59 +00:00
|
|
|
// Host-specific startup
|
|
|
|
if($tw.isBrowser) {
|
|
|
|
// Display the PageTemplate
|
|
|
|
var renderer = $tw.wiki.parseTiddler("PageTemplate");
|
|
|
|
renderer.execute([],"PageTemplate");
|
|
|
|
renderer.renderInDom(document.body);
|
|
|
|
$tw.wiki.addEventListener("",function(changes) {
|
|
|
|
renderer.refreshInDom(changes);
|
|
|
|
});
|
|
|
|
console.log("$tw",$tw);
|
|
|
|
} else {
|
|
|
|
// Start a commander with the command line arguments
|
|
|
|
commander = new $tw.Commander(
|
|
|
|
Array.prototype.slice.call(process.argv,2),
|
|
|
|
function(err) {
|
|
|
|
if(err) {
|
|
|
|
console.log("Error: " + err);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
$tw.wiki,
|
|
|
|
{output: process.stdout, error: process.stderr}
|
|
|
|
);
|
|
|
|
commander.execute();
|
2012-04-30 11:23:03 +00:00
|
|
|
|
2012-05-05 10:21:59 +00:00
|
|
|
}
|
2012-04-30 11:23:03 +00:00
|
|
|
|
2012-05-04 17:49:04 +00:00
|
|
|
};
|
2012-04-30 11:23:03 +00:00
|
|
|
|
|
|
|
})();
|