Re: [racket-dev] Formlets and POST

2012-02-20 Thread Norman Gray
Jay, hello. On 2012 Feb 20, at 17:51, Jay McCarthy wrote: > I just pushed something to address this. > > It adds a keyword argument to send/formlet to control the method and > defaults it to POST. That sounds like an excellent solution. Best wishes, Norman -- Norman Gray : http://nxg.me

Re: [racket-dev] Formlets and POST

2012-02-20 Thread Jay McCarthy
I just pushed something to address this. It adds a keyword argument to send/formlet to control the method and defaults it to POST. Jay On Sun, Feb 19, 2012 at 7:42 AM, Norman Gray wrote: > > Greetings. > > Web-server formlets currently send their form input back to the server via an > HTTP GET

[racket-dev] Formlets and POST

2012-02-19 Thread Norman Gray
Greetings. Web-server formlets currently send their form input back to the server via an HTTP GET request. They should probably generate a form which uses HTTP POST instead. There are two problems with using GET for this. 1. If there's any sensitive information in the form, such as a passwor