This file is indexed.

/usr/share/xul-ext/ubiquity/builtin-feeds/builtincmds.js is in xul-ext-ubiquity 0.6.4~pre20140729-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/* ***** BEGIN LICENSE BLOCK *****
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 * http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is Ubiquity.
 *
 * The Initial Developer of the Original Code is Mozilla.
 * Portions created by the Initial Developer are Copyright (C) 2007
 * the Initial Developer. All Rights Reserved.
 *
 * Contributor(s):
 *   Atul Varma <atul@mozilla.com>
 *   Aza Raskin <aza@mozilla.com>
 *   Maria Emerson <memerson@mozilla.com>
 *   Abimanyu Raja <abimanyu@gmail.com>
 *   Jono DiCarlo <jdicarlo@mozilla.com>
 *   Blair McBride <blair@theunfocused.net>
 *   Satoshi Murakami <murky.satyr@gmail.com>
 *
 * Alternatively, the contents of this file may be used under the terms of
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 * in which case the provisions of the GPL or the LGPL are applicable instead
 * of those above. If you wish to allow use of your version of this file only
 * under the terms of either the GPL or the LGPL, and not to allow others to
 * use your version of this file under the terms of the MPL, indicate your
 * decision by deleting the provisions above and replace them with the notice
 * and other provisions required by the GPL or the LGPL. If you do not delete
 * the provisions above, a recipient may use your version of this file under
 * the terms of any one of the MPL, the GPL or the LGPL.
 *
 * ***** END LICENSE BLOCK ***** */

feed.title  = _("Built-in Commands");
feed.author = _("Ubiquity Team");

// -----------------------------------------------------------------
// SYSTEM COMMANDS
// -----------------------------------------------------------------

const Help = "about:ubiquity";
const Editor = "about:ubiquity?editor";
const CmdList = "about:ubiquity?cmdlist";
const Support = "about:ubiquity?support";
const Settings = "about:ubiquity?settings";
const BugReport = (
  "http://getsatisfaction.com/mozilla/products/mozilla_ubiquity");

const {prefs} = Utils;

Cu.import("resource://ubiquity/modules/setup.js");
Cu.import("resource://ubiquity/modules/cmdhistory.js");

CmdUtils.CreateCommand({
  names: ["help", "about", "?"],
  icon: "chrome://ubiquity/skin/icons/help.png",
  description:
    'Takes you to the Ubiquity <a href="'+ Help +'">main help page</a>.<br/>'+
    'Or, enter the name of a command to get help on that command.',
  argument: noun_type_command,
  preview: function help_preview(pblock, {object: {data}}) {
    (data || this).previewDefault(pblock);
  },
  execute: function help_execute({object: {data}}) {
    if (data)
      Utils.openUrlInBrowser(CmdList + "#" + data.id);
    else
      Utils.focusUrlInBrowser(Help);
  },
});

CmdUtils.CreateCommand({
  names: ["open", "show"],
  argument: CmdUtils.mixNouns(
    "?",
    CmdUtils.NounType("ubiquity pages", {
      "Help": Help,
      "Settings": Settings,
      "Command List": CmdList,
      "Command Editor": Editor,
      "Support": Support,
      "Bug Report": BugReport,
    }),
    noun_type_awesomebar),
  icon: "chrome://ubiquity/skin/icons/favicon.ico",
  description: 'Opens one of the Ubiquity documentation/settings pages.',
  preview: function open_preview(pb, {object: {text, data}}) {
    if (!data) return void this.previewDefault(pb);

    pb.innerHTML =
      typeof data === "string"
      ? _("Opens the Ubiquity ${goal} page.", {goal: text.link(data)})
      : '<div id="open"><img src='+ data.favicon +'/>'+ data.title +
        '<p><code>'+ data.url +'</code></p></div>';
  },
  execute: function open_execute({object: {data}}) {
    Utils.openUrlInBrowser(data ? data.url || data : Settings);
  },
});

CmdUtils.CreateCommand({
  names: ["write Ubiquity commands",
          "edit Ubiquity commands",
          "hack Ubiquity",
          "Command Editor"],
  icon: "chrome://ubiquity/skin/icons/plugin_edit.png",
  description:
    'Takes you to the Ubiquity <a href="'+ Editor +'">command editor</a> page.',
  execute: Editor,
});

CmdUtils.CreateCommand({
  names: ["list Ubiquity commands", "Command List"],
  icon: "chrome://ubiquity/skin/icons/application_view_list.png",
  description:
    'Opens <a href="'+ CmdList +'">the list</a>'+
    'of all Ubiquity commands available and what they all do.',
  execute: CmdList,
});

CmdUtils.CreateCommand({
  names: ["change Ubiquity settings",
          "change Ubiquity preferences"],
  icon: "chrome://ubiquity/skin/icons/favicon.ico",
  description:
    'Takes you to the <a href="'+ Settings +'">settings</a> page, '+
    'where you can change your skin, key combinations, etc.',
  execute: Settings,
});

CmdUtils.CreateCommand({
  names: ["get support"],
  icon: "chrome://ubiquity/skin/icons/favicon.ico",
  description:
    'Takes you to the <a href="'+ Support +'">support</a> page, '+
    'where you can report bugs, get troubleshooting help, etc.',
  execute: Support,
});

CmdUtils.CreateCommand({
  names: ["report bug"],
  icon: "chrome://ubiquity/skin/icons/favicon.ico",
  description:
    'Takes you to the <a href="'+ BugReport +'">bug report</a> page.',
  execute: BugReport,
});

CmdUtils.CreateCommand({
  names: ["change skin"],
  icon: "chrome://ubiquity/skin/icons/favicon.ico",
  description: "Changes your Ubiquity skin.",
  argument: noun_type_skin,
  execute: function chskin_execute({object: {data: skin}}) {
    if (skin) {
      skin.pick();
      Utils.tabs.reload(/^about:ubiquity\?settings\b/);
    }
    else Utils.focusUrlInBrowser(Settings);
  },
  preview: function chskin_preview(pb, {object: {html}}) {
    pb.innerHTML = (
      html
      ? _("Changes to ${name}.", {name: html.bold()})
      : this.previewDefault());
  },
});

(function ToggleCommand(names, desc, nt, disabled, tmpl) {
  CmdUtils.CreateCommand({
    names: names,
    icon: "chrome://ubiquity/skin/icons/favicon.ico",
    description: desc,
    argument: nt,
    execute: function xable_cmd_execute({object: {text, data: cmd}}) {
      if (cmd) {
        cmd.disabled = disabled;
        displayMessage(text, this);
      }
    },
    preview: function xable_cmd_preview(pb, {object: {html, data: cmd}}) {
      pb.innerHTML = (
        cmd
        ? (CmdUtils.renderTemplate(tmpl, {name: "<b>" + html + "</b>"}) +
           "<hr/>" + cmd.previewDefault())
        : this.description);
    }
  });
  return ToggleCommand;
})
(["disable command"],
 ("Disables a Ubiquity command, so that it will no longer " +
  "show up in the suggestion list."),
 noun_type_enabled_command,
 true,
 _("Disables ${name}."))
(["enable command"],
 "Re-enables a Ubiquity command that you disabled.",
 noun_type_disabled_command,
 false,
 _("Enables ${name}."));

CmdUtils.CreateCommand({
  names: ["command history", "vita"],
  arguments: {"object filter": noun_arb_text},
  description: "Accesses your command history.",
  help: '\
    <ul style="list-style-image:none">\
    <li>Use accesskey or click to reuse.</li>\
    <li>Type to filter.</li>\
    <li>Execute to delete all matched histories.</li>\
    <li>Edit <a href="about:config"><code>'+ CommandHistory.PREF_MAX + '\
    </code></a> to set max number of histories.</li></ul>',
  author: {name: "satyr", email: "murky.satyr@gmail.com"},
  license: "MIT",
  icon: "chrome://ubiquity/skin/icons/favicon.ico",
  execute: function cmdh_execute({object: {text}}) {
    var bin = CommandHistory.get();
    if (!bin.length) return;
    if (text) {
      var rem = this._filter(bin, text, true);
      if (rem.length === bin.length) return;
      CommandHistory.set(rem);
      this._say(_("Deleted matched histories. Click here to undo."),
                function cmdh__undo() { CommandHistory.set(bin) });
    }
    else this._say(_('Type "^" to delete all.'));
  },
  preview: function cmdh_preview(pb, args) {
    var his = this._filter(CommandHistory.get(), args.object.text);
    if (!his.length) {
      pb.innerHTML = "<em>" + _("No histories match.") + "</em>" + this.help;
      return;
    }
    CmdUtils.previewList(
      pb,
      ['<span> <code>'+ h +'</code> </span>' for (h of his)],
      function cmdh__reuse(i) {
        context.chromeWindow.gUbiquity.preview(his[i]);
      });
  },
  _say: function cmdh__say(txt, cb) {
    displayMessage({text: txt, onclick: cb}, this);
  },
  _filter: function cmdh__filter(his, txt, rev) {
    if (txt) {
      var re = Utils.regexp(txt, "i");
      his = [h for (h of his) if (rev ^ re.test(h))];
    }
    return his;
  },
});