
Hello all, I'm very glad to announce the 0.0.2.0 release of the digestive functors library. The library provides a general API to input consumption, and is an upgrade of formlets. I've written an announcing blogpost and tutorial with more information here: http://jaspervdj.be/posts/2010-12-09-digestive-functors-0.0.2.html You can get it on hackage here: http://hackage.haskell.org/package/digestive-functors As always, all feedback is welcome. Kindest regards, Jasper Van der Jeugt

Very nice. I like the addition of the CLI interface.
I was inspired by this library and Chris Eidhof's Formlets to try to
port this idea to Scala.
https://github.com/wrwills/scormlets
It's not as elegant or as complete as this but it helped me to get my
head around this very
cool idea.
-Rob
On Thu, Dec 9, 2010 at 10:46 PM, Jasper Van der Jeugt
Hello all,
I'm very glad to announce the 0.0.2.0 release of the digestive functors library. The library provides a general API to input consumption, and is an upgrade of formlets.
I've written an announcing blogpost and tutorial with more information here:
http://jaspervdj.be/posts/2010-12-09-digestive-functors-0.0.2.html
You can get it on hackage here:
http://hackage.haskell.org/package/digestive-functors
As always, all feedback is welcome.
Kindest regards, Jasper Van der Jeugt
_______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

On 12/09/10 16:46, Jasper Van der Jeugt wrote:
Hello all,
I'm very glad to announce the 0.0.2.0 release of the digestive functors library. The library provides a general API to input consumption, and is an upgrade of formlets.
I've written an announcing blogpost and tutorial with more information here:
http://jaspervdj.be/posts/2010-12-09-digestive-functors-0.0.2.html
Hi jasper. Following the instructions on the .html page, I did: cabal update cabal install snap-server cabal install digestive-functors-blaze cabal install digestive-functors-snap However, when I tried: runghc -v 2010-12-09-digestive-functors-0.0.2.lhs I got: --{--cut here-- *** Chasing dependencies: Chasing modules from: *2010-12-09-digestive-functors-0.0.2.lhs Created temporary directory: /tmp/ghc7611_0 *** Literate pre-processor: /usr/lib/ghc-6.12.1/unlit -h 2010-12-09-digestive-functors-0.0.2.lhs 2010-12-09-digestive-functors-0.0.2.lhs /tmp/ghc7611_0/ghc7611_0.lpp 2010-12-09-digestive-functors-0.0.2.lhs:15:9: Could not find module `Text.Digestive.Blaze.Html5': locations searched: Text/Digestive/Blaze/Html5.hs Text/Digestive/Blaze/Html5.lhs Failed, modules loaded: none. *** Deleting temp files: Deleting: /tmp/ghc7611_0/ghc7611_0.lpp --}--cut here-- In directory: /home/evansl/.cabal/lib/digestive-functors-blaze-0.0.2.0/ghc-6.12.1/Text/Digestive/Blaze there is: -rw-r--r-- 1 evansl evansl 13984 Dec 10 09:18 Html5.hi Please, what should I do? -regards, Larry

Hello,
Thanks for the error report. Is blaze-html installed correctly? Could
you cabal install blaze-html and verify that you can import Text.Blaze
in ghci?
Cheers,
Jasper
On Fri, Dec 10, 2010 at 5:07 PM, Larry Evans
On 12/09/10 16:46, Jasper Van der Jeugt wrote:
Hello all,
I'm very glad to announce the 0.0.2.0 release of the digestive functors library. The library provides a general API to input consumption, and is an upgrade of formlets.
I've written an announcing blogpost and tutorial with more information here:
http://jaspervdj.be/posts/2010-12-09-digestive-functors-0.0.2.html
Hi jasper.
Following the instructions on the .html page, I did:
cabal update cabal install snap-server cabal install digestive-functors-blaze cabal install digestive-functors-snap
However, when I tried:
runghc -v 2010-12-09-digestive-functors-0.0.2.lhs
I got:
--{--cut here--
*** Chasing dependencies: Chasing modules from: *2010-12-09-digestive-functors-0.0.2.lhs Created temporary directory: /tmp/ghc7611_0 *** Literate pre-processor: /usr/lib/ghc-6.12.1/unlit -h 2010-12-09-digestive-functors-0.0.2.lhs 2010-12-09-digestive-functors-0.0.2.lhs /tmp/ghc7611_0/ghc7611_0.lpp
2010-12-09-digestive-functors-0.0.2.lhs:15:9: Could not find module `Text.Digestive.Blaze.Html5': locations searched: Text/Digestive/Blaze/Html5.hs Text/Digestive/Blaze/Html5.lhs Failed, modules loaded: none. *** Deleting temp files: Deleting: /tmp/ghc7611_0/ghc7611_0.lpp
--}--cut here--
In directory:
/home/evansl/.cabal/lib/digestive-functors-blaze-0.0.2.0/ghc-6.12.1/Text/Digestive/Blaze
there is:
-rw-r--r-- 1 evansl evansl 13984 Dec 10 09:18 Html5.hi
Please, what should I do?
-regards, Larry
_______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

On 12/10/10 10:38, Jasper Van der Jeugt wrote:
Hello,
Thanks for the error report. Is blaze-html installed correctly? Could you cabal install blaze-html and verify that you can import Text.Blaze in ghci?
Here's the terminal session: --{--cut here-- /home/evansl/prog_dev/haskell/my-code/digestive-functors $ cabal install blaze-html Resolving dependencies... No packages to be installed. All the requested packages are already installed. If you want to reinstall anyway then use the --reinstall flag. /home/evansl/prog_dev/haskell/my-code/digestive-functors $ cat TextBlaze.hs module TextBlaze where import Text.Blaze /home/evansl/prog_dev/haskell/my-code/digestive-functors $ ghci TextBlaze.hs GHCi, version 6.12.1: http://www.haskell.org/ghc/ :? for help Loading package ghc-prim ... linking ... done. Loading package integer-gmp ... linking ... done. Loading package base ... linking ... done. [1 of 1] Compiling TextBlaze ( TextBlaze.hs, interpreted ) Ok, modules loaded: TextBlaze. *TextBlaze> --}--cut here-- HTH. -Larry
participants (3)
-
Jasper Van der Jeugt
-
Larry Evans
-
Robert Wills