Happstack is a fast and flexible Haskell web framework.
2
votes
2answers
143 views
Using html files as templates in happstack
I can find plenty of documentation on using blitz and other compiletime templating libraries with happstack but I would like to know how to use html files as templates.
2
votes
2answers
197 views
Is there a good way to QuickCheck Happstack.State methods?
I have a set of Happstack.State MACID methods that I want to test using QuickCheck, but I'm having trouble figuring out the most elegant way to accomplish that. The problems I'm running into are:
...
1
vote
2answers
120 views
How to exit from Hackstack Server App?
I'm creating a Happstack server application, but I don't know how to end the application .
If I have:
main = do
printf "begin server"
simpleHTTP nullConf myHomepage
printf "end server"
I can ...
0
votes
2answers
91 views
Happstack jQuery and plain text file content
I'm trying on a Happstack-build website to read out "user submitted" plain text files. The main functionallity should be to get the file content, for further usage a server side storage of the file ...