Use this tool to learn about websites, specifically the one you just entered.
If you find some aspect of it inappropriate it is not our fault.
If you are the owner of this website: yes we are a real search engine, we do have a real web crawler called FyberSpider and you can block it if you feel the urge.
Is It Cataloged?
We are in the process of updating this tool. Until we are done just use our search results to check the inclusion status of your site.
Find out if your site has been cataloged by top search engines for only $8.99.
Below you will see site info taken directly from the URL you entered in real time. This is also known as our URL Breakdown tool and can be used independently of our site info tool.
Page Title
XHTML and error handling - Robert's talk
Stripped Text Content
This is just a sample of the content found on this website. Please visit the website to read the entire page.
"Skip to main content
Skip to navigation
Skip to additional content
About
Contact
Code
RSS feeds
Speaking
Archives
Geek Meet
I am currently on parental leave till September. Before that, I will not read any comments on this web site, e-mail messages or other communication forms.
Have a great summer!
XHTML and error handling
Published on Sunday, June 26th, 2005
What I want to touch with this post is how errors are handled when XHTML is served the way it should be. Let’s, for the sake of argument, say that we want to write and deliver XHTML (not wanting to turn this into a discussion whether we should write HTML or XHTML ).
First, some general background information about how to send documents to the requesting web browser. It’s all about the media type type, described in XHTML Media Types :
HTML
Should be sent with the text/html MIME type.
XHTML 1.0
All flavors of XHTML 1.0, strict , transitional and frameset , should be sent with the application/xhtml+xml MIME type, but may be sent as text/html when it conforms to Appendix C of the XHTML specification .
XHTML 1.1
Should be sent with the application/xhtml+xml MIME type; Should not be sent with the text/html MIME type.
So, what’s the difference? It’s that web pages sent as text/html is interpreted as HTML while those sent as application/xhtml+xml is received as a form of XML . However, this does not apply to IE , because it doesn’t even understand the application/xhtml+xml MIME type to begin with, but instead tries do download it as a file. So, no application/xhtml+xml for IE .
Aside from IE ’s lack of support for it, and for what you need to consider described by Mark Pilgrim i"
....
read entire page