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-05-19 10:29:51 +00:00
|
|
|
// This should be somewhere else
|
|
|
|
if($tw.browser) {
|
2012-06-11 09:41:13 +00:00
|
|
|
$tw.browser.unHyphenateCss = document.body.style["background-color"] === undefined;
|
2012-05-19 10:29:51 +00:00
|
|
|
$tw.browser.prefix = document.body.style.webkitTransform !== undefined ? "webkit" :
|
|
|
|
document.body.style.MozTransform !== undefined ? "Moz" :
|
2012-06-22 08:26:59 +00:00
|
|
|
document.body.style.MSTransform !== undefined ? "MS" :
|
|
|
|
document.body.style.OTransform !== undefined ? "O" : "";
|
2012-05-19 10:29:51 +00:00
|
|
|
$tw.browser.transition = $tw.browser.prefix + "Transition";
|
|
|
|
$tw.browser.transform = $tw.browser.prefix + "Transform";
|
|
|
|
$tw.browser.transformorigin = $tw.browser.prefix + "TransformOrigin";
|
2012-06-22 08:26:59 +00:00
|
|
|
$tw.browser.transitionEnd = {
|
|
|
|
"": "transitionEnd",
|
|
|
|
"O": "oTransitionEnd",
|
|
|
|
"MS": "msTransitionEnd",
|
|
|
|
"Moz": "transitionend",
|
|
|
|
"webkit": "webkitTransitionEnd"
|
|
|
|
}[$tw.browser.prefix];
|
2012-05-19 10:29:51 +00:00
|
|
|
}
|
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 12:15:19 +00:00
|
|
|
// Wire up plugin modules
|
2012-04-30 18:14:39 +00:00
|
|
|
$tw.plugins.applyMethods("config",$tw.config);
|
|
|
|
$tw.plugins.applyMethods("utils",$tw.utils);
|
2012-05-05 12:15:19 +00:00
|
|
|
$tw.Tiddler.fieldPlugins = $tw.plugins.getPluginsByTypeAsHashmap("tiddlerfield");
|
2012-04-30 18:14:39 +00:00
|
|
|
$tw.plugins.applyMethods("tiddlermethod",$tw.Tiddler.prototype);
|
|
|
|
$tw.plugins.applyMethods("wikimethod",$tw.Wiki.prototype);
|
2012-05-05 12:15:19 +00:00
|
|
|
$tw.plugins.applyMethods("tiddlerdeserializer",$tw.Wiki.tiddlerDeserializerPlugins);
|
|
|
|
$tw.Wiki.tiddlerSerializerPlugins = {};
|
|
|
|
$tw.plugins.applyMethods("tiddlerserializer",$tw.Wiki.tiddlerSerializerPlugins);
|
2012-04-30 18:14:39 +00:00
|
|
|
$tw.plugins.applyMethods("treeutils",$tw.Tree);
|
|
|
|
$tw.plugins.applyMethods("treenode",$tw.Tree);
|
2012-05-05 12:15:19 +00:00
|
|
|
// Get version information
|
|
|
|
$tw.version = $tw.utils.extractVersionInfo();
|
2012-04-30 11:23:03 +00:00
|
|
|
// Set up the wiki store
|
|
|
|
$tw.wiki.initMacros();
|
|
|
|
$tw.wiki.initEditors();
|
2012-05-14 16:37:20 +00:00
|
|
|
$tw.wiki.initStoryViews();
|
2012-04-30 11:23:03 +00:00
|
|
|
$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
|
2012-05-19 10:29:51 +00:00
|
|
|
if($tw.browser) {
|
2012-06-19 15:47:35 +00:00
|
|
|
// Install the popupper
|
|
|
|
$tw.popupper = new $tw.utils.Popupper({
|
|
|
|
wiki: $tw.wiki,
|
|
|
|
rootElement: document.body
|
|
|
|
});
|
2012-05-05 10:21:59 +00:00
|
|
|
// Display the PageTemplate
|
2012-06-19 15:47:35 +00:00
|
|
|
var template = "$:/templates/PageTemplate";
|
|
|
|
$tw.renderer = $tw.wiki.parseTiddler(template);
|
|
|
|
$tw.renderer.execute([],template);
|
|
|
|
$tw.renderer.renderInDom(document.body);
|
2012-05-05 10:21:59 +00:00
|
|
|
$tw.wiki.addEventListener("",function(changes) {
|
2012-06-19 15:47:35 +00:00
|
|
|
$tw.renderer.refreshInDom(changes);
|
2012-05-05 10:21:59 +00:00
|
|
|
});
|
|
|
|
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
|
|
|
|
|
|
|
})();
|