Re: [Haskell-cafe] CGI module almost useless

2005-06-11 Thread Sven Panne

[ Moving this thread slowly to the libraries list... ]

Bjorn Bringert wrote:

John Goerzen wrote:


My apologies if this sounds like a bit of a rant; I know people put good
effort into this, but

The Network.CGI module in fptools (and GHC) is not very useful.  I think
that it should be removed or re-tooled.  Here are the main problems with
it:

1. It does not permit custom generation of output headers.  Thus the CGI
script cannot do things like set cookies, manage HTTP auth, etc.

2. It does not permit generation of anything other than text/html
documents.  Many CGI scripts are used to manage other types of
documents.  Notably this makes it incompatible with serving up even
basic things like stylesheets and JPEGs.

3. It does not permit the use of any custom design to serve up HTML,
forcing *everything* to go through Text.Html.  This makes it impossible
to do things like serving up HTML files from disk.

4. There is documentation in the code, but it is as comments only, and
doesn't show up in the Haddock-generated GHC library reference.  (Should
be an easy fix)

5. It does not appear to support file uploads in any sane fashion

Is there a better CGI module out there somewhere that I'm missing, or
should I just set about writing my own?



I wrote this module (based on the Network.CGI code) a while ago:

http://www.dtek.chalmers.se/~d00bring/darcs/blob/lib/Network/SimpleCGI.hs

I don't remember what it does really, but I think it solves issues 1,2,3 
and some of 4.


Although (among other people) I did some hacking in this module in the remote
past, I don't have the time and energy to maintain and/or extend this module
anymore. It would be really great if somebody more actively working in this
area could take the spec lead here and push the development via discussions
here on this library list. John? Björn? A few general design thoughts:

 * To keep people's mind sane, backwards compatibility with the existing
   Network.CGI would be a very worthy goal.

 * Don't use any Haskell language extension available. :-) Currently the
   module can be used e.g. by Hugs in H98 mode, and keeping it that way
   would again be something very desirable.

Cheers,
   S.

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] CGI module almost useless

2005-06-03 Thread Bjorn Bringert

John Goerzen wrote:

My apologies if this sounds like a bit of a rant; I know people put good
effort into this, but

The Network.CGI module in fptools (and GHC) is not very useful.  I think
that it should be removed or re-tooled.  Here are the main problems with
it:

1. It does not permit custom generation of output headers.  Thus the CGI
script cannot do things like set cookies, manage HTTP auth, etc.

2. It does not permit generation of anything other than text/html
documents.  Many CGI scripts are used to manage other types of
documents.  Notably this makes it incompatible with serving up even
basic things like stylesheets and JPEGs.

3. It does not permit the use of any custom design to serve up HTML,
forcing *everything* to go through Text.Html.  This makes it impossible
to do things like serving up HTML files from disk.

4. There is documentation in the code, but it is as comments only, and
doesn't show up in the Haddock-generated GHC library reference.  (Should
be an easy fix)

5. It does not appear to support file uploads in any sane fashion

Is there a better CGI module out there somewhere that I'm missing, or
should I just set about writing my own?


I wrote this module (based on the Network.CGI code) a while ago:

http://www.dtek.chalmers.se/~d00bring/darcs/blob/lib/Network/SimpleCGI.hs

I don't remember what it does really, but I think it solves issues 1,2,3 
and some of 4.


/Björn
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] CGI module almost useless

2005-06-01 Thread Josef Svenningsson
Well, I haven't used Arrows-minus-arr that much but I did cook up such
a library some time ago. Mostly because I had a friend who was
interested in using arrows for a data type which didn't have arr. And
indeed there are several interesting types which lack arr but make
perfect arrows otherwise.

Throwing out arr has a quite substantial impact on the design of the
library. The original arrows library used arr pretty much everywhere
to define various derived functions. One has to be much more
disciplines when restricting oneself. Another thing is the arrows
notation. It would take some work to translate it into
arrows-minus-arr. But it is really painful to program with the new
library without the notation which is the reason I haven't done much
programming with it.

/Josef

On 6/1/05, Conal Elliott <[EMAIL PROTECTED]> wrote:
> I'd like to hear more about people using Arrows-minus-arr, as I ran into
> the same in a project I'm working on for interactive construction of
> GUI-wrapped functional values & code.
> 
> - Conal
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Shaw
> Sent: Wednesday, June 01, 2005 10:55 AM
> To: John Goerzen
> Cc: haskell-cafe@haskell.org
> Subject: Re: [Haskell-cafe] CGI module almost useless
> 
> Hello,
> 
> I have done all of those things in WASH. But, don't let that stop you
> from writing something better :) I think some people started a project
> to write a CGI interface based on a 'Category' -- where a 'Category'
> is like an 'Arrow' without the 'pure/arr' function...
> 
> Jeremy Shaw.
>
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


RE: [Haskell-cafe] CGI module almost useless

2005-06-01 Thread Conal Elliott
I'd like to hear more about people using Arrows-minus-arr, as I ran into
the same in a project I'm working on for interactive construction of
GUI-wrapped functional values & code.

- Conal

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Shaw
Sent: Wednesday, June 01, 2005 10:55 AM
To: John Goerzen
Cc: haskell-cafe@haskell.org
Subject: Re: [Haskell-cafe] CGI module almost useless

Hello,

I have done all of those things in WASH. But, don't let that stop you
from writing something better :) I think some people started a project
to write a CGI interface based on a 'Category' -- where a 'Category'
is like an 'Arrow' without the 'pure/arr' function...

Jeremy Shaw.

At Wed, 1 Jun 2005 17:44:38 + (UTC),
John Goerzen wrote:
> 
> My apologies if this sounds like a bit of a rant; I know people put
good
> effort into this, but
> 
> The Network.CGI module in fptools (and GHC) is not very useful.  I
think
> that it should be removed or re-tooled.  Here are the main problems
with
> it:
> 
> 1. It does not permit custom generation of output headers.  Thus the
CGI
> script cannot do things like set cookies, manage HTTP auth, etc.
> 
> 2. It does not permit generation of anything other than text/html
> documents.  Many CGI scripts are used to manage other types of
> documents.  Notably this makes it incompatible with serving up even
> basic things like stylesheets and JPEGs.
> 
> 3. It does not permit the use of any custom design to serve up HTML,
> forcing *everything* to go through Text.Html.  This makes it
impossible
> to do things like serving up HTML files from disk.
> 
> 4. There is documentation in the code, but it is as comments only, and
> doesn't show up in the Haddock-generated GHC library reference.
(Should
> be an easy fix)
> 
> 5. It does not appear to support file uploads in any sane fashion
> 
> Is there a better CGI module out there somewhere that I'm missing, or
> should I just set about writing my own?
> 
> 
> ___
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] CGI module almost useless

2005-06-01 Thread Niklas Broberg
Shameless plug warning.

> >From what I can tell, there are two problems with WASH:
> 
> 1) Everything must be done the WASH way
> 
> 2) WASH is mostly broken with GHC 6.4
> 
> Let me elaborate a bit on #1.
> 
> Let's say I have a CGI interface pre-defined; I take certain parameters
> from a GET request and do certain things, generating certain headers no
> the result.
> 
> WASH is all centered around generating its own forms, naming its own
> fields, passing around its own state.  It's not at all clear how to
> handle this myself, as I would with Perl or PHP.
> 
> If there is a way, please explain it and I'll be happy :-)

Perhaps you want to have a look at HSP? :-)
It doesn't solve all your problems though; it still requires the
output to be text/html (or text/xhtml rather), but hopefullly a future
incarnation will be more general.

Anyway, you can get it from

http://www.cs.chalmers.se/~d00nibro/hsp

Feedback greatly appreciated. :-)

/Niklas
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] CGI module almost useless

2005-06-01 Thread John Goerzen
On Wed, Jun 01, 2005 at 10:54:54AM -0700, Jeremy Shaw wrote:
> Hello,
> 
> I have done all of those things in WASH. But, don't let that stop you
> from writing something better :) I think some people started a project
> to write a CGI interface based on a 'Category' -- where a 'Category'
> is like an 'Arrow' without the 'pure/arr' function...

>From what I can tell, there are two problems with WASH:

1) Everything must be done the WASH way

2) WASH is mostly broken with GHC 6.4

Let me elaborate a bit on #1.

Let's say I have a CGI interface pre-defined; I take certain parameters
from a GET request and do certain things, generating certain headers no
the result.

WASH is all centered around generating its own forms, naming its own
fields, passing around its own state.  It's not at all clear how to
handle this myself, as I would with Perl or PHP.

If there is a way, please explain it and I'll be happy :-)

I think that the GHC 6.4 brokenness is fixable, but it makes me nervous
that upstream has said nothing about it to date.

-- John
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] CGI module almost useless

2005-06-01 Thread Jeremy Shaw
Hello,

I have done all of those things in WASH. But, don't let that stop you
from writing something better :) I think some people started a project
to write a CGI interface based on a 'Category' -- where a 'Category'
is like an 'Arrow' without the 'pure/arr' function...

Jeremy Shaw.

At Wed, 1 Jun 2005 17:44:38 + (UTC),
John Goerzen wrote:
> 
> My apologies if this sounds like a bit of a rant; I know people put good
> effort into this, but
> 
> The Network.CGI module in fptools (and GHC) is not very useful.  I think
> that it should be removed or re-tooled.  Here are the main problems with
> it:
> 
> 1. It does not permit custom generation of output headers.  Thus the CGI
> script cannot do things like set cookies, manage HTTP auth, etc.
> 
> 2. It does not permit generation of anything other than text/html
> documents.  Many CGI scripts are used to manage other types of
> documents.  Notably this makes it incompatible with serving up even
> basic things like stylesheets and JPEGs.
> 
> 3. It does not permit the use of any custom design to serve up HTML,
> forcing *everything* to go through Text.Html.  This makes it impossible
> to do things like serving up HTML files from disk.
> 
> 4. There is documentation in the code, but it is as comments only, and
> doesn't show up in the Haddock-generated GHC library reference.  (Should
> be an easy fix)
> 
> 5. It does not appear to support file uploads in any sane fashion
> 
> Is there a better CGI module out there somewhere that I'm missing, or
> should I just set about writing my own?
> 
> 
> ___
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe