Re: [Catalyst] How to detect if the current form request is a post?

2009-04-01 Thread Octavian Rasnita
From: kakim...@tpg.com.au Thank you:) Yep, and I am aware of GET as a form request method and yes, i hate it. Why? I knew that it should be the prefered method for the forms that don't change anything on the server, like a search form. Isn't this true? I ask this because I've seen many

Re: [Catalyst] How to detect if the current form request is a post?

2009-04-01 Thread kakimoto
Read my response. I said 1) POST is the prefered method 2) using GET for a content sensitive site like an online banking site is bad. I m sure you would not want to have people book marking your session ID , or worst, the user credentials used to login and access certain pages which are private

Re: [Catalyst] How to detect if the current form request is a post?

2009-04-01 Thread David Dorward
kakim...@tpg.com.au wrote: Read my response. I said 1) POST is the prefered method Not according to the standard. Everything has its place. 2) using GET for a content sensitive site like an online banking site is bad. I m sure you would not want to have people book marking your session ID

Re: [Catalyst] How to detect if the current form request is a post?

2009-04-01 Thread kakimoto
fromDavid Dorward da...@dorward.me.uk kakim...@tpg.com.au wrote: Read my response. I said 1) POST is the prefered method Not according to the standard. Everything has its place. -- True . That's why I used the word, prefered and not compulsory LOL 2) using GET for a

Re: [Catalyst] How to detect if the current form request is a post?

2009-04-01 Thread David Dorward
kakim...@tpg.com.au wrote: -- So, tell me, would you like to allow people to bookmark transaction ID numbers or attributes which are not permanent (ie will last until a transaction is done)? Why would a user try to bookmark such a page? It doesn't make sense. What harm would it do if they

Re: [Catalyst] How to detect if the current form request is a post?

2009-04-01 Thread kakimoto
Quoting Octavian Rasnita orasn...@gmail.com: From: kakim...@tpg.com.au -- So, tell me, would you like to allow people to bookmark transaction ID numbers or attributes which are not permanent (ie will last until a transaction is done)? Yes. If the users want to do that, it is very good

Re: [Catalyst] Re: How to detect if the current form request is a post?

2009-04-01 Thread kakimoto
Interesting. I will give it some more thought. Thanks :) Quoting kevin montuori montu...@gmail.com: DD == David Dorward da...@dorward.me.uk writes: DD Limiting the side effects of laziness and bad practices with other bad DD practices ... well, that's an interesting argument, I'll give

Re: [Catalyst] DELETE through REST and Jemplate

2009-04-01 Thread Lee Aylward
On Mon, Mar 30, 2009 at 04:24:42PM +0200, Emmanuel Quevillon wrote: Hi, I am playing with REST and Jemplate from the great Tuts from JRock's book. However, I am facing a problem. I understand well how to retrieve data from a REST url and playing Ajax with it, by a GET method. However, I

Re: [Catalyst] DELETE through REST and Jemplate

2009-04-01 Thread J. Shirley
On Wed, Apr 1, 2009 at 3:21 PM, Lee Aylward l...@laylward.com wrote: On Mon, Mar 30, 2009 at 04:24:42PM +0200, Emmanuel Quevillon wrote: Hi, I am playing with REST and Jemplate from the great Tuts from JRock's book. However, I am facing a problem. I understand well how to retrieve