Yesod is a Haskell web framework for productive development of type-safe, RESTful, high performance web applications.
140
votes
4answers
15k views
Comparing Haskell's Snap and Yesod web frameworks
The two Haskell web frameworks in the news recently are Yesod (at 0.8) and Snap (at 0.4).
It's quite obvious that Yesod currently supports a lot more features than Snap. However, I can't stand the ...
9
votes
2answers
4k views
Deploying Yesod to Heroku, can't build statically
I'm very new to Yesod and I'm having trouble building Yesod statically
so I can deploy to Heroku.
I have changed the default .cabal file to reflect static compilation
if flag(production)
...
86
votes
1answer
3k views
Exceptions in Yesod
I had made a daemon that used a very primitive form of ipc (telnet and send a String that had certain words in a certain order). I snapped out of it and am now using JSON to pass messages to a Yesod ...
9
votes
1answer
220 views
How do I implement a shutdown command in a WAI server?
I'd like to implement a 'graceful shutdown' command for my webapp (as opposed to my first instinct, which is to just ask people to kill the process)
My first two attempts consisted of
liftIO ...
6
votes
1answer
357 views
Correct way to do a “join” in persist with yesod
Consider the models:
Player
name Text
nick Text
email Text Maybe
phone Text Maybe
note Textarea Maybe
minutes Int Maybe
deriving
Table
name Text
game Text
...
6
votes
1answer
323 views
How to work around duplicate symbol error when using Yesod and Darcs library?
It seems impossible to use Yesod together with the Darcs library due to a linker problem. I tracked down the problem and need hints to work around it by people familiar with Darcs internals.
When ...
5
votes
2answers
282 views
Yesod devel server only listening on ipv6
I'm running "cabal install && yesod devel" using yesod 0.9.2.2 but it is only listening using ipv6. Does anyone know how to configure it to listen on ipv4 as well? I'm running it on Windows ...
5
votes
1answer
685 views
Cabal install needs C library: Windows
I am trying to cabal install yesod on my Windows machine. I have a relatively fresh install of the Haskell Platform. The cabal install failed, reporting that I need the sqlite3 C library in order to ...
2
votes
1answer
113 views
Where to add 'always running' thread to Yesod applications
I'm writing a Yesod application, but it also needs to fork several non-web services. (UDP listeners, TCP listening port, etc.)
Where is the correct place to splice in a fork, such that this work ...
1
vote
1answer
68 views
What is the IForm equivalent to fileAFormOpt?
I want to use runInputPost on an existing form with a file input tag. fileAFormOpt exists for AForms, but how can I do the same with an IForm since there is no fileField type?
1
vote
3answers
136 views
Deep maybe stack with yesod
I'm trying to set an authorization scheme where I check that 1. user is logged in 2. user has access to a certain object. For this I first call maybeAuthId, then try to get the current object, and ...
6
votes
1answer
318 views
How to print comma-separated list with hamlet?
With the hamlet templating language that comes with yesod, what is the best way of printing a comma-separated list?
E.g. assume this code which just prints one entry after another, how do I insert ...
4
votes
2answers
395 views
How to use a CSS Framework with Yesod?
I want to use the Blueprint CSS Framework with Yesod. Are there any best practices?
Because Yesod uses templates for CSS, it looks to me that I cannot use the .css-files directly? Do I have to rename ...
3
votes
1answer
204 views
Migrating from Network.HTTP.Enumerator to Network.HTTP.Conduit
I don't know why my code breaks. At first I thought it was because parseURL gives [] for the requestHeaders. Okay, so maybe I just need to tell it what the resquestHeaders should be. Well, I examined ...
2
votes
1answer
122 views
Haskell / Persistent-Sqlite: “No instance for (Control.Monad.Trans.Resource.MonadResource IO)”
I've been trying to come up with a simple and intuitive way to use databases with Haskell. I've taken this code from the Yesod book and tried to clean it up so that it can be easier to understand and ...
2
votes
1answer
160 views
Sitewide variables in Yesod layout (django context processors analog)
Is there a possibility to have a sitewide variables in Yesod? Suppose, I have main menu which entries are gathered from DB and that is rendered on every page: should i fetch entries manually in each ...
2
votes
1answer
381 views
Baffled by selectOneMany in Yesod
Sweet but simple, how do Persistent joins work? Consider the following model:
Person
number Int
numberOfEyes Int
firstName FirstnamesId
lastName LastnamesId
Lastnames
lastname ...
2
votes
1answer
215 views
“Yesod devel” fails with fromJust in devel.hs
When I run "yesod devel" it says "devel.hs: Maybe.fromJust: Nothing
yesod init # created a project bbbb
...
cabal install && yesod devel
...
Registering bbbb-0.0.0...
Starting development ...
2
votes
1answer
391 views
Yesod form with multiple buttons
I have a Yesod form for editing the contents of some static pages which are written using markdown (processed using Pandoc). I want to have two buttons - a 'preview' button which processes the markup ...
0
votes
2answers
166 views
Parsing a JSON post
I have the following piece of code:
data Friend = Friend
{ friend_name :: Text
, friend_inTwitter :: Bool
, friend_twitterName :: Maybe Text
}
...
0
votes
1answer
197 views
Nested external shakespearean templates widgetFile, hamletFile, luciusFile, or juliusFile in Yesod
For reusability, I want to re-use a widget inside another. For instance, the widget file blogpost.hamlet could contain how a post is displayed, and blog.hamlet could contain the full blog.
The ...
0
votes
1answer
93 views
How does one inspect values inside the Handler Monad in ghci?
I have a type
Handler [Maybe AvailableDay]
I would like to inspect the contents of [Maybe AvailableDay] in ghci. How do I do that?