
From: glasgow-haskell-users-bounces@haskell.org [mailto:glasgow-haskell-users-bounces@haskell.org] On Behalf Of ???
help haskell for web code
http://www.haskell.org/haskellwiki/Applications_and_libraries/Web_programmin... Try a few of these out (whatever meets your needs). For web apps WASH and HAppS seem popular. Feel free to ask the haskell-café list for further help. Alistair ***************************************************************** Confidentiality Note: The information contained in this message, and any attachments, may contain confidential and/or privileged material. It is intended solely for the person(s) or entity to which it is addressed. Any review, retransmission, dissemination, or taking of any action in reliance upon this information by persons or entities other than the intended recipient(s) is prohibited. If you received this in error, please contact the sender and delete the material from any computer. *****************************************************************

On 7/17/07, Bayley, Alistair
From: glasgow-haskell-users-bounces@haskell.org [mailto:glasgow-haskell-users-bounces@haskell.org] On Behalf Of ???
help haskell for web code
http://www.haskell.org/haskellwiki/Applications_and_libraries/Web_programmin...
Try a few of these out (whatever meets your needs). For web apps WASH and HAppS seem popular. Feel free to ask the haskell-café list for further help.
I wonder why 'we' aren't pushing things like this big time. When Ruby took off, more than anything else it was because of Rails. Web programming is something 'the kids' can really get into, and it caused Ruby to explode into the mainstream geek consciousness. Maybe the Haskell community should push something like Happs or Wash in the same way. Martin

Haskell On Rails
-----邮件原件-----
发件人: Martin Coxall [mailto:pseudo.meta@gmail.com]
发送时间: 2007年7月17日 16:44
收件人: Bayley, Alistair
抄送: 王清军; glasgow-haskell-users@haskell.org; haskell Café
主题: Re: [Haskell-cafe] RE: haskell for web
On 7/17/07, Bayley, Alistair
From: glasgow-haskell-users-bounces@haskell.org [mailto:glasgow-haskell-users-bounces@haskell.org] On Behalf Of ???
help haskell for web code
http://www.haskell.org/haskellwiki/Applications_and_libraries/Web_prog ramming
Try a few of these out (whatever meets your needs). For web apps WASH and HAppS seem popular. Feel free to ask the haskell-café list for further help.
I wonder why 'we' aren't pushing things like this big time. When Ruby took off, more than anything else it was because of Rails. Web programming is something 'the kids' can really get into, and it caused Ruby to explode into the mainstream geek consciousness. Maybe the Haskell community should push something like Happs or Wash in the same way. Martin Powered by MessageSoft SMG SPAM, virus-free and secure email Powered by MessageSoft SMG SPAM, virus-free and secure email

why 'Haskell On Rails' ?
-----邮件原件-----
发件人: Martin Coxall [mailto:pseudo.meta@gmail.com]
发送时间: 2007年7月17日 16:44
收件人: Bayley, Alistair
抄送: 王清军; glasgow-haskell-users@haskell.org; haskell Café
主题: Re: [Haskell-cafe] RE: haskell for web
On 7/17/07, Bayley, Alistair
From: glasgow-haskell-users-bounces@haskell.org [mailto:glasgow-haskell-users-bounces@haskell.org] On Behalf Of ???
help haskell for web code
http://www.haskell.org/haskellwiki/Applications_and_libraries/Web_prog ramming
Try a few of these out (whatever meets your needs). For web apps WASH and HAppS seem popular. Feel free to ask the haskell-café list for further help.
I wonder why 'we' aren't pushing things like this big time. When Ruby took off, more than anything else it was because of Rails. Web programming is something 'the kids' can really get into, and it caused Ruby to explode into the mainstream geek consciousness. Maybe the Haskell community should push something like Happs or Wash in the same way. Martin Powered by MessageSoft SMG SPAM, virus-free and secure email Powered by MessageSoft SMG SPAM, virus-free and secure email _______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe Powered by MessageSoft SMG SPAM, virus-free and secure email Powered by MessageSoft SMG SPAM, virus-free and secure email

On 7/17/07, Martin Coxall
I wonder why 'we' aren't pushing things like this big time. When Ruby took off, more than anything else it was because of Rails. Web programming is something 'the kids' can really get into, and it caused Ruby to explode into the mainstream geek consciousness.
Maybe the Haskell community should push something like Happs or Wash in the same way.
I'm gonna agree with this. Web applications are really easy to write, and easy to publish, searchable in Google etc. It's also a big business requirement. The difference in value between a script that does something fancy, and a webpage that does something less fancy, but is easy to use, is enormous.

On Wed, Jul 18, 2007 at 12:17:12AM +0200, Hugh Perkins wrote:
On 7/17/07, Martin Coxall
wrote: I wonder why 'we' aren't pushing things like this big time. When Ruby took off, more than anything else it was because of Rails.
i agree that web programming is a domain that cannot be ignored i have wondered what it would take to get a mod_haskell for apache wash looks interesting, but very few companies and isps are going to run a niche fastcgi platform (even those already running rails). apache is still the de facto open serving platform.

On 7/18/07, brad clawsie
i have wondered what it would take to get a mod_haskell for apache
If you make a mod_haskell, please make sure it's secure. It's insanely hard to convince web hosting companies to add support for new mod_<myfavoritelanguagehere>. If the mod is secure and easy to install and maintain, that task becomes orders of magnitude easier.

On Wed, Jul 18, 2007 at 12:35:23AM +0200, Hugh Perkins wrote:
If you make a mod_haskell, please make sure it's secure. It's insanely hard to convince web hosting companies to add support for new mod_<myfavoritelanguagehere>.
i personally don't have any plans on creating mod_haskell, it is beyond my skillset and time allowance.

On Jul 18, 2007, at 0:27 , brad clawsie wrote:
On Wed, Jul 18, 2007 at 12:17:12AM +0200, Hugh Perkins wrote:
On 7/17/07, Martin Coxall
wrote: I wonder why 'we' aren't pushing things like this big time. When Ruby took off, more than anything else it was because of Rails.
i agree that web programming is a domain that cannot be ignored
i have wondered what it would take to get a mod_haskell for apache
wash looks interesting, but very few companies and isps are going to run a niche fastcgi platform (even those already running rails). apache is still the de facto open serving platform.
If you use Network.FastCGI, and compile (linking statically is a good idea as well) on your own machine, you can run Haskell code on any web host that supports FastCGI. That's what I do with Hope, http:// hope.bringert.net/ /Björn

On Tue, Jul 17, 2007 at 03:27:20PM -0700, brad clawsie wrote:
On Wed, Jul 18, 2007 at 12:17:12AM +0200, Hugh Perkins wrote:
On 7/17/07, Martin Coxall
wrote: I wonder why 'we' aren't pushing things like this big time. When Ruby took off, more than anything else it was because of Rails.
i agree that web programming is a domain that cannot be ignored
i have wondered what it would take to get a mod_haskell for apache
Asking google and the wiki search? http://haskell.org/haskellwiki/News/1999 http://losser.st-lab.cs.uu.nl/mod_has (v0.1.7, 14 January 2000) But I haven't checked how up to date those sources are. Marc Weber

On 18-jul-2007, at 14:09, Marc Weber wrote:
On Tue, Jul 17, 2007 at 03:27:20PM -0700, brad clawsie wrote:
On Wed, Jul 18, 2007 at 12:17:12AM +0200, Hugh Perkins wrote:
On 7/17/07, Martin Coxall
wrote: I wonder why 'we' aren't pushing things like this big time. When Ruby took off, more than anything else it was because of Rails.
i agree that web programming is a domain that cannot be ignored
i have wondered what it would take to get a mod_haskell for apache
Asking google and the wiki search? http://haskell.org/haskellwiki/News/1999 http://losser.st-lab.cs.uu.nl/mod_has (v0.1.7, 14 January 2000)
But I haven't checked how up to date those sources are.
Not at all. Eelco has repeatedly admitted these sources have greatly bitrotted, and are in dire need of resuscitation. With regards, Arthur. -- /\ / | arthurvl@cs.uu.nl | Work like you don't need the money /__\ / | A friend is someone with whom | Love like you have never been hurt / \/__ | you can dare to be yourself | Dance like there's nobody watching
participants (8)
-
Arthur van Leeuwen
-
Bayley, Alistair
-
Bjorn Bringert
-
brad clawsie
-
Hugh Perkins
-
Marc Weber
-
Martin Coxall
-
王清军