1http_uri(3)                Erlang Module Definition                http_uri(3)
2
3
4

NAME

6       http_uri - Old URI utility module, use uri_string instead
7

DESCRIPTION

9       This  module  is  deprecated since OTP 23. Use the module uri_string to
10       properly handle URIs, this is the recommended module since OTP 21.
11

DATA TYPES

13       Type definitions that are related to URI:
14
15         uri_part() = [byte()] | binary():
16           Syntax according to the URI definition in RFC  3986,  for  example,
17           "http://www.erlang.org/"
18
19       For more information about URI, see RFC 3986.
20

EXPORTS

22       decode(EncodedPart) -> DecodePart
23
24              Types:
25
26                 EncodedPart  =  uri_part()  -  A possibly percent encoded URI
27                 part
28                 DecodePart = uri_part()
29
30          Warning:
31              Do not use will be removed use uri_string:unquote/1 instead
32
33
34              Decodes a possibly percent encoded URI part
35
36       encode(DecodedPart) -> EncodedPart
37
38              Types:
39
40                 DecodePart = uri_part()
41                 EncodedPart = uri_part() - Percent encoded URI part
42
43          Warning:
44              Do not use will be removed use uri_string:quote/1 instead
45
46
47              Performes prrcent encoding.
48
49
50
51Ericsson AB                       inets 9.0.2                      http_uri(3)
Impressum