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";
|
|
|
|
|
2013-11-08 08:47:00 +00:00
|
|
|
var widget = require("$:/core/modules/widgets/widget.js");
|
2013-10-12 16:05:13 +00:00
|
|
|
|
2012-04-30 11:23:03 +00:00
|
|
|
exports.startup = function() {
|
2012-05-05 10:21:59 +00:00
|
|
|
var modules,n,m,f,commander;
|
2014-02-14 07:53:41 +00:00
|
|
|
// Load modules
|
2014-01-26 18:53:31 +00:00
|
|
|
$tw.modules.applyMethods("utils",$tw.utils);
|
2014-02-23 22:57:25 +00:00
|
|
|
if($tw.node) {
|
|
|
|
$tw.modules.applyMethods("utils-node",$tw.utils);
|
|
|
|
}
|
2012-08-03 14:09:48 +00:00
|
|
|
$tw.modules.applyMethods("global",$tw);
|
|
|
|
$tw.modules.applyMethods("config",$tw.config);
|
2012-10-25 21:20:27 +00:00
|
|
|
if($tw.browser) {
|
|
|
|
$tw.utils.getBrowserInfo($tw.browser);
|
|
|
|
}
|
2012-07-15 16:37:03 +00:00
|
|
|
$tw.version = $tw.utils.extractVersionInfo();
|
2012-08-03 14:09:48 +00: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-10-17 15:57:07 +00:00
|
|
|
$tw.macros = $tw.modules.getModulesByTypeAsHashmap("macro");
|
2013-03-17 15:28:49 +00:00
|
|
|
// Set up the parsers
|
2012-04-30 11:23:03 +00:00
|
|
|
$tw.wiki.initParsers();
|
2012-08-03 14:09:48 +00:00
|
|
|
// Set up the command modules
|
2012-05-02 10:02:47 +00:00
|
|
|
$tw.Commander.initCommands();
|
2014-02-09 19:18:46 +00:00
|
|
|
// Kick off the language manager
|
|
|
|
$tw.languageManager = new $tw.PluginSwitcher({
|
|
|
|
wiki: $tw.wiki,
|
|
|
|
pluginType: "language",
|
|
|
|
controllerTitle: "$:/language",
|
|
|
|
defaultPlugins: [
|
|
|
|
"$:/languages/en-US"
|
|
|
|
]
|
|
|
|
});
|
2013-04-30 22:04:15 +00:00
|
|
|
// Kick off the theme manager
|
2014-02-08 09:29:37 +00:00
|
|
|
$tw.themeManager = new $tw.PluginSwitcher({
|
|
|
|
wiki: $tw.wiki,
|
|
|
|
pluginType: "theme",
|
|
|
|
controllerTitle: "$:/theme",
|
|
|
|
defaultPlugins: [
|
|
|
|
"$:/themes/tiddlywiki/snowwhite",
|
|
|
|
"$:/themes/tiddlywiki/vanilla"
|
|
|
|
]
|
|
|
|
});
|
2014-03-12 22:32:13 +00:00
|
|
|
// Display the default tiddlers
|
|
|
|
var displayDefaultTiddlers = function() {
|
|
|
|
// 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
|
|
|
|
var storyTitle = "$:/StoryList",
|
|
|
|
story = [];
|
|
|
|
for(var t=0; t<defaultTiddlers.length; t++) {
|
|
|
|
story[t] = defaultTiddlers[t];
|
|
|
|
}
|
|
|
|
$tw.wiki.addTiddler({title: storyTitle, text: "", list: story},$tw.wiki.getModificationFields());
|
|
|
|
};
|
|
|
|
displayDefaultTiddlers();
|
2014-03-10 19:05:06 +00:00
|
|
|
// Set up the syncer object
|
|
|
|
$tw.syncer = new $tw.Syncer({wiki: $tw.wiki});
|
2012-05-05 10:21:59 +00:00
|
|
|
// Host-specific startup
|
2012-05-19 10:29:51 +00:00
|
|
|
if($tw.browser) {
|
2014-02-06 21:36:30 +00:00
|
|
|
// Set up our beforeunload handler
|
|
|
|
window.addEventListener("beforeunload",function(event) {
|
2014-03-04 22:21:18 +00:00
|
|
|
var confirmationMessage = undefined;
|
2014-02-06 21:36:30 +00:00
|
|
|
if($tw.syncer.isDirty()) {
|
|
|
|
confirmationMessage = "You have unsaved changes in TiddlyWiki";
|
|
|
|
event.returnValue = confirmationMessage; // Gecko
|
|
|
|
}
|
2014-02-08 09:29:37 +00:00
|
|
|
return confirmationMessage;
|
2014-02-06 21:36:30 +00:00
|
|
|
});
|
2012-07-15 16:37:03 +00:00
|
|
|
// Install the popup manager
|
2012-07-14 14:52:35 +00:00
|
|
|
$tw.popup = new $tw.utils.Popup({
|
2012-06-19 15:47:35 +00:00
|
|
|
rootElement: document.body
|
|
|
|
});
|
2013-10-21 19:14:01 +00:00
|
|
|
// Install the animator
|
|
|
|
$tw.anim = new $tw.utils.Animator();
|
|
|
|
// Create a root widget for attaching event handlers. By using it as the parentWidget for another widget tree, one can reuse the event handlers
|
2013-12-17 13:13:43 +00:00
|
|
|
$tw.rootWidget = new widget.widget({
|
|
|
|
type: "widget",
|
|
|
|
children: []
|
|
|
|
},{
|
|
|
|
wiki: $tw.wiki,
|
|
|
|
document: document
|
|
|
|
});
|
2012-07-15 16:37:03 +00:00
|
|
|
// Install the modal message mechanism
|
2012-07-16 11:57:44 +00:00
|
|
|
$tw.modal = new $tw.utils.Modal($tw.wiki);
|
2013-10-21 19:14:01 +00:00
|
|
|
$tw.rootWidget.addEventListener("tw-modal",function(event) {
|
2012-07-15 16:37:03 +00:00
|
|
|
$tw.modal.display(event.param);
|
2013-10-21 19:14:01 +00:00
|
|
|
});
|
2013-05-07 17:08:44 +00:00
|
|
|
// Install the notification mechanism
|
|
|
|
$tw.notifier = new $tw.utils.Notifier($tw.wiki);
|
2013-10-21 19:14:01 +00:00
|
|
|
$tw.rootWidget.addEventListener("tw-notify",function(event) {
|
2013-05-07 17:08:44 +00:00
|
|
|
$tw.notifier.display(event.param);
|
2013-10-21 19:14:01 +00:00
|
|
|
});
|
2012-07-07 16:14:02 +00:00
|
|
|
// Install the scroller
|
2012-11-26 16:08:52 +00:00
|
|
|
$tw.pageScroller = new $tw.utils.PageScroller();
|
2013-11-04 22:22:28 +00:00
|
|
|
$tw.rootWidget.addEventListener("tw-scroll",function(event) {
|
|
|
|
$tw.pageScroller.handleEvent(event);
|
|
|
|
});
|
2014-03-12 22:32:13 +00:00
|
|
|
// Listen for the tw-home message
|
|
|
|
$tw.rootWidget.addEventListener("tw-home",function(event) {
|
|
|
|
displayDefaultTiddlers();
|
|
|
|
});
|
2014-02-14 07:53:41 +00:00
|
|
|
// Install the save action handlers
|
2013-10-21 19:14:01 +00:00
|
|
|
$tw.rootWidget.addEventListener("tw-save-wiki",function(event) {
|
2014-02-06 21:36:30 +00:00
|
|
|
$tw.syncer.saveWiki({
|
2012-07-13 21:56:57 +00:00
|
|
|
template: event.param,
|
2012-07-10 22:18:44 +00:00
|
|
|
downloadType: "text/plain"
|
|
|
|
});
|
2013-10-21 19:14:01 +00:00
|
|
|
});
|
2014-02-04 21:21:01 +00:00
|
|
|
$tw.rootWidget.addEventListener("tw-auto-save-wiki",function(event) {
|
2014-02-06 21:36:30 +00:00
|
|
|
$tw.syncer.saveWiki({
|
2014-02-04 21:21:01 +00:00
|
|
|
method: "autosave",
|
|
|
|
template: event.param,
|
|
|
|
downloadType: "text/plain"
|
|
|
|
});
|
|
|
|
});
|
2013-11-27 20:51:08 +00:00
|
|
|
$tw.rootWidget.addEventListener("tw-download-file",function(event) {
|
2014-02-06 21:36:30 +00:00
|
|
|
$tw.syncer.saveWiki({
|
2013-11-27 20:51:08 +00:00
|
|
|
method: "download",
|
|
|
|
template: event.param,
|
|
|
|
downloadType: "text/plain"
|
|
|
|
});
|
|
|
|
});
|
2014-02-14 07:53:41 +00:00
|
|
|
// Listen out for login/logout/refresh events in the browser
|
|
|
|
$tw.rootWidget.addEventListener("tw-login",function() {
|
|
|
|
$tw.syncer.handleLoginEvent();
|
|
|
|
});
|
|
|
|
$tw.rootWidget.addEventListener("tw-logout",function() {
|
|
|
|
$tw.syncer.handleLogoutEvent();
|
|
|
|
});
|
|
|
|
$tw.rootWidget.addEventListener("tw-server-refresh",function() {
|
|
|
|
$tw.syncer.handleRefreshEvent();
|
|
|
|
});
|
2013-03-09 09:54:01 +00:00
|
|
|
// Install the crypto event handlers
|
2013-10-21 19:14:01 +00:00
|
|
|
$tw.rootWidget.addEventListener("tw-set-password",function(event) {
|
2013-01-31 10:20:13 +00:00
|
|
|
$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",
|
2014-01-25 19:55:56 +00:00
|
|
|
canCancel: true,
|
2013-01-31 10:20:13 +00:00
|
|
|
callback: function(data) {
|
2014-01-25 19:55:56 +00:00
|
|
|
if(data) {
|
|
|
|
$tw.crypto.setPassword(data.password);
|
|
|
|
}
|
2013-01-31 10:20:13 +00:00
|
|
|
return true; // Get rid of the password prompt
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2013-10-21 19:14:01 +00:00
|
|
|
$tw.rootWidget.addEventListener("tw-clear-password",function(event) {
|
2013-01-31 10:20:13 +00:00
|
|
|
$tw.crypto.setPassword(null);
|
|
|
|
});
|
2014-02-21 18:21:08 +00:00
|
|
|
// Ensure that $:/isEncrypted is maintained properly
|
|
|
|
$tw.wiki.addEventListener("change",function(changes) {
|
|
|
|
if($tw.utils.hop(changes,"$:/isEncrypted")) {
|
|
|
|
$tw.crypto.updateCryptoStateTiddler();
|
|
|
|
}
|
|
|
|
});
|
2013-12-24 09:08:25 +00:00
|
|
|
// Set up the favicon
|
|
|
|
var faviconTitle = "$:/favicon.ico",
|
|
|
|
faviconLink = document.getElementById("faviconLink"),
|
|
|
|
setFavicon = function() {
|
|
|
|
var tiddler = $tw.wiki.getTiddler(faviconTitle);
|
|
|
|
if(tiddler) {
|
|
|
|
faviconLink.setAttribute("href","data:" + tiddler.fields.type + ";base64," + tiddler.fields.text);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
setFavicon();
|
|
|
|
$tw.wiki.addEventListener("change",function(changes) {
|
|
|
|
if($tw.utils.hop(changes,faviconTitle)) {
|
|
|
|
setFavicon();
|
|
|
|
}
|
|
|
|
});
|
2013-12-20 15:31:16 +00:00
|
|
|
// Set up the styles
|
|
|
|
var styleTemplateTitle = "$:/core/ui/PageStylesheet",
|
|
|
|
styleParser = $tw.wiki.parseTiddler(styleTemplateTitle);
|
2014-01-15 14:57:35 +00:00
|
|
|
$tw.styleWidgetNode = $tw.wiki.makeWidget(styleParser,{document: $tw.fakeDocument});
|
|
|
|
$tw.styleContainer = $tw.fakeDocument.createElement("style");
|
2013-12-20 15:31:16 +00:00
|
|
|
$tw.styleWidgetNode.render($tw.styleContainer,null);
|
|
|
|
$tw.styleElement = document.createElement("style");
|
|
|
|
$tw.styleElement.innerHTML = $tw.styleContainer.textContent;
|
|
|
|
document.head.insertBefore($tw.styleElement,document.head.firstChild);
|
|
|
|
$tw.wiki.addEventListener("change",function(changes) {
|
|
|
|
if($tw.styleWidgetNode.refresh(changes,$tw.styleContainer,null)) {
|
|
|
|
$tw.styleElement.innerHTML = $tw.styleContainer.textContent;
|
|
|
|
}
|
|
|
|
});
|
2013-11-04 18:21:20 +00:00
|
|
|
// Display the PageMacros, which includes the PageTemplate
|
|
|
|
var templateTitle = "$:/core/ui/PageMacros",
|
2013-11-08 08:51:14 +00:00
|
|
|
parser = $tw.wiki.parseTiddler(templateTitle);
|
2013-11-01 12:44:03 +00:00
|
|
|
$tw.pageWidgetNode = $tw.wiki.makeWidget(parser,{document: document, parentWidget: $tw.rootWidget});
|
2013-10-29 15:01:27 +00:00
|
|
|
$tw.pageContainer = document.createElement("div");
|
|
|
|
$tw.utils.addClass($tw.pageContainer,"tw-page-container");
|
|
|
|
document.body.insertBefore($tw.pageContainer,document.body.firstChild);
|
2013-11-01 12:44:03 +00:00
|
|
|
$tw.pageWidgetNode.render($tw.pageContainer,null);
|
2013-03-16 10:42:46 +00:00
|
|
|
$tw.wiki.addEventListener("change",function(changes) {
|
2013-11-01 12:44:03 +00:00
|
|
|
$tw.pageWidgetNode.refresh(changes,$tw.pageContainer,null);
|
2012-05-05 10:21:59 +00:00
|
|
|
});
|
2013-12-17 13:13:43 +00:00
|
|
|
// Fix up the link between the root widget and the page container
|
|
|
|
$tw.rootWidget.domNodes = [$tw.pageContainer];
|
|
|
|
$tw.rootWidget.children = [$tw.pageWidgetNode];
|
2013-06-04 15:22:37 +00: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",{
|
2014-02-16 09:46:43 +00:00
|
|
|
param: "$:/language/Modals/SaveInstructions"
|
2013-06-04 15:22:37 +00:00
|
|
|
});
|
|
|
|
}
|
2013-10-25 11:53:40 +00:00
|
|
|
// Call browser startup modules
|
|
|
|
$tw.modules.forEachModuleOfType("browser-startup",function(title,module) {
|
|
|
|
if(module.startup) {
|
|
|
|
module.startup();
|
|
|
|
}
|
|
|
|
});
|
2012-05-05 10:21:59 +00:00
|
|
|
} else {
|
2012-11-17 20:18:36 +00:00
|
|
|
// On the server, start a commander with the command line arguments
|
2012-05-05 10:21:59 +00:00
|
|
|
commander = new $tw.Commander(
|
2014-03-10 18:20:07 +00:00
|
|
|
$tw.boot.argv,
|
2012-05-05 10:21:59 +00:00
|
|
|
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-04 17:49:04 +00:00
|
|
|
};
|
2012-04-30 11:23:03 +00:00
|
|
|
|
|
|
|
})();
|