/*\ title: $:/core/modules/startup.js type: application/javascript module-type: startup This is the main application logic for both the client and server \*/ (function(){ /*jslint node: true, browser: true */ /*global $tw: false */ "use strict"; exports.startup = function() { var modules,n,m,f,commander; // This should be somewhere else if($tw.browser) { $tw.browser.unHyphenateCss = document.body.style["background-color"] === undefined; $tw.browser.prefix = document.body.style.webkitTransform !== undefined ? "webkit" : document.body.style.MozTransform !== undefined ? "Moz" : document.body.style.MSTransform !== undefined ? "MS" : document.body.style.OTransform !== undefined ? "O" : ""; $tw.browser.transition = $tw.browser.prefix + "Transition"; $tw.browser.transform = $tw.browser.prefix + "Transform"; $tw.browser.transformorigin = $tw.browser.prefix + "TransformOrigin"; $tw.browser.transitionEnd = { "": "transitionEnd", "O": "oTransitionEnd", "MS": "msTransitionEnd", "Moz": "transitionend", "webkit": "webkitTransitionEnd" }[$tw.browser.prefix]; } // Set up additional global objects $tw.plugins.applyMethods("global",$tw); // Wire up plugin modules $tw.plugins.applyMethods("config",$tw.config); $tw.plugins.applyMethods("utils",$tw.utils); $tw.Tiddler.fieldPlugins = $tw.plugins.getPluginsByTypeAsHashmap("tiddlerfield"); $tw.plugins.applyMethods("tiddlermethod",$tw.Tiddler.prototype); $tw.plugins.applyMethods("wikimethod",$tw.Wiki.prototype); $tw.plugins.applyMethods("tiddlerdeserializer",$tw.Wiki.tiddlerDeserializerPlugins); $tw.Wiki.tiddlerSerializerPlugins = {}; $tw.plugins.applyMethods("tiddlerserializer",$tw.Wiki.tiddlerSerializerPlugins); $tw.plugins.applyMethods("treeutils",$tw.Tree); $tw.plugins.applyMethods("treenode",$tw.Tree); // Get version information $tw.version = $tw.utils.extractVersionInfo(); // Set up the wiki store $tw.wiki.initMacros(); $tw.wiki.initEditors(); $tw.wiki.initStoryViews(); $tw.wiki.initParsers(); // Set up the command plugins $tw.Commander.initCommands(); // Host-specific startup if($tw.browser) { // Install the popupper $tw.popupper = new $tw.utils.Popupper({ wiki: $tw.wiki, rootElement: document.body }); // Install the scroller $tw.scroller = new $tw.utils.Scroller(); // Install the save action handler $tw.wiki.initSavers(); document.addEventListener("tw-save-wiki",function(event) { $tw.wiki.saveWiki({ template: "$:/core/templates/tiddlywiki5.template.html", downloadType: "text/plain" }); },false); // Get the default tiddlers var defaultTiddlersTitle = "$:/DefaultTiddlers", defaultTiddlersTiddler = $tw.wiki.getTiddler(defaultTiddlersTitle), defaultTiddlers = []; if(defaultTiddlersTiddler) { defaultTiddlers = $tw.wiki.filterTiddlers(defaultTiddlersTiddler.fields.text); } // Initialise the story and history var storyTitle = "$:/StoryTiddlers", historyTitle = "$:/History", story = {tiddlers: []}, history = {stack: []}; for(var t=0; t