(index ("http-multipart-request-data-limit" 0) ("read-multipart-form-data" 131) ("multipart-form-data-decode" 372) ("multipart-file?" 763) ("multipart-file-port" 977) ("multipart-file-filename" 1115) ("multipart-file-headers" 1276))
(def (sig (parameter " http-multipart-request-data-limit" (id http-multipart-request-data-limit))) (p "Not implemented yet! :-("))
(def (sig (procedure "(read-multipart-form-data request [max-length])" (id read-multipart-form-data))) (p "Implements the same interface as Intarweb's " (int-link "intarweb#read-urlencoded-request-data" "read-urlencoded-request-data") "."))
(def (sig (procedure "(multipart-form-data-decode str-port-or-seq boundary [max-length])" (id multipart-form-data-decode))) (p "Decodes a multipart/form-data encoded body. This procedure requires the boundary token information from the HTTP headers.") (p "Returns an alist: a list of name, value pairs or name, multipart-file pairs if the value was created from an HTML Forms File Input."))
(def (sig (procedure "(multipart-file? X)" (id multipart-file?))) (p "Tests to see if the value (cdrs of the pairs returned from " (tt "multipart-form-data-decode") ") is the result of an HTML Forms File Input."))
(def (sig (procedure "(multipart-file-port X)" (id multipart-file-port))) (p "A port from which you can read the contents of the file."))
(def (sig (procedure "(multipart-file-filename X)" (id multipart-file-filename))) (p "The filename that the browser supplied for the data read from the port."))
(def (sig (procedure "(multipart-file-headers X)" (id multipart-file-headers))) (p "A list of HTTP style headers that can tell you about the Content-Type and encoding of the data read from the port.") (p "Use the header procedures from " (int-link "intarweb") " to access the value returned."))
