]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - examples/Multipart.hs
Release 0.3.3
[Lucu.git] / examples / Multipart.hs
index 6c15cd3a8a4ab1130737c1c770983892edb2d596..1e2d50b3fd2ea9370ed45b44536e4ad6837744cb 100644 (file)
@@ -28,11 +28,13 @@ resMain
       , resHead   = Nothing
       , resPost
           = Just $ do form <- inputForm defaultLimit
-                      let text = fromMaybe "" $ fmap snd $ find ((== "text") . fst) form
-                          file = fromMaybe "" $ fmap snd $ find ((== "file") . 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"
                       outputChunk ("You entered \"" ++ text ++ "\".\n")
-                      output ("You uploaded a " ++ show (length file) ++ " bytes long file.\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