From 474dfaf674ac8746367ff856534ef0b63afc6307 Mon Sep 17 00:00:00 2001 From: Ingela Anderton Andin Date: Tue, 1 Sep 2015 17:32:34 +0200 Subject: inets: Align with alphabetical order and clean local anchor handling Functions in the same module can be referenced as #Function-Arity, no need to make special markers for them. --- lib/inets/doc/src/httpd.xml | 41 ++++++++++++++++------------------------- 1 file changed, 16 insertions(+), 25 deletions(-) (limited to 'lib/inets/doc/src/httpd.xml') diff --git a/lib/inets/doc/src/httpd.xml b/lib/inets/doc/src/httpd.xml index 470359d0b2..b6d3c5d39b 100644 --- a/lib/inets/doc/src/httpd.xml +++ b/lib/inets/doc/src/httpd.xml @@ -927,7 +927,6 @@ text/plain asc txt - info(Pid) -> info(Pid, Properties) -> [{Option, Value}] Fetches information about the HTTP server. @@ -953,8 +952,6 @@ text/plain asc txt - - info(Address, Port) -> info(Address, Port, Profile) -> info(Address, Port, Profile, Properties) -> [{Option, Value}] @@ -983,7 +980,6 @@ text/plain asc txt - reload_config(Config, Mode) -> ok | {error, Reason} Reloads the HTTP server configuration without restarting the server. @@ -1108,7 +1104,6 @@ text/plain asc txt - Module:do(ModData)-> {proceed, OldData} | {proceed, NewData} | {break, NewData} | done Called for each request to the web server. @@ -1164,7 +1159,6 @@ text/plain asc txt - Module:load(Line, AccIn)-> eof | ok | {ok, AccOut} | {ok, AccOut, {Option, Value}} | {ok, AccOut, [{Option, Value}]} | {error, Reason} Converts a line in an Apache-like config file to an {Option, Value} tuple. @@ -1186,9 +1180,23 @@ text/plain asc txt

- + + + Module:remove(ConfigDB) -> ok | {error, Reason} + Callback function that is called when the web server is closed. + + ConfigDB = ets_table() + Reason = term() + + +

When httpd is shut down, it tries to execute + remove/1 in each Erlang web server callback module. The + programmer can use this function to clean up resources + created in the store function.

+
+
+ - Module:store({Option, Value}, Config)-> {ok, {Option, NewValue}} | {error, Reason} Checks the validity of the configuration options. @@ -1210,22 +1218,6 @@ text/plain asc txt implemented by this particular callback module.

- - - - Module:remove(ConfigDB) -> ok | {error, Reason} - Callback function that is called when the web server is closed. - - ConfigDB = ets_table() - Reason = term() - - -

When httpd is shut down, it tries to execute - remove/1 in each Erlang web server callback module. The - programmer can use this function to clean up resources - created in the store function.

-
-
@@ -1233,7 +1225,6 @@ text/plain asc txt
- parse_query(QueryString) -> [{Key,Value}] Parses incoming data to erl and eval scripts. -- cgit v1.2.3