<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Just a Coder &#187; Web Standards</title>
	<atom:link href="http://www.nickfitz.co.uk/categories/web-development/web-standards/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nickfitz.co.uk</link>
	<description>The occasional online observations of Nick Fitzsimons</description>
	<lastBuildDate>Sun, 08 Jan 2012 02:09:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>XHTML 2 Canned&#8230;</title>
		<link>http://www.nickfitz.co.uk/2009/07/07/xhtml-2-canned/</link>
		<comments>http://www.nickfitz.co.uk/2009/07/07/xhtml-2-canned/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 23:27:29 +0000</pubDate>
		<dc:creator>nickfitz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[XHTML 2]]></category>

		<guid isPermaLink="false">http://www.nickfitz.co.uk/2009/07/07/xhtml-2-canned/</guid>
		<description><![CDATA[&#8230;not many dead. In other news: Phlogiston &#8220;seemed like a good idea at the time&#8221;; Doubt cast on Ussher chronology; Cold Fusion &#8211; yeah, right. Next, the Shipping Forecast.]]></description>
			<content:encoded><![CDATA[<p>&#8230;<a href="http://hsivonen.iki.fi/xhtml2-html5-q-and-a/">not many dead</a>.</p>
<p>In other news:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Phlogiston_theory">Phlogiston</a> &#8220;seemed like a good idea at the time&#8221;;</li>
<li>Doubt cast on <a href="http://en.wikipedia.org/wiki/Ussher_chronology">Ussher chronology</a>;</li>
<li><a href="http://en.wikipedia.org/wiki/Cold_Fusion">Cold Fusion</a> &#8211; yeah, right.</li>
</ul>
<p>
Next, the <a href="http://www.bbc.co.uk/weather/coast/shipping/">Shipping Forecast</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickfitz.co.uk/2009/07/07/xhtml-2-canned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More On ASP.NET&#8217;s Broken Error Handling</title>
		<link>http://www.nickfitz.co.uk/2008/12/10/more-on-aspnets-broken-error-handling/</link>
		<comments>http://www.nickfitz.co.uk/2008/12/10/more-on-aspnets-broken-error-handling/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 18:09:59 +0000</pubDate>
		<dc:creator>nickfitz</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Common sense]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.nickfitz.co.uk/2008/12/10/more-on-aspnets-broken-error-handling/</guid>
		<description><![CDATA[More on ASP.NET's peculiar approach to HTTP errors.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve looked a bit more into <a href="http://www.nickfitz.co.uk/2008/12/07/why-cant-microsoft-just-use-http-like-everybody-else/">the way ASP.NET handles HTTP errors</a>, and frankly it now seems not just irritating, but downright bizarre.<br />
<span id="more-33"></span><br />
By the way, although the original post was about a <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5">5xx series server error</a>, this also applies to <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4">4xx series client errors</a>. We&#8217;ll take the familiar <code>404 Not Found</code> as an example case.</p>
<p>Here are the main parts (with some headers and the body omitted) of the response to a broken request for <a href="http://blogs.msdn.com/oldnewthing/default.aspx">Raymond Chen&#8217;s blog</a> &#8211; I deliberately misspelled &#8220;default&#8221; as &#8220;defult&#8221; to trigger a 404:</p>
<p>
<pre><code>
HTTP/1.1 <strong>302 Found</strong>
Date: Wed, 10 Dec 2008 17:46:51 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
CommunityServer: 2.1.61025.2
<strong>Location: /error-notfound.aspx?aspxerrorpath=/oldnewthing/defult.aspx</strong>
Content-Type: text/html; charset=utf-8
Content-Length: 176
</code></pre>
</p>
<p>So, a request for something that is not found returns <code>302 Found</code>. Nice.</p>
<p>What happens when the browser follows the redirection to <code>/error-notfound.aspx?aspxerrorpath=/oldnewthing/defult.aspx</code>? This happens:</p>
<p>
<pre><code>
HTTP/1.1 <strong>404 Not Found</strong>
Date: Wed, 10 Dec 2008 17:46:52 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
CommunityServer: 2.1.61025.2
Content-Type: text/html; charset=utf-8
Content-Length: 11769
</code></pre>
</p>
<p>So, just to get this straight: when something is not found, ASP.NET returns a <code>302 Found</code> response redirecting the client elsewhere. Then, when the redirect is followed, it returns a <code>404 Not Found</code> response, despite the fact that this page clearly <em>has</em> been found, and it was the page that redirected us here that was <em>not</em> found.</p>
<p>Weird. Just plain weird.</p>
<p>Update: an online acquaintance (I don&#8217;t have a URL for him) has pointed me to a page on <cite><abbr title="Microsoft Developer Network">MSDN</abbr></cite> where <a href="http://msdn.microsoft.com/en-us/library/aa479319.aspx">the rationale for this behaviour</a> is presented:</p>
<blockquote cite="http://msdn.microsoft.com/en-us/library/aa479319.aspx"><p>
Redirect creates a new Context, Transfer does not. Redirect requires a round-trip to the browser, Transfer does not. As a result of this round-trip, Redirect rewrites the URL to reflect the location of the error page, Transfer does not.</p>
<p>
If this seems to be an argument in favor of Transfer, it isn&#8217;t. The rationale of the ASP.NET development team is that Redirect <em>accurately displays the URL of the custom error page</em>&#8230;
</p>
</blockquote>
<p>However, at no point is it explained <em>why</em> displaying such an implementation detail to clients is preferable. Given that the article starts with the words:</p>
<blockquote cite="http://msdn.microsoft.com/en-us/library/aa479319.aspx"><p>The quality of a site should be measured not only by how well it works, but by how gracefully it fails.</p>
</blockquote>
<p>it seems strange that it then recommends a technique which causes sites to fail in a singularly graceless manner.</p>
<p>My suggestion would be to modify your ASP.NET application configurations so that the <code>customError</code> capability uses the <code>Transfer</code> technique instead of <code>Redirect</code>. If that </p>
<blockquote><p>&#8230;breaks a tenet of the design philosophy of ASP.NET&#8230;</p>
</blockquote>
<p> then so be it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickfitz.co.uk/2008/12/10/more-on-aspnets-broken-error-handling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Can&#8217;t Microsoft Just Use HTTP Like Everybody Else?</title>
		<link>http://www.nickfitz.co.uk/2008/12/07/why-cant-microsoft-just-use-http-like-everybody-else/</link>
		<comments>http://www.nickfitz.co.uk/2008/12/07/why-cant-microsoft-just-use-http-like-everybody-else/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 05:57:39 +0000</pubDate>
		<dc:creator>nickfitz</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Common sense]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.nickfitz.co.uk/2008/12/07/why-cant-microsoft-just-use-http-like-everybody-else/</guid>
		<description><![CDATA[A 5xx server error shouldn't redirect the user to a new location. They should be left where they are, ready to retry when the server has recovered.]]></description>
			<content:encoded><![CDATA[<p>A few moments ago I was following a link from Google to Raymond Chen&#8217;s excellent MSDN blog <a href="http://blogs.msdn.com/oldnewthing/default.aspx">The Old New Thing</a>. As has happened to me before, I ended up getting redirected to an ASP.NET error page at a totally different URL, telling me that the site was &#8220;unable to service my request.&#8221;<br />
<span id="more-32"></span><br />
Now, the inability to serve the requested page is fair enough; Raymond has previously mentioned that the <code>blogs.msdn.com</code> site can be slow or overloaded because it comes under such relentless attack from comment spammers.</p>
<p>But a redirect to the absolute URL of an error page? That&#8217;s just annoying. It means that I can&#8217;t try to reload the page to see if the server has recovered from whatever issues are affecting it &#8211; or, more accurately, I can try to reload, but as I&#8217;m now at the absolute URL of the error page, I just keep reloading that.</p>
<p>Unsurprisingly, the HTTP 1.1 standard has already provided for this kind of situation by means of the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.5.4"><code>503 Service Unavailable</code></a> status code:</p>
<blockquote><p>The server is currently unable to handle the request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay.</p>
</blockquote>
<p>If the <code>blogs.msdn.com</code> people (who, by the way, Raymond is not responsible for) would use this status code to serve their error page for the post on Raymond&#8217;s blog, I could simply come back after a few minutes and try to reload the page, as my browser would still be at the same location. </p>
<p>It&#8217;s also possible that they <em>do</em> send this status code, but with a <code>Location: </code> header to cause the redirect. (The server seems to be back on its feet again now, so I can&#8217;t inspect the HTTP cycle to check.)</p>
<p>Either way, what they do is wrong and broken. <strong>Don&#8217;t</strong> send people somewhere else to explain a <code>5xx Server Error</code> status; simply serve the explanation directly using the appropriate 5xx status code, leaving your visitors ready to try a reload when the server has recovered. Otherwise, you&#8217;ll serve a lot of <code>200 OK</code> responses from your error page, most of them to people who haven&#8217;t noticed that their location bar now points there as they hit <code>[Control | Command]-R</code> in the hope of seeing what they originally came for.</p>
<p>Note: A more recent post <a href="http://www.nickfitz.co.uk/2008/12/10/more-on-aspnets-broken-error-handling/">examines this aspect of ASP.NET in greater depth</a>, and suggests the use of a configuration option that resolves the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickfitz.co.uk/2008/12/07/why-cant-microsoft-just-use-http-like-everybody-else/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bandwidth? Yeah, whatever&#8230;</title>
		<link>http://www.nickfitz.co.uk/2008/08/13/bandwidth-yeah-whatever/</link>
		<comments>http://www.nickfitz.co.uk/2008/08/13/bandwidth-yeah-whatever/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 03:08:32 +0000</pubDate>
		<dc:creator>nickfitz</dc:creator>
				<category><![CDATA[Common sense]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.nickfitz.co.uk/2008/08/13/bandwidth-yeah-whatever/</guid>
		<description><![CDATA[Well, that&#8217;s nice. The Council&#8217;s electoral registration form came through the door today, so I visited the web site to indicate that everything&#8217;s the same. I now have the confirmation email. Definition of &#8220;line&#8221; in the following examination of the content of said email: something delimited by an RFC 2822-compliant line-delimiter (see third paragraph of [...]]]></description>
			<content:encoded><![CDATA[<p>Well, that&#8217;s nice.</p>
<p>The Council&#8217;s <a href="https://www.registerbyinternet.com/default.aspx">electoral registration</a> form came through the door today, so I visited the web site to indicate that everything&#8217;s the same.<br />
<span id="more-30"></span><br />
I now have the confirmation email.</p>
<p>Definition of &#8220;line&#8221; in the following examination of the content of said email: something delimited by an <a href="http://tools.ietf.org/html/rfc2822#section-2.1">RFC 2822-compliant line-delimiter</a> (see third paragraph of section 2.1), excluding empty lines (that is, lines preceded by, and containing only, such a delimiter). </p>
<p>Content relating to me personally: 3 lines.</p>
<p>Content that&#8217;s merely relating to my confirmation (including &#8220;Thank you&#8221; and such, and therefore reasonable to include): 3 lines.</p>
<p>Content after that stuffed with legal garbage: 15 lines.</p>
<p>I&#8217;m tempted to do a word count, but let&#8217;s just estimate that there are something like twenty or thirty times as many words in the legalese as there are in the actual content of the message.</p>
<p>And people wonder why the Internet feels slow today.</p>
<p>P.S. Bonus points for the fact that, if I leave the &#8220;default.aspx&#8221; off the first link, the server returns an empty page, and is apparently Tomcat, despite the fact that the actual application is running on ASP.NET.</p>
<p>Without <code>default.aspx</code>:</p>
<pre><code>
HTTP/1.1 200 OK
Date: Wed, 13 Aug 2008 02:22:32 GMT
Server: Apache Tomcat/4.1.12 (HTTP/1.1 Connector)
Cache-control: private
Content-Length: 0
Content-Type: text/html

</code></pre>
<p><em>With</em> <code>default.aspx</code>:</p>
<pre><code>
HTTP/1.1 200 OK
Date: Wed, 13 Aug 2008 02:27:31 GMT
Server: WebSTAR/4.5(SSL)
Cache-Control: private
Content-Length: 71428
Content-Type: text/html; charset=utf-8

</code></pre>
<p>Ho hum.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickfitz.co.uk/2008/08/13/bandwidth-yeah-whatever/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why &#8220;left: -9999px;&#8221; is Better For Accessibility Than &#8220;display: none;&#8221;</title>
		<link>http://www.nickfitz.co.uk/2007/02/14/why-left-9999px-is-better-for-accessibility-than-display-none/</link>
		<comments>http://www.nickfitz.co.uk/2007/02/14/why-left-9999px-is-better-for-accessibility-than-display-none/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 18:17:20 +0000</pubDate>
		<dc:creator>nickfitz</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.nickfitz.co.uk/2007/02/14/why-left-9999px-is-better-for-accessibility-than-display-none/</guid>
		<description><![CDATA[Update: Thierry Koblentz points out in the comments that either technique may be appropriate, depending on circumstances. I mention this in the last paragraph, but just to be clear, there should have been a &#8220;usually&#8221; or &#8220;often&#8221; or some such word in front of the &#8220;better&#8221; of the title. That, or a different title. Update [...]]]></description>
			<content:encoded><![CDATA[<p class="update"><strong>Update:</strong> <a href="http://www.nickfitz.co.uk/2007/02/14/why-left-9999px-is-better-for-accessibility-than-display-none/#comment-21146">Thierry Koblentz points out</a> in the comments that either technique may be appropriate, depending on circumstances. I mention this in the last paragraph, but just to be clear, there should have been a &#8220;usually&#8221; or &#8220;often&#8221; or some such word in front  of the &#8220;better&#8221; of the title. That, or a different title.</p>
<p class="update"><strong>Update 2, December 2008:</strong> It is now accepted that it is better to use <code>top: -9999px;</code>, as using <code>left:</code> would cause a scroll bar on <a href="http://news.bbc.co.uk/hi/arabic/news/">a page with right-to-left text</a>.</p>
<p>A recurring question on various mailing lists such as the <a href="http://webstandardsgroup.org/">Web Standards Group</a> discussion list is &#8220;How can I hide content but still have it accessible?&#8221; This is usually asked in the context of <a href="http://www.access-matters.com/2005/05/08/quiz-114-image-replacement-techniques/">image replacement techniques</a>, where one might for example wish to display a heading in a fancy typeface, but still have the content accessible to users of assistive technologies such as screen reading software.<br />
<span id="more-24"></span><br />
Two techniques, both reliant on CSS, tend to come up in these discussions: hiding the text by the use of <code>display: none</code> or <code>visibility: hidden</code>, and positioning the text off-screen, using absolute positioning and <code>left: -9999px</code>, or <code>margin-left: -9999px</code>.</p>
<p><a href="http://access-matters.com/">Access Matters</a> determined back in June 2005 that the <code>display</code> and <code>visibility</code> techniques appeared to be inaccessible to screen readers, whereas the offscreen positioning method was accessible. The <a href="http://access-matters.com/screen-reader-test-results/">full results</a> go into more detail.</p>
<p>One thing that nobody seemed to have bothered to explain was just <em>why</em> this was the case. Inspired by yet another thread on the subject, I finally decided to do some digging; if I don&#8217;t know <em>why</em> I&#8217;m doing something, I can&#8217;t be sure that I <em>should</em> be doing it, which leads to the risk of <a href="http://catb.org/jargon/html/C/cargo-cult-programming.html">Cargo Cult coding</a>.</p>
<h3>Ask the people who know</h3>
<p>To my astonishment, a search of the <a href="http://msdn.microsoft.com/library">Microsoft Developer Network Library</a> quickly brought me to the explanation I sought. (I was astonished because the MSDN library search is notorious for returning swathes of irrelevant results for even the simplest search; I have heard anecdotal evidence that Microsoft&#8217;s own developers search the library using Google with the <code>site:msdn.microsoft.com</code> specifier.)</p>
<p>The library&#8217;s section on <a href="http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/accessibility/accessibility_node_entry.asp">accessibility support in Internet Explorer</a> is extensive, but the information about <a href="https://msdn.microsoft.com/workshop/browser/accessibility/overview/invisible.asp">invisible objects</a> told me all I needed to know. To quote:</p>
<blockquote cite="https://msdn.microsoft.com/workshop/browser/accessibility/overview/invisible.asp"><p>With Internet Explorer 6 and later, the <code>pvarState</code> parameter of the <code>IAccessible::get_accState</code> property receives <code>STATE_SYSTEM_OFFSCREEN</code> when the object is invisible because of scrolling and receives <code>STATE_SYSTEM_INVISIBLE</code> when the object is invisible because its <code>IHTMLStyle::visibility</code> property is set to <code>hidden</code>, or its <code>IHTMLStyle::display</code> property is set to <code>none</code>.</p></blockquote>
<h3>Again, in English?</h3>
<p>A screen reader doesn&#8217;t load an HTML page: the browser (usually Internet Explorer) does that. What the screen reader does is to ask IE about the content, using an API called <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msaa/msaastart_9w2t.asp">Microsoft Active Accessibility</a> (MSAA). MSAA allows the screen reader to interrogate the browser as to the contents of a page; the dialog, insofar as I understand it, would go something like:</p>
<dl>
<dt>Internet Explorer:</dt>
<dd>Hey, I&#8217;ve just loaded a page.</dd>
<dt>Screen reader:</dt>
<dd>Cool, what&#8217;s it got on it?</dd>
<dt>Internet Explorer:</dt>
<dd>There&#8217;s a heading, then some links, then a few paragraphs.</dd>
<dt>Screen reader:</dt>
<dd>OK; give us the heading.</dd>
<dt>Internet Explorer:</dt>
<dd>It says &#8220;Welcome to HyperGlobalMegaCorp&#8221;.</dd>
<dt>Screen reader:</dt>
<dd>Right, hang on a moment. <em>(Speaks the given text to the user.)</em>  </dd>
</dl>
<p>&#8230; and so on; you get the general idea.</p>
<p>The key is that IE doesn&#8217;t just return content to be spoken in some way; it also returns information <em>about</em> that content. This includes information that goes by the snappy name of <code>pvarState</code>, and one of the aspects of this information is that it can tell the screen reader whether or not the content of the thing it&#8217;s asking about (for example, the heading in the above dialogue) is actually displayed on the screen &#8211; that is, whether it&#8217;s visible or invisible. (Note that these terms aren&#8217;t being used here in exactly the same way as they are in CSS.)</p>
<p>There are three ways that IE comes to regard something as being invisible:</p>
<ol>
<li>It has the CSS property <code>display</code> set to the value <code>none</code>;</li>
<li>It has the CSS property <code>visibility</code> set to the value <code>hidden</code>;</li>
<li>It is in a position where the window would need to be scrolled for it to become visible.</li>
</ol>
<p>IE further distinguishes these three forms of invisibility by dividing them into two kinds. The first two forms of invisibility are denoted by the <code>pvarState</code> value <code>STATE_SYSTEM_INVISIBLE</code>, and the final form is denoted by the value <code>STATE_SYSTEM_OFFSCREEN</code>.</p>
<p>So finally it all becomes clear: screen readers will treat content with the state <code>STATE_SYSTEM_OFFSCREEN</code> as being content that it should read, because it&#8217;s only invisible by virtue of not being within the visible region of the window: after all, a screen reader that required the user to scroll the window to read all of the content would be of very little value to anybody. The only reason that the content can&#8217;t actually be scrolled into view when using the off-left or off-top positioning technique is that Internet Explorer itself doesn&#8217;t support the concept of scrolling the window by a negative amount, although I believe this isn&#8217;t a limitation of the Windows scrolling mechanism <span lang="la">per se</span>.</p>
<p>If, however, the screen reader finds that the state of the content is <code>STATE_SYSTEM_INVISIBLE</code> it apparently concludes that it must have been concealed for a reason, and doesn&#8217;t speak it.</p>
<p>So there you go: use one of the offscreen methods and the screen reader will treat your content as being there; use the <code>display</code> or <code>visibility</code> method and the screen reader will discard it, meaning that this is a reliable way of concealing content from both a normal user and a screen reader user, should you have a reason to do so. But armed with the information above, you&#8217;ll at least know <em>why</em> you&#8217;re using whichever method you apply.</p>
<p class="update">
This post is now available in <a href="http://www.fatcow.com/edu/why-left-9999px-be/">Belorussian</a> provided by <a href="http://www.fatcow.com/">http://www.fatcow.com/</a> &#8211; many thanks for that!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickfitz.co.uk/2007/02/14/why-left-9999px-is-better-for-accessibility-than-display-none/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>BarCamp London 2.0</title>
		<link>http://www.nickfitz.co.uk/2007/01/22/barcamp-london-20/</link>
		<comments>http://www.nickfitz.co.uk/2007/01/22/barcamp-london-20/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 19:25:27 +0000</pubDate>
		<dc:creator>nickfitz</dc:creator>
				<category><![CDATA[barcamp]]></category>
		<category><![CDATA[barcamplondon]]></category>
		<category><![CDATA[barcamplondon07]]></category>
		<category><![CDATA[barcamplondon2]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.nickfitz.co.uk/2007/01/22/barcamp-london-20/</guid>
		<description><![CDATA[BarCamp London 2 is coming up]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://barcamp.org/BarCampLondon2"><img src="http://barcamp.org/f/barcamplondon2%20tiny.jpg" alt="BarCampLondon2 Feb 17-18" /></a>
</p>
<p>
It&#8217;s back! <a href="http://barcamp.org/BarCampLondon2">BarCamp London 2</a> will be hosted by <a href="http://www.bt.com">BT</a> on February 17th &#8211; 18th. Check out the BarCamp site (above) for signup details.
</p>
<p><span id="more-21"></span></p>
<p>
I&#8217;ve got my place, and now have to decide what subject to present about. One thing I&#8217;m certain of: I&#8217;m not going to leave it until the last minute this time. I missed a lot of good stuff at the last <abbr title="BarCamp London">BCL</abbr> because I was tucked away in a spare office, frantically hacking together a demo to illustrate my points about underused aspects of <a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html">HTTP</a>. This time, I&#8217;ll be ready.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickfitz.co.uk/2007/01/22/barcamp-london-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebDD: February 3 2007</title>
		<link>http://www.nickfitz.co.uk/2007/01/22/webdd-february-3-2007/</link>
		<comments>http://www.nickfitz.co.uk/2007/01/22/webdd-february-3-2007/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 18:41:48 +0000</pubDate>
		<dc:creator>nickfitz</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[WebDD]]></category>

		<guid isPermaLink="false">http://www.nickfitz.co.uk/2007/01/07/webdd-february-3-2007/</guid>
		<description><![CDATA[WebDD is a web design and development conference to be held at the Microsoft Campus in Reading, UK this coming 3 February (a Saturday). There is, naturally, a certain emphasis on Microsoft technologies, but not exclusively. Actually, although there are several presentations involving MS technologies, I was wrong to think that Microsoft were somehow involved [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.webdd.org.uk/">WebDD</a> is a web design and development conference to be held at the Microsoft Campus in Reading, UK this coming 3 February (a Saturday). <del>There is, naturally, a certain emphasis on Microsoft technologies, but not exclusively.</del> <ins>Actually, although there are several presentations involving MS technologies, I was wrong to think that Microsoft were somehow involved in <em>organising</em> WebDD: they are providing sponsorship and hosting the event, but it is indeed a <a href="http://weblogs.asp.net/plip/archive/2007/01/12/webdd-is-not-being-organized-by-microsoft.aspx">community-organised conference</a>.</ins> Thanks must go to <a href="http://webdd.backnetwork.com/people/person.aspx?person=philwinstanley">Phil Winstanley</a> and <a href="http://webdd.backnetwork.com/people/person.aspx?person=davesussman">Dave Sussman</a> for organising this. With sessions covering Accessibility, CSS, <a href="http://microformats.org">Microformats</a> and much more it promises to be an interesting event. Best of all, it&#8217;s &#8220;free as in beer&#8221;! Registration is <del>opening Real Soon Now</del> <ins>now <a href="http://webdd.backnetwork.com/feeds/post.aspx?postid=201">full</a></ins>; my badge arrived in the post a few days ago.
</p>
<p><span id="more-20"></span></p>
<p>
Already up and running is <a href="http://webdd.backnetwork.com/">the Backnetwork</a>. This is the same system that <a href="http://madgex.com/">Madgex</a> developed for <a href="http://2006.dconstruct.org">d.Construct 2006</a> (Glenn Jones of Madgex is giving a presentation on Microformats), and proved itself to be an excellent system for keeping track of contacts and following the general <a href="http://flickr.com">Flickr</a> and blogging buzz around the event.
</p>
<p>
See you there, <del>if my car has been healed by then. (I dread to think what the train would cost.)</del> <ins>the car having been healed through the miracle of a few hundred pounds.</ins> (Broken trailing arm, whatever one of those is.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickfitz.co.uk/2007/01/22/webdd-february-3-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>d.Construct 2006 Coming Up</title>
		<link>http://www.nickfitz.co.uk/2006/09/07/dconstruct-2006-coming-up/</link>
		<comments>http://www.nickfitz.co.uk/2006/09/07/dconstruct-2006-coming-up/#comments</comments>
		<pubDate>Thu, 07 Sep 2006 12:39:41 +0000</pubDate>
		<dc:creator>nickfitz</dc:creator>
				<category><![CDATA[barcamp]]></category>
		<category><![CDATA[barcamplondon]]></category>
		<category><![CDATA[barcamplondon06]]></category>
		<category><![CDATA[dconstruct]]></category>
		<category><![CDATA[dconstruct06]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.nickfitz.co.uk/2006/09/07/dconstruct-2006-coming-up/</guid>
		<description><![CDATA[I&#8217;m just about to set off for d.Construct 2006, and I still haven&#8217;t blogged about any of the stuff I got up to at BarCamp London yet. Things are just too busy at the moment, but hopefully some nice sea air will help me chill out and post something. Now for the motorway&#8230;]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just about to set off for <a href="http://2006.dconstruct.org/">d.Construct 2006</a>, and I still haven&#8217;t blogged about any of the stuff I got up to at <a href="http://barcamp.org/BarCampLondon">BarCamp London</a> yet. Things are just too busy at the moment, but hopefully some nice sea air will help me chill out and post something. Now for <a href="http://en.wikipedia.org/wiki/M1_motorway">the motorway</a>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickfitz.co.uk/2006/09/07/dconstruct-2006-coming-up/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quirks or Strict: a Quick Way to Tell</title>
		<link>http://www.nickfitz.co.uk/2006/06/04/quirks-or-strict-a-quick-way-to-tell/</link>
		<comments>http://www.nickfitz.co.uk/2006/06/04/quirks-or-strict-a-quick-way-to-tell/#comments</comments>
		<pubDate>Sun, 04 Jun 2006 18:17:12 +0000</pubDate>
		<dc:creator>nickfitz</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.nickfitz.co.uk/2006/04/30/quirks-or-strict-a-quick-way-to-tell/</guid>
		<description><![CDATA[A useful bit of JavaScript for web developers]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re working with <a href="http://www.w3.org/MarkUp/#recommendations">(X)HTML</a> and <a href="http://www.w3.org/Style/CSS/">CSS</a> you&#8217;ll be aware &#8211; or you <em>need</em> to be aware &#8211; that browsers render pages differently depending on whether they are in Strict or Quirks mode. (There are explanations of what these terms mean from <a href="http://msdn.microsoft.com/library/en-us/dnie60/html/cssenhancements.asp?frame=true#cssenhancements_topic2">Microsoft</a> and <a href="http://developer.mozilla.org/en/docs/Mozilla%27s_DOCTYPE_sniffing">Mozilla</a>.) It can be useful to have a way of making certain which mode you&#8217;re in when tracking down inconsistencies in browser behaviour.<br />
<span id="more-9"></span><br />
A quick and easy way to tell is to type the following snippet of JavaScript into the location bar:</p>
<p><code><a href="javascript:alert(document.compatMode);">javascript:alert(document.compatMode);</a></code></p>
<p>which will pop up a box stating either &#8220;BackCompat&#8221; for Quirks mode, or &#8220;CSS1Compat&#8221; for Strict mode.</p>
<p>If you&#8217;re using Firefox and have the Bookmarks toolbar visible, you can drag the following link on to it to create a handy little button you can use to check which rendering mode the browser is in on any page you visit. In Internet Explorer, right-click on the link and select &#8220;Add to Favorites&#8230;&#8221; to achieve the same thing. (You&#8217;ll get a warning that the link &#8220;may not be safe&#8221;; at that point you have to decide how much you trust me. Believe me, it&#8217;s safe.)<br />
<code><a href="javascript:alert(document.compatMode);">Rendering mode</a></code></p>
<p>I find this tremendously useful for doing checks on pages, particularly when editing pages by hand, where a simple typo might throw a page into Quirks mode, with resultant frustration as CSS which previously worked suddenly goes completely to pot.</p>
<p>(Note that the &#8220;CSS1Compat&#8221; actually means &#8220;CSS2Compat&#8221; in browsers with support for CSS 2.1.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickfitz.co.uk/2006/06/04/quirks-or-strict-a-quick-way-to-tell/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IE7 Beta Preview available</title>
		<link>http://www.nickfitz.co.uk/2006/01/31/ie7-beta-preview-available/</link>
		<comments>http://www.nickfitz.co.uk/2006/01/31/ie7-beta-preview-available/#comments</comments>
		<pubDate>Tue, 31 Jan 2006 19:09:08 +0000</pubDate>
		<dc:creator>nickfitz</dc:creator>
				<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.nickfitz.co.uk/?p=10</guid>
		<description><![CDATA[MS finally lets us look at the new version. Buy Virtual PC first...]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://blogs.msdn.com/ie">IEBlog</a> has announced the release of the <a href="http://blogs.msdn.com/ie/archive/2006/01/31/520812.aspx">Beta Preview of IE7</a>. Unfortunately, you need to overwrite your existing system to use it, or shell out hard cash for <a href="http://www.microsoft.com/windows/virtualpc/default.mspx">Virtual PC</a>, sold by&#8230; Microsoft.</p>
<p>Oh, and it only works on <a href="http://www.microsoft.com/athome/security/update/sp2.mspx">XPSP2</a>; bet you wish you hadn&#8217;t shelled out for <a href="http://www.microsoft.com/windowsserver2003/default.mspx">Windows Server 2003</a> now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickfitz.co.uk/2006/01/31/ie7-beta-preview-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

