Module vibe.inet.webform
Contains HTML/urlencoded form parsing and construction routines.
Functions
Name | Description |
formEncode(dst, map, sep)
|
Encodes a Key-Value map into a form URL encoded string.
|
formEncode(map, sep)
|
Encodes a Key-Value map into a form URL encoded string.
|
parseFormData(fields, files, content_type, body_reader, max_line_length)
|
Parses form data according to an HTTP Content-Type header.
|
parseMultiPartForm(fields, files, content_type, body_reader, max_line_length)
|
Parses a form in "multipart/form-data" format.
|
parseURLEncodedForm(str, params)
|
Parses a URL encoded form and stores the key/value pairs.
|
urlEncode(map)
|
Returns an URL encoded string as specified in RFC 3986 section 2
|
urlEncode(dst, map)
|
Writes to the OutputRange an URL encoded string as specified in RFC 3986 section 2
|
urlEncode(map)
|
Returns an URL encoded string as specified in RFC 3986 section 2
|
Structs
Name | Description |
FilePart
|
Single part of a multipart form.
|
Manifest constants
Name | Type | Description |
isFormMap
|
|
Tests if a given type is suitable for storing a web form.
|