.TH http_uri 3erl "inets 9.1" "Ericsson AB" "Erlang Module Definition" .SH NAME http_uri \- Old URI utility module, use uri_string instead .SH DESCRIPTION .LP This module is deprecated since OTP 23\&. Use the module uri_string to properly handle URIs, this is the recommended module since OTP 21\&. .SH "DATA TYPES" .LP Type definitions that are related to URI: .RS 2 .TP 2 .B \fIuri_part() = [byte()] | binary()\fR\&: Syntax according to the URI definition in RFC 3986, for example, "http://www\&.erlang\&.org/" .RE .LP For more information about URI, see RFC 3986\&. .SH EXPORTS .LP .B decode(EncodedPart) -> DecodePart .br .RS .LP Types: .RS 3 EncodedPart = uri_part() - A possibly percent encoded URI part .br DecodePart = uri_part() .br .RE .RE .RS .LP .RS -4 .B Warning: .RE Do not use will be removed use uri_string:unquote/1 instead .LP Decodes a possibly percent encoded URI part .RE .LP .B encode(DecodedPart) -> EncodedPart .br .RS .LP Types: .RS 3 DecodePart = uri_part() .br EncodedPart = uri_part() - Percent encoded URI part .br .RE .RE .RS .LP .RS -4 .B Warning: .RE Do not use will be removed use uri_string:quote/1 instead .LP Performes prrcent encoding\&. .RE