Snap is a web framework for the Haskell programming language.
1
vote
0answers
38 views
Correct way to define a HasPostgres instance for IO? [migrated]
I want to write my database access code for a Snap application in a way that makes the queries easy to test from the ghci repl, while also working within the Snap context. My solution so far is to ...
0
votes
2answers
49 views
Snap Framework: Custom snaplet handler won't render template
I'm just getting started with writing custom snaplets and hit a road block. I have the following basic snaplet which has a "roles" template located in the ...
2
votes
1answer
120 views
Snap Framework: Compiled splices and processing forms with digestive functors
I'm trying to understand compiled splices and how to use them with digestive functor forms. Anyone have any code examples?
2
votes
3answers
177 views
Installing Haskell packages on Mac
I can't seem to get a few Haskell packages to install on my Mac (10.6.8). I first tried Happstack and it failed and then I tried Snap.
Sometimes when I run ghci I get a segmentation fault.
Other ...
4
votes
0answers
73 views
How can I check the client certificate using Snap
I know it's rarely used, but is it possible to access the client certificate in Snap?
If not, is it possible using a different web stack?
2
votes
1answer
96 views
How to make nicEditor snaplet? (Several questions)
The example below defines a snaplet to bind nicEditor to textarea. The following questions are not only related to the example below, but probably they are related to some other similar cases..
Can ...
2
votes
2answers
205 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 ...
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
66 views
Snaplet to SnapletLens (snaplet initialization)
In function app :: SnapletInit App App I tried my snaplet that has couple of fields:
m <- nestSnaplet "mys" mys $ myexInit -- Data Myex = Myex {_foo :: Text, ...}
and later in the same ...
3
votes
1answer
94 views
Snap framework - repeated maybe tidying
I'm applying my (limited) Haskell knowledge to the Snap web framework and seeing what I can build. I'm trying to get a (possibly non-existent) parameter and parse it into an int. Obviously "Maybe" is ...
3
votes
2answers
193 views
Haskell servers subdomain
Using Hakyll that uses snap i started working on a routing server. Given the following code from their tutorials i can see the routing but i would like to have some different applications on their own ...
1
vote
2answers
102 views
Snap Framework Compile error during fresh install
I'm receiving the following error when installing Snap for the first time. I've tried installing heist first but get the same error. I'm using Ubuntu 12.04 32bit desktop (brand new installation) and ...
0
votes
1answer
54 views
Using “runghc” in Snap and not throw a webhandler exception. Using tryIO still gives an error
I am trying to use runGHC inside of snap to filter out only code that can be compiled. However, I am using tryIO but still my webhandler throws an exception when there is a compile error instead of ...
0
votes
1answer
84 views
Snap: correct use of PreRun hook
I cant figure out how to run a function before any template loads.
For instance:
I have a function called 'authenticate' that returns a Maybe value. I want to run it before any template is loaded and ...
0
votes
1answer
145 views
Snap: inner/outer loops with heist
I am not sure if I phrased the question in the title correctly but here is the situation..
I need to create a dynamic table with heist when table fields (schema) are only available at run time.
So ...
1
vote
1answer
70 views
How will issues with MonadCatchIO affect apps build with the Snap framework in the future?
I recently saw the warning about the MonadCatchIO class here.
The Snap Monad is an instance of this.
I'm wondering how any likely resolution the MonadCatchIO issue will affect webapps build on the ...
1
vote
1answer
50 views
How do you make a Snaplet like HasHdbc work outside the Snap context?
In the tutorial for using the HDBC Snaplet, it says that "One of the goals when designing the HDBC snaplet was to separate the functions from the Handler monad, or any Snap-related monad, so that the ...
0
votes
1answer
78 views
Snap static javascript files location
What is the search rule for static content when you link it within a heist template?
I get a few problems related to javascript files not being found.
So sticking my "myjavascript.js" and "jquery.js" ...
2
votes
2answers
80 views
Are Snaplets advisable for larger apps or can you just build directly on top of snap-core?
I plan on writing webapps with Snap.
But sticking with snap-core is much more straightforward to me than using snaplets and lenses.
Is it maintainable in the long-run to start developing with snap ...
0
votes
1answer
108 views
Haskell Snap: mongodb field type error
I get an error which I can't resolve.
The snap application compiles without a problem and everything seems to be ok.
But when I render the relevant page in a browser I get this error:
A web handler ...
1
vote
1answer
83 views
Snap Framework: How do I run IO within a handler
this is probably a simple question and I've seen a similar one on SO, but I'm still stuck.
I'm trying to do an HTTP call to pull in the contents of another blog and display it on my page. This is ...
2
votes
1answer
118 views
How do I access a global MongoDB connection from a handler?
I’m trying to make a simple web application using Snap. I want to have a global MongoDB connection which I can use across handlers.
I open this connection in appInit, which works.
data App = App { ...
0
votes
1answer
78 views
Retrieving a list of choices for Digestive Functors from the database (Snap/Heist)
I have an address form that handles both adding and editing (Nothing if adding, Just Address if editing). Up until now, I've had the state and country choices hard coded with a handful of items.
...
9
votes
1answer
148 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 ...
1
vote
2answers
269 views
Snap, IO and acid-state
Trying to use acid-state in Snap, and I hit a roadblock.
Here is what I got so far.
First my acid-state related objects (it's a dummy book with a isbn number):
{-# LANGUAGE DeriveDataTypeable ...
2
votes
1answer
142 views
cabal install complains no acceptable C compiler found
When trying to install snap from cabal, in Windows, it complains about not being able to find a C compiler.
Here is the output:
> cabal update
> cabal install snap
Resolving dependencies...
...
0
votes
1answer
96 views
Can snap host CGI application?
An old python CGI application is running under ocsigen with cgi extension. We just need to configure it as below:
<site path="qachina" charset="utf-8"> ...
2
votes
1answer
81 views
Cabal issue when compiling snaplet-mongodb-minimalistic
Can anyone help me solve this. I am trying to compile Example 1 from the snaplet-mongodb-minimalistic package, but I get the following error:
$ cabal install
Resolving dependencies...
cabal.exe: ...
3
votes
2answers
120 views
Add css and images to snap's cabal build?
When I build my snap project, it does not include any of my static resources or templates.
My project structure is as follows:
site.cabal
\src
\snaplets
\heist
*.tpl
\static
...
1
vote
1answer
127 views
How to add mongodb to Snap app?
Given this:
main :: IO ()
main = do
(conf, site, cleanup) <- $(loadSnapTH [| getConf |]
'getActions
...
0
votes
1answer
135 views
Snap web framework and OSX Path
preface: new to OSX development.
cabal install snap --this works fine.
When I type snap into the terminal nothing happens. How do I export my snap path to my $PATH in OSX?
same thing happens with ...
3
votes
2answers
167 views
How to highlight active link with Snap?
Could someone give an example of highlighting the "active" link on the menu on the site with Snap? Or at least tell me how you would go about it - as I have no idea.
In other web-frameworks I ...
2
votes
1answer
126 views
How to use subsnaplet during snaplet initialization?
I have some snaplet like this:
data DB b = DB
{_pgsql :: Snaplet Postgresql
,dbCache :: Map Text Text
}
And I wish to fill dbCache from postgresql database. Seems that it is natural to do ...
3
votes
1answer
197 views
Reduce the size of the Snap binary?
When I compile my Snap webapp (to deploy it to production server), it comes out to 19MB!
What gives? Is this normal? Am I doing something wrong?
My site only has 3 static pages, basically snap's init ...
16
votes
3answers
932 views
How to run Snap haskell webapp in production?
I've installed Snap/Haskell on my production Ubuntu server (on EC2), and checked-out my project - but how do I run it?
I mean, locally, I run it from command line:
project-name -p 8000
Does snap ...
1
vote
1answer
172 views
What do this do in Snap?
Could someone explain what is going on in the default snap project template?
--------------------------------------------------------------------------
-- | Handle login submit
handleLoginSubmit :: ...
1
vote
1answer
238 views
Snap 0.9 routing behavior
I can't figure out the routing strangeness in Snap 0.9 (and, most likely, other versions)
I understand "/" is a catch everything pattern unless I put ifTop function inside the handler, right?
So, ...
0
votes
1answer
165 views
How to make form snap to certain heights when the form is resized vertically?
I have 3 PictureBoxes on a form that are tiled on top of each other. the form has a minimum vaule of (502, 416) and a maximum of (502, 1080).
because the user can select from a MenuStrip to display ...
1
vote
1answer
128 views
Where do I put my snaplets?
I'm new to Haskell and Snap and I want to write a simple bug-tracking application. I set up a Snap project using $ snap init and it works. The problem is that I don't know how to go any further.
I ...
1
vote
1answer
261 views
Snap Monad, LiftIO and ghc 7.4.1
I'm trying to get some code that was working in ghc 7.0.4 work with 7.4.1.
It appears to me that old way of accessing IO from inside the Snap moand no longer typechecks.
In ghc 7.0.4, the documented ...
2
votes
1answer
473 views
How to use Haskell Snap with Backbone.js
Most Haskell web application frameworks seem to focus on doing a lot of the work on server (templating, forms, etc.). However, most everyone else seem to be moving more and more of the application on ...
1
vote
1answer
265 views
Using monadic validation with Digestive Functors and Snap
I try quite a while now to wrap my head around how to use validation in a digestive functors form field, that requires access to another monad. To cut it short I have a digestive form like this
...
4
votes
2answers
157 views
Find the port bound by snap-server
Using snap-server's httpServe method, I can setPort 0 to instruct the server to connect on the next free port. Unfortunately, once I have started the http server, I can't find any way to determine ...
3
votes
1answer
236 views
Stateful code under another monad
I have a hobby web project. Very simple, just to learn Haskell and web programming. For clarity, I use Snap framework. And I have the following code (site.com/auth handler):
auth :: MonadSnap m => ...
3
votes
1answer
188 views
Install of semigroups fails with cabal
I would like to install Snap, but i'm new to Haskell and its platform.
I use cabal to install Snap and it fails to install semigroups :
% cabal install snap
Resolving dependencies...
Configuring ...
2
votes
1answer
479 views
Haskell Snap: Session example
I've been googling around for an example on how to use Snap session. Nothing so far.
Can someon please point me to an article or something with a simple example of a cookie based session?
A code ...
5
votes
1answer
203 views
Haskell Snap: Application deployment and run-time dependencies
Cleaning the Snap project source directory (removing dist) makes the following complaint:
A web handler threw an exception. Details:
GHC error: can't find a package database at ...
5
votes
1answer
283 views
Haskell, Snap: Simple snaplet construction. When do we use snaplet and when library?
I am trying to understand simple snaplet construction.
Also, when do I actually need to make a snaplet and when a simple side library?
And if I do need one how do I make it out of a library?
For ...
0
votes
2answers
77 views
snaplet-environment always returning fallback
i have a config similar to:
app
{
environments
{
production
{
config-url = "http://www.google.com"
}
}
}
and i'm starting my app like
myapp @production
however,
...
1
vote
1answer
73 views
TimeoutManager uses tryPutMVar to put nothing
In Snap source Snap.Internal.Http.Server.TimeoutManager
------------------------------------------------------------------------------
-- | Register a new connection with the TimeoutManager.
register ...
