[#3479] Missing .document files for ext/ libraries — Brian Candler <B.Candler@...>

The ri documentation for zlib, strscan and iconv doesn't get built by 'make

12 messages 2004/10/06

[#3492] Re: ANN: Free-form-operators patch — Markus <markus@...>

> In message "Re: ANN: Free-form-operators patch"

15 messages 2004/10/11
[#3493] Re: ANN: Free-form-operators patch — Yukihiro Matsumoto <matz@...> 2004/10/11

Hi,

[#3495] Re: ANN: Free-form-operators patch — Markus <markus@...> 2004/10/12

On Mon, 2004-10-11 at 16:16, Yukihiro Matsumoto wrote:

[#3561] 1.8.2 - what can we do to help? — Dave Thomas <dave@...>

Folks:

23 messages 2004/10/26
[#3562] Re: 1.8.2 - what can we do to help? — Yukihiro Matsumoto <matz@...> 2004/10/27

Hi,

[ ruby-Bugs-999 ] CGI: multipart forms, image buttons, and MSIE Mac OS X

From: noreply@...
Date: 2004-10-29 18:47:25 UTC
List: ruby-core #3639
Bugs item #999, was opened at 2004-10-28 13:18
You can respond by visiting: 
http://rubyforge.org/tracker/?func=detail&atid=1698&aid=999&group_id=426

Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Francis Hwang (francis)
Assigned to: Yukihiro Matsumoto (matz)
Summary: CGI: multipart forms, image buttons, and MSIE Mac OS X

Initial Comment:
If you have a receiving a POST from a form with image buttons, you're supposed to be able to find out which image which was clicked by the user. But I find that if I have a multipart form with image buttons, and the user is using MSIE Mac OS X, that information cannot be retrieved.

Here's the form I wrote:

<form action="/test/upload.rb" method="post"
enctype="multipart/form-data">
 <input name="text" />
 <br />Small: <input type="file" name="small" />
 <br /><input type="image" src="/baseims/submit_button.gif"
name="button" />
</form>

And here's the receiving script I wrote:

puts "Content-type: text/html\n\n"
cgi = CGI.new
puts "<br />text: #{ cgi['text'].readlines.join( "\n" ) }"
puts "<br />button.x: #{ cgi['button.x'].readlines.join( "\n" ) }"
puts "<br />button.y: #{ cgi['button.y'].readlines.join( "\n" ) }"
puts "<br />button: #{ cgi['button'].readlines.join( "\n" ) }"

This works in Safari on OS X, but not MSIE. I also tried a similar PHP script and had no problems.

----------------------------------------------------------------------

>Comment By: Tom Copeland (tom)
Date: 2004-10-29 18:47

Message:
Logged In: YES 
user_id=102

Another email test... this should _not_ result in an email to ruby-core... but will it?

Tom

----------------------------------------------------------------------

Comment By: Tom Copeland (tom)
Date: 2004-10-29 15:01

Message:
Logged In: YES 
user_id=102

A test of the new email "To" field... pls disregard...

Tom

----------------------------------------------------------------------

You can respond by visiting: 
http://rubyforge.org/tracker/?func=detail&atid=1698&aid=999&group_id=426

In This Thread

Prev Next