aboutsummaryrefslogtreecommitdiffhomepage
path: root/README
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2010-12-22 21:08:18 -0700
committerGravatar Brendan Taylor <whateley@gmail.com>2010-12-22 21:08:18 -0700
commit186668a01883127447f1b6042ea84c8f3cd7536b (patch)
tree8efe0ade69c5630997709d85f3eda602abf8d124 /README
parent6ade80cd01d0473dc1268d35a9db89dc03b1b9e9 (diff)
add cookie whitelisting, document BLACKLIST_COOKIE and WHITELIST_COOKIE events
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 9 insertions, 1 deletions
diff --git a/README b/README
index e0d9dc9..35492da 100644
--- a/README
+++ b/README
@@ -719,7 +719,6 @@ Events have this format:
be a unix-timestamp or empty
* `EVENT [uzbl_instance_name] DELETE_COOKIE domain path name value scheme expire`:
When a cookie was deleted. arguments as ADD_COOKIE
-
Events/requests which the EM and its plugins listens for
@@ -794,6 +793,15 @@ Events/requests which the EM and its plugins listens for
`<index>` is `+`, advance the cursor by one character, and if it is `-`,
move the cursor back by one character.
* `START_COMPLETION`: TODO explain completion
+* `BLACKLIST_COOKIE`: add a rule for blacklisting cookies
+ - `request BLACKLIST_COOKIE <component> <regexp>`: Blacklist cookies where
+ `<component>` matches `<regexp>`. `<component>` is one of `domain`,
+ `path`, `name`, `value`, `scheme` or `expires`.
+* `WHITELIST_COOKIE`: add a rule for whitelisting cookies (if any whitelist is
+ set then only cookies that are whitelisted cookies will be used)
+ - `request WHITELIST_COOKIE <component> <regexp>`: Whitelist cookies where
+ `<component>` matches `<regexp>`. `<component>` is one of `domain`,
+ `path`, `name`, `value`, `scheme` or `expires`.
### COMMAND LINE ARGUMENTS