Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-05 Thread Edsko de Vries
On Wed, Jun 04, 2008 at 10:30:49PM -0400, Paul L wrote: > Pardon me to hijack this thread, but I have an idea to build a > different kind of Web Framework and am not sure if somebody has > already done it. Have a look at iTasks, written in Clean. Not *quite* Haskell, I know, but close enough. I do

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-04 Thread Brandon S. Allbery KF8NH
On 2008 Jun 4, at 22:30, Paul L wrote: The server is then very much like a VM or an interpreter of an embedded language, with execution stacks entirely encoded and stored in each HTML page sent to the user and back from the user as an encoded URL or form data. So the server is entirely stateles

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-04 Thread Paul L
Pardon me to hijack this thread, but I have an idea to build a different kind of Web Framework and am not sure if somebody has already done it. The idea is to take REST further: every HTML page you see is a program in its running state (as a continuation monad). Each click on its link or form subm

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-04 Thread John Goerzen
Sterling Clover wrote: >> hvac sounds interesting but at that time at least it was not clear >> whether it was stable or would continue to be maintained. >> >> xhtml and HStringTemplate were overkill for what I wanted, so I >> wound up >> just using the FastCGI and CGI toolkits themselves. They

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-04 Thread Don Stewart
s.clover: > > > >hvac sounds interesting but at that time at least it was not clear > >whether it was stable or would continue to be maintained. > > > >xhtml and HStringTemplate were overkill for what I wanted, so I > >wound up > >just using the FastCGI and CGI toolkits themselves. They are > >s

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-04 Thread Sterling Clover
hvac sounds interesting but at that time at least it was not clear whether it was stable or would continue to be maintained. xhtml and HStringTemplate were overkill for what I wanted, so I wound up just using the FastCGI and CGI toolkits themselves. They are surprisingly nice, and with a lit

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-04 Thread John Goerzen
Duncan Coutts wrote: > On Tue, 2008-06-03 at 10:23 -0700, Don Stewart wrote: >> A new version of happs was written on a Monday a couple of months ago, >> using fastcgi and takusen. We're running it at galois, and you can >> find the code on code.haskell.org/hpaste. So not quite what you wanted, >>

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-03 Thread Duncan Coutts
On Tue, 2008-06-03 at 10:23 -0700, Don Stewart wrote: > A new version of happs was written on a Monday a couple of months ago, > using fastcgi and takusen. We're running it at galois, and you can > find the code on code.haskell.org/hpaste. So not quite what you wanted, > but another data point. T

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-03 Thread Don Stewart
Ah yes, the url was incorrect. Well spotted. tphyahoo: > note to the curious that this is a git and not a darcs repo > > git clone http://code.haskell.org/hpaste.git > > thomas. > > 2008/6/3 Don Stewart <[EMAIL PROTECTED]>: > > A new version of happs was written on a Monday a couple of months a

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-03 Thread Thomas Hartman
note to the curious that this is a git and not a darcs repo git clone http://code.haskell.org/hpaste.git thomas. 2008/6/3 Don Stewart <[EMAIL PROTECTED]>: > A new version of happs was written on a Monday a couple of months ago, > using fastcgi and takusen. We're running it at galois, and you can

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-03 Thread Don Stewart
A new version of happs was written on a Monday a couple of months ago, using fastcgi and takusen. We're running it at galois, and you can find the code on code.haskell.org/hpaste. So not quite what you wanted, but another data point. -- Don tphyahoo: > Note however that hpaste runs off an earlier

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-03 Thread Thomas Hartman
Note however that hpaste runs off an earlier version of HAppS, which has changed radically from v8 to v9. I seem to remember discussion of porting hpaste to the latest HAppS as a demo app... are there still plans to do that? Thomas. 2008/6/2 Don Stewart <[EMAIL PROTECTED]>: > aditya_siram: >> >>

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-02 Thread Keith Fahlgren
On 6/2/08 10:21 AM, Don Stewart wrote: aditya_siram: I am building a web-app that, in broad strokes, allows a leader to assign tasks to team members and allows team members to accept/reject/pick tasks that they want to do. I really like Haskell and I would like to use it to implement the solu

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-02 Thread Don Stewart
aditya_siram: > > I am building a web-app that, in broad strokes, allows a leader to > assign tasks to team members and allows team members to > accept/reject/pick tasks that they want to do. > > I really like Haskell and I would like to use it to implement the > solution. Are frameworks like Ha

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-02 Thread Marc Weber
On Mon, Jun 02, 2008 at 09:37:11AM -0500, Aditya Siram wrote: > > I am building a web-app that, in broad strokes, allows a leader to assign > tasks to team members and allows team members to accept/reject/pick tasks > that they want to do. > > I really like Haskell and I would like to use it t

Re: [Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-02 Thread Daniel Patterson
You definitely could use HAppS for that, but considering that it sounds like a pretty small/lightweight app, you might want to check out hvac ( http://fmapfixreturn.wordpress.com/2008/03/23/ ), which is a newer (but still surprisingly full-featured) web framework. It is pretty lightweight, and migh

[Haskell-cafe] What is the maturity of Haskell Web Frameworks

2008-06-02 Thread Aditya Siram
I am building a web-app that, in broad strokes, allows a leader to assign tasks to team members and allows team members to accept/reject/pick tasks that they want to do. I really like Haskell and I would like to use it to implement the solution. Are frameworks like Happs ready? Not so much in