This post has been edited by duffy98: 12 September 2009 - 04:56 PM
Message From YouTube About IE 6 Browser [Solved] The solution is described in post # 148 on page # 8.
#121
Posted 12 September 2009 - 02:18 PM
#122
Posted 12 September 2009 - 04:27 PM
"Queue" said:
It was an analogy.
Quote
A page being interpreted as tag soup does not degrade gracefully. It gets rendered inconsistently. Considering that 99% of the XHTML pages out there are not sent as application/xhtml+xml, it won't get interpreted as XML either.
Quote
*rolls eyes*
Quote
More like nasty hacks. Seriously, did you like visiting a site only to be denied entry because you weren't using their favourite web browser? Or getting a page that looked really bad for the same reason? How about all the deprecated code (especially JavaScript) that is still floated around the web like a cancer for no reason?
Quote
You mean it was fine to create a headache for developers and present bloated web pages to users who were on dial-up, making it longer for them to view the pages?
Quote
It already is.
"bristols" said:
The only difference between the two is that you have to close every element in XHTML if it's sent with the proper MIME type. That you don't have to in HTML does not mean it doesn't require standards compliance. Or are you referring to something else?
By the way, half of that article you linked is hyperbole with misinformation. For instance, it says:
"In defense of web developers article" said:
If you bother to read the spec, you'll see that 2022 is jokingly referred to be the year when IE supports HTML5.
The dogma exists because instead of focusing on semantically rich web pages, people pick up XHTML, praise its draconian error handling that forces well-formedness, and then serve it with the wrong MIME type so it's essentially HTML4 with some invalid attributes and weird forward slashes. It completely misses the point.
Then there's also the fact that server XHTML with the proper MIME type has its own share of problems.
This post has been edited by BenoitRen: 12 September 2009 - 04:30 PM
#123
Posted 12 September 2009 - 06:45 PM
BenoitRen, on Sep 12 2009, 11:27 PM, said:
"bristols" said:
The only difference between the two is that you have to close every element in XHTML if it's sent with the proper MIME type.
It is not the only difference. For example, elements and attributes have to be lowercase in XHTML. In HTML, you can have one or the other or both. And you're wrong regarding the condition that it be sent with the proper MIME type. The W3C Validator faults uppercase element and attributes names, and unclosed elements, regardless of whether the page is served as text or XHTML.
BenoitRen said:
You misunderstand and make an incorrect attribution to me. Of course (and this was my point), HTML does not require the degree of well-formedness of XHTML to be standards-compliant. It can mix cases, for example, and yet still be 100% compliant.
I code standards-compliant sites using both HTML and XHTML, and on the whole do not see that one deserves my loyalty over the other. My concern is with building accessible, standards-compliant, semantically- and (where possible) economically-coded sites.
BenoitRen said:
"In defense of web developers article" said:
If you bother to read the spec, you'll see that 2022 is jokingly referred to be the year when IE supports HTML5.
I don't wholly endorse the article I linked to. Indeed, neither does it's author (it would seem). Perhaps you've read the comments in which he and Ian Hickson lend some clarity to the 2022 date. The thrust of the article is sound though - that XHTML 1 is a perfectly stable, mature, and usable standard. Perhaps I should have made the context the article was written in clearer.
No doubt you've read the XHTML 5 spec, then. Maybe you'll be happy to learn that the author of the article I linked to - Jeffrey Zeldman, along with a few friends - has since warmed to XHTML 5:
http://www.zeldman.com/superfriends/
BenoitRen said:
I'm really glad that I don't share your agitation with serving XHTML as text. While you do have a point regarding the MIME type, I think such agitation misses a larger point (although, actually, I can't pretend that I really know what the effective consequences of your point are. Please explain if you have the time). Could you explain your assertion that using XHTML instead of HTML means that a developer is focusing less on semantically-rich web pages?
HTML vs XHTML is a trifle. Compliant and semantic code is far more important.
This post has been edited by bristols: 12 September 2009 - 07:05 PM
#124
Posted 13 September 2009 - 02:37 PM
"Benoit Ren" said:
Who We?
Those who decide of the standards on the internet are the authors of the 1 or 2 web browsers used for viewing more than 55% of the internet.
When IE6 was top #1 browser, the geniuses who coded this crap set the web standards. Now it's not IE6 anymore so the standards have changed.
When Firefox will cover 60% of the internet audiance, it will be the king of the web standards. LTIC (last time I checked), it was still IE7/8 deciding of what pass as a valid html code or not (thought statistics differ).
Soon it might be Firefox or still IE. Later it might be something else.
But it will never be a conference of "professionals".
Webdevelopers, I imagine, will do code that is compatible for 90% of users, standard or not.
IMO, XHTML or HTML is a stpid debate. HTML is fine and it should stay so. It's not necessary to lose our head about yet another format and yet another sublanguage. It's enough complicated like that.
Poeple should use what fits them best.
This post has been edited by Fredledingue: 13 September 2009 - 02:40 PM
#125
Posted 13 September 2009 - 04:58 PM
"bristols" said:
You said XHTML requires standards compliance, and HTML doesn't. I assumed that you were talking about the check for well-formedness by the web browser upon parsing an XHTML document, which is only done when sent with the proper MIME type.
If you're not talking about that, how does XHTML require standards compliance and HTML doesn't? All XHTML is, is HTML 4.01 formulated as XML. They have the same rules for standards compliance, except that XHTML adds XML rules as well (close every element, everything lower-case).
Quote
All web browsers support HTML 4.01. Not all web browsers support XHTML, and the parsers of those that do are less tested than their HTML parser. This is why I think it makes sense to choose HTML 4.01 over XHTML 1.0.
Quote
Nah. This point has come up before on another message board.
Quote
The problem is that it's not quite usable. See above.
Quote
Almost every web developer that uses XHTML that I've come across goes on about how XHTML forces well-formedness. The web pages they create show that they have little attention for the semantics. Of course, without the proper MIME type, well-formedness is not forced, XML features are not enabled, and they're just writing HTML 4.01.
What many also don't realise is that in XHTML not everything is the same. You can't just embed some JavaScript in your web page, because the data type of the script element is not CDATA. The DOM is a little different as well, so JavaScript needs to be modified.
Quote
In the end, this is true.
"Fredledingue" said:
Fredledingue, please inform yourself instead of making misinformed posts again and again. You can start at the W3 Consortium's website.
#126
Posted 13 September 2009 - 05:49 PM
#127
Posted 13 September 2009 - 10:09 PM
macgyvr, on Sep 13 2009, 07:49 PM, said:
QFT. This applies to not only browser but OS wars. However, there is still the issue that older code made to work with IE6 and worked perfectly, does not work with newer browsers. For example, IE6 properly renders CSS 1.0 and no browsers since have been able to do so. So, at least, in my mind, IE6 has some development use.
#128
Posted 14 September 2009 - 01:52 AM
Tripredacus, on Sep 14 2009, 12:09 AM, said:
macgyvr, on Sep 13 2009, 07:49 PM, said:
QFT. This applies to not only browser but OS wars. However, there is still the issue that older code made to work with IE6 and worked perfectly, does not work with newer browsers. For example, IE6 properly renders CSS 1.0 and no browsers since have been able to do so. So, at least, in my mind, IE6 has some development use.
Why develop for an outdated browser using an outdated standard?
#129
Posted 14 September 2009 - 06:08 AM
BenoitRen, on Sep 13 2009, 11:58 PM, said:
If you're not talking about that, how does XHTML require standards compliance and HTML doesn't?
For the second time: no, I did not say that, and I certainly do not mean that. You have (I guess) misunderstood. Please go back and re-read.
#130
Posted 14 September 2009 - 11:46 AM
macgyvr, on Sep 14 2009, 03:52 AM, said:
Tripredacus, on Sep 14 2009, 12:09 AM, said:
macgyvr, on Sep 13 2009, 07:49 PM, said:
QFT. This applies to not only browser but OS wars. However, there is still the issue that older code made to work with IE6 and worked perfectly, does not work with newer browsers. For example, IE6 properly renders CSS 1.0 and no browsers since have been able to do so. So, at least, in my mind, IE6 has some development use.
Why develop for an outdated browser using an outdated standard?
CSS 1.0 is the current standard. Note that Drafts and RFCs are not final versions.
#131
Posted 14 September 2009 - 01:01 PM
"Tripredacus" said:
Please elaborate on this. As far as I know IE6 completely supports CSS 1.0 only if you count some proprietary features.
bristols, on Sep 14 2009, 02:08 PM, said:
BenoitRen, on Sep 13 2009, 11:58 PM, said:
If you're not talking about that, how does XHTML require standards compliance and HTML doesn't?
For the second time: no, I did not say that, and I certainly do not mean that. You have (I guess) misunderstood. Please go back and re-read.
I'm royally confused. What else did you mean by this?
"bristols" said:
#132
Posted 14 September 2009 - 06:02 PM
The processors in our machines don't care about the code we are using, they don't feel pain or make noral judgement. Nor do they decide what punishment for our sins of bad coding habits.
I maintain that web standards are decided ultimately by those who make web browsers. If tomorrow I make a browser that is used by 90% of poeple, I will decide what standards are and the W3C will only have to bend and acknowledge the truth. My truth.
The W3C is an organisation by fact, only proposing recommandations. And it happens that they are respected and have an influence etc. But they don't "set the standards".
#133
Posted 14 September 2009 - 08:44 PM
BenoitRen, on Sep 14 2009, 03:01 PM, said:
"Tripredacus" said:
Please elaborate on this. As far as I know IE6 completely supports CSS 1.0 only if you count some proprietary features.
Its an issue found in practice. Refer to this:
http://www.msfn.org/...ue-t137717.html
Which is about my old website design, which was a CMS I wrote myself before IE7 came out. It worked fine but unfortunately IE7 came out before it was completed.
#134
Posted 15 September 2009 - 04:44 PM
"Fredledingue" said:
This is completely irrelevant.
Quote
You can repeat this all you want. It's still nonsense.
Quote
History disagrees with you. The W3C did not bend in any way when IE had a large majority of the market share. In fact, IE bended to the W3C.
#135
Posted 16 September 2009 - 01:01 PM
"Ben" said:
You were making a moral evaluation on a piece of code. There not ugly or beautiful codes, nor good or bad.
Only codes that work and other that don't.
"you" said:
True the W3C didn't bend but more exactely it was M$ finaly getting a look at the largely FireFox-based W3C recommandations as their browser market share shrank rapidly.
#136
Posted 17 September 2009 - 11:59 AM
"Fredledingue" said:
Only codes that work and other that don't.
Wrong. There is good code and there is bad code. Every programmer and web developer worth their salt knows that.
Quote
Wrong again. IE6 fixed IE's broken box model back in 2001, for one thing.
The W3C recommendations are not Firefox-based. I urge you once more to get educated. The W3C has existed for a long time; long before Firefox ever existed.
#137
Posted 17 September 2009 - 06:19 PM
Bad codes are simply codes that don't work properly or waste resources. But they are not bad just because there is a supertition that says it's bad.
About the W3C, everybody thinks what it wants. It's a big, important and influencial organisation but it's still compoced of just about anyone who wishes to take part and that means a lot of poeple from the active FF community.
The W3C is not formulating their recommandations out of the blue.
Quote
This post has been edited by Fredledingue: 17 September 2009 - 06:38 PM
#138
Posted 18 September 2009 - 02:59 PM
"Fredledingue" said:
Not true. I can show you hundreds and thousands of examples of ugly HTML out there on the web.
Quote
There's such a thing as "best practices". It's not about superstition at all.
Quote
A lot of people from the Mozilla/Firefox community? Yes. But mostly people from the Firefox community? No, not at all.
I'm not sure what your quote is doing there, as that's just how the process works. It doesn't mean that the vendors dictate the standards.
#139
Posted 21 September 2009 - 03:29 PM
I wanted to say that they are de facto setting the standards.
(well, if it was me the king of the internet I would dictate
#140
Posted 22 September 2009 - 06:42 AM



Help


Back to top









