[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Detect Browser Dimension

ceedub.industries

12/15/2005 4:53:00 PM

Dear all,

I've just been turned on to Ruby and am trying to code a first Ruby
CGI. I've already hit a brick wall.

I'm looking to see if there is a method similar to PHP's screen.width()
and screen.height() so I can dynamically send different sized pictures
depending on the agent's screen resolution.

-Christopher

3 Answers

konsu

12/15/2005 10:48:00 PM

0

CGI is a code that executes on the server. the server does not know
anything about the client that submits a request unless the client
tells it about itself. there is no way to find out the screen size of
the client's browser unless the client side code submits a request to
the CGI containing the dimentions. the client even can have no browser
at all as far as the CGI script is concerned.

konstantin

Justin Collins

12/16/2005 2:08:00 AM

0

ceedub.industries@gmail.com wrote:
> Dear all,
>
> I've just been turned on to Ruby and am trying to code a first Ruby
> CGI. I've already hit a brick wall.
>
> I'm looking to see if there is a method similar to PHP's screen.width()
> and screen.height() so I can dynamically send different sized pictures
> depending on the agent's screen resolution.
>
> -Christopher
>
>
One way to do this would be to use Javascript's screen.width and
screen.height to set some hidden input values and then read those with
the CGI script.

-Justin


Adam Sroka

12/16/2005 3:26:00 AM

0

Justin Collins wrote:
> ceedub.industries@gmail.com wrote:
>> Dear all,
>>
>> I've just been turned on to Ruby and am trying to code a first Ruby
>> CGI. I've already hit a brick wall.
>>
>> I'm looking to see if there is a method similar to PHP's screen.width()
>> and screen.height() so I can dynamically send different sized pictures
>> depending on the agent's screen resolution.
>>
>> -Christopher
>>
>>
> One way to do this would be to use Javascript's screen.width and
> screen.height to set some hidden input values and then read those with
> the CGI script.
>
> -Justin
>
> .
>
A more modern approach would be to use an AJAX request to send the
values to the server side. You could do this onload(), and then again
onresize() (Supported by all but Opera.) Of course, if you're using
Javascript you could make most adjustments on the page and avoid the
round trip (Unless the issue *requires* a server side adjustment, like
building a graphic on the fly or something.)