1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-24 00:56:14 +00:00

List events in alphabetical order.

This commit is contained in:
Kalle Olavi Niemitalo 2006-09-25 22:46:48 +03:00 committed by Kalle Olavi Niemitalo
parent 304f5fa1ea
commit 538e8eb8a5

View File

@ -113,6 +113,27 @@ Description:
Open Lua console dialog.
-------------------------------------------------------------------------------
Name: follow-url
Managed By: The scripting subsystem/backends
Triggered When:
The user decides to load some document by following a link, entering an URL
in the goto URL dialog, loading frames from a frameset (?) etc.
Arguments:
unsigned char **url, struct session *ses
Description:
If another URL than @url should be followed it is passed by setting @url.
If @url is changed the event propagation should be ended.
Valid values for @url includes:
- leaving @url unchanged if the original URL should be followed;
- NULL if no URL should be followed; or
- a dynamically allocated new URL to be followed instead.
-------------------------------------------------------------------------------
Name: free-history
Managed By: The scripting subsystem/backends
@ -128,6 +149,24 @@ Description:
Allow a subsystem to free its history lists.
-------------------------------------------------------------------------------
Name: get-proxy
Managed By: The scripting subsystem/backends
Triggered When:
Determining what proxy, if any, should be used to load a requested URL.
Arguments:
unsigned char **new_proxy_url, unsigned char *url
Description:
Possible values for @new_proxy_url includes:
- a dynamically allocated string with the format proxy:port;
- an empty string (dynamically allocated!) to use no proxy; or
- NULL to use the default proxies.
-------------------------------------------------------------------------------
Name: goto-url
Managed By: The scripting subsystem/backends
@ -154,45 +193,6 @@ Description:
NULL the hook handler should assume no current URI and no suitable UI set up
(i.e., starting up yet or -dump).
-------------------------------------------------------------------------------
Name: follow-url
Managed By: The scripting subsystem/backends
Triggered When:
The user decides to load some document by following a link, entering an URL
in the goto URL dialog, loading frames from a frameset (?) etc.
Arguments:
unsigned char **url, struct session *ses
Description:
If another URL than @url should be followed it is passed by setting @url.
If @url is changed the event propagation should be ended.
Valid values for @url includes:
- leaving @url unchanged if the original URL should be followed;
- NULL if no URL should be followed; or
- a dynamically allocated new URL to be followed instead.
-------------------------------------------------------------------------------
Name: get-proxy
Managed By: The scripting subsystem/backends
Triggered When:
Determining what proxy, if any, should be used to load a requested URL.
Arguments:
unsigned char **new_proxy_url, unsigned char *url
Description:
Possible values for @new_proxy_url includes:
- a dynamically allocated string with the format proxy:port;
- an empty string (dynamically allocated!) to use no proxy; or
- NULL to use the default proxies.
-------------------------------------------------------------------------------
Name: periodic-saving
Managed By: No maintainer but used by lowlevel/timer.*