The heist tag has no wiki summary.
0
votes
1answer
84 views
heist template new api
Which's the equivalent for
...
import Happstack.Server.Heist
pageHeist :: B.ByteString -> [(T.Text,T.Text)] -> ServerPart Response
kfzPaginaHeist template par = do
pagina <- ...
0
votes
1answer
56 views
How to use a single per-request computation in multiple splices with Heist?
Say I have a single Heist template with two custom tags <x/> and <y/>. Each tag is bound to a Heist.Compiled.Splice. Now the template is rendered at each GET request for a specific route. ...
2
votes
1answer
95 views
How can I use the Text.RSS module in an application already using Text.XmlHtml without also importing Text.XML.HaXml?
I have an pretty stereotypical weblogging application that I've been working on for practice. The top level of my application is a Happstack layer using pretty standard routing. I have gotten to the ...
1
vote
1answer
46 views
How do you update code using loadTemplates for the new Heist API?
This code was working with Heist prior to the 0.10.0 change
main = do
Right ts <- loadTemplates "templates" $
bindSplices mySplices defaultHeistState
etc..
Now I get the ...
1
vote
1answer
63 views
cabal install errors-1.3.1 fails
I'm trying to install the newest version of Heist, but errors-1.3.1 which is a dependency fails to install. Any suggestions for how to get past this?
$ cabal install errors-1.3.1
Resolving ...
0
votes
1answer
89 views
Why am I getting an EitherT type error?
When I try loading my Heist (0.11) templates with this function:
load :: MonadIO n => FilePath -> [(Text, Splice n)] -> IO (HeistState n)
load baseDir splices = do
tmap <- runEitherT ...
2
votes
1answer
98 views
Embedding a Heist tag inside of a javascript
Due to some library incompatibilities, I'm not able to use both Pandoc and Heist in the same application. As such, I decided to go with Markdown.JS to handle converting from Markdown format data into ...
9
votes
1answer
135 views
Digestive Functors with a variable number of subforms (Snap/Heist)
I'm working on porting a site from PHP to Snap w/ Heist. I've ported some of the simpler forms to using Digestive Functors successfully, but now I have to do the tricky ones that require the use of ...
3
votes
1answer
218 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 ...
0
votes
1answer
212 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 ...
3
votes
1answer
122 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 :: ...
5
votes
1answer
297 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
2answers
315 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 ...
2
votes
2answers
252 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>
...
