command-line handler respects cmdline.preventDefault
[conkeror/arlinius.git] / components / commandline.js
blob968fd0e6304658f213090a0c67907741a08859f9
1 /**
2  * (C) Copyright 2007 John J. Foerch
3  * (C) Copyright 2007-2008 Jeremy Maitin-Shepard
4  *
5  * Use, modification, and distribution are subject to the terms specified in the
6  * COPYING file.
7 **/
9 const Cc = Components.classes;
10 const Ci = Components.interfaces;
11 Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
13 function cmdline() {}
14 cmdline.prototype = {
15     handle: function (cmdline) {
16         if (cmdline.preventDefault)
17             return;
18         cmdline.preventDefault = true;
19         var conkeror = Cc["@conkeror.mozdev.org/application;1"].getService().wrappedJSObject;
20         conkeror.handle_command_line(cmdline);
21     },
22     QueryInterface: XPCOMUtils.generateQI([Ci.nsICommandLineHandler]),
23     contractID: "@mozilla.org/commandlinehandler/general-startup;1?type=conkeror",
24     classID: Components.ID("{0f4dd758-b55a-4386-a79c-8698642eac51}"),
25     classDescription: "clh_conkeror",
26     _xpcom_categories: [{
27             category: "command-line-handler",
28             entry: "y-conkeror"
29         }]
32 function NSGetModule(compMgr, fileSpec) {
33     return XPCOMUtils.generateModule([cmdline]);