mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 06:07:59 +01:00
* Significant completion speed improvements * Significantly improve startup speed, in large part by lazily instantiating Options and Commands, lazily installing highlight stylesheets, etc. * Update logos and icons, fix atrocious about page * Fix Teledactyl * JavaScript completion now avoids accessing property values * Add Option#persist to define which options are saved with :mkp * Add new Dactyl component which holds add-on-specific configuration information and removes need for separate components for each dactyl host * Several fixes for latest nightlies * Significant code cleanup and many bug fixes --HG-- rename : muttator/AUTHORS => teledactyl/AUTHORS rename : muttator/Donors => teledactyl/Donors rename : muttator/Makefile => teledactyl/Makefile rename : muttator/NEWS => teledactyl/NEWS rename : muttator/TODO => teledactyl/TODO rename : muttator/chrome.manifest => teledactyl/chrome.manifest rename : muttator/components/commandline-handler.js => teledactyl/components/commandline-handler.js rename : muttator/components/protocols.js => teledactyl/components/protocols.js rename : muttator/content/addressbook.js => teledactyl/content/addressbook.js rename : muttator/content/compose/compose.js => teledactyl/content/compose/compose.js rename : muttator/content/compose/compose.xul => teledactyl/content/compose/compose.xul rename : muttator/content/compose/dactyl.dtd => teledactyl/content/compose/dactyl.dtd rename : muttator/content/compose/dactyl.xul => teledactyl/content/compose/dactyl.xul rename : muttator/content/config.js => teledactyl/content/config.js rename : muttator/content/dactyl.dtd => teledactyl/content/dactyl.dtd rename : muttator/content/logo.png => teledactyl/content/logo.png rename : muttator/content/mail.js => teledactyl/content/mail.js rename : muttator/content/muttator.xul => teledactyl/content/pentadactyl.xul rename : muttator/contrib/vim/Makefile => teledactyl/contrib/vim/Makefile rename : muttator/contrib/vim/ftdetect/muttator.vim => teledactyl/contrib/vim/ftdetect/muttator.vim rename : muttator/contrib/vim/mkvimball.txt => teledactyl/contrib/vim/mkvimball.txt rename : muttator/contrib/vim/syntax/muttator.vim => teledactyl/contrib/vim/syntax/muttator.vim rename : muttator/install.rdf => teledactyl/install.rdf rename : muttator/locale/en-US/Makefile => teledactyl/locale/en-US/Makefile rename : muttator/locale/en-US/all.xml => teledactyl/locale/en-US/all.xml rename : muttator/locale/en-US/autocommands.xml => teledactyl/locale/en-US/autocommands.xml rename : muttator/locale/en-US/gui.xml => teledactyl/locale/en-US/gui.xml rename : muttator/locale/en-US/intro.xml => teledactyl/locale/en-US/intro.xml rename : muttator/skin/icon.png => teledactyl/skin/icon.png
159 lines
5.6 KiB
JavaScript
159 lines
5.6 KiB
JavaScript
// Copyright (c) 2009-2010 by Kris Maglione <maglione.k@gmail.com>
|
|
//
|
|
// This work is licensed for reuse under an MIT license. Details are
|
|
// given in the LICENSE.txt file included with this file.
|
|
"use strict";
|
|
|
|
/**
|
|
* @class ModuleBase
|
|
* The base class for all modules.
|
|
*/
|
|
const ModuleBase = Class("ModuleBase", {
|
|
/**
|
|
* @property {[string]} A list of module prerequisites which
|
|
* must be initialized before this module is loaded.
|
|
*/
|
|
requires: [],
|
|
|
|
toString: function () "[module " + this.constructor.classname + "]"
|
|
});
|
|
|
|
/**
|
|
* @constructor Module
|
|
*
|
|
* Constructs a new ModuleBase class and makes arrangements for its
|
|
* initialization. Arguments marked as optional must be either
|
|
* entirely elided, or they must have the exact type specified.
|
|
* Loading semantics are as follows:
|
|
*
|
|
* - A module is guaranteed not to be initialized before any of its
|
|
* prerequisites as listed in its {@see ModuleBase#requires} member.
|
|
* - A module is considered initialized once it's been instantiated,
|
|
* its {@see Class#init} method has been called, and its
|
|
* instance has been installed into the top-level {@see modules}
|
|
* object.
|
|
* - Once the module has been initialized, its module-dependent
|
|
* initialization functions will be called as described hereafter.
|
|
* @param {string} name The module's name as it will appear in the
|
|
* top-level {@see modules} object.
|
|
* @param {ModuleBase} base The base class for this module.
|
|
* @optional
|
|
* @param {Object} prototype The prototype for instances of this
|
|
* object. The object itself is copied and not used as a prototype
|
|
* directly.
|
|
* @param {Object} classProperties The class properties for the new
|
|
* module constructor.
|
|
* @optional
|
|
* @param {Object} moduleInit The module initialization functions
|
|
* for the new module. Each function is called as soon as the named module
|
|
* has been initialized, but after the module itself. The constructors are
|
|
* guaranteed to be called in the same order that the dependent modules
|
|
* were initialized.
|
|
* @optional
|
|
*
|
|
* @returns {function} The constructor for the resulting module.
|
|
*/
|
|
function Module(name) {
|
|
let args = Array.slice(arguments);
|
|
|
|
var base = ModuleBase;
|
|
if (callable(args[1]))
|
|
base = args.splice(1, 1)[0];
|
|
let [, prototype, classProperties, moduleInit] = args;
|
|
const module = Class(name, base, prototype, classProperties);
|
|
|
|
module.INIT = moduleInit || {};
|
|
module.prototype.INIT = module.INIT;
|
|
module.requires = prototype.requires || [];
|
|
Module.list.push(module);
|
|
Module.constructors[name] = module;
|
|
return module;
|
|
}
|
|
Module.list = [];
|
|
Module.constructors = {};
|
|
|
|
window.addEventListener("load", function onLoad() {
|
|
window.removeEventListener("load", onLoad, false);
|
|
|
|
Module.list.forEach(function(module) {
|
|
modules.__defineGetter__(module.classname, function() {
|
|
delete modules[module.classname];
|
|
return load(module.classname, null, Components.stack.caller);
|
|
});
|
|
});
|
|
|
|
function dump(str) window.dump(String.replace(str, /\n?$/, "\n").replace(/^/m, services.get("dactyl:").name + ": "));
|
|
const start = Date.now();
|
|
const deferredInit = { load: [] };
|
|
const seen = set();
|
|
const loaded = set(["init"]);
|
|
modules.loaded = loaded;
|
|
|
|
function init(module) {
|
|
function init(func, mod)
|
|
function () defmodule.time(module.classname || module.constructor.classname, mod,
|
|
func, module,
|
|
dactyl, modules, window);
|
|
|
|
set.add(loaded, module.constructor.classname);
|
|
for (let [mod, func] in Iterator(module.INIT)) {
|
|
if (mod in loaded)
|
|
init(func, mod)();
|
|
else {
|
|
deferredInit[mod] = deferredInit[mod] || [];
|
|
deferredInit[mod].push(init(func, mod));
|
|
}
|
|
}
|
|
}
|
|
defmodule.modules.map(init);
|
|
|
|
function load(module, prereq, frame) {
|
|
if (isstring(module)) {
|
|
if (!Module.constructors.hasOwnProperty(module))
|
|
modules.load(module);
|
|
module = Module.constructors[module];
|
|
}
|
|
|
|
try {
|
|
if (module.classname in loaded)
|
|
return;
|
|
if (module.classname in seen)
|
|
throw Error("Module dependency loop.");
|
|
set.add(seen, module.classname);
|
|
|
|
for (let dep in values(module.requires))
|
|
load(Module.constructors[dep], module.classname);
|
|
|
|
defmodule.loadLog.push("Load" + (isstring(prereq) ? " " + prereq + " dependency: " : ": ") + module.classname);
|
|
if (frame && frame.filename)
|
|
defmodule.loadLog.push(" from: " + frame.filename + ":" + frame.lineNumber);
|
|
|
|
delete modules[module.classname];
|
|
modules[module.classname] = defmodule.time(module.classname, "init", module);
|
|
|
|
init(modules[module.classname]);
|
|
for (let [, fn] in iter(deferredInit[module.classname] || []))
|
|
fn();
|
|
}
|
|
catch (e) {
|
|
dump("Loading " + (module && module.classname) + ": " + e + "\n" + (e.stack || ""));
|
|
}
|
|
return modules[module.classname];
|
|
}
|
|
|
|
Module.list.forEach(load);
|
|
deferredInit["load"].forEach(call);
|
|
modules.times = update({}, defmodule.times);
|
|
|
|
dump("Loaded in " + (Date.now() - start) + "ms");
|
|
}, false);
|
|
|
|
window.addEventListener("unload", function onUnload() {
|
|
window.removeEventListener("unload", onUnload, false);
|
|
for (let [, mod] in iter(modules))
|
|
if (mod instanceof ModuleBase && "destroy" in mod)
|
|
mod.destroy();
|
|
}, false);
|
|
|
|
// vim: set fdm=marker sw=4 ts=4 et:
|