X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=examples%2FMultipart.hs;h=1e2d50b3fd2ea9370ed45b44536e4ad6837744cb;hb=a2a726f3581933cea2d805b76aca0e93da778994;hp=e68bb396e5b292814845f7849af70995f0f35546;hpb=50e8fe7af585a8d33d93b3721be8f8f01905b891;p=Lucu.git diff --git a/examples/Multipart.hs b/examples/Multipart.hs index e68bb39..1e2d50b 100644 --- a/examples/Multipart.hs +++ b/examples/Multipart.hs @@ -20,16 +20,21 @@ resMain = Just $ do setContentType $ read "text/html" output ("Multipart Form Test" ++ "
" ++ - " Enter some value:" ++ - " " ++ + " Upload some file:" ++ + " " ++ + " " ++ " " ++ "
") , resHead = Nothing , resPost = Just $ do form <- inputForm defaultLimit - let value = fromMaybe "" $ fmap snd $ find ((== "val") . fst) form + let text = fromMaybe "" $ fmap fdContent $ find ((== "text") . fdName) form + file = fromMaybe "" $ fmap fdContent $ find ((== "file") . fdName) form + fileName = fdFileName =<< find ((== "file") . fdName) form setContentType $ read "text/plain" - output ("You entered: " ++ value) + outputChunk ("You entered \"" ++ text ++ "\".\n") + outputChunk ("You uploaded a " ++ show (length file) ++ " bytes long file.\n") + output ("The file name is " ++ show fileName ++ ".\n") , resPut = Nothing , resDelete = Nothing } \ No newline at end of file