aboutsummaryrefslogtreecommitdiffhomepage
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README12
1 files changed, 5 insertions, 7 deletions
diff --git a/README b/README
index d1f2357..6709bf5 100644
--- a/README
+++ b/README
@@ -183,11 +183,6 @@ The following commands are recognized:
the end, so the argument numbers will be higher.
* `sync_sh <command>`
- Synchronous version of `sh`, See `sync_spawn`.
-* `talk_to_socket <socketfile> <tokens>`
- - Send a message to `<socketfile>` and wait for a response. `<tokens>` are
- concatenated and separated by ASCII NUL bytes.
- - Expects the socket type to be `SOCK_SEQPACKET` (see `connect(2)`).
- - Waits for 500ms for a response.
* `exit`
- Closes `uzbl`.
* `search <string>`
@@ -265,6 +260,8 @@ The following commands are recognized:
* 'delete_cookie <domain> <path> <name> <value> [<scheme> <expires>]`
- Deletes a matching cookie from the cookie jar. scheme and expire time
is currently not considered when matching.
+* 'clear_cookies`
+ - Clears all cookies from the cookie jar
### VARIABLES AND CONSTANTS
@@ -361,6 +358,7 @@ file).
stylesheet.
* `resizable_text_areas`: Whether text areas can be resized (default 0).
* `default_encoding`: The default text encoding (default "iso-8859-1").
+* `current_encoding`: This can be set to force a text encoding.
* `enforce_96_dpi`: Enforce a resolution of 96 DPI (default 1).
* `caret_browsing`: Whether the caret is enabled in the text portion of pages
(default 0).
@@ -775,12 +773,12 @@ Events/requests which the EM and its plugins listens for
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
+ - `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
+ - `request WHITELIST_COOKIE [<component> <regexp>]*`: Whitelist cookies where
`<component>` matches `<regexp>`. `<component>` is one of `domain`,
`path`, `name`, `value`, `scheme` or `expires`.