mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 15:47:58 +01:00
Fix about:pentadactyl = about:undefined in Gecko<2.0.
This commit is contained in:
@@ -24,7 +24,7 @@ JAR = chrome/$(NAME).jar
|
|||||||
|
|
||||||
XPI_BASES = $(JAR_BASES) $(TOP)/..
|
XPI_BASES = $(JAR_BASES) $(TOP)/..
|
||||||
XPI_FILES = install.rdf TODO AUTHORS Donors NEWS License.txt
|
XPI_FILES = install.rdf TODO AUTHORS Donors NEWS License.txt
|
||||||
XPI_DIRS = modules components chrome
|
XPI_DIRS = modules components chrome defaults
|
||||||
XPI_TEXTS = js jsm
|
XPI_TEXTS = js jsm
|
||||||
XPI_BINS = jar
|
XPI_BINS = jar
|
||||||
|
|
||||||
|
|||||||
@@ -4,29 +4,34 @@
|
|||||||
// given in the LICENSE.txt file included with this file.
|
// given in the LICENSE.txt file included with this file.
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
const Ci = Components.interfaces, Cc = Components.classes;
|
||||||
|
|
||||||
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||||
|
|
||||||
|
const prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefService)
|
||||||
|
.getBranch("extensions.dactyl.");
|
||||||
|
const appName = prefs.getComplexValue("appName", Ci.nsISupportsString).data;
|
||||||
|
const name = prefs.getComplexValue("name", Ci.nsISupportsString).data;
|
||||||
|
|
||||||
function CommandLineHandler() {
|
function CommandLineHandler() {
|
||||||
this.wrappedJSObject = this;
|
this.wrappedJSObject = this;
|
||||||
}
|
}
|
||||||
CommandLineHandler.prototype = {
|
CommandLineHandler.prototype = {
|
||||||
|
|
||||||
classDescription: "Dactyl Command-line Handler",
|
classDescription: appName + " Command-line Handler",
|
||||||
|
|
||||||
classID: Components.ID("{16dc34f7-6d22-4aa4-a67f-2921fb5dcb69}"),
|
classID: Components.ID("{16dc34f7-6d22-4aa4-a67f-2921fb5dcb69}"),
|
||||||
|
|
||||||
contractID: "@mozilla.org/commandlinehandler/general-startup;1?type=dactyl",
|
contractID: "@mozilla.org/commandlinehandler/general-startup;1?type=" + name,
|
||||||
|
|
||||||
_xpcom_categories: [{
|
_xpcom_categories: [{
|
||||||
category: "command-line-handler",
|
category: "command-line-handler",
|
||||||
entry: "m-dactyl"
|
entry: "m-" + name
|
||||||
}],
|
}],
|
||||||
|
|
||||||
QueryInterface: XPCOMUtils.generateQI([Components.interfaces.nsICommandLineHandler]),
|
QueryInterface: XPCOMUtils.generateQI([Components.interfaces.nsICommandLineHandler]),
|
||||||
|
|
||||||
handle: function (commandLine) {
|
handle: function (commandLine) {
|
||||||
let name = Components.classes["@dactyl.googlecode.com/base/dactyl"]
|
|
||||||
.getService().wrappedJSObject.name;
|
|
||||||
// TODO: handle remote launches differently?
|
// TODO: handle remote launches differently?
|
||||||
try {
|
try {
|
||||||
this.optionValue = commandLine.handleFlagWithParam(name, false);
|
this.optionValue = commandLine.handleFlagWithParam(name, false);
|
||||||
|
|||||||
@@ -20,6 +20,8 @@ const NS_BINDING_ABORTED = 0x804b0002;
|
|||||||
const nsIProtocolHandler = Components.interfaces.nsIProtocolHandler;
|
const nsIProtocolHandler = Components.interfaces.nsIProtocolHandler;
|
||||||
|
|
||||||
const ioService = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
|
const ioService = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
|
||||||
|
const prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefService)
|
||||||
|
.getBranch("extensions.dactyl.");
|
||||||
|
|
||||||
let channel = Components.classesByID["{61ba33c0-3031-11d3-8cd0-0060b0fc14a3}"]
|
let channel = Components.classesByID["{61ba33c0-3031-11d3-8cd0-0060b0fc14a3}"]
|
||||||
.getService(Ci.nsIProtocolHandler)
|
.getService(Ci.nsIProtocolHandler)
|
||||||
@@ -88,7 +90,6 @@ ChromeData.prototype = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
function Dactyl() {
|
function Dactyl() {
|
||||||
Dactyl.prototype.__proto__ = Cc["@dactyl.googlecode.com/base/dactyl"].getService().wrappedJSObject;
|
|
||||||
this.wrappedJSObject = this;
|
this.wrappedJSObject = this;
|
||||||
|
|
||||||
this.HELP_TAGS = {};
|
this.HELP_TAGS = {};
|
||||||
@@ -111,6 +112,11 @@ Dactyl.prototype = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
appName: prefs.getComplexValue("appName", Ci.nsISupportsString).data,
|
||||||
|
name: prefs.getComplexValue("name", Ci.nsISupportsString).data,
|
||||||
|
idName: prefs.getComplexValue("idName", Ci.nsISupportsString).data,
|
||||||
|
host: prefs.getComplexValue("host", Ci.nsISupportsString).data,
|
||||||
|
|
||||||
init: function (obj) {
|
init: function (obj) {
|
||||||
for each (let prop in ["HELP_TAGS", "FILE_MAP", "OVERLAY_MAP"]) {
|
for each (let prop in ["HELP_TAGS", "FILE_MAP", "OVERLAY_MAP"]) {
|
||||||
this[prop] = this[prop].constructor();
|
this[prop] = this[prop].constructor();
|
||||||
@@ -156,19 +162,15 @@ Dactyl.prototype = {
|
|||||||
return fakeChannel(uri);
|
return fakeChannel(uri);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
try {
|
|
||||||
Dactyl.prototype.__proto__ = Cc["@dactyl.googlecode.com/base/dactyl"].getService().wrappedJSObject;
|
|
||||||
}
|
|
||||||
catch (e) {}
|
|
||||||
|
|
||||||
function AboutHandler() {}
|
function AboutHandler() {}
|
||||||
AboutHandler.prototype = {
|
AboutHandler.prototype = {
|
||||||
|
|
||||||
classDescription: "About " + Dactyl.prototype.name + " Page",
|
classDescription: "About " + Dactyl.prototype.appName + " Page",
|
||||||
|
|
||||||
classID: Components.ID("81495d80-89ee-4c36-a88d-ea7c4e5ac63f"),
|
classID: Components.ID("81495d80-89ee-4c36-a88d-ea7c4e5ac63f"),
|
||||||
|
|
||||||
contractID: "@mozilla.org/network/protocol/about;1?what=" + Dactyl.prototype.appName,
|
contractID: "@mozilla.org/network/protocol/about;1?what=" + Dactyl.prototype.name,
|
||||||
|
|
||||||
QueryInterface: XPCOMUtils.generateQI([Ci.nsIAboutModule]),
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIAboutModule]),
|
||||||
|
|
||||||
|
|||||||
31
common/content/about.xul
Normal file
31
common/content/about.xul
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
||||||
|
<?xml-stylesheet href="chrome://pentadactyl/skin/about.css" type="text/css"?>
|
||||||
|
<!DOCTYPE overlay SYSTEM "chrome://dactyl/content/dactyl.dtd">
|
||||||
|
|
||||||
|
<page id="about-&dactyl.name;" orient="vertical"
|
||||||
|
xmlns="&xmlns.xul;" xmlns:html="&xmlns.html;">
|
||||||
|
|
||||||
|
<html:link rel="icon" href="chrome://&dactyl.name;/skin/icon.png"
|
||||||
|
type="image/png" style="display: none;"/>
|
||||||
|
|
||||||
|
<spring flex="1"/>
|
||||||
|
<hbox>
|
||||||
|
<spring flex="1"/>
|
||||||
|
<div xmlns="&xmlns.html;" style="text-align: center" id="text-container">
|
||||||
|
<img src="chrome://&dactyl.name;/content/logo.png" alt="&dactyl.appName;" />
|
||||||
|
|
||||||
|
version ###VERSION###
|
||||||
|
by Kris Maglione, Doug Kearns, et al.
|
||||||
|
&dactyl.appName; is open source and freely distributable
|
||||||
|
|
||||||
|
type :q<<span class="key">Enter</span>> to exit <!---->
|
||||||
|
type :help<<span class="key">Enter</span>> or <<span class="key">F1</span>> for on-line help
|
||||||
|
type :help version-&dactyl.version;<<span class="key">Enter</span>> for version info
|
||||||
|
</div>
|
||||||
|
<spring flex="1"/>
|
||||||
|
</hbox>
|
||||||
|
<spring flex="1"/>
|
||||||
|
</page>
|
||||||
|
|
||||||
|
<!-- vim: set sw=2 sts=2 et: -->
|
||||||
@@ -1939,7 +1939,7 @@ const Dactyl = Module("dactyl", {
|
|||||||
dactyl.version = addon.version + " (created: @DATE@)";
|
dactyl.version = addon.version + " (created: @DATE@)";
|
||||||
});
|
});
|
||||||
|
|
||||||
services.add("commandLineHandler", "@mozilla.org/commandlinehandler/general-startup;1?type=dactyl");
|
services.add("commandLineHandler", "@mozilla.org/commandlinehandler/general-startup;1?type=" + config.name);
|
||||||
|
|
||||||
let commandline = services.get("commandLineHandler").optionValue;
|
let commandline = services.get("commandLineHandler").optionValue;
|
||||||
if (commandline) {
|
if (commandline) {
|
||||||
|
|||||||
@@ -23,7 +23,6 @@ BUGS:
|
|||||||
- the :help version-information page is no longer generated
|
- the :help version-information page is no longer generated
|
||||||
|
|
||||||
(recent Mercurial regressions):
|
(recent Mercurial regressions):
|
||||||
9 about:pentadactyl is currently about:undefined
|
|
||||||
|
|
||||||
FEATURES:
|
FEATURES:
|
||||||
9 Add quoting help tag
|
9 Add quoting help tag
|
||||||
|
|||||||
@@ -14,12 +14,9 @@ override chrome://dactyl/content/config.js chrome://pentadactyl/content/config
|
|||||||
overlay chrome://browser/content/browser.xul chrome://dactyl/content/dactyl.xul
|
overlay chrome://browser/content/browser.xul chrome://dactyl/content/dactyl.xul
|
||||||
overlay chrome://browser/content/browser.xul chrome://pentadactyl/content/pentadactyl.xul
|
overlay chrome://browser/content/browser.xul chrome://pentadactyl/content/pentadactyl.xul
|
||||||
|
|
||||||
component {8e4a8e2f-95a0-4d8f-90ac-fc9d7d8f5468} components/dactyl.js
|
|
||||||
contract @dactyl.googlecode.com/base/dactyl {8e4a8e2f-95a0-4d8f-90ac-fc9d7d8f5468}
|
|
||||||
|
|
||||||
component {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69} components/commandline-handler.js
|
component {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69} components/commandline-handler.js
|
||||||
contract @mozilla.org/commandlinehandler/general-startup;1?type=dactyl {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69}
|
contract @mozilla.org/commandlinehandler/general-startup;1?type=pentadactyl {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69}
|
||||||
category command-line-handler m-dactyl @mozilla.org/commandlinehandler/general-startup;1?type=dactyl
|
category command-line-handler m-pentadactyl @mozilla.org/commandlinehandler/general-startup;1?type=pentadactyl
|
||||||
|
|
||||||
component {c1b67a07-18f7-4e13-b361-2edcc35a5a0d} components/protocols.js
|
component {c1b67a07-18f7-4e13-b361-2edcc35a5a0d} components/protocols.js
|
||||||
contract @mozilla.org/network/protocol;1?name=chrome-data {c1b67a07-18f7-4e13-b361-2edcc35a5a0d}
|
contract @mozilla.org/network/protocol;1?name=chrome-data {c1b67a07-18f7-4e13-b361-2edcc35a5a0d}
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
// Copyright (c) 2008-2010 Kris Maglione <maglione.k at Gmail>
|
|
||||||
//
|
|
||||||
// This work is licensed for reuse under an MIT license. Details are
|
|
||||||
// given in the LICENSE.txt file included with this file.
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
const Ci = Components.interfaces, Cc = Components.classes;
|
|
||||||
|
|
||||||
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
||||||
|
|
||||||
function Dactyl() {
|
|
||||||
this.wrappedJSObject = this;
|
|
||||||
}
|
|
||||||
Dactyl.prototype = {
|
|
||||||
contractID: "@dactyl.googlecode.com/base/dactyl",
|
|
||||||
classID: Components.ID("{8e4a8e2f-95a0-4d8f-90ac-fc9d7d8f5468}"),
|
|
||||||
|
|
||||||
classDescription: "Dactyl component base definitions",
|
|
||||||
QueryInterface: XPCOMUtils.generateQI([]),
|
|
||||||
|
|
||||||
appName: "Pentadactyl",
|
|
||||||
name: "pentadactyl",
|
|
||||||
idName: "PENTADACTYL",
|
|
||||||
host: "Firefox"
|
|
||||||
};
|
|
||||||
|
|
||||||
if (XPCOMUtils.generateNSGetFactory)
|
|
||||||
const NSGetFactory = XPCOMUtils.generateNSGetFactory([Dactyl]);
|
|
||||||
else
|
|
||||||
const NSGetModule = XPCOMUtils.generateNSGetModule([Dactyl]);
|
|
||||||
|
|
||||||
// vim: set fdm=marker sw=4 ts=4 et:
|
|
||||||
4
pentadactyl/defaults/preferences/dactyl.js
Normal file
4
pentadactyl/defaults/preferences/dactyl.js
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
pref("extensions.dactyl.name", "pentadactyl");
|
||||||
|
pref("extensions.dactyl.appName", "Pentadactyl");
|
||||||
|
pref("extensions.dactyl.idName", "PENTADACTYL");
|
||||||
|
pref("extensions.dactyl.host", "Firefox");
|
||||||
@@ -16,12 +16,9 @@ overlay chrome://messenger/content/messenger.xul chrome://teledactyl/content/te
|
|||||||
overlay chrome://messenger/content/messengercompose/messengercompose.xul chrome://teledactyl/content/compose/dactyl.xul
|
overlay chrome://messenger/content/messengercompose/messengercompose.xul chrome://teledactyl/content/compose/dactyl.xul
|
||||||
overlay chrome://messenger/content/messengercompose/messengercompose.xul chrome://teledactyl/content/compose/compose.xul
|
overlay chrome://messenger/content/messengercompose/messengercompose.xul chrome://teledactyl/content/compose/compose.xul
|
||||||
|
|
||||||
component {8e4a8e2f-95a0-4d8f-90ac-fc9d7d8f5468} components/dactyl.js
|
|
||||||
contract @dactyl.googlecode.com/base/dactyl {8e4a8e2f-95a0-4d8f-90ac-fc9d7d8f5468}
|
|
||||||
|
|
||||||
component {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69} components/commandline-handler.js
|
component {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69} components/commandline-handler.js
|
||||||
contract @mozilla.org/commandlinehandler/general-startup;1?type=dactyl {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69}
|
contract @mozilla.org/commandlinehandler/general-startup;1?type=teledactyl {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69}
|
||||||
category command-line-handler m-dactyl @mozilla.org/commandlinehandler/general-startup;1?type=dactyl
|
category command-line-handler m-teledactyl @mozilla.org/commandlinehandler/general-startup;1?type=teledactyl
|
||||||
|
|
||||||
component {c1b67a07-18f7-4e13-b361-2edcc35a5a0d} components/protocols.js
|
component {c1b67a07-18f7-4e13-b361-2edcc35a5a0d} components/protocols.js
|
||||||
contract @mozilla.org/network/protocol;1?name=chrome-data {c1b67a07-18f7-4e13-b361-2edcc35a5a0d}
|
contract @mozilla.org/network/protocol;1?name=chrome-data {c1b67a07-18f7-4e13-b361-2edcc35a5a0d}
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
// Copyright (c) 2008-2010 Kris Maglione <maglione.k at Gmail>
|
|
||||||
//
|
|
||||||
// This work is licensed for reuse under an MIT license. Details are
|
|
||||||
// given in the LICENSE.txt file included with this file.
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
const Ci = Components.interfaces, Cc = Components.classes;
|
|
||||||
|
|
||||||
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
||||||
|
|
||||||
function Dactyl() {
|
|
||||||
this.wrappedJSObject = this;
|
|
||||||
}
|
|
||||||
Dactyl.prototype = {
|
|
||||||
contractID: "@dactyl.googlecode.com/base/dactyl",
|
|
||||||
classID: Components.ID("{8e4a8e2f-95a0-4d8f-90ac-fc9d7d8f5468}"),
|
|
||||||
|
|
||||||
classDescription: "Dactyl component base definitions",
|
|
||||||
QueryInterface: XPCOMUtils.generateQI([]),
|
|
||||||
|
|
||||||
appName: "Teledactyl",
|
|
||||||
name: "teledactyl",
|
|
||||||
idName: "TELEDACTYL",
|
|
||||||
host: "Thunderbird"
|
|
||||||
};
|
|
||||||
|
|
||||||
if (XPCOMUtils.generateNSGetFactory)
|
|
||||||
const NSGetFactory = XPCOMUtils.generateNSGetFactory([Dactyl]);
|
|
||||||
else
|
|
||||||
const NSGetModule = XPCOMUtils.generateNSGetModule([Dactyl]);
|
|
||||||
|
|
||||||
// vim: set fdm=marker sw=4 ts=4 et:
|
|
||||||
4
teledactyl/defaults/preferences/dactyl.js
Normal file
4
teledactyl/defaults/preferences/dactyl.js
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
pref("extensions.dactyl.name", "teledactyl");
|
||||||
|
pref("extensions.dactyl.appName", "Teledactyl");
|
||||||
|
pref("extensions.dactyl.idName", "TELEDACTYL");
|
||||||
|
pref("extensions.dactyl.host", "Thunderbird");
|
||||||
@@ -14,12 +14,9 @@ override chrome://dactyl/content/config.js chrome://xulmus/content/config.js
|
|||||||
overlay chrome://songbird/content/xul/layoutBaseOverlay.xul chrome://xulmus/content/xulmus.xul
|
overlay chrome://songbird/content/xul/layoutBaseOverlay.xul chrome://xulmus/content/xulmus.xul
|
||||||
overlay chrome://songbird/content/xul/layoutBaseOverlay.xul chrome://dactyl/content/dactyl.xul
|
overlay chrome://songbird/content/xul/layoutBaseOverlay.xul chrome://dactyl/content/dactyl.xul
|
||||||
|
|
||||||
component {8e4a8e2f-95a0-4d8f-90ac-fc9d7d8f5468} components/dactyl.js
|
|
||||||
contract @dactyl.googlecode.com/base/dactyl {8e4a8e2f-95a0-4d8f-90ac-fc9d7d8f5468}
|
|
||||||
|
|
||||||
component {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69} components/commandline-handler.js
|
component {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69} components/commandline-handler.js
|
||||||
contract @mozilla.org/commandlinehandler/general-startup;1?type=mus {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69}
|
contract @mozilla.org/commandlinehandler/general-startup;1?type=xulmus {16dc34f7-6d22-4aa4-a67f-2921fb5dcb69}
|
||||||
category command-line-handler m-dactyl @mozilla.org/commandlinehandler/general-startup;1?type=dactyl
|
category command-line-handler m-xulmus @mozilla.org/commandlinehandler/general-startup;1?type=xulmus
|
||||||
|
|
||||||
component {c1b67a07-18f7-4e13-b361-2edcc35a5a0d} components/protocols.js
|
component {c1b67a07-18f7-4e13-b361-2edcc35a5a0d} components/protocols.js
|
||||||
contract @mozilla.org/network/protocol;1?name=chrome-data {c1b67a07-18f7-4e13-b361-2edcc35a5a0d}
|
contract @mozilla.org/network/protocol;1?name=chrome-data {c1b67a07-18f7-4e13-b361-2edcc35a5a0d}
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
// Copyright (c) 2008-2010 Kris Maglione <maglione.k at Gmail>
|
|
||||||
//
|
|
||||||
// This work is licensed for reuse under an MIT license. Details are
|
|
||||||
// given in the LICENSE.txt file included with this file.
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
const Ci = Components.interfaces, Cc = Components.classes;
|
|
||||||
|
|
||||||
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
||||||
|
|
||||||
function Dactyl() {
|
|
||||||
this.wrappedJSObject = this;
|
|
||||||
}
|
|
||||||
Dactyl.prototype = {
|
|
||||||
contractID: "@dactyl.googlecode.com/base/dactyl",
|
|
||||||
classID: Components.ID("{8e4a8e2f-95a0-4d8f-90ac-fc9d7d8f5468}"),
|
|
||||||
|
|
||||||
classDescription: "Dactyl component base definitions",
|
|
||||||
QueryInterface: XPCOMUtils.generateQI([]),
|
|
||||||
|
|
||||||
appName: "Xulmus",
|
|
||||||
name: "xulmus",
|
|
||||||
idName: "XULMUS",
|
|
||||||
host: "Songbird"
|
|
||||||
};
|
|
||||||
|
|
||||||
if (XPCOMUtils.generateNSGetFactory)
|
|
||||||
const NSGetFactory = XPCOMUtils.generateNSGetFactory([Dactyl]);
|
|
||||||
else
|
|
||||||
const NSGetModule = XPCOMUtils.generateNSGetModule([Dactyl]);
|
|
||||||
|
|
||||||
// vim: set fdm=marker sw=4 ts=4 et:
|
|
||||||
4
xulmus/defaults/preferences/dactyl.js
Normal file
4
xulmus/defaults/preferences/dactyl.js
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
pref("extensions.dactyl.name", "xulmus");
|
||||||
|
pref("extensions.dactyl.appName", "Xulmus");
|
||||||
|
pref("extensions.dactyl.idName", "XULMUS");
|
||||||
|
pref("extensions.dactyl.host", "Songbird");
|
||||||
Reference in New Issue
Block a user