1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-16 15:05:46 +01:00

More camel-casing.

isInstance -> isinstance as homage to instanceof.
This commit is contained in:
Doug Kearns
2010-09-24 16:19:50 +10:00
parent a06b571058
commit 904f3cb974
14 changed files with 36 additions and 36 deletions

View File

@@ -500,7 +500,7 @@ const Buffer = Module("buffer", {
let win = elem.ownerDocument && elem.ownerDocument.defaultView || elem;
win.dactylFocusAllowed = true;
if (isInstance(elem, [HTMLFrameElement, HTMLIFrameElement]))
if (isinstance(elem, [HTMLFrameElement, HTMLIFrameElement]))
elem.contentWindow.focus();
else if (elem instanceof HTMLInputElement && elem.type == "file") {
Buffer.openUploadPrompt(elem);
@@ -592,7 +592,7 @@ const Buffer = Module("buffer", {
let offsetX = 1;
let offsetY = 1;
if (isInstance(elem, [HTMLFrameElement, HTMLIFrameElement])) {
if (isinstance(elem, [HTMLFrameElement, HTMLIFrameElement])) {
buffer.focusElement(elem);
return;
}

View File

@@ -321,7 +321,7 @@ const CompletionContext = Class("CompletionContext", {
yield ["result", quote ? function () quote[0] + quote[1](this.text) + quote[2]
: function () this.text];
};
for (let i in iterall(this.keys, result(this.quote))) {
for (let i in iterAll(this.keys, result(this.quote))) {
let [k, v] = i;
if (typeof v == "string" && /^[.[]/.test(v))
// This is only allowed to be a simple accessor, and shouldn't

View File

@@ -13,8 +13,8 @@ const ConfigBase = Class(ModuleBase, {
*/
init: function () {
this.name = services.get("dactyl:").name;
this.idname = services.get("dactyl:").idname;
this.appname = services.get("dactyl:").appname;
this.idName = services.get("dactyl:").idName;
this.appName = services.get("dactyl:").appName;
this.host = services.get("dactyl:").host;
highlight.styleableChrome = this.styleableChrome;

View File

@@ -252,11 +252,11 @@ const Dactyl = Module("dactyl", {
echoerr: function echoerr(str, flags) {
flags |= commandline.APPEND_TO_MESSAGES;
if (isInstance(str, ["Error", "Exception"]))
if (isinstance(str, ["Error", "Exception"]))
dactyl.reportError(str);
if (typeof str == "object" && "echoerr" in str)
str = str.echoerr;
else if (isInstance(str, ["Error"]))
else if (isinstance(str, ["Error"]))
str = str.fileName + ":" + str.lineNumber + ": " + str;
if (options["errorbells"])
@@ -552,7 +552,7 @@ const Dactyl = Module("dactyl", {
'<?xml-stylesheet type="text/xsl" href="chrome://dactyl/content/help.xsl"?>\n' +
'<!DOCTYPE document SYSTEM "chrome://dactyl/content/dactyl.dtd">\n' +
<document xmlns={NS}
name="plugins" title={config.appname + " Plugins"}>
name="plugins" title={config.appName + " Plugins"}>
<h1 tag="using-plugins">Using Plugins</h1>
<toc start="2"/>
@@ -1371,7 +1371,7 @@ const Dactyl = Module("dactyl", {
{ argCount: "0" });
commands.add(["dia[log]"],
"Open a " + config.appname + " dialog",
"Open a " + config.appName + " dialog",
function (args) {
let dialog = args[0];
@@ -1761,7 +1761,7 @@ const Dactyl = Module("dactyl", {
});
commands.add(["res[tart]"],
"Force " + config.appname + " to restart",
"Force " + config.appName + " to restart",
function () { dactyl.restart(); },
{ argCount: "0" });
@@ -1913,7 +1913,7 @@ const Dactyl = Module("dactyl", {
dactyl.open("about:");
else
commandline.commandOutput(<>
{config.appname} {dactyl.version} running on:<br/>{navigator.userAgent}
{config.appName} {dactyl.version} running on:<br/>{navigator.userAgent}
</>);
}, {
argCount: "0",
@@ -2025,7 +2025,7 @@ const Dactyl = Module("dactyl", {
// finally, read the RC file and source plugins
// make sourcing asynchronous, otherwise commands that open new tabs won't work
util.timeout(function () {
let init = services.get("environment").get(config.idname + "_INIT");
let init = services.get("environment").get(config.idName + "_INIT");
let rcFile = io.getRCFile("~");
try {
@@ -2040,7 +2040,7 @@ const Dactyl = Module("dactyl", {
else {
if (rcFile) {
io.source(rcFile.path, true);
services.get("environment").set("MY_" + config.idname + "RC", rcFile.path);
services.get("environment").set("MY_" + config.idName + "RC", rcFile.path);
}
else
dactyl.log("No user RC file found", 3);
@@ -2089,7 +2089,7 @@ const Dactyl = Module("dactyl", {
}, 0);
statusline.update();
dactyl.log(config.appname + " fully initialized", 0);
dactyl.log(config.appName + " fully initialized", 0);
dactyl.initialized = true;
}
});

View File

@@ -741,7 +741,7 @@ const Events = Module("events", {
let win = elem.ownerDocument && elem.ownerDocument.defaultView || elem;
if (Events.isContentNode(elem) && !buffer.focusAllowed(win)
&& isInstance(elem, [HTMLInputElement, HTMLSelectElement, HTMLTextAreaElement]))
&& isinstance(elem, [HTMLInputElement, HTMLSelectElement, HTMLTextAreaElement]))
elem.blur();
},
@@ -773,7 +773,7 @@ const Events = Module("events", {
return;
}
if(isInstance(elem, [HTMLEmbedElement, HTMLEmbedElement])) {
if(isinstance(elem, [HTMLEmbedElement, HTMLEmbedElement])) {
dactyl.mode = modes.EMBED;
return;
}
@@ -1118,7 +1118,7 @@ const Events = Module("events", {
isInputElemFocused: function () {
let elem = dactyl.focus;
return elem instanceof HTMLInputElement && set.has(Events.editableInputs, elem.type) ||
isInstance(elem, [HTMLIsIndexElement, HTMLEmbedElement,
isinstance(elem, [HTMLIsIndexElement, HTMLEmbedElement,
HTMLObjectElement, HTMLTextAreaElement]);
}
}, {
@@ -1173,7 +1173,7 @@ const Events = Module("events", {
function () { document.commandDispatcher.rewindFocus(); });
mappings.add(modes.all,
["<C-z>"], "Temporarily ignore all " + config.appname + " key bindings",
["<C-z>"], "Temporarily ignore all " + config.appName + " key bindings",
function () { modes.passAllKeys = true; });
mappings.add(modes.all,

View File

@@ -260,7 +260,7 @@ const Hints = Module("hints", {
if (computedStyle.visibility != "visible" || computedStyle.display == "none")
continue;
if (isInstance(elem, [HTMLInputElement, HTMLSelectElement, HTMLTextAreaElement]))
if (isinstance(elem, [HTMLInputElement, HTMLSelectElement, HTMLTextAreaElement]))
[hint.text, hint.showText] = this._getInputHint(elem, doc);
else
hint.text = elem.textContent.toLowerCase();

View File

@@ -508,7 +508,7 @@ lookup:
* variable.
*/
get runtimePath() {
const rtpvar = config.idname + "_RUNTIME";
const rtpvar = config.idName + "_RUNTIME";
let rtp = services.get("environment").get(rtpvar);
if (!rtp) {
rtp = "~/" + (dactyl.has("WINNT") ? "" : ".") + config.name;

View File

@@ -712,7 +712,7 @@ const Tabs = Module("tabs", {
});
commands.add(["quita[ll]", "qa[ll]"],
"Quit " + config.appname,
"Quit " + config.appName,
function (args) { dactyl.quit(false, args.bang); }, {
argCount: "0",
bang: true