Yesod is a Haskell web framework for productive development of type-safe, RESTful, high performance web applications.

learn more… | top users | synonyms

3
votes
1answer
97 views

Yesod sample projects

I am planning to write a yesod web application. And I'm wondering whether there are some large project using yesod that is well designed that I could look at and experiment with. I am looking for ...
4
votes
2answers
126 views

Composing Database.Esqueleto queries, conditional joins and counting

How can I compose Database.Esqueleto queries in a modular way such that after defining a "base" query and the corresponding result set, I can restrict the result set by adding additional inner joins ...
2
votes
1answer
35 views

How to authenticate from a bookmarklet in Yesod / How to add OPTIONS to Auth subsite of Yesod

I wanted to access a server API I made with Yesod 1.2 from a bookmarklet. I wanted to POST from the bookmarklet at any other sites. The server API has an authentication (by Mozilla Persona and Google ...
2
votes
1answer
64 views

How to querying the database inside the makeApplication function

I'm attempting to fork a non-web service in my Yesod application, and it needs to do some interaction with database. From this post I decided to put the service in makeApplication. I would like my ...
0
votes
0answers
19 views

Yesod app deployment as CGI program

Already managed to create a Yesod application running in "yesod -d devel". After that, I modified as in article Configure Yesod app as CGI (I'm restricted to CGI and won't have any of the development ...
-3
votes
0answers
54 views

Hard choice Meteorjs or yesod [closed]

I plan learn one of the 2, and want know wich one offers a best future for a job. Looks liketoday javascript is in high demand, but Im scared this will go down fast too. By the other hand looks ...
3
votes
0answers
92 views

Yesod devel cpu overhead

Yesod development server "yesod devel" on my system(arch linux) uses more then 30%-50% cpu when idle (watching for changed files). I'm guessing it is polling info about changed files from disk? I read ...
1
vote
2answers
92 views

setTitle with IO String results in type error

I am trying the set the title of a web page to a string containing the current year, like this: getCurrentYear :: IO String getCurrentYear = do now <- getCurrentTime let today = utctDay ...
2
votes
3answers
51 views

Create ToJSON instance for persistent Entity

I'm trying to use the new selectRep function from Yesod 1.2, but I'm having trouble getting json responses to work. instance ToJSON (Entity Feed) where toJSON (Entity uid (Feed url lastUpdated)) ...
5
votes
1answer
52 views

yesod-bin is missing an (unknown) dependency?

How can install the yesod executable? > cabal install yesod-bin Resolving dependencies... cabal: Could not resolve dependencies: trying: yesod-bin-1.2.0 so it does not tell me actual dependency ...
8
votes
1answer
146 views

persistent: How do I get the I in ACID

Assume I'm doing the following steps in a transaction: read some data A from the database do some calculation based on it write some data B to the database Is it possible to make this transaction ...
1
vote
1answer
92 views

Haskell Persistent insert rows if not already in database

I'm trying to use Yesod and persistent to create a website. I'm a bit confused about how to use the persistent API. Here's two of my tables Feed url Text UniqueFeed url Subscription ...
3
votes
1answer
114 views

Migrating Applicative Form to Monadic - get current timestamp

I have a working applicative form, but I want to add a textField that doesn't correspond to any field in my model. Everything is working okay except for one field. Part of my model is a UTCTime value ...
4
votes
2answers
89 views

What's the best way to do many-to-many in Persistent Yesod?

So my /config/models looks like this. Person name Text Car name Text PersonCar personId PersionId eq carId CarId eq UniquePersonCar personId carId Assume the inputs in the database are ...
4
votes
1answer
52 views

How to embed BrowserID login button in the defaultLayout

Part of the beauty of BrowserID is that it requires very little in the way of infrastructure on your website, you simply embed a button with some javascript and then setup a callback route to handle ...
3
votes
1answer
80 views

Managing cryptographic random number generators in a Haskell web application

I'm writing an application which I want to be able to supply RSA encrypted tokens to clients via a web API. I'm using the crypto-pubkey library for RSA, for example: encrypt :: CPRG g => g ...
1
vote
0answers
69 views

Yesod static file server bug?

I use Yesod (ver. 1.1.9.2), and I am testing my web app using yesod devel and/or cabal build && cabal install && MyWebApp Production in my local Mac OSX (10.8.2) environment. I ...
1
vote
1answer
103 views

Yesod: how to send Redis results as JSON

Apologies in advance for my Haskell inexperience. I am writing a little wrapper for a Redis instance for a learning project. So far Yesod has been an absolute wonder. With very little Haskell ...
1
vote
0answers
58 views

rendering applicative form in yesod

When I render (with renderDivs or renderTable) an applicative form all fields are rendered vertically. I want to make a form with several lines but also with several fields in each line. Can I do ...
1
vote
0answers
71 views

How to include one external hamlet file inside another?

My question is quite simple: How can I include one external hamlet file into another external hamlet file? Let's say I have a header or footer that's shared amongst every page, does it have to be ...
4
votes
0answers
105 views

Persistent: CRUD TypeClass

I am trying to write a typeclass that simplifies writing a CRUD backend using persistent, aeson and scotty Here is my idea: runDB x = liftIO $ do info <- mysqlInfo ...
2
votes
1answer
63 views

Setting up Yesod DevelOpts

I'm working on a Yesod project which includes some extensive database computations. The required calculation time may lead to the message "App not ready, please refresh" in development mode, followed ...
1
vote
1answer
26 views

Cleanly shutting down a warp server without exiting the process

I am looking at using wai/warp for some custom interprocess communications. This would have the unusual requirement that I would need to start/stop warp instances dynamically within a process. The ...
4
votes
1answer
85 views

Yesod Applicative Forms

I've been playing around with Yesod a bit, and a question arose: how are forms used as Applicatives? Take: personForm :: Html -> MForm Synopsis Synopsis (FormResult Person, Widget) personForm ...
2
votes
1answer
66 views

Detect client disconnect when using eventsource

I am trying to build a chat feature for a website in Yesod, and I want it to have a list of all the connected users that are there. I imagine the best way to do that is to add the person to the user ...
1
vote
0answers
56 views

Allowing cross-origin requests in Yesod

My application uses a bookmarklet, and I need to allow CORS for MyRouteR so my bookmarklet code can use this route for AJAX requests. In my first draft of config/routes I gave MyRouteR support for ...
1
vote
1answer
60 views

Multiple button form cause invalid arguments error

I want to add another button to a working monadic get form, which triggers a different processing of the entire form (like preview and submit buttons commonly found in forum post forms). So I tried ...
0
votes
1answer
42 views

Manually render a route's URL

I'm trying to render a page containing a link whose href value is "javascript:#{mySmallJsSnippet}", where mySmallJsSnippet is some Javascript that adds to the current page a <script> tag with ...
2
votes
1answer
97 views

Persistent model types in Fay code

I'm using the Yesod scaffolded site (yesod 1.1.9.2) and spent a few hours yesterday wrapping my head around basic usage of Fay with Yesod. I think I now understand the intended workflow for using Fay ...
2
votes
1answer
94 views

Keep incorrect user input after POST/Redirect/GET using yesod-form

Recently I stumbled across the following problem: Using yesod I wanted to Display an applicative form and let the user POST his data to a special Handler On FormFailure redirect the browser to the ...
0
votes
2answers
68 views

Styling not loading when implemented on server

When running my website locally (via yesod devel) the styling loads up and all is good. CSS files are loaded correctly. Using this method But when uploaded onto my amazon ec2 server styling is not ...
1
vote
0answers
86 views

yesod broken packages

On a fresh Haskell install (OSX from Haskell package) I run: cabal install yesod-platform yesod init yesod devel and the output was: .. .. yesod-static-1.1.2.2 (reinstall) changes: conduit-1.0.2 ...
0
votes
1answer
90 views

Combining Persistent and IO

I'm trying to recurse through a directory, processing files and storing the results in a database, but I'm running into a problem. A simplified example of what I'm trying to do would look like: {-# ...
1
vote
1answer
112 views

Running join on Maybe Relation

I have a model Assignment blah Text .... and a model File assignmentId AssignmentId Maybe ... and I want to get all the files associated with an assignment in a join query. I have ...
2
votes
2answers
137 views

Where can I find a good manual for warp server?

I created a yesod webapp using yesod init. During development I used yesod devel to run the warp server on debug mode. Now I've finished a preliminary version and I want to deploy it on ec2 amazon ...
0
votes
2answers
77 views

Yesod generateFormPost - No instance for (RenderMessage master0 FormMessage)

I tried to follow this screencast by Michael Snoyman http://vimeo.com/39646807. However, it seems changes to the i18n causes that code to fail. I can't find any information on how to solve this ...
1
vote
2answers
70 views

How is it used translated messages inside a Haskell file?

I have searched in internet, in the Yesod Web ebook and other tutorials (Yesod Tutorial) but I have not been able to clarify this problem. I am using the scaffolded site. I have a handler, inside it ...
4
votes
1answer
71 views

How to use $maybe in hamlet

In Yesod, I've got a form that populates the type data Field = Field Text Text text deriving Show When I write the hamlet html to display it, I'm running into the problem that Field is wrapped ...
2
votes
1answer
79 views

Yesod on Heroku: Could not resolve dependencies, yesod-1.1.9.2

I created a new application with yesod init and then followed the tutorial here to deploy it to Heroku. The deployment fails with: -----> Updating Cabal Config file path source is default config ...
0
votes
1answer
88 views

Function out of scope

I have a doubt of why is this happening. I have been following the "Yesod Web" ebook but with a scaffolded site. When I arrived to a position that I wanted to apply the function of "plural" inside a ...
1
vote
1answer
109 views

Yesod ExitFailure 1 when installing scaffolded app

I'm trying to install my first scaffolded Yesod app. When I run cabal-dev install && yesod --dev devel it fails with ExitFailure 1. I'm using sqlite for persistent. Application.hs:49:44: No ...
1
vote
1answer
65 views

Redeploy Yesod app with Keter without recreating database

I am writing my first app with Yesod, and I've got it to a state where it works, but I want to keep adding little things to it. So far, every time I redeploy with keter by swapping in the new package, ...
2
votes
2answers
203 views

Haskell and webframeworks

I started developing an application (some boring accounting software for inhouse use) and decided to make it web-based as this would solve a couple of problems in one go. Now with a couple of ...
3
votes
0answers
79 views

Is there a function that transform from plain HTML to Hamlet structure?

I am starting to use the Yesod web framework. I have some already existing template HTML code that I would like to automatically translate to a Hamlet code structure. Is there a way to do this?
1
vote
1answer
98 views

How can i display curl results on an html page, using yesod?

I want to post the results of a curl command within an html page, using the yesod framework in haskell. This is the code i have so far: {-# LANGUAGE TypeFamilies, QuasiQuotes, MultiParamTypeClasses, ...
0
votes
1answer
79 views

Persistent: Convert Text to Key

I'm using persistent and persistent-mysql. I have a Monad SqlM type SqlM a = SqlPersist (ResourceT IO) a) Inside my function testFun :: T.Text -> SqlM () testFun someId = ... I can query ...
1
vote
1answer
37 views

Using Type-safe URLs with setMessage? (shamlet versus hamlet)

How do I use a type-safe url with setMessage? I want to change ... setMessage [shamlet|<span .warning>Warning! See Help.|] ... to a message that contains a link. From what I could gather ...
3
votes
0answers
100 views

Yesod Persistence - Aggregate functions

I'm evaluating Yesod as a platform for writing a web-based accounting software for inhouse use. So far I'm impressed. Modelling the entities to suit Persistent is pretty straight-forward, being able ...
3
votes
1answer
105 views

Error “unknown package: ghc” when building heroku app with yesod

I'm trying to build a heroku app with a new version of yesod (1.1.9), unfortunately it fails becauce of the ghc-paths dependency (yesod version 1.1.2 works since it does not have this dependency). I ...
2
votes
1answer
119 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 ...

1 2 3 4 5 7