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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
|
/**
* (C) Copyright 2004-2007 Shawn Betts
* (C) Copyright 2007-2008 John J. Foerch
* (C) Copyright 2007-2008 Jeremy Maitin-Shepard
*
* Use, modification, and distribution are subject to the terms specified in the
* COPYING file.
**/
function string_hashset() {}
string_hashset.prototype = {
constructor : string_hashset,
add : function(s) {
this["-" + s] = true;
},
contains : function(s) {
return (("-" + s) in this);
},
remove : function (s) {
delete this["-" + s];
},
for_each : function (f) {
for (var i in this) {
if (i[0] == "-")
f(i.slice(1));
}
},
iterator : function () {
for (let k in this) {
if (i[0] == "-")
yield i.slice(1);
}
}
};
function string_hashmap() {
}
string_hashmap.prototype = {
constructor : string_hashmap,
put : function(s,value) {
this["-" + s] = value;
},
contains : function(s) {
return (("-" + s) in this);
},
get : function(s, default_value) {
if (this.contains(s))
return this["-" + s];
return default_value;
},
get_put_default : function(s, default_value) {
if (this.contains(s))
return this["-" + s];
return (this["-" + s] = default_value);
},
remove : function (s) {
delete this["-" + s];
},
for_each : function (f) {
for (var i in this) {
if (i[0] == "-")
f(i.slice(1), this[i]);
}
},
for_each_value : function (f) {
for (var i in this) {
if (i[0] == "-")
f(this[i]);
}
},
iterator: function (only_keys) {
if (only_keys) {
for (let k in Iterator(this, true)) {
if (k[0] == "-")
yield k.slice(1);
}
} else {
for (let [k,v] in Iterator(this, false)) {
if (k[0] == "-")
yield [k.slice(1),v];
}
}
}
};
/// Window title formatting
/**
* Default tile formatter. The page url is ignored. If there is a
* page_title, returns: "Page title - Conkeror". Otherwise, it
* returns just: "Conkeror".
*/
function default_title_formatter (window)
{
var page_title = window.buffers.current.title;
if (page_title && page_title.length > 0)
return page_title + " - Conkeror";
else
return "Conkeror";
}
var title_format_fn = null;
function set_window_title (window)
{
window.document.title = title_format_fn(window);
}
function init_window_title ()
{
title_format_fn = default_title_formatter;
add_hook("window_initialize_late_hook", set_window_title);
add_hook("current_content_buffer_location_change_hook",
function (buffer) {
set_window_title(buffer.window);
});
add_hook("select_buffer_hook", function (buffer) { set_window_title(buffer.window); }, true);
add_hook("current_buffer_title_change_hook",
function (buffer) {
set_window_title(buffer.window);
});
}
init_window_title ();
///
// Put the string on the clipboard
function writeToClipboard(str)
{
const gClipboardHelper = Components.classes["@mozilla.org/widget/clipboardhelper;1"]
.getService(Components.interfaces.nsIClipboardHelper);
gClipboardHelper.copyString(str);
}
function makeURLAbsolute (base, url)
{
// Construct nsIURL.
var ioService = Components.classes["@mozilla.org/network/io-service;1"]
.getService(Components.interfaces.nsIIOService);
var baseURI = ioService.newURI(base, null, null);
return ioService.newURI (baseURI.resolve (url), null, null).spec;
}
function get_link_location (element)
{
if (element && element.getAttribute("href")) {
var loc = element.getAttribute("href");
return makeURLAbsolute(element.baseURI, loc);
}
return null;
}
var io_service = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService2);
function make_uri(uri, charset, base_uri) {
if (uri instanceof Ci.nsIURI)
return uri;
return io_service.newURI(uri, charset, base_uri);
}
var makeURL = make_uri; // until all callers are fixed
function makeFileURL(aFile)
{
return io_service.newFileURI(aFile).QueryInterface(Ci.nsIURL);
}
function get_document_content_disposition (document_o)
{
var content_disposition = null;
try {
content_disposition =
document_o.defaultView
.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIDOMWindowUtils)
.getDocumentMetadata("content-disposition");
} catch (e) { }
return content_disposition;
}
function set_focus_no_scroll(window, element)
{
window.document.commandDispatcher.suppressFocusScroll = true;
element.focus();
window.document.commandDispatcher.suppressFocusScroll = false;
}
function do_repeatedly_positive(func, n) {
var args = Array.prototype.slice.call(arguments, 2);
while (n-- > 0)
func.apply(null, args);
}
function do_repeatedly(func, n, positive_args, negative_args) {
if (n < 0)
do func.apply(null, negative_args); while (++n < 0);
else
while (n-- > 0) func.apply(null, positive_args);
}
// remove whitespace from the beginning and end
function trim_whitespace (str)
{
var tmp = new String (str);
return tmp.replace (/^\s+/, "").replace (/\s+$/, "");
}
function abs_point (node)
{
var orig = node;
var pt = {};
try {
pt.x = node.offsetLeft;
pt.y = node.offsetTop;
// find imagemap's coordinates
if (node.tagName == "AREA") {
var coords = node.getAttribute("coords").split(",");
pt.x += Number(coords[0]);
pt.y += Number(coords[1]);
}
node = node.offsetParent;
// Sometimes this fails, so just return what we got.
while (node.tagName != "BODY") {
pt.x += node.offsetLeft;
pt.y += node.offsetTop;
node = node.offsetParent;
}
} catch(e) {
// node = orig;
// while (node.tagName != "BODY") {
// alert("okay: " + node + " " + node.tagName + " " + pt.x + " " + pt.y);
// node = node.offsetParent;
// }
}
return pt;
}
var xul_app_info = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULAppInfo);
var xul_runtime = Cc['@mozilla.org/xre/app-info;1'].getService(Ci.nsIXULRuntime);
function get_os ()
{
// possible return values: 'Darwin', 'Linux', 'WINNT', ...
return xul_runtime.OS;
}
var default_directory = null;
var env = Cc['@mozilla.org/process/environment;1'].getService(Ci.nsIEnvironment);
function getenv (variable) {
if (env.exists (variable))
return env.get(variable);
return null;
}
function set_default_directory(directory_s) {
if (! directory_s)
{
if ( get_os() == "WINNT")
{
directory_s = getenv ('USERPROFILE') ||
getenv ('HOMEDRIVE') + getenv ('HOMEPATH');
}
else {
directory_s = getenv ('HOME');
}
}
default_directory = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsILocalFile);
default_directory.initWithPath (directory_s);
}
set_default_directory();
const XHTML_NS = "http://www.w3.org/1999/xhtml";
const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
const MATHML_NS = "http://www.w3.org/1998/Math/MathML";
const XLINK_NS = "http://www.w3.org/1999/xlink";
function create_XUL(window, tag_name)
{
return window.document.createElementNS(XUL_NS, tag_name);
}
/* Used in calls to XPath evaluate */
function xpath_lookup_namespace(prefix) {
if (prefix == "xhtml")
return XHTML_NS;
if (prefix == "m")
return MATHML_NS;
if (prefix == "xul")
return XUL_NS;
return null;
}
function method_caller(obj, func) {
return function () {
func.apply(obj, arguments);
}
}
function shell_quote(str) {
var s = str.replace("\"", "\\\"", "g");
s = s.replace("$", "\$", "g");
return s;
}
/* Like perl's quotemeta. Backslash all non-alphanumerics. */
function quotemeta(str) {
return str.replace(/([^a-zA-Z0-9])/g, "\\$1");
}
/* Given a list of choices (strings), return a regex which matches any
of them*/
function choice_regex(choices) {
var regex = "(?:" + choices.map(quotemeta).join("|") + ")";
return regex;
}
function get_window_from_frame(frame) {
try {
var window = frame.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIWebNavigation)
.QueryInterface(Ci.nsIDocShellTreeItem)
.rootTreeItem
.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIDOMWindow).wrappedJSObject;
/* window is now an XPCSafeJSObjectWrapper */
window.escape_wrapper(function (w) { window = w; });
/* window is now completely unwrapped */
return window;
} catch (e) {
return null;
}
}
function get_buffer_from_frame(window, frame) {
var count = window.buffers.count;
for (var i = 0; i < count; ++i) {
var b = window.buffers.get_buffer(i);
if (b.top_frame == frame)
return b;
}
return null;
}
var file_locator = Cc["@mozilla.org/file/directory_service;1"].getService(Ci.nsIProperties);
function get_shortdoc_string(doc) {
var shortdoc = null;
if (doc != null) {
var idx = doc.indexOf("\n");
if (idx >= 0)
shortdoc = doc.substring(0,idx);
else
shortdoc = doc;
}
return shortdoc;
}
var conkeror_source_code_path = null;
function source_code_reference(uri, line_number) {
this.uri = uri;
this.line_number = line_number;
}
source_code_reference.prototype = {
get module_name () {
if (this.uri.indexOf(module_uri_prefix) == 0)
return this.uri.substring(module_uri_prefix.length);
return null;
},
get file_name () {
var file_uri_prefix = "file://";
if (this.uri.indexOf(file_uri_prefix) == 0)
return this.uri.substring(file_uri_prefix.length);
return null;
},
get best_uri () {
if (conkeror_source_code_path != null) {
var module_name = this.module_name;
if (module_name != null)
return "file://" + conkeror_source_code_path + "/modules/" + module_name;
}
return this.uri;
},
open_in_editor : function() {
yield open_with_external_editor(this.best_uri, $line = this.line_number);
}
};
var get_caller_source_code_reference_ignored_functions = {};
function get_caller_source_code_reference(extra_frames_back) {
/* Skip at least this function itself and whoever called it (and
* more if the caller wants to be skipped). */
var frames_to_skip = 2;
if (extra_frames_back != null)
frames_to_skip += extra_frames_back;
for (let f = Components.stack; f != null; f = f.caller) {
if (frames_to_skip > 0) {
--frames_to_skip;
continue;
}
if (get_caller_source_code_reference_ignored_functions[f.name])
continue;
return new source_code_reference(f.filename, f.lineNumber);
}
return null;
}
function ignore_function_for_get_caller_source_code_reference(func_name) {
get_caller_source_code_reference_ignored_functions[func_name] = 1;
}
require_later("external-editor.js");
function dom_generator(document, ns) {
this.document = document;
this.ns = ns;
}
dom_generator.prototype = {
element : function(tag, parent) {
var node = this.document.createElementNS(this.ns, tag);
var i = 1;
if (parent != null && (parent instanceof Ci.nsIDOMNode)) {
parent.appendChild(node);
i = 2;
}
for (; i < arguments.length; i += 2)
node.setAttribute(arguments[i], arguments[i+1]);
return node;
},
text : function(str, parent) {
var node = this.document.createTextNode(str);
if (parent)
parent.appendChild(node);
return node;
},
stylesheet_link : function(href, parent) {
var node = this.element("link");
node.setAttribute("rel", "stylesheet");
node.setAttribute("type", "text/css");
node.setAttribute("href", href);
if (parent)
parent.appendChild(node);
return node;
},
add_stylesheet : function (url) {
var head = this.document.documentElement.firstChild;
this.stylesheet_link(url, head);
}
};
/**
* Generates a QueryInterface function suitable for an implemenation
* of an XPCOM interface. Unlike XPCOMUtils, this uses the Function
* constructor to generate a slightly more efficient version. The
* arguments can be either Strings or elements of
* Components.interfaces.
*/
function generate_QI() {
var args = Array.prototype.slice.call(arguments).map(String).concat(["nsISupports"]);
var fstr = "if(" +
Array.prototype.map.call(args,
function (x)
"iid.equals(Components.interfaces." + x + ")")
.join("||") +
") return this; throw Components.results.NS_ERROR_NO_INTERFACE;";
return new Function("iid", fstr);
}
function set_branch_pref(branch, name, value) {
if (typeof(value) == "string") {
branch.setCharPref(name, value);
} else if (typeof(value) == "number") {
branch.setIntPref(name, value);
} else if (typeof(value) == "boolean") {
branch.setBoolPref(name, value);
}
}
function default_pref(name, value) {
var branch = preferences.getDefaultBranch(null);
set_branch_pref(branch, name, value);
}
function user_pref(name, value) {
var branch = preferences.getBranch(null);
set_branch_pref(branch, name, value);
}
function get_branch_pref(branch, name) {
switch (branch.getPrefType(name)) {
case branch.PREF_STRING:
return branch.getCharPref(name);
case branch.PREF_INT:
return branch.getIntPref(name);
case branch.PREF_BOOL:
return branch.getBoolPref(name);
default:
return null;
}
}
function get_localized_pref(name) {
try {
return preferences.getBranch(null).getComplexValue(name, Ci.nsIPrefLocalizedString).data;
} catch (e) {
return null;
}
}
function get_pref(name) {
var branch = preferences.getBranch(null);
return get_branch_pref(branch, name);
}
function get_default_pref(name) {
var branch = preferences.getDefaultBranch(null);
return get_branch_pref(branch, name);
}
function clear_pref(name) {
var branch = preferences.getBranch(null);
return branch.clearUserPref(name);
}
function pref_has_user_value(name) {
var branch = preferences.getBranch(null);
return branch.prefHasUserValue(name);
}
function pref_has_default_value(name) {
var branch = preferences.getDefaultBranch(null);
return branch.prefHasUserValue(name);
}
function session_pref (name, value) {
try { clear_pref (name); }
catch (e) {}
return default_pref (name, value);
}
const LOCALE_PREF = "general.useragent.locale";
function get_locale() {
return get_localized_pref(LOCALE_PREF) || get_pref(LOCALE_PREF);
}
const USER_AGENT_OVERRIDE_PREF = "general.useragent.override";
function set_user_agent(str) {
session_pref(USER_AGENT_OVERRIDE_PREF, str);
}
function define_builtin_commands(prefix, do_command_function, toggle_mark, mark_active_predicate) {
// Specify a docstring
function D(cmd, docstring) {
var o = new String(cmd);
o.doc = docstring;
return o;
}
// Specify a forward/reverse pair
function R(a, b) {
var o = [a,b];
o.is_reverse_pair = true;
return o;
}
// Specify a movement/select command pair.
function S(command, movement, select) {
var o = [movement, select];
o.command = command;
o.is_move_select_pair = true;
return o;
}
var builtin_commands = [
S(D("beginning-of-line", "Move or extend the selection to the beginning of the current line."),
D("cmd_beginLine", "Move point to the beginning of the current line."),
D("cmd_selectBeginLine", "Extend selection to the beginning of the current line.")),
S(D("end-of-line", "Move or extend the selection to the end of the current line."),
D("cmd_endLine", "Move point to the end of the current line."),
D("cmd_selectEndLine", "Extend selection to the end of the current line.")),
D("cmd_copy", "Copy the selection into the clipboard."),
"cmd_copyOrDelete",
D("cmd_cut", "Cut the selection into the clipboard."),
"cmd_cutOrDelete",
D("cmd_deleteToBeginningOfLine", "Delete to the beginning of the current line."),
D("cmd_deleteToEndOfLine", "Delete to the end of the current line."),
S(D("beginning-of-first-line", "Move or extend the selection to the beginning of the first line."),
D("cmd_moveTop", "Move point to the beginning of the first line."),
D("cmd_selectTop", "Extend selection to the beginning of the first line.")),
S(D("end-of-last-line", "Move or extend the selection to the end of the last line."),
D("cmd_moveBottom", "Move point to the end of the last line."),
D("cmd_selectBottom", "Extend selection to the end of the last line.")),
D("cmd_selectAll", "Select all."),
"cmd_scrollBeginLine",
"cmd_scrollEndLine",
D("cmd_scrollTop", "Scroll to the top of the buffer."),
D("cmd_scrollBottom", "Scroll to the bottom of the buffer.")];
var builtin_commands_with_count = [
R(S(D("forward-char", "Move or extend the selection forward one character."),
D("cmd_charNext", "Move point forward one character."),
D("cmd_selectCharNext", "Extend selection forward one character.")),
S(D("backward-char", "Move or extend the selection backward one character."),
D("cmd_charPrevious", "Move point backward one character."),
D("cmd_selectCharPrevious", "Extend selection backward one character."))),
R(D("cmd_deleteCharForward", "Delete the following character."),
D("cmd_deleteCharBackward", "Delete the previous character.")),
R(D("cmd_deleteWordForward", "Delete the following word."),
D("cmd_deleteWordBackward", "Delete the previous word.")),
R(S(D("forward-line", "Move or extend the selection forward one line."),
D("cmd_lineNext", "Move point forward one line."),
"cmd_selectLineNext", "Extend selection forward one line."),
S(D("backward-line", "Move or extend the selection backward one line."),
D("cmd_linePrevious", "Move point backward one line."),
D("cmd_selectLinePrevious", "Extend selection backward one line."))),
R(S(D("forward-page", "Move or extend the selection forward one page."),
D("cmd_movePageDown", "Move point forward one page."),
D("cmd_selectPageDown", "Extend selection forward one page.")),
S(D("backward-page", "Move or extend the selection backward one page."),
D("cmd_movePageUp", "Move point backward one page."),
D("cmd_selectPageUp", "Extend selection backward one page."))),
R(D("cmd_undo", "Undo last editing action."),
D("cmd_redo", "Redo last editing action.")),
R(S(D("forward-word", "Move or extend the selection forward one word."),
D("cmd_wordNext", "Move point forward one word."),
D("cmd_selectWordNext", "Extend selection forward one word.")),
S(D("backward-word", "Move or extend the selection backward one word."),
D("cmd_wordPrevious", "Move point backward one word."),
D("cmd_selectWordPrevious", "Extend selection backward one word."))),
R(D("cmd_scrollPageUp", "Scroll up one page."),
D("cmd_scrollPageDown", "Scroll down one page.")),
R(D("cmd_scrollLineUp", "Scroll up one line."),
D("cmd_scrollLineDown", "Scroll down one line.")),
R(D("cmd_scrollLeft", "Scroll left."),
D("cmd_scrollRight", "Scroll right.")),
D("cmd_paste", "Insert the contents of the clipboard.")];
interactive(prefix + "set-mark",
"Toggle whether the mark is active.\n" +
"When the mark is active, movement commands affect the selection.",
toggle_mark);
function doc_for_builtin(c) {
var s = "";
if (c.doc != null)
s += c.doc + "\n";
return s + "Run the built-in command " + c + ".";
}
function define_simple_command(c) {
interactive(prefix + c, doc_for_builtin(c), function (I) { do_command_function(I, c); });
}
function get_move_select_doc_string(c) {
return c.command.doc +
"\nSpecifically, if the mark is inactive, runs `" + prefix + c[0] + "'. " +
"Otherwise, runs `" + prefix + c[1] + "'.\n" +
"To toggle whether the mark is active, use `" + prefix + "set-mark'.";
}
for each (let c_temp in builtin_commands) {
let c = c_temp;
if (c.is_move_select_pair) {
interactive(prefix + c.command, get_move_select_doc_string(c), function (I) {
do_command_function(I, mark_active_predicate(I) ? c[1] : c[0]);
});
define_simple_command(c[0]);
define_simple_command(c[1]);
}
else
define_simple_command(c);
}
function get_reverse_pair_doc_string(main_doc, alt_command) {
return main_doc + "\n" +
"The prefix argument specifies a repeat count for this command. " +
"If the count is negative, `" + prefix + alt_command + "' is performed instead with " +
"a corresponding positive repeat count.";
}
function define_simple_reverse_pair(a, b) {
interactive(prefix + a, get_reverse_pair_doc_string(doc_for_builtin(a), b),
function (I) {
do_repeatedly(do_command_function, I.p, [I, a], [I, b]);
});
interactive(prefix + b, get_reverse_pair_doc_string(doc_for_builtin(b), a),
function (I) {
do_repeatedly(do_command_function, I.p, [I, b], [I, a]);
});
}
for each (let c_temp in builtin_commands_with_count)
{
let c = c_temp;
if (c.is_reverse_pair) {
if (c[0].is_move_select_pair) {
interactive(prefix + c[0].command, get_reverse_pair_doc_string(get_move_select_doc_string(c[0]),
c[1].command),
function (I) {
var idx = mark_active_predicate(I) ? 1 : 0;
do_repeatedly(do_command_function, I.p, [I, c[0][idx]], [I, c[1][idx]]);
});
interactive(prefix + c[1].command, get_reverse_pair_doc_string(get_move_select_doc_string(c[1]),
c[0].command),
function (I) {
var idx = mark_active_predicate(I) ? 1 : 0;
do_repeatedly(do_command_function, I.p, [I, c[1][idx]], [I, c[0][idx]]);
});
define_simple_reverse_pair(c[0][0], c[1][0]);
define_simple_reverse_pair(c[0][1], c[1][1]);
} else
define_simple_reverse_pair(c[0], c[1]);
} else {
let doc = doc_for_builtin(c) +
"\nThe prefix argument specifies a positive repeat count for this command.";
interactive(prefix + c, doc, function (I) {
do_repeatedly_positive(do_command_function, I.p, I, c);
});
}
}
}
var observer_service = Cc["@mozilla.org/observer-service;1"].getService(Ci.nsIObserverService);
function abort(str) {
var e = new Error(str);
e.__proto__ = abort.prototype;
return e;
}
abort.prototype.__proto__ = Error.prototype;
function get_temporary_file(name) {
if (name == null)
name = "temp.txt";
var file = file_locator.get("TmpD", Ci.nsIFile);
file.append(name);
// Create the file now to ensure that no exploits are possible
file.createUnique(Ci.nsIFile.NORMAL_FILE_TYPE, 0600);
return file;
}
/* FIXME: This should be moved somewhere else, perhaps. */
function create_info_panel(window, panel_class, row_arr) {
/* Show information panel above minibuffer */
var g = new dom_generator(window.document, XUL_NS);
var p = g.element("vbox", "class", "panel " + panel_class, "flex", "0");
var grid = g.element("grid", p);
var cols = g.element("columns", grid);
g.element("column", cols, "flex", "0");
g.element("column", cols, "flex", "1");
var rows = g.element("rows", grid);
var row;
for each (let [row_class, row_label, row_value] in row_arr) {
row = g.element("row", rows, "class", row_class);
g.element("label", row,
"value", row_label,
"class", "panel-row-label");
g.element("label", row,
"value", row_value,
"class", "panel-row-value");
}
window.minibuffer.insert_before(p);
p.destroy = function () {
this.parentNode.removeChild(this);
};
return p;
}
// read_from_x_primary_selection favors the X PRIMARY SELECTION, when
// it exists. The builtin cmd_paste always uses X CLIPBOARD. So this
// is an auxiliary utility, in case you need to work with the primary
// selection.
//
function read_from_x_primary_selection ()
{
// Get clipboard.
var clipboard = Components.classes["@mozilla.org/widget/clipboard;1"]
.getService(Components.interfaces.nsIClipboard);
// Create tranferable that will transfer the text.
var trans = Components.classes["@mozilla.org/widget/transferable;1"]
.createInstance(Components.interfaces.nsITransferable);
trans.addDataFlavor("text/unicode");
// If available, use selection clipboard, otherwise global one
if (clipboard.supportsSelectionClipboard())
clipboard.getData(trans, clipboard.kSelectionClipboard);
else
clipboard.getData(trans, clipboard.kGlobalClipboard);
var data = {};
var dataLen = {};
trans.getTransferData("text/unicode", data, dataLen);
if (data) {
data = data.value.QueryInterface(Components.interfaces.nsISupportsString);
return data.data.substring(0, dataLen.value / 2);
} else {
return "";
}
}
var user_variables = new string_hashmap();
function define_variable(name, default_value, doc) {
conkeror[name] = default_value;
user_variables.put(name, {
default_value: default_value,
doc: doc,
shortdoc: get_shortdoc_string(doc),
source_code_reference: get_caller_source_code_reference() });
}
function register_user_stylesheet(url)
{
var uri = makeURL(url);
var sss = Cc["@mozilla.org/content/style-sheet-service;1"].getService(Ci.nsIStyleSheetService);
sss.loadAndRegisterSheet(uri, sss.USER_SHEET);
}
function unregister_user_stylesheet(url)
{
var uri = makeURL(url);
var sss = Cc["@mozilla.org/content/style-sheet-service;1"].getService(Ci.nsIStyleSheetService);
if (sss.sheetRegistered(uri, sss.USER_SHEET))
sss.unregisterSheet(uri, sss.USER_SHEET);
}
function predicate_alist_match(alist, key) {
for each (let i in alist) {
if (i[0](key))
return i[1];
}
return undefined;
}
function get_meta_title(doc) {
var title = doc.evaluate("//meta[@name='title']/@content", doc, xpath_lookup_namespace,
Ci.nsIDOMXPathResult.STRING_TYPE , null);
if (title && title.stringValue)
return title.stringValue;
return null;
}
var rdf_service = Cc["@mozilla.org/rdf/rdf-service;1"].getService(Ci.nsIRDFService);
const PREFIX_ITEM_URI = "urn:mozilla:item:";
const PREFIX_NS_EM = "http://www.mozilla.org/2004/em-rdf#";
var extension_manager = Cc["@mozilla.org/extensions/manager;1"].getService(Ci.nsIExtensionManager);
function get_extension_rdf_property(id, name, type) {
var value = extension_manager.datasource.GetTarget(
rdf_service.GetResource(PREFIX_ITEM_URI + id),
rdf_service.GetResource(PREFIX_NS_EM + name),
true);
if (value == null)
return null;
return value.QueryInterface(type || Ci.nsIRDFLiteral).Value;
}
function get_extension_update_item(id) {
return extension_manager.getItemForID(id);
}
function extension_info(id) {
this.id = id;
}
extension_info.prototype = {
// Returns the nsIUpdateItem object associated with this extension
get update_item () { return get_extension_update_item(this.id); },
get_rdf_property : function (name, type) {
return get_extension_rdf_property(this.id, name, type);
},
// RDF properties
get isDisabled () { return this.get_rdf_property("isDisabled"); },
get aboutURL () { return this.get_rdf_property("aboutURL"); },
get addonID () { return this.get_rdf_property("addonID"); },
get availableUpdateURL () { return this.get_rdf_property("availableUpdateURL"); },
get availableUpdateVersion () { return this.get_rdf_property("availableUpdateVersion"); },
get blocklisted () { return this.get_rdf_property("blocklisted"); },
get compatible () { return this.get_rdf_property("compatible"); },
get description () { return this.get_rdf_property("description"); },
get downloadURL () { return this.get_rdf_property("downloadURL"); },
get isDisabled () { return this.get_rdf_property("isDisabled"); },
get hidden () { return this.get_rdf_property("hidden"); },
get homepageURL () { return this.get_rdf_property("homepageURL"); },
get iconURL () { return this.get_rdf_property("iconURL"); },
get internalName () { return this.get_rdf_property("internalName"); },
get locked () { return this.get_rdf_property("locked"); },
get name () { return this.get_rdf_property("name"); },
get optionsURL () { return this.get_rdf_property("optionsURL"); },
get opType () { return this.get_rdf_property("opType"); },
get plugin () { return this.get_rdf_property("plugin"); },
get previewImage () { return this.get_rdf_property("previewImage"); },
get satisfiesDependencies () { return this.get_rdf_property("satisfiesDependencies"); },
get providesUpdatesSecurely () { return this.get_rdf_property("providesUpdatesSecurely"); },
get type () { return this.get_rdf_property("type", Ci.nsIRDFInt); },
get updateable () { return this.get_rdf_property("updateable"); },
get updateURL () { return this.get_rdf_property("updateURL"); },
get version () { return this.get_rdf_property("version"); }
};
function extension_is_enabled(id) {
var info = new extension_info(id);
return info.update_item && (info.isDisabled == "false");
}
function queue() {
this.input = [];
this.output = [];
}
queue.prototype = {
get length () {
return this.input.length + this.output.length;
},
push: function (x) {
this.input[this.input.length] = x;
},
pop: function (x) {
let l = this.output.length;
if (!l) {
l = this.input.length;
if (!l)
return undefined;
this.output = this.input.reverse();
this.input = [];
let x = this.output[l];
this.output.length--;
return x;
}
}
};
function frame_iterator(root_frame, start_with) {
var q = new queue, x;
if (start_with) {
x = start_with;
do {
yield x;
for (let i = 0; i < x.frames.length; ++i)
q.push(x.frames[i]);
} while ((x = q.pop()));
}
x = root_frame;
do {
if (x == start_with)
continue;
yield x;
for (let i = 0; i < x.frames.length; ++i)
q.push(x.frames[i]);
} while ((x = q.pop()));
}
function xml_http_request() {
return Cc["@mozilla.org/xmlextras/xmlhttprequest;1"].createInstance(Ci.nsIXMLHttpRequest).QueryInterface(Ci.nsIJSXMLHttpRequest).QueryInterface(Ci.nsIDOMEventTarget);
}
var xml_http_request_load_listener = {
// nsIBadCertListener2
notifyCertProblem: function SSLL_certProblem(socketInfo, status, targetSite) {
return true;
},
// nsISSLErrorListener
notifySSLError: function SSLL_SSLError(socketInfo, error, targetSite) {
return true;
},
// nsIInterfaceRequestor
getInterface: function SSLL_getInterface(iid) {
return this.QueryInterface(iid);
},
// nsISupports
//
// FIXME: array comprehension used here to hack around the lack of
// Ci.nsISSLErrorListener in 2007 versions of xulrunner 1.9pre.
// make it a simple generateQI when xulrunner is more stable.
QueryInterface: XPCOMUtils.generateQI (
[i for each (i in [Ci.nsIBadCertListener2,
Ci.nsISSLErrorListener,
Ci.nsIInterfaceRequestor])
if (i)])
};
define_keywords("$user", "$password", "$override_mime_type", "$headers");
function send_http_request(lspec) {
keywords(arguments, $user = undefined, $password = undefined,
$override_mime_type = undefined, $headers = undefined);
var req = xml_http_request();
var cc = yield CONTINUATION;
var aborting = false;
req.onreadystatechange = function send_http_request__onreadysatechange() {
if (req.readyState != 4)
return;
if (aborting)
return;
cc();
};
if (arguments.$override_mime_type)
req.overrideMimeType(arguments.$override_mime_type);
var post_data = load_spec_raw_post_data(lspec);
var method = post_data ? "POST" : "GET";
req.open(method, load_spec_uri_string(lspec), true, arguments.$user, arguments.$password);
req.channel.notificationCallbacks = xml_http_request_load_listener;
for each (let [name,value] in arguments.$headers) {
req.setRequestHeader(name, value);
}
if (post_data) {
req.setRequestHeader("Content-Type", load_spec_request_mime_type(lspec));
req.send(post_data);
} else
req.send(null);
try {
yield SUSPEND;
} catch (e) {
aborting = true;
req.abort();
throw e;
}
// Let the caller access the status and reponse data
yield co_return(req);
}
var JSON = ("@mozilla.org/dom/json;1" in Cc) && Cc["@mozilla.org/dom/json;1"].createInstance(Ci.nsIJSON);
var console_service = Cc["@mozilla.org/consoleservice;1"].getService(Ci.nsIConsoleService);
console_service.registerListener(
{observe: function (msg) {
if (msg instanceof Ci.nsIScriptError) {
switch (msg.category) {
case "CSS Parser":
case "content javascript":
return;
}
msg.QueryInterface(Ci.nsIScriptError);
dumpln("Console error: " + msg.message);
dumpln(" Category: " + msg.category);
}
}});
// ensure_index_is_visible ensures that the given index in the given
// field (an html input field for example) is visible.
function ensure_index_is_visible (window, field, index) {
var start = field.selectionStart;
var end = field.selectionEnd;
field.setSelectionRange (index, index);
send_key_as_event (window, field, "left");
if (field.selectionStart < index) {
send_key_as_event (window, field, "right");
}
field.setSelectionRange (start, end);
}
function regex_to_string(obj) {
if(obj instanceof RegExp) {
obj = obj.source;
} else {
obj = quotemeta(obj);
}
return obj;
}
/*
* Build a regular expression to match URLs for a given web site.
*
* Both the $domain and $path arguments can be either regexes, in
* which case they will be matched as is, or strings, in which case
* they will be matched literally.
*
* $tlds specifies a list of valid top-level-domains to match, and
* defaults to .com. Useful for when e.g. foo.org and foo.com are the
* same.
*
* If $allow_www is true, www.domain.tld will also be allowed.
*
*/
define_keywords("$domain", "$path", "$tlds", "$allow_www");
function build_url_regex() {
keywords(arguments, $path = "", $tlds = ["com"], $allow_www = false);
var domain = regex_to_string(arguments.$domain);
if(arguments.$allow_www) {
domain = "(?:www\.)?" + domain;
}
var path = regex_to_string(arguments.$path);
var tlds = arguments.$tlds;
var regex = "^https?://" + domain + "\\." + choice_regex(tlds) + "/" + path;
return new RegExp(regex);
}
/*
*
* Given an ordered array of non-overlapping ranges, represented as
* elements of [start, end], insert a new range into the array,
* extending, replacing, or merging existing ranges as needed. Mutates
* `arr' in place.
*
* Examples:
*
* splice_range([[1,3],[4,6], 5, 8)
* => [[1,3],[4,8]]
*
* splice_range([[1,3],[4,6],[7,10]], 2, 8)
* => [[1,10]]
*/
function splice_range(arr, start, end) {
for(var i = 0; i < arr.length; ++i) {
let [n,m] = arr[i];
if(start > m)
continue;
if(end < n) {
arr.splice(i, 0, [start, end]);
break;
}
if(start < n) {
arr[i][0] = start;
}
if(end >= n) {
/*
* The range we are inserting overlaps the current
* range. We need to scan right to see if it also contains any other
* ranges entirely, and remove them if necessary.
*/
var j = i;
while(j < arr.length && end >= arr[j][0]) j++;
j--;
arr[i][1] = Math.max(end, arr[j][1]);
arr.splice(i + 1, j - i);
break;
}
}
if(start > arr[arr.length - 1][1]) {
arr.push([start, end]);
}
}
|