mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
List events in alphabetical order.
[ From commit 538e8eb8a5
in ELinks
0.12.GIT. --KON ]
This commit is contained in:
parent
01c54027b9
commit
bab045df73
@ -113,6 +113,27 @@ Description:
|
|||||||
|
|
||||||
Open Lua console dialog.
|
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
|
Name: free-history
|
||||||
Managed By: The scripting subsystem/backends
|
Managed By: The scripting subsystem/backends
|
||||||
@ -128,6 +149,24 @@ Description:
|
|||||||
|
|
||||||
Allow a subsystem to free its history lists.
|
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
|
Name: goto-url
|
||||||
Managed By: The scripting subsystem/backends
|
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
|
NULL the hook handler should assume no current URI and no suitable UI set up
|
||||||
(i.e., starting up yet or -dump).
|
(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
|
Name: periodic-saving
|
||||||
Managed By: No maintainer but used by lowlevel/timer.*
|
Managed By: No maintainer but used by lowlevel/timer.*
|
||||||
|
Loading…
Reference in New Issue
Block a user