Yesod is a Haskell web framework for productive development of type-safe, RESTful, high performance web applications.
1
vote
1answer
193 views
Overlapping instances error for Yesod and EclipseFP application
I created an application with EclipseFP, the yesod application. With the out of the box settings, I get an error when I try to run a 'main.hs' file. It looks like it compiles but when I try to run I ...
4
votes
1answer
168 views
File upload field with custom validation in yesod
The usual way to upload a file in yesod is using fileAFormOpt/fileAFormReq. However, these don't result in a Field value, but go straight to an AForm, which is why I can't simply use the check ...
6
votes
1answer
228 views
Yesod Editable Table
I need to make a table with an editable column. Each row is a separate record. I want to be able to display hundreds of records, perform edits to them and then submit them back to the server for ...
2
votes
1answer
177 views
Newbie problems with Persistent
So I am planing to use Persistent 0.9.0.1 with Sqlite, and I am going through the tutorial: http://www.yesodweb.com/book/persistent
The simple snippet with insert and query fails to compile:
-- ...
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 ...
2
votes
1answer
95 views
id property in yesod
In yesod, we can specify the class attribute like so:
<div .myclass> ==> <div class="myclass">
Is there an analog for id? For example, something like:
<div #id> ==> <div ...
1
vote
2answers
192 views
Trying to send an email in yesod using hamlet
I am building a survey site in Yesod (0.10) and am getting lost in the types.
Here is a simplified version on what I am trying to do.
invitation url = do
render <- getUrlRender
return $ ...
1
vote
1answer
451 views
Haskell: Yesod and state
I was reading through the code for a Toy URL Shortener. However, there's significant parts I just can't get my head around.
It has the following code:
data URLShort = URLShort { state :: AcidState ...
0
votes
1answer
602 views
Haskell WARP, and AJAX
I'm having a bit of trouble trying to understand how WARP could potentially interact with the client-side. If I were to build my server-side via WARP, and had a Javascript client-side. Could I ...
3
votes
2answers
143 views
How can I resolve zlib-enum, zlib-binding, zlib-conduit conflict when installing Yesod
I am trying to install my Yesod web app on another machine.
I have it installed fine on my current machine and can cabal install it on there without any problems.
I seem to run into trouble with it ...
1
vote
1answer
160 views
Warp web service with a long lived resource (a file handle)
I'm trying to understand how to write a web service using warp that has a long lived resource that I want access to from all my requests (i.e. I want the resource to exist for the life time of server, ...
0
votes
1answer
110 views
How can I get a String from a PersistObjectId in yesod?
From a higher level what I am trying to do is make a post via javascript that includes the ID to an object.
I am passing the 'PlayerId' to a widget that will create the jquery that will post.
...
3
votes
1answer
201 views
How can I resolve http-conduit issue with Yesod 10.2?
I have the following problem when running
yesod devel in my application.
It starts out fine (compilation completes), but faults when preprocessing executables:
Resolving dependencies...
...
1
vote
1answer
177 views
Store Html type in postgresql result in 'bytes'
With yesod-0.10.1
Definition:
postBlogR :: Handler RepHtml
postBlogR = do
((res, articleWidget), enctype) <- runFormPost entryForm
case res of
FormSuccess article -> do
...
6
votes
1answer
366 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
...
1
vote
5answers
240 views
Processing form with Yesod and using the inputs to create something defined in models
The crux of the action is in this file:
https://github.com/gdoteof/exodus/blob/42c5ee09f09dcb718fa3bdfd79bfe5182c03faaa/Handler/GamingSession.hs
The general idea that I am going for is to accept ...
1
vote
1answer
127 views
Render yesod widget
I follow the instructions here
I create a yesod project, and render a widget with defaultLayout:
You've just posted
<p>#{postedText}#{T.reverse postedText}
<hr>
<p><a ...
0
votes
1answer
111 views
Automatic migration between different Persistent backends
I wonder if there's a tool for automatic migrations between different DBMS's using the Persistent package. In theory, it should be relatively easy to do, so I thought there should be a tool already ...
0
votes
1answer
105 views
Any way to make a table key that doesn't use the Persistent ID mechanism?
I'm trying to set up my postgres schema in yesod. The plan is to let yesod generate the tables, but I'll be inserting new records into the tables from a lua script in a C++ program. I'd like one of ...
2
votes
2answers
640 views
Yesod/Persistent one-to-one query
Say, in Yesod/Persistent, I have models setup like so:
User
ident Text
password Text Maybe
UniqueUser ident
Question
title Text
asker UserId Eq
And I have a list of Questions, ...
3
votes
1answer
116 views
Is it possible to add comments or HTML tags to Yesod's message files?
The built-in i18n message files for Yesod are very nice but I've noticed two problems:
It doesn't seem to allow comments. These can be very helpful to give translators (or remind myself of) the ...
4
votes
1answer
168 views
How to add HUnit to a Yesod project
I'm quite a beginner to Yesod and not experienced with Cablal - I used the scaffolding tool to initialise a new Yesod project, wrote some handlers and other code and now I'm struggling with adding ...
0
votes
1answer
126 views
Yesod: how do I serve dynamically-generated CSS?
OK, so my handlers for HTML are of type Handler RepHtml. I also see RepXml, RepJson, and RepPlain. How do I serve CSS, or Javascript for that matter?
The closest I can get, if this is close, is ...
1
vote
1answer
188 views
How do I insert html inside a Radio button label (in Yesod)
My attempt to render html as a label for a radiofieldList has yielded the following error.
Handler/Manager.hs:91:32:
No instance for (RenderMessage Scheduler (Handler RepHtml))
arising from a use ...
0
votes
1answer
127 views
Multiple input choice in a form
I have a form in which the user can either select from a pre-existing list of values, or create a new (Text) value.
What will be the most elegant way to code that?
My best (and IMO not so elegant) ...
4
votes
1answer
194 views
Hostname-independent Yesod application
This is a very simple question: How do I run a Yesod application that can handle multiple hosts at the same time?
A default Yesod setup can handle incoming connections from any host, but all URLs are ...
1
vote
0answers
180 views
Internet Explorer 8+ compatability
I have based my project on the current scaffolding from Yesod 0.10. I've gone into scary territory. While my code works just fine in both Firefox and Chrome, my workplace requires that it also works ...
3
votes
0answers
94 views
Package conflict between http-enumerator and several new yesod packages [closed]
This problem is related to this one. I was prompted to try to migrate from http-enumerator to http-conduit because of this package version conflict.
package http-enumerator-0.7.2 requires ...
3
votes
1answer
210 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 ...
3
votes
1answer
256 views
Yesod wai-eventsource example. Package dependency issue?
I'm trying to get this example code to compile on my system.
When I try to compile the Chat module with ghc Chat.hs, ghc gives me this:
Chat.hs:76:39:
Couldn't match expected type ...
3
votes
3answers
203 views
How to use MultiPiece
I'm completely new to Yesod (and not very experienced in haskell) and I'm trying to build my first handler. I scraffolded my app using default parameters (I'm using Yesod 0.9.4.1 version and choose ...
2
votes
3answers
364 views
Why aren't Persistent types instances of ToJSON/FromJSON in Yesod?
It's not that hard to write ToJSON/FromJSON instances for the generated types but still, while you're generating code could you throw that in? Or is there an easy way to make this happen as a Yesod ...
4
votes
2answers
188 views
Hamlet automatic access to variables in scope
From the Yesod Book.
Hamlet automatically has access to the variables in scope when it's called. There is no need to specifically pass variables in.
What is this deep magic? How can it ...
26
votes
2answers
875 views
What are the rules about concurrently accessing a persistent database
It seems the rules about concurrent access are undocumented (on the Haskell side) and simply assume the developer is familiar with the particular backend being used. For production needs this is a ...
2
votes
1answer
391 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
115 views
Matching Types: The Befuddlement
I thought I had Yesod types well in hand for my simple needs. Hah!
Here are two functions that compile right now, but do not do exactly what I would like at the moment, and I'm not sure how to ...
2
votes
1answer
71 views
Making Custom Instances of PersistBackend
I have a monad transformer stack of the form:
newtype T m a = T { unT :: StateT State (SqlPersist m) a }
deriving (Monad, MonadState State)
And want to use the persistent insert and lookup ...
1
vote
2answers
117 views
Why is Yesod.Request.FileInfo (fileContentType) a Text?
I am just starting out with Haskell and Yesod so please forgive if I am missing something obvious.
I am noticing that fileContentType in Yesod.Request.FileInfo is a Text even though Yesod.Content has ...
0
votes
1answer
47 views
How do I access the divs inside a rendered block of radio buttons
I noticed radioField gives back a blob that cannot be obviously iterated through via hamlet. I'd like to be able to manipulate the divs inside the blob to make them a css class member. I have thought ...
2
votes
1answer
218 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 ...
3
votes
1answer
994 views
Cannot install Yesod Haskell web framework on Mac OSX
I've no idea how to fix this. Does anybody have any ideas?
I'm getting the following error messages when I try:
~ >>> cabal install yesod
Resolving dependencies...
Configuring ...
2
votes
2answers
281 views
Yesod javascript formatting
I am working on debugging some javascript code that is generated in Yesod. Yesod generates javascript files with each function on one line which makes it impossible to set break points within the ...
1
vote
1answer
120 views
Why does one use of toWidget work, and the other doesn't
I tried modifying a Yesod project, and came across a weird error. First I will present the working form code, and the bare-bones broken code with error message.
type PForm x = ProductConfig ->
...
0
votes
1answer
67 views
Need advice on how to proceed with Yesod install
I interpret the following error to mean that a Yesod dependency, authenticate-0.10.2.2, requires attoparsec ==0.9.*, but Yesod itself requires attoparsec >=0.10. What can I do to resolve this?>
...
0
votes
0answers
333 views
Yesod Installation problems
Cabal cannot install the persistent dependency for Yesod. It returns with information that the right dependencies cannot be found. Yesod needs a certain dependency that cannot be found by cabal. I ...
6
votes
2answers
562 views
selecting an AMI for deploying a haskell app?
I'm working on a haskell web app using yesod that I eventually want to deploy to EC2, can someone recommend an AMI that has a recent haskell platform and a git client install-able from the ...
10
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)
...
10
votes
2answers
457 views
Yesod: Getting a database entity by ID from an Int
I'm new to both Haskell and Yesod, and am trying to build a simple web application that can answer queries from an external API. I have built a parser (using Parsec), that gets me the ID of an entity ...
7
votes
2answers
487 views
How to use UTCTime in yesod without hidden module errors?
I'm creating a simple website using yesod.
It was working until I added a field of type UTCTime to my database model.
I initially got an error suggesting I add "time-1.2.0.3" to my cabal file, so I ...
3
votes
1answer
316 views
How do I use wai-handler-devel with a simple wai application
I have the basic "hello world" application setup using wai, and would like to use wai-handler-devel, but am unsure how to go about it and can't find any examples of it in usage on a wai project.
{-# ...