aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/doc/src/http_uri.xml
diff options
context:
space:
mode:
authortmanevik <[email protected]>2015-06-04 15:55:54 +0200
committerIngela Anderton Andin <[email protected]>2015-09-01 14:39:38 +0200
commited9ad11c9e1a1681cae44c2c2b48bf70ea68ae43 (patch)
tree2a46d203fd7f688a107ce2bed726a9a909472c04 /lib/inets/doc/src/http_uri.xml
parentfc9f2bb3e2ef36d123451650e141ae5038cc00fc (diff)
downloadotp-ed9ad11c9e1a1681cae44c2c2b48bf70ea68ae43.tar.gz
otp-ed9ad11c9e1a1681cae44c2c2b48bf70ea68ae43.tar.bz2
otp-ed9ad11c9e1a1681cae44c2c2b48bf70ea68ae43.zip
inets: sorted functions alphabetically
Diffstat (limited to 'lib/inets/doc/src/http_uri.xml')
-rw-r--r--lib/inets/doc/src/http_uri.xml59
1 files changed, 30 insertions, 29 deletions
diff --git a/lib/inets/doc/src/http_uri.xml b/lib/inets/doc/src/http_uri.xml
index 4b59c0c7a2..c71bfbd686 100644
--- a/lib/inets/doc/src/http_uri.xml
+++ b/lib/inets/doc/src/http_uri.xml
@@ -72,17 +72,32 @@ fragment() = string()
<funcs>
<func>
- <name>scheme_defaults() -> SchemeDefaults</name>
- <fsummary>A list of scheme and their default ports</fsummary>
+ <name>decode(HexEncodedURI) -> URI</name>
+
+ <fsummary>Decode a hex encoded URI</fsummary>
<type>
- <v>SchemeDefaults = [{scheme(), default_scheme_port_number()}] </v>
- <v>default_scheme_port_number() = pos_integer()</v>
+ <v>HexEncodedURI = string() - A possibly hex encoded uri</v>
+ <v>URI = uri()</v>
</type>
+
<desc>
- <p>This function provides a list of the scheme and their default
- port numbers currently supported (by default) by this utility. </p>
+ <p>Decode a possibly hex encoded URI. </p>
- <marker id="parse"></marker>
+ </desc>
+ </func>
+ <func>
+ <name>encode(URI) -> HexEncodedURI</name>
+
+ <fsummary>Hex encode an URI</fsummary>
+ <type>
+ <v>URI = uri()</v>
+ <v>HexEncodedURI = string() - Hex encoded uri</v>
+ </type>
+
+ <desc>
+ <p>Hex encode an URI. </p>
+
+ <marker id="decode"></marker>
</desc>
</func>
@@ -124,35 +139,21 @@ fragment() = string()
</func>
<func>
- <name>encode(URI) -> HexEncodedURI</name>
-
- <fsummary>Hex encode an URI</fsummary>
+ <name>scheme_defaults() -> SchemeDefaults</name>
+ <fsummary>A list of scheme and their default ports</fsummary>
<type>
- <v>URI = uri()</v>
- <v>HexEncodedURI = string() - Hex encoded uri</v>
+ <v>SchemeDefaults = [{scheme(), default_scheme_port_number()}] </v>
+ <v>default_scheme_port_number() = pos_integer()</v>
</type>
-
<desc>
- <p>Hex encode an URI. </p>
+ <p>This function provides a list of the scheme and their default
+ port numbers currently supported (by default) by this utility. </p>
- <marker id="decode"></marker>
+ <marker id="parse"></marker>
</desc>
</func>
- <func>
- <name>decode(HexEncodedURI) -> URI</name>
-
- <fsummary>Decode a hex encoded URI</fsummary>
- <type>
- <v>HexEncodedURI = string() - A possibly hex encoded uri</v>
- <v>URI = uri()</v>
- </type>
-
- <desc>
- <p>Decode a possibly hex encoded URI. </p>
-
- </desc>
- </func>
+
</funcs>