From 628f8cff34f9784cfa34857bcd7133305acc3d27 Mon Sep 17 00:00:00 2001
From: Ingela Anderton Andin
Date: Mon, 7 Sep 2015 15:51:35 +0200
Subject: inets: Fix broken links
---
lib/inets/doc/src/http_server.xml | 6 +++---
lib/inets/doc/src/httpd.xml | 10 +++++-----
lib/inets/doc/src/httpd_custom_api.xml | 2 +-
lib/inets/doc/src/mod_alias.xml | 4 ++--
lib/inets/doc/src/notes.xml | 36 ++++++++++++++--------------------
5 files changed, 26 insertions(+), 32 deletions(-)
diff --git a/lib/inets/doc/src/http_server.xml b/lib/inets/doc/src/http_server.xml
index ee9496d9ba..4b6d64fc8f 100644
--- a/lib/inets/doc/src/http_server.xml
+++ b/lib/inets/doc/src/http_server.xml
@@ -494,7 +494,7 @@ http://your.server.org/eval?httpd_example:print(atom_to_list(apply(erlang,halt,[
related steps, are considered server core functionality and are
not implemented using the Erlang web server API. A description of
functionality implemented by the Erlang webserver API is described
- in Section
+ in Section
Inets Web Server Modules.
A module can use data generated by previous modules in the
@@ -635,11 +635,11 @@ start() ->
Then it starts Mnesia and creates the tables. The first argument
is the name of the tables, the second argument is a list of options of
how to create the table, see
- mnesia, documentation for
+ mnesia, documentation for
more information. As the implementation of the mod_auth_mnesia
saves one row for each user, the type must be bag.
When the schema and the tables are created, function
- mnesia:start/0
+ mnesia:start/0
is used to start Mnesia and
waits for the tables to be loaded. Mnesia uses the
directory specified as mnesia_dir at startup if specified,
diff --git a/lib/inets/doc/src/httpd.xml b/lib/inets/doc/src/httpd.xml
index 4e3a875a7f..2a4aea41c2 100644
--- a/lib/inets/doc/src/httpd.xml
+++ b/lib/inets/doc/src/httpd.xml
@@ -165,14 +165,14 @@
{profile, atom()}
-
-
Used together with bind_address
- and port to uniquely identify
+
Used together with bind_address
+ and port to uniquely identify
a HTTP server. This can be useful in a virtualized environment,
where there can
be more that one server that has the same bind_address and port.
If this property is not explicitly set, it is assumed that the
- bind_address and
- portuniquely identifies the HTTP server.
+ bind_address and
+ portuniquely identifies the HTTP server.
@@ -227,7 +227,7 @@
{customize, atom()}
-
A callback module to customize the inets HTTP servers behaviour
- see httpd_custom_api
+ see httpd_custom_api
diff --git a/lib/inets/doc/src/httpd_custom_api.xml b/lib/inets/doc/src/httpd_custom_api.xml
index 5840641b37..23417900fa 100644
--- a/lib/inets/doc/src/httpd_custom_api.xml
+++ b/lib/inets/doc/src/httpd_custom_api.xml
@@ -29,7 +29,7 @@
Behaviour with optional callbacks to customize the inets HTTP server.
The module implementing this behaviour shall be supplied to to the servers
- configuration with the option customize
+ configuration with the option customize
diff --git a/lib/inets/doc/src/mod_alias.xml b/lib/inets/doc/src/mod_alias.xml
index a7b01efe06..87c950cc6b 100644
--- a/lib/inets/doc/src/mod_alias.xml
+++ b/lib/inets/doc/src/mod_alias.xml
@@ -106,7 +106,7 @@
FakeName is replaced with RealName in the
match. The resulting path is split into two parts,
ShortPath and AfterPath, as defined in
- httpd_util:split_path/1.
+ httpd_util:split_path/1.
Path is generated from ShortPath, that is,
the result from
default_index/2 with
@@ -140,7 +140,7 @@
not_a_script is returned. If it is a script, the
resulting script path is in two parts,
ShortPath and AfterPath, as defined in
- httpd_util:split_script_path/1.
+ httpd_util:split_script_path/1.
config_db() is the server config file in ETS table
format as described in
Inets User's Guide.
diff --git a/lib/inets/doc/src/notes.xml b/lib/inets/doc/src/notes.xml
index d1bfa28013..6a6b9c8b23 100644
--- a/lib/inets/doc/src/notes.xml
+++ b/lib/inets/doc/src/notes.xml
@@ -765,9 +765,9 @@
Better handling of errorI(s) during update of the session
database.
Also added and updated some debugging functions
- which_sessions/10,1
+ which_sessions/[0,1]
and
- info/0.
+ info/0.
Own Id: OTP-10093
Aux Id: Seq 12062
@@ -861,7 +861,7 @@
-
[httpc] Add function for retrieving current options,
- get_options/1,2.
+ get_options/[1,2].
Own Id: OTP-9979
@@ -1038,15 +1038,11 @@
Incompatibilities
-
-
-
[httpc] Deprecated interface module http has been removed.
It has (long) been replaced by http client interface module
- httpc.
+ httpc.
Own Id: OTP-9359
@@ -1234,15 +1230,13 @@
Inets 5.6
Improvements and New Features
-
+
-
[httpc] Add support for upload body streaming (PUT and POST).
For more info,
see the definition of the Body argument of the
- request/4,5
+ request/[4,5]
function.
Filipe David Manana
Own Id: OTP-9094
@@ -1255,7 +1249,7 @@
-
[httpd]
- mod_esi:deliver/2
+ mod_esi:deliver/2
made to accept binary data.
Bernard Duggan
Own Id: OTP-9123
@@ -1283,7 +1277,7 @@
for using file descriptors has been improved.
It is now possible to add the file descriptor to the config
(option fd) when calling the
- inets:start(httpd, ...)
+ inets:start(httpd, ...)
function.
Attila Rajmund Nohl
Own Id: OTP-9202
@@ -1297,7 +1291,7 @@
See the httpd
socket_type
communication property or the httpc
- request/4,5 function
+ request/[4,5] function
for more info.
Own Id: OTP-9230
*** POTENTIAL INCOMPATIBILITY ***
@@ -1497,7 +1491,7 @@
[httpc|httpd] - Now allow the use of the "new" ssl, by using
the essl tag instead.
See the http_option option in the
- request/4,5 or
+ request/[4,5] or
the socket-type
section of the Communication properties chapter for more info,
Own Id: OTP-7907
@@ -1729,8 +1723,8 @@
[httpc] - Allow users to pass socket options to the transport
module when making requests.
See the socket_opts option in the
- request/4 or
- set_options/1,2
+ request/4 or
+ set_options/[1,2]
for more info,
Own Id: OTP-8352
@@ -1771,7 +1765,7 @@
deliver an async reply to more receivers then the calling
process.
See the
- receiver
+ receiver
option for more info,
Own Id: OTP-8106
@@ -2040,7 +2034,7 @@
request, when the client connects to the server. Default
value is that of the timeout option.
See the
- request/4,5
+ request/[4,5]
function for more info.
Own Id: OTP-7298
@@ -2147,7 +2141,7 @@
the client connects to the server.
As a side-effect of this, the option ipv6 has been
removed and replaced by the ipfamily option.
- See http:set_options/1,2
+
See http:set_options/[1,2]
for more info.
*** POTENTIAL INCOMPATIBILITY ***
Own Id: OTP-8004
--
cgit v1.2.3