Module vibe.textfilter.urlencode
URL-encoding implementation
Functions
Name | Description |
---|---|
filterURLDecode(dst, str, form_encoding)
|
Writes the decoded version of the given URL encoded string to an output range. |
filterURLEncode(dst, str, allowed_chars, form_encoding)
|
Writes the URL encoded version of the given string to an output range. |
formDecode(str)
|
Returns the decoded version of a form encoded string. |
formEncode(str, allowed_chars)
|
Returns the form encoded version of a given string. |
isURLEncoded(str, reserved_chars)
|
Checks whether a given string has valid URL encoding. |
urlDecode(str)
|
Returns the decoded version of a given URL encoded string. |
urlEncode(str, allowed_chars)
|