[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

ruby-lang web site & ie

Christoph

11/13/2003 3:48:00 PM

Hi,

hi I'd like to point out that IE has problems in rending the ruby-lang
web site. It look just fine under windows with mozilla (firebird)
(and linux of course) and many if not (almost) all visitors of Ruby's
website are probably aware that IE isn't such a great browser but
still IE is the dominant web browser.


/Christoph


6 Answers

Daniel Carrera

11/13/2003 4:03:00 PM

0

So you are suggesting that we put up a link to the Mozilla website?
Great idea!

On Fri, Nov 14, 2003 at 12:47:44AM +0900, Christoph wrote:
> Hi,
>
> hi I'd like to point out that IE has problems in rending the ruby-lang
> web site. It look just fine under windows with mozilla (firebird)
> (and linux of course) and many if not (almost) all visitors of Ruby's
> website are probably aware that IE isn't such a great browser but
> still IE is the dominant web browser.
>
>
> /Christoph
>

--
Daniel Carrera | Aleph-0 bottles of beer on the wall, Aleph-0 bottles
PhD student. | of beer. Take one down, pass it around, Aleph-0
Math Dept. | bottles of beer on he wall...
UMD, | http://mathworld.wolfram.com/Al...

Wesley Moxam

11/13/2003 4:13:00 PM

0

The site looks the same to me in both IE and Mozilla Firebird ....
IE version: 6.0.2800.1106
Firebird version : 0.7

-- Wes

Daniel Carrera wrote:

>So you are suggesting that we put up a link to the Mozilla website?
>Great idea!
>
>On Fri, Nov 14, 2003 at 12:47:44AM +0900, Christoph wrote:
>
>
>>Hi,
>>
>>hi I'd like to point out that IE has problems in rending the ruby-lang
>>web site. It look just fine under windows with mozilla (firebird)
>>(and linux of course) and many if not (almost) all visitors of Ruby's
>>website are probably aware that IE isn't such a great browser but
>>still IE is the dominant web browser.
>>
>>
>>/Christoph
>>
>>
>>
>
>
>



Ian Hobson

11/13/2003 6:39:00 PM

0

In message <3FB3AEF7.5050401@klickit.com>, Wesley Moxam
<wmoxam@klickit.com> writes
>The site looks the same to me in both IE and Mozilla Firebird ....
>IE version: 6.0.2800.1106
I just applied all the latest patches to this version of IE, and windows
2K
and it is now so broken it can not handle any secure site.

Anyone else with similar problems?

Anyone with an idea of how to get IE working again?

Had to install Netscrape just to config my firewall and ISP's update
page.

Regards

Ian
--
Ian - posting to a Newsgroup. Please remove everything to reply.

Daniel Carrera

11/13/2003 8:57:00 PM

0

On Fri, Nov 14, 2003 at 04:53:49AM +0900, Christoph wrote:

> Daniel Carrera wrote:
>
> ...
> > So you are suggesting that we put up a link to the Mozilla website?
> > Great idea!
>
> Yes, most definitely:-)
...
> It seems that IE (on my XP lapttop at least:-) still has problems
> with absolute positioning

Clearly IE is not ready for the desktop.

Regardless, absolute rendering is evil and it should be fixed. It is a
basic accessibility guideline that rendering should be proportional (ie.
use "em" or %). If you use absolute rendering the page will only look
right for people who have the same monitor size as the dude or dudette who
wrote the page.

Cheers,
--
Daniel Carrera | Aleph-0 bottles of beer on the wall, Aleph-0 bottles
PhD student. | of beer. Take one down, pass it around, Aleph-0
Math Dept. | bottles of beer on he wall...
UMD, | http://mathworld.wolfram.com/Al...

Eric Hodel

11/18/2003 9:50:00 PM

0

Daniel Carrera (dcarrera@math.umd.edu) wrote:

> Regardless, absolute rendering is evil and it should be fixed. It is a
> basic accessibility guideline that rendering should be proportional (ie.
> use "em" or %). If you use absolute rendering the page will only look
> right for people who have the same monitor size as the dude or dudette who
> wrote the page.

Absolute positioning is not evil.

div.sidebar { position: absolute; top: 130px; left: 0px; width: 129px; }

This will make column's width is as wide as the image above it. Using
proportional rendering would not achieve acceptable rendering as easily.

Second, this uses the same technique as below, allowing non-visual users
to more quickly skip to content.

#header { position: absolute; top: 0; left: 0; width: 100%; height: 2em; }
#main { margin-top: 2em; }
#footer { ... }

<div id="main"> ... </div>
<div id="header"> ... </div>
<div id="footer"> ... </div>

This setup is *more* accessible than a non-positioned page, especially
in the absecence of CSS support. Non-visual users skip straight to the
content, and don't have to wade through the massively nested ul stuck in
#header to do nested menus.

--
Eric Hodel - drbrain@segment7.net - http://se...
All messages signed with fingerprint:
FEC2 57F1 D465 EB15 5D6E 7C11 332A 551C 796C 9F04

Daniel Carrera

11/18/2003 9:56:00 PM

0

On Tue, Nov 18, 2003 at 01:49:29PM -0800, Eric Hodel wrote:

<topic="absolute positioning" />

> Second, this uses the same technique as below, allowing non-visual users
> to more quickly skip to content.
[snip]
> <div id="main"> ... </div>
> <div id="header"> ... </div>
> <div id="footer"> ... </div>
>
> This setup is *more* accessible than a non-positioned page,

What does this have to do with absolute positioning. XHTML, <div> and CSS
are good for non-visual users. Absolute positining adds nothing to
non-visual users. Don't mix these up.

--
Daniel Carrera | Top 100 things you don't want the sysadmin to say...
PhD student. |
Math Dept. UMD | 19. hey, what does mkfs do?