1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-13 00:45:45 +01:00

Add forgotten NEWS entry.

This commit is contained in:
Kris Maglione
2010-10-15 00:49:47 -04:00
parent a3799d3d05
commit 9e10404daf
3 changed files with 8 additions and 7 deletions

View File

@@ -181,7 +181,7 @@ const Sanitizer = Module("sanitizer", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakR
label={services.get("dactyl:").appName + " " + desc} label={services.get("dactyl:").appName + " " + desc}
preference={branch + item} preference={branch + item}
onsyncfrompreference="return gSanitizePromptDialog.onReadGeneric();"/>) onsyncfrompreference="return gSanitizePromptDialog.onReadGeneric();"/>)
} }
</> </>
}, },
init: function (win) { init: function (win) {
@@ -482,7 +482,7 @@ const Sanitizer = Module("sanitizer", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakR
argCount: "+", argCount: "+",
completer: function (context, args) { completer: function (context, args) {
switch (args.completeArg) { switch (args.completeArg) {
case 0: case 0:
modules.completion.visibleHosts(context); modules.completion.visibleHosts(context);
context.title[1] = "Current Permissions"; context.title[1] = "Current Permissions";
context.keys.description = function desc(host) { context.keys.description = function desc(host) {
@@ -586,7 +586,7 @@ const Sanitizer = Module("sanitizer", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakR
validator: function (value) /^(a(ll)?|s(ession)|\d+[mhdw])$/.test(value) validator: function (value) /^(a(ll)?|s(ession)|\d+[mhdw])$/.test(value)
}); });
options.add(["cookies", "ck"], options.add(["cookies", "ck"],
"The default mode for newly added cookie permissions", "The default mode for newly added cookie permissions",
"stringlist", "session", "stringlist", "session",

View File

@@ -26,7 +26,7 @@ const FailedAssertion = Class("FailedAssertion", Error, {
} }
}); });
function wrapCallback(fn) function wrapCallback(fn)
fn.wrapper = function wrappedCallback () { fn.wrapper = function wrappedCallback () {
try { try {
return fn.apply(this, arguments); return fn.apply(this, arguments);
@@ -1292,7 +1292,7 @@ const Prefs = Module("prefs", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference
this._prefContexts[this._prefContexts.length - 1][name] = val; this._prefContexts[this._prefContexts.length - 1][name] = val;
} }
function assertType(needType) function assertType(needType)
util.assert(type === Ci.nsIPrefBranch.PREF_INVALID || type === needType, util.assert(type === Ci.nsIPrefBranch.PREF_INVALID || type === needType,
type === Ci.nsIPrefBranch.PREF_INT type === Ci.nsIPrefBranch.PREF_INT
? "E521: Number required after =: " + name + "=" + value ? "E521: Number required after =: " + name + "=" + value

View File

@@ -1,4 +1,4 @@
1.0b2: 1.0b3pre:
* Extensive Firefox 4 support, including: * Extensive Firefox 4 support, including:
- Tabs in :buffer completions and listings are grouped - Tabs in :buffer completions and listings are grouped
by panorama groups. by panorama groups.
@@ -14,7 +14,7 @@
what timespan. what timespan.
- Support for sanitizing reference to particular hosts, - Support for sanitizing reference to particular hosts,
everywhere from command-line and message history to option everywhere from command-line and message history to option
values and cookies. values and cookies.
* New and much more powerful incremental search implementation. * New and much more powerful incremental search implementation.
Improvements over the standard Firefox find include: Improvements over the standard Firefox find include:
- Starts at the cursor position in the currently selected - Starts at the cursor position in the currently selected
@@ -73,6 +73,7 @@
groups should be auto-completed. groups should be auto-completed.
* Added 'banghist' option. * Added 'banghist' option.
* Added BookmarkChange, BookmarkRemove autocommands. * Added BookmarkChange, BookmarkRemove autocommands.
* Added :cookies, 'cookies', 'cookieaccept', and 'cookielifetime'.
* Added -keyword, -tags, -title to :delbmarks. * Added -keyword, -tags, -title to :delbmarks.
* Added "passwords" and "venkman" dialogs to :dialog. * Added "passwords" and "venkman" dialogs to :dialog.
* Added :extupdate command. * Added :extupdate command.