[#3861] super — ts <decoux@...>
[#3862] Marshal.dump'ing OpenStruct objects — Mauricio Fern疣dez <batsman.geo@...>
Hi,
[#3881] mkdir, mkdir_p in FileUtils and mode — Florian Frank <flori@...>
Hello,
[#3907] Obtaining mode information on an IO object — Jos Backus <jos@...>
The attached patch implements IO#mode. This method returns the mode the IO
Hi,
On Tue, Dec 07, 2004 at 09:25:13AM +0900, nobu.nokada@softhome.net wrote:
Jos Backus wrote:
Hi,
On Thu, Dec 09, 2004 at 10:47:48AM +0900, nobu.nokada@softhome.net wrote:
On Thu, Dec 09, 2004 at 02:40:33PM +0900, James Britt wrote:
[#3914] Pathname needs a makeover — "Berger, Daniel" <Daniel.Berger@...>
Hi all,
[#3922] Incorrect escaping in strings produced by String::inspect — noreply@...
Bugs item #1173, was opened at 2004-12-08 17:35
[#3966] unknown node type 0 — Andrew Walrond <andrew@...>
I still get this happening a lot with my Rubyx linux ruby script.
This is a long standing bug in Ruby, and has been reported hundreds of times
Hi,
[#3975] Patches to test/unit — Ryan Davis <ryand-ruby@...>
I believe these are the minimal patches needed to make it possible to
[#3982] Win32: rb_sys_fail() - errno == 0 — Florian Gro<florgro@...>
Moin!
[#4000] 1.8.2 preview4 — Yukihiro Matsumoto <matz@...>
Hello,
[#4009] cgi.rb -- more GET/POST stuff — mde@...26.com
First of all, I think it would be great, as Eustaquio suggests, to
GETs and POSTs are defined to be fairly different actions. I'd read
-----BEGIN PGP SIGNED MESSAGE-----
Francis Hwang wrote:
-----BEGIN PGP SIGNED MESSAGE-----
First of all, the entire discussion of when GET is appropriate
mde@state26.com wrote:
[#4027] Allowing custom number literal suffixes? — Florian Gro<florgro@...>
Moin!
Hi,
Mathieu Bouchard wrote:
Mathieu Bouchard wrote:
I'm not sure I would advocate making Ruby's grammar even more
>
Brent Roman wrote:
> Brent Roman wrote:
Brent Roman wrote:
> Florian Gross wrote:
Mathieu Bouchard wrote:
Mathieu Bouchard wrote:
[#4033] Garbage collection trouble — Christian Neukirchen <chneukirchen@...>
Hello,
>>>>> "C" == Christian Neukirchen <chneukirchen@gmail.com> writes:
ts <decoux@moulon.inra.fr> writes:
>>>>> "C" == Christian Neukirchen <chneukirchen@gmail.com> writes:
[#4040] Extensions, Internal — Jgen Mangler <juergen.mangler@...>
Hi,
Re: [PATCH] cgi.rb -- more GET/POST stuff
Francis Hwang wrote: > GETs and POSTs are defined to be fairly different actions. I'd read > http://www.w3.org/DesignIssues/Axioms.html, which is stated to be Tim > Berners-Lee's personal opinion, but I suspect is fairly close to how > many others in the HTTP standards community see it. GETs are for > requests that will not change the resource in question (and can be > safely bookmarked), POSTs are for requests that will change something > (and should not be bookmarked). <snip/> I agree with Francis' point, and dislike the mixing of get and post semantics in the same request. It seems that if the request method is POST, then one should not expect to find the same data structures and data as if the request method were GET. In the case of a POST request, the "query string" is no more than a segment of a funky URL; it only functions as a parameter set when calling via GET. I can see how it could be useful to mix the two, but it strikes me as a bad hack, something that inexperienced Web developers started exploiting when they found that their language of choice allowed this. I understand wanting to help out people migrating to Ruby, but they are going to encounter a number of things that are just plain different (at least I hope that's the case). In general, I find arguments by language comparison unpersuasive; saying that PHP allows for something is not terribly compelling. PHP allows for all sorts of things I hope never to see in Ruby. Allowing multiple param hashes is perhaps a reasonable option, provided that the default hash adheres to whatever RFC (or equivalent) applies. For example, if I try to mix post and get (so to speak; browsers only do one or the other), and make a post request, and inspect the default params hash (as apposed to post_params or get_params), I would not expect to see any so-called query string data in there. The QUERY_STRING variable is undefined in a POST (I think; this is my argument at least); there's just the target URL, which may or may not just happen to have ampersands and equal signs in it. Those who like the option of mixing the two would still have the choice, distasteful as that may be. (Of course, they have have the choice now, as hand-parsing the path info from a post URL is pretty trivial; adding it in as a feature is just a freebie. Probably something that belongs in a 'php.rb' module. ) James http://mirrors.webthing.com/view=Noframes/www.w3.org/2001/tag/doc/whenToUseGet.html http://www.htmlhelp.com/faq/cgifaq.2.html#8 http://cgi-spec.golux.com/ncsa/forms.html