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

learn more… | top users | synonyms

0
votes
1answer
94 views

Cabal dependency conflict when installing yesod

I am trying to install the yesod web framework. When I run cabal install yesod-platform, I get a dependency conflict: cabal: dependencies conflict: ghc-7.0.4 requires array ==0.3.0.2 however ...
4
votes
1answer
141 views

shakespeare-js fails to compile on Heroku

When deploying my simple Yesod application to Heroku cabal fails when installing shakespeare-js-1.0.2 Building shakespeare-js-1.0.2... Building persistent-1.0.2.2... Building yaml-0.8.2.1... ...
3
votes
2answers
188 views

Yesod, WebSockets and Persistent

I'm trying to implement a server for a turn based game in Haskell. My choice would be to use Yesod for adminstration and meta-information (like, what games a user participates in and such). I'd like ...
1
vote
0answers
43 views

persistent with a model without fields (attributes) and mkMigrate parameters

First, if the model file has User ident Text password Text Maybe UniqueUser ident Myuser we can type cabal-dev install && yesod --dev devel and everything works on the first ...
1
vote
1answer
47 views

Where are Yesod binaries to work with in Mac OSX

I followed this quickstart tutorial. After installing the yesod-platform, I try to run the yesod command with no success. Am I doing something wrong? I know how to fix it ---adding the right path ...
5
votes
1answer
113 views

Where is the breaking change?

I wrote a CRUD application to interface with JIRA. I ended up upgrading my haskell enviornment, because cabal-dev doesn't solve everything. As a result, I've got some breakage, with this error anytime ...
0
votes
1answer
73 views

Yesod handlers, content of POSTed files

while the following code: postImportR = do fi <- lookupFiles "file" fc <- lift $ fileSource (fi !! 0) $$ consume seems to work (at least can I "liftIO $ print fc), splitting it off to ...
0
votes
1answer
93 views

Breaking POST request into parts in Yesod

I'm struggling to split a POST response (multipart) apart, what should be used to put the contents of some files sent to the Yesod server into a database (after some further processing). My current ...
0
votes
1answer
80 views

yesod persistent: get list of entities from list of keys

suppose I have fooIds :: [Key Foo]. How would I get foos :: [Foo]? I tried do foos <- map get fooIds but it gives me No instance for (MonadBaseControl IO m0) arising from a use of `get' ...
2
votes
1answer
116 views

yesod respond plain text

as I'm very new to Haskell, could someone kindly push me into the correct direction of solving the following problem...? I started with Yesod's scaffolding application. Serving HTML generated from ...
0
votes
1answer
62 views

Haskell and postgresql-libpq

I've some issue with postgresql-libpq (Windows x32 OS). I am trying to execute either one 'ghci -package postgresql-libpq' or 'yesod devel' in my the project directory I got the such error "Entry ...
2
votes
1answer
132 views

yesod persistent: get Entity value within hamlet

let's say my config/models file looks like this: Pet name Text owner OwnerId Owner name Text I can get the pet's name like this: $forall Entity key pet <- pets ...
1
vote
0answers
127 views

Could not find module `Yesod'

I have the following code: {-# LANGUAGE TypeFamilies, QuasiQuotes, MultiParamTypeClasses, TemplateHaskell, OverloadedStrings #-} module Simple where import Yesod data HelloWorld = ...
0
votes
1answer
86 views

How to build and host a yesod web application

What is the best way to build and host yesod applications? I have already tried different tutorials but without success. Kind regards Joachim
0
votes
0answers
41 views

yesod-auth 1.1.3: does onLogin give a wrong message in bad login attempts?

On an auth-example when giving a bad login, I receive a 'onLogin'-message and then the permission denied message. (I'll put full source of the example in question with its output below. Example is ...
1
vote
0answers
54 views

Internal Server Error (trying Yesod Auth-package)

I was following the y-book example of Authorization of a user with a plan to put this into the scaffolding example: show the first page, have there login link, and if login succeeds with browserId, ...
1
vote
1answer
47 views

yesodweb -example and extra tags in the output

Please, consider the following three pages that are very similar. {-# LANGUAGE OverloadedStrings, TypeFamilies, QuasiQuotes, TemplateHaskell, MultiParamTypeClasses #-} import Yesod import ...
1
vote
1answer
99 views

Yesod/Persistent testing with bracket pattern

I'm very new to Haskell, so I'm having trouble absorbing all of the advanced features used in Yesod such as type instances and equality constraints. I am trying to implement the bracket pattern in ...
3
votes
0answers
204 views

yesod tutorial, nicEdit and a static gif-reference

Blog-example and the nicEditor on the tutorial on yesodweb work as they should. To learn something about yesod & scaffolding etc, I downloaded nicEdit, unzipped it, and put it into ...
6
votes
1answer
113 views

Yesod, howto generate type-safe link from JSON-data in Javascript / Julius

I've a route /notes/#NoteId NoteR GET From another page, I want to link to it. When using "classic" hamlet, it's easy: <a href=@{NoteR $ entityKey note}>notetitle I want my page to ...
2
votes
1answer
60 views

Yesod/Persistent entity deriving Show

In the Persistent chapter of the Yesod book, an example is given where this entity {-# LANGUAGE QuasiQuotes, TypeFamilies, GeneralizedNewtypeDeriving, TemplateHaskell, OverloadedStrings, GADTs #-} ...
1
vote
1answer
26 views

Yesod/Persistent field with Eq

In the Persistent chapter of the Yesod book, a certain field is given an Eq suffix, but it is never explained why. In the Relations section, we see the following models: Person name String ...
2
votes
0answers
60 views

Yesod custom field of type [Double]

I want to create a custom field in Yesod that is a text field with a JSON array of doubles. However I keep getting type errors. My current attempt is: doubleListField :: RenderMessage master ...
1
vote
1answer
102 views

Insert list of values into database with persistent

Assuming I have this code (simplified from "Synopsis") {-# LANGUAGE QuasiQuotes, TemplateHaskell, TypeFamilies, OverloadedStrings #-} {-# LANGUAGE GADTs, FlexibleContexts #-} import Database.Persist ...
0
votes
1answer
87 views

Yesod ghc.exe not responding when doing “yesod devel” Windows

I was starting to read about Yesod on Yesod website, and I tried to install it on Windows. I followed the following steps : I installed Haskell-Platform from their website for Windows. I added ...
1
vote
1answer
64 views

Flexible attribute handling with xml-conduit

I would like to use xml-conduit for parsing some very large XML files since it seems to be the only XML library for Haskell that can use Text. Unfortunately my XML file has a lot of attributes for ...
3
votes
1answer
122 views

Haskell Yesod on Windows 7: Launching development server with 'yesod devel' issue

I am very new to Haskell and I am currently using Windows 7 OS. I am attempting to develop a web service using Haskell framework Yesod. When I execute the yesod devel command to start the development ...
0
votes
1answer
123 views

How to uninstall cabal, cabal-nirvana and yesod

I am trying to find a way to remove cabal/cabal-nirvana/yesod from my system, I did install cabal with sudo apt-get install cabal-install second I would like to remove cabal-nirvana which I ...
0
votes
1answer
65 views

Why does this code work with Yesod.Persist's get404 but not getBy404?

Let's say I have a table of dog names and breeds as follows: share [mkPersist sqlSettings, mkMigrate "migrateAll"] [persist| Dog name Text breed Text UniqueDog name |] I have the ...
0
votes
1answer
102 views

Form validation based on values in database

I have a form where a user can update its username. A username should be unique. I thought of using the standard validation as mentioned in the Yesod book: Forms, but I don't get my head around it... ...
1
vote
1answer
111 views

Host name not recognized error

I've been trying to setup keter for my yesod website, but I'm running into a bit of problems with the following: Welcome to Keter The hostname you have provided, 127.0.0.1:3000, is not recognized. ...
1
vote
1answer
72 views

Easiest way to handle OPTIONS method?

I'm writing a client for my Yesod JSON server in angular.js. When examining the header traffic, it appears that Chrome is sending an OPTIONS method, which my handler rejects. Investigation suggests ...
0
votes
0answers
72 views

Automatic file recompilation in Yesod

In the book "Haskell and Yesod" written: Routes are defined in config/routes, and entities in config/models. They have the exact same syntax as the quasiquoting you've seen throughout the ...
1
vote
1answer
130 views

ghcInvocation: the programVersion must not be Nothing

I am trying to upgrade my Yesod project to version 1.1 and it was working fine with version 1.0. Now I am trying to run my project on version 1.1. When trying to run yesod --dev devel I get the ...
3
votes
2answers
189 views

Compile error when trying some Yesod examples

I am trying Yesod book examples documented on Yesod webpage. One of the examples is for Chat application embedded in Wiki. When I try it in ghci (loading Chat module from Wiki.hs which contains Wiki ...
0
votes
1answer
42 views

Enumerate AppMessage constructors

Let message/en.msg file like: Category1: some text 1 Category2: some text 2 ... CategoryN: some text N And let next valid code: getHomeR :: Handler RepHtml getHomeR = do (msg :: ...
0
votes
2answers
129 views

How to get a value from the yesod settings.yml file

I'm using the yesod scaffold. I'm struggeling a bit with how to get a value from the settings.yml file, The relevant part of the settings.yml file looks like this, Default: &defaults host: ...
0
votes
1answer
72 views

refactor maybe stack in Yesod

Using Yesod, I want to show the user's profile name in the navigation bar of every page and want to link, with the ProfileId, to the profile-page of a user. config/models contains: User ident ...
0
votes
1answer
92 views

Persist an entity with a user reference in Yesod?

I'm changing my existing Yesod application to run on a SQL backend instead of mongo. The generated table structure is more strict then the mongo backend. Foreign key references should be created ...
3
votes
1answer
173 views

Minimal haskell (ghc) program installation (deployment without ghc/cabal)

(My problem is about distribute binaries without haskell-platform, ghc, cabal, ...) I need deploy a well cabal formed haskell application (a Yesod scaffolded) but I have disk space restrictions. GHC ...
0
votes
1answer
115 views

JSON parsing befuddlement

I'm working on the I/O aspect of my json server, and there's a method I just can't get right. First, I'll give the error, then the code and datatypes involved and some commentary about the problem ...
0
votes
1answer
72 views

submitting a form with ajax and retaining session

I have a page on domain A which includes a javascript from from domain B. The script loads a form from domain A with Ajax and posts it back to A. The form got rejected by Yesod because of missing ...
2
votes
1answer
160 views

Warp Wai WebSockets intercept

import Network.Wai.Application.Static (staticApp, defaultWebAppSettings) import Network.Wai.Handler.WebSockets (intercept) import Network.Wai.Handler.Warp (runSettings, defaultSettings, ...
0
votes
1answer
183 views

Yesod Web Framework in the marketplace

Is the Yesod Web Framework for Haskell being used at any established sites on the Internet, other than yesodweb.net? Are any companies using it? I am considering starting a site and am looking at ...
1
vote
1answer
77 views

How do I implement layouts other than defaultLayout

I'm currently toying around with the Yesod framework, and thought to myself that making a kindda small CMS would be a good project. At the moment I'm struggling with how one would implement another ...
4
votes
0answers
220 views

Using persistent from within a Conduit

First up, a simplified version of the task I want to accomplish: I have several large files (amounting to 30GB) that I want to prune for duplicate entries. To this end, I establish a database of ...
4
votes
1answer
125 views

Returning an error status in Haskell and Yesod

I am a Haskell newbie. I am trying to write a small Webdav server using the Yesod Framework and modelled after the WebdavServlet in the Apache Tomcat 7 source code. I have run into a problem ...
2
votes
1answer
66 views

Use of Hamlet's $case with records and ADTs

It would seem that Hamlet's $case expression should be remarkably useful, but I can't figure out how one would match against an record type with multiple constructors short of pattern matching (with a ...
2
votes
1answer
61 views

Reloading the content of a yesod website with SIGUSR1

To reload the content of the yesodweb.com website, a reload route has been added. Anybody can initiate a reload by using wget with POST. This does not seem really secure. Would it be possible to ...
0
votes
2answers
121 views

Where to include static javascript in a Yesod project?

I have a local static Javascript file I want to include site-wide. Preferably I want all static Javascript files to be combined into a single file, but I want to manage these files separately. Where ...

1 2 3 4 5 7