Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
132 views

Using values not from the application monad with Heist templates

I'm trying to write an application server using Happstack, Heist, and web-routes, but am having trouble figuring out how to let splices access values that don't originate from my application's monad ...
3
votes
1answer
102 views

Form library suited for Snap and Heist

I am looking for a library that helps me create forms using Snap and Heist. There is no "blessed" form library for Snap that I know of, and none of the stray ones on Hackage seem to be particularly ...
3
votes
1answer
63 views

Adding OnLoad hooks for Heist templates using the Snap Web Framework

I wish to add some hooks for pre-processing Heist templates in a web application using Snap. My naïve approach so far has been to use the following code in my application initializer: app :: ...
3
votes
2answers
117 views

Heist: How do I insert a dynamic list of sub-templates into a template?

I am writing a site for online surveys. I have a list of questions that all go on one html page and the list is of unknown length. Each question has the form stored in template qu1.tpl and the page is ...
1
vote
2answers
161 views

How to preserve javascript in heist template from escaping?

I'm using Snap framework with Heist templating engine. The problem is that Heist corrupts javascript code inlined into html: <script type="text/javascript">alert('hello');</script> ...
0
votes
1answer
47 views

Finding a working Happstack / Heist example

I would like to start using Haskell to build web sites, and think that Happstack, Heist, and Web-routes would be a good combination. Unfortunately, I cannot find working code. The crash course ...