[Haskell-cafe] Possibilities for website construction using Haskell?

2008-01-13 Thread Hugh Perkins
What are the possibilities for website construction using Haskell? ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Possibilities for website construction using Haskell?

2008-01-13 Thread Derek Elkins
On Sun, 2008-01-13 at 20:59 +0100, Hugh Perkins wrote: What are the possibilities for website construction using Haskell? http://hackage.haskell.org/packages/archive/pkg-list.html http://www.haskell.org/haskellwiki/Applications_and_libraries/Web_programming I'm sure you can figure it out from

Re: [Haskell-cafe] Possibilities for website construction using Haskell?

2008-01-13 Thread Hugh Perkins
On Jan 13, 2008 8:13 PM, Derek Elkins [EMAIL PROTECTED] wrote: http://www.haskell.org/haskellwiki/Applications_and_libraries/Web_programming Good link. Lots of options apparently :-) I'm sure you can figure it out from here, or at least come back with a more specific question. Which ones

Re: [Haskell-cafe] Possibilities for website construction using Haskell?

2008-01-13 Thread Don Stewart
hughperkins: On Jan 13, 2008 8:13 PM, Derek Elkins [EMAIL PROTECTED] wrote: http://www.haskell.org/haskellwiki/Applications_and_libraries/Web_programming Good link. Lots of options apparently :-) I'm sure you can figure it out from here, or at least come back with a more specific

Re: [Haskell-cafe] Possibilities for website construction using Haskell?

2008-01-13 Thread Neil Mitchell
Hi Which ones are most widely used? HWS and Wash Server Pages sounds interesting? Hoogle (http://haskell.org/hoogle) uses Haskell Source Extensions (http://www.cs.chalmers.se/~d00nibro/haskell-src-exts/) My academic website (http://www-users.cs.york.ac.uk/~ndm/) uses some custom code

Re: [Haskell-cafe] Possibilities for website construction using Haskell?

2008-01-13 Thread Don Stewart
ndmitchell: Hi Which ones are most widely used? HWS and Wash Server Pages sounds interesting? Hoogle (http://haskell.org/hoogle) uses Haskell Source Extensions (http://www.cs.chalmers.se/~d00nibro/haskell-src-exts/) I thought haskell-src-exts was an extended Language.Haskell

Re: [Haskell-cafe] Possibilities for website construction using Haskell?

2008-01-13 Thread Neil Mitchell
Hi Hoogle (http://haskell.org/hoogle) uses Haskell Source Extensions (http://www.cs.chalmers.se/~d00nibro/haskell-src-exts/) I thought haskell-src-exts was an extended Language.Haskell parser? Do you mean HSP -- haskell server pages? No, I mean haskell-src-exts. It's a translator from

Re: [Haskell-cafe] Possibilities for website construction using Haskell?

2008-01-13 Thread Don Stewart
ndmitchell: Hi Hoogle (http://haskell.org/hoogle) uses Haskell Source Extensions (http://www.cs.chalmers.se/~d00nibro/haskell-src-exts/) I thought haskell-src-exts was an extended Language.Haskell parser? Do you mean HSP -- haskell server pages? No, I mean haskell-src-exts. It's

Re: [Haskell-cafe] Possibilities for website construction using Haskell?

2008-01-13 Thread Anton van Straaten
Don Stewart wrote: Note that using string overloading we can remove some of the toHtml's... {-# LANGUAGE OverloadedStrings #-} instance IsString Html where fromString = toHtml main = do time - getClockTime putStrLn . prettyHtml $ (header (thetitle testing))