2012-04-30 12:23:03 +01:00
|
|
|
/*\
|
2012-05-03 21:47:16 +01:00
|
|
|
title: $:/core/modules/startup.js
|
2012-04-30 12:23:03 +01: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 18:49:04 +01:00
|
|
|
/*global $tw: false */
|
2012-04-30 12:23:03 +01:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
exports.startup = function() {
|
2012-05-05 11:21:59 +01:00
|
|
|
var modules,n,m,f,commander;
|
2012-07-15 17:37:03 +01:00
|
|
|
// Load modules
|
2012-08-03 15:09:48 +01:00
|
|
|
$tw.modules.applyMethods("global",$tw);
|
|
|
|
$tw.modules.applyMethods("config",$tw.config);
|
|
|
|
$tw.modules.applyMethods("utils",$tw.utils);
|
2012-10-25 22:20:27 +01:00
|
|
|
if($tw.browser) {
|
|
|
|
$tw.utils.getBrowserInfo($tw.browser);
|
|
|
|
}
|
2012-07-15 17:37:03 +01:00
|
|
|
$tw.version = $tw.utils.extractVersionInfo();
|
2012-08-03 15:09:48 +01:00
|
|
|
$tw.Tiddler.fieldModules = $tw.modules.getModulesByTypeAsHashmap("tiddlerfield");
|
|
|
|
$tw.modules.applyMethods("tiddlermethod",$tw.Tiddler.prototype);
|
|
|
|
$tw.modules.applyMethods("wikimethod",$tw.Wiki.prototype);
|
|
|
|
$tw.modules.applyMethods("tiddlerdeserializer",$tw.Wiki.tiddlerDeserializerModules);
|
2013-03-17 15:28:49 +00:00
|
|
|
// Set up the parsers
|
2012-04-30 12:23:03 +01:00
|
|
|
$tw.wiki.initParsers();
|
2013-03-17 15:28:49 +00:00
|
|
|
// Set up the syncer object
|
|
|
|
$tw.syncer = new $tw.Syncer({wiki: $tw.wiki});
|
2012-08-03 15:09:48 +01:00
|
|
|
// Set up the command modules
|
2012-05-02 11:02:47 +01:00
|
|
|
$tw.Commander.initCommands();
|
2013-04-30 23:04:15 +01:00
|
|
|
// Kick off the theme manager
|
|
|
|
$tw.themeManager = new $tw.ThemeManager($tw.wiki);
|
2013-01-23 12:36:42 +00:00
|
|
|
// 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 = "$:/StoryList",
|
|
|
|
story = [];
|
|
|
|
for(var t=0; t<defaultTiddlers.length; t++) {
|
|
|
|
story[t] = defaultTiddlers[t];
|
|
|
|
}
|
|
|
|
$tw.wiki.addTiddler({title: storyTitle, text: story.join("\n")});
|
2012-05-05 11:21:59 +01:00
|
|
|
// Host-specific startup
|
2012-05-19 11:29:51 +01:00
|
|
|
if($tw.browser) {
|
2012-09-12 10:46:28 +01:00
|
|
|
// Call browser startup modules
|
2012-11-14 11:23:43 +00:00
|
|
|
$tw.modules.forEachModuleOfType("browser-startup",function(title,module) {
|
|
|
|
if(module.startup) {
|
|
|
|
module.startup();
|
2012-11-12 22:15:22 +00:00
|
|
|
}
|
2012-11-14 11:23:43 +00:00
|
|
|
});
|
2012-07-15 17:37:03 +01:00
|
|
|
// Install the popup manager
|
2012-07-14 15:52:35 +01:00
|
|
|
$tw.popup = new $tw.utils.Popup({
|
2012-06-19 16:47:35 +01:00
|
|
|
rootElement: document.body
|
|
|
|
});
|
2012-07-15 17:37:03 +01:00
|
|
|
// Install the modal message mechanism
|
2012-07-16 12:57:44 +01:00
|
|
|
$tw.modal = new $tw.utils.Modal($tw.wiki);
|
2012-07-15 17:37:03 +01:00
|
|
|
document.addEventListener("tw-modal",function(event) {
|
|
|
|
$tw.modal.display(event.param);
|
|
|
|
},false);
|
2013-05-07 18:08:44 +01:00
|
|
|
// Install the notification mechanism
|
|
|
|
$tw.notifier = new $tw.utils.Notifier($tw.wiki);
|
|
|
|
document.addEventListener("tw-notify",function(event) {
|
|
|
|
$tw.notifier.display(event.param);
|
|
|
|
},false);
|
2012-07-07 17:14:02 +01:00
|
|
|
// Install the scroller
|
2012-11-26 16:08:52 +00:00
|
|
|
$tw.pageScroller = new $tw.utils.PageScroller();
|
|
|
|
document.addEventListener("tw-scroll",$tw.pageScroller,false);
|
2012-07-10 23:18:44 +01:00
|
|
|
// Install the save action handler
|
|
|
|
$tw.wiki.initSavers();
|
|
|
|
document.addEventListener("tw-save-wiki",function(event) {
|
|
|
|
$tw.wiki.saveWiki({
|
2012-07-13 22:56:57 +01:00
|
|
|
template: event.param,
|
2012-07-10 23:18:44 +01:00
|
|
|
downloadType: "text/plain"
|
|
|
|
});
|
|
|
|
},false);
|
2013-03-09 09:54:01 +00:00
|
|
|
// Install the crypto event handlers
|
2013-01-31 10:20:13 +00:00
|
|
|
document.addEventListener("tw-set-password",function(event) {
|
|
|
|
$tw.passwordPrompt.createPrompt({
|
2013-02-02 12:06:59 +00:00
|
|
|
serviceName: "Set a new password for this TiddlyWiki",
|
2013-01-31 10:20:13 +00:00
|
|
|
noUserName: true,
|
|
|
|
submitText: "Set password",
|
|
|
|
callback: function(data) {
|
|
|
|
$tw.crypto.setPassword(data.password);
|
|
|
|
return true; // Get rid of the password prompt
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
document.addEventListener("tw-clear-password",function(event) {
|
|
|
|
$tw.crypto.setPassword(null);
|
|
|
|
});
|
2013-05-28 16:28:16 +01:00
|
|
|
// Install the animator
|
|
|
|
$tw.anim = new $tw.utils.Animator();
|
2013-04-30 23:04:15 +01:00
|
|
|
// Kick off the stylesheet manager
|
2013-04-29 12:07:39 +01:00
|
|
|
$tw.stylesheetManager = new $tw.utils.StylesheetManager($tw.wiki);
|
2012-05-05 11:21:59 +01:00
|
|
|
// Display the PageTemplate
|
2013-05-31 15:38:27 +01:00
|
|
|
var templateTitle = "$:/core/ui/PageTemplate",
|
2012-12-28 22:08:32 +00:00
|
|
|
parser = $tw.wiki.parseTiddler(templateTitle),
|
2013-05-17 17:29:43 +01:00
|
|
|
renderTree = new $tw.WikiRenderTree(parser,{wiki: $tw.wiki, context: {tiddlerTitle: templateTitle}, document: document});
|
2013-05-15 17:32:17 +01:00
|
|
|
renderTree.execute();
|
2013-06-04 16:19:47 +01:00
|
|
|
$tw.pageContainer = document.createElement("div");
|
|
|
|
$tw.utils.addClass($tw.pageContainer,"tw-page-container");
|
|
|
|
document.body.insertBefore($tw.pageContainer,document.body.firstChild);
|
|
|
|
renderTree.renderInDom($tw.pageContainer);
|
2013-03-16 10:42:46 +00:00
|
|
|
$tw.wiki.addEventListener("change",function(changes) {
|
2012-12-28 22:08:32 +00:00
|
|
|
renderTree.refreshInDom(changes);
|
2012-05-05 11:21:59 +01:00
|
|
|
});
|
2013-06-04 16:22:37 +01:00
|
|
|
// If we're being viewed on a data: URI then give instructions for how to save
|
|
|
|
if(document.location.protocol === "data:") {
|
|
|
|
$tw.utils.dispatchCustomEvent(document,"tw-modal",{
|
|
|
|
param: "$:/messages/SaveInstructions"
|
|
|
|
});
|
|
|
|
} else if($tw.wiki.countTiddlers() === 0){
|
|
|
|
// Otherwise, if give instructions if this is an empty TiddlyWiki
|
|
|
|
$tw.utils.dispatchCustomEvent(document,"tw-modal",{
|
|
|
|
param: "$:/messages/GettingStarted"
|
|
|
|
});
|
|
|
|
}
|
2012-05-05 11:21:59 +01:00
|
|
|
} else {
|
2012-11-17 20:18:36 +00:00
|
|
|
// On the server, start a commander with the command line arguments
|
2012-05-05 11:21:59 +01:00
|
|
|
commander = new $tw.Commander(
|
2013-02-09 17:07:18 +00:00
|
|
|
$tw.boot.argv,
|
2012-05-05 11:21:59 +01:00
|
|
|
function(err) {
|
|
|
|
if(err) {
|
|
|
|
console.log("Error: " + err);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
$tw.wiki,
|
|
|
|
{output: process.stdout, error: process.stderr}
|
|
|
|
);
|
|
|
|
commander.execute();
|
|
|
|
}
|
2012-04-30 12:23:03 +01:00
|
|
|
|
2012-05-04 18:49:04 +01:00
|
|
|
};
|
2012-04-30 12:23:03 +01:00
|
|
|
|
|
|
|
})();
|