aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorGravatar keis <keijser@gmail.com>2011-01-17 21:37:08 +0100
committerGravatar keis <keijser@gmail.com>2011-01-17 21:37:08 +0100
commit6a737a7137c8cfbbe21bb5f0c0182ca2255a5b4c (patch)
treecea22066f163c5ab3a195db077c84356d855f9ca /docs
parente8814adcd1835d6faa0ad166ba1bf2aaf64bb5e0 (diff)
multiple components/re -pairs in cookie filters
Diffstat (limited to 'docs')
-rw-r--r--docs/README.uzbl-event-manager20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/README.uzbl-event-manager b/docs/README.uzbl-event-manager
index 074811e..b9467d7 100644
--- a/docs/README.uzbl-event-manager
+++ b/docs/README.uzbl-event-manager
@@ -83,17 +83,17 @@ events. If any whitelist is set, then any cookie that is not whitelisted will
be rejected. Otherwise, only cookies that have been blacklisted will be
rejected.
-BLACKLIST_COOKIE <part> <re>
- Adds a new blacklist filter. cookies where the component specified by
- `part` matches the regular expression `re` will be filtered. part can be
- either 0-5 or any of the symbolic names domain, path, name, value, scheme,
- expires
+BLACKLIST_COOKIE [<component> <re>]*
+ Adds a new blacklist filter. cookies where the components specified by
+ `component` matches the regular expression `re` will be filtered. component
+ may be either 0-5 or any of the symbolic names domain, path, name, value,
+ scheme, expires
- for example to block all cookies which name is "__utm" followed by a single
+ for example to block all cookies which name is "__utm" followed by a single
character (google analytics cookies) do.
request BLACKLIST_COOKIE name '^__utm.$'
-WHITELIST_COOKIE <part> <re>
- Adds a new whitelist filter. cookies where the component specified by
- `part` matches the regular expression `re` will be allowed. part can be any
- of the parts allowed for the BLACKLIST_COOKIE event
+WHITELIST_COOKIE [<component> <re>]*
+ Adds a new whitelist filter. cookies where the components specified by
+ `component` matches the regular expression `re` will be allowed. component
+ may be any of the components allowed for the BLACKLIST_COOKIE event