POV-Ray : Newsgroups : povray.general : New POV-Ray webpage Server Time
7 Aug 2024 01:18:13 EDT (-0400)
  New POV-Ray webpage (Message 111 to 120 of 147)  
<<< Previous 10 Messages Goto Latest 10 Messages Next 10 Messages >>>
From: Thorsten Froehlich
Subject: Re: New POV-Ray webpage
Date: 17 Jul 2002 06:21:32
Message: <3d35452c$1@news.povray.org>
In article <slr### [at] zeroppsorguk> , Steve 
<ste### [at] zeroppsuklinuxnet>  wrote:

> You mean like enforcing that mail and web be on the same ISP connection?

I am not aware of Mozilla enfocing that.

    Thorsten

____________________________________________________
Thorsten Froehlich, Duisburg, Germany
e-mail: tho### [at] trfde

Visit POV-Ray on the web: http://mac.povray.org


Post a reply to this message

From: Antti Arola
Subject: Re: New POV-Ray webpage
Date: 17 Jul 2002 07:06:21
Message: <slrnajajs7.d3t.aea@skavara.ese>
On Wed, 17 Jul 2002 12:01:23 +0200, Thorsten Froehlich <tho### [at] trfde> wrote:
> In article <MPG.179ed89c4035df85989712@news.povray.org> , Lutz-Peter Hooge
><lpv### [at] gmxde>  wrote:
> 
>> With "a:hover { text-decoration: underline ; color: #ff0000 }"
>> you say, that you want the content of the element "a" to be underlined if
>> the mouse is hovering above it.
>> Thats EXACTLY what Mozilla does.
> 
> No, it is still a bug in Mozilla.

Does this mean my Mozilla[1] is doubly buggy because it doesn't
apply a:hover to <a name="..."> tags?

On a related note, the whole :hover thing is the single most
evil annoyance invented. About the only useful thing you can
get out of it is define :hover { display: none; } to everything.

Oh well, Mozilla *IS* a bloated piece of crap, but so are most
of the browsers available. Those that aren't, are slightly
more compact pieces of crap. I still wish someone would make
one that allowed you to disable the recognition of ANY html
tag or CSS attribute, selectively ignore colours and rendered
the page only when there would be absolutely no further changes
to the layout. The ability to drop the support for these ignored
items and such wholly unnecessary shite as Javascript and plugin
support from the executable at compile time would almost push
the whole package above "tolerable".

[F'ups set. Shouldn't someone take the whole thread to .off-topic
or something?]


[1] 0.9.9, because that's what's packaged in Debian Woody
and I don't know enough about computers to change it.

-- 
Antti Arola, edistyksenvastainen retropaskiainen

This message written by a complete asshole.


Post a reply to this message

From: Warp
Subject: Re: New POV-Ray webpage
Date: 17 Jul 2002 11:08:47
Message: <3d35887f@news.povray.org>
Thorsten Froehlich <tho### [at] trfde> wrote:
> To the contrary, all other browsers behave like specified by CSS1.  As I
> just pointed out in my other reply to him the bug might even be in the CSS2
> spec and the Mozilla developers simply failed to notice that :-(  Of course,
> that means it is still a bug in Mozilla.

  Sorry, but I still don't understand.
  If the CSS says "whenever the cursor is over a block delimited with a
tag named 'a', underline this block", and if the browser does exactly what
the CSS says, why is it broken?
  It sounds to me that what you want is that the browser makes an exception
like "ok, this is a tag called 'a', but hey, I know this is a link with
a 'name' specifier, so I should ignore what the CSS says about this and
do something else which the CSS does not say". That sounds more like a kludge
to me.

  After all, AFAIK you can specify a different behaviour for a tag with
a certain attribute, so it's possible to say in the CSS that the 'a' tag
with the 'name' attribute should have no special styles. IMHO this would
be the most logical way and will probably work in most browsers. It is not
a kludge.

-- 
#macro M(A,N,D,L)plane{-z,-9pigment{mandel L*9translate N color_map{[0rgb x]
[1rgb 9]}scale<D,D*3D>*1e3}rotate y*A*8}#end M(-3<1.206434.28623>70,7)M(
-1<.7438.1795>1,20)M(1<.77595.13699>30,20)M(3<.75923.07145>80,99)// - Warp -


Post a reply to this message

From: Lutz-Peter Hooge
Subject: Re: New POV-Ray webpage
Date: 17 Jul 2002 11:13:32
Message: <MPG.179f7c40bde5d89d989714@news.povray.org>
In article <3d354079@news.povray.org>, tho### [at] trfde says...

> No, it is still a bug in Mozilla.

LOL.
So what you want is, that the browser always does what you intended it to 
do instead of what you told it to?
When programming, do you also simply omit the parentheses and leave it to 
the compiler to figure out where they are supposed to be (be indentation 
or something)?

> this nonsense even failed to notice that it will break every a-name tag
> variant out there.  Or they failed to put this exception in a obvious
> location.  But hey, with the bloat of their standards, that is a mistake
> easy to make :-(
> 
> The specification in CSS1 is correct and makes it explicit:
> 
> >>All 'A' elements with an 'HREF' attribute will be put into one and 
> only one of these groups (i.e. target anchors are not affected). <<

There is no such thing like a ":hover" pseudo class in CSS1.
What you quoted applies only to the pseudo-classes ":link" ":visited" and 
":active".

What about really reading the specs before complaining about them?

Lutz-Peter


Post a reply to this message

From: Tom Melly
Subject: Re: New POV-Ray webpage
Date: 17 Jul 2002 11:20:46
Message: <3d358b4e@news.povray.org>
"Warp" <war### [at] tagpovrayorg> wrote in message news:3d35887f@news.povray.org...

>   After all, AFAIK you can specify a different behaviour for a tag with
> a certain attribute, so it's possible to say in the CSS that the 'a' tag
> with the 'name' attribute should have no special styles. IMHO this would
> be the most logical way and will probably work in most browsers. It is not
> a kludge.

Hmm, iirc you can't - you would have to specify a class for each <a
name=foobar> - e.g. <a name=foobar class="dont_ul">, which would be a major
pain.

A more logical solution would be: <a name=foobar></a> - after all, what the hell
is it going to underline? IIRC this is what I do on my pages.

Just out of curiosity, what happens with <a name=foobar /> in Mozilla (i.e. with
/> but no closing </a>)?


Post a reply to this message

From: Warp
Subject: Re: New POV-Ray webpage
Date: 17 Jul 2002 11:48:08
Message: <3d3591b8@news.povray.org>
Tom Melly <tom### [at] tomandlucouk> wrote:
> A more logical solution would be: <a name=foobar></a> - after all, what the hell
> is it going to underline? IIRC this is what I do on my pages.

  Or just remove the hover thingie (as someone pointed out, it seems to be
a non-standard extension anyways).

> Just out of curiosity, what happens with <a name=foobar /> in Mozilla (i.e. with
> /> but no closing </a>)?

  I would try, but I don't remember CSS from memory so well as to write
the case discussed here.

-- 
#macro N(D)#if(D>99)cylinder{M()#local D=div(D,104);M().5,2pigment{rgb M()}}
N(D)#end#end#macro M()<mod(D,13)-6mod(div(D,13)8)-3,10>#end blob{
N(11117333955)N(4254934330)N(3900569407)N(7382340)N(3358)N(970)}//  - Warp -


Post a reply to this message

From: Jerry
Subject: Re: New POV-Ray webpage
Date: 17 Jul 2002 15:03:02
Message: <jerry-DD2A41.12025717072002@netplex.aussie.org>
In article <3d344827@news.povray.org>,
 "Thorsten Froehlich" <tho### [at] trfde> wrote:

>In article <jer### [at] netplexaussieorg> , Jerry 
><jer### [at] acusdedu>  wrote:
>
>> An anchor needs a closing tag in the same way as <em> and <strong> need
>> closing tags. There isn't any "implied ending" except perhaps at the end
>> of a paragraph-level tag.
>
>But then, why does Mozilla turn it into a *link*, inferring that it has a
>"href" attribute while it does not?  That is a bug!!!  The standard is very

That may or may not be a bug; I'd have to see the original code to know 
for sure; when leaving out required ending tags, behaviour can sometimes 
become undefined, for example. I was commenting only on the claim that 
anchors of the name variety do not have to have ending tags, that they 
have an implied ending tag that makes them empty, and that they have 
exhibited this behaviour from the start. They do need ending tags, and 
they have needed ending tags from the beginning, and in the beginning 
they couldn't be empty.

Jerry
-- 
http://www.hoboes.com/jerry/
"Give a man a fish and you feed him for a day. Teach him to fish, and you've
depleted the lake."--It Isn't Murder If They're Yankees
(http://www.hoboes.com/jerry/Murder/)


Post a reply to this message

From: Thorsten Froehlich
Subject: Re: New POV-Ray webpage
Date: 17 Jul 2002 16:08:19
Message: <3d35ceb3@news.povray.org>
In article <3d35887f@news.povray.org> , Warp <war### [at] tagpovrayorg>  wrote:

>   If the CSS says "whenever the cursor is over a block delimited with a
> tag named 'a', underline this block", and if the browser does exactly what
> the CSS says, why is it broken?

Because in CSS1 it was specified correctly and in CSS2 it was changed which
in effect breaks the thing.  As the Mozilla developers failed to notice this
problem with the standard Mozilla is broken.

    Thorsten

____________________________________________________
Thorsten Froehlich, Duisburg, Germany
e-mail: tho### [at] trfde

Visit POV-Ray on the web: http://mac.povray.org


Post a reply to this message

From: Thorsten Froehlich
Subject: Re: New POV-Ray webpage
Date: 17 Jul 2002 16:11:54
Message: <3d35cf8a@news.povray.org>
In article <MPG.179f7c40bde5d89d989714@news.povray.org> , Lutz-Peter Hooge
<lpv### [at] gmxde>  wrote:

> So what you want is, that the browser always does what you intended it to
> do instead of what you told it to?

Don't turn my words around.  I expect it to behave such that it works
flawlessly if i give it flawless input.  What it does not is produce broken
output when receiving flawless input.  By definition, this is called "bug".

> There is no such thing like a ":hover" pseudo class in CSS1.
> What you quoted applies only to the pseudo-classes ":link" ":visited" and
> ":active".
>
> What about really reading the specs before complaining about them?

Oh, I know, but that does not change my point that the change in the CSS2
spec was done without considering what it implies.  The specification in
CSS1 was correct and would function properly.  The specification in CSS2 is
flawed and consequently everybody who implements the flaw produces a buggy
program.

    Thorsten

____________________________________________________
Thorsten Froehlich, Duisburg, Germany
e-mail: tho### [at] trfde

Visit POV-Ray on the web: http://mac.povray.org


Post a reply to this message

From: Thorsten Froehlich
Subject: Re: New POV-Ray webpage
Date: 17 Jul 2002 16:15:10
Message: <3d35d04e@news.povray.org>
In article <jer### [at] netplexaussieorg> , Jerry 
<jer### [at] acusdedu>  wrote:

> when leaving out required ending tags, behaviour can sometimes
> become undefined, for example.

Which is just another major flaw in the specification.  For human generated
languages it is a major flaw to define something as undefined.  While it is
fine from a software engineering perspective, it is the worst solution from
a end-user perspective.  The web is for all users, not just software
engineers.  Thus the specification is flawed.

    Thorsten

____________________________________________________
Thorsten Froehlich, Duisburg, Germany
e-mail: tho### [at] trfde

Visit POV-Ray on the web: http://mac.povray.org


Post a reply to this message

<<< Previous 10 Messages Goto Latest 10 Messages Next 10 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.