<?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>Bruce Lawson's  personal site &#187; Opera</title>
	<atom:link href="http://www.brucelawson.co.uk/category/accessibility-web-standards/opera/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brucelawson.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 09 Sep 2010 09:18:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to make websites that are mobile-friendly</title>
		<link>http://www.brucelawson.co.uk/2010/how-to-make-websites-that-are-mobile-friendly/</link>
		<comments>http://www.brucelawson.co.uk/2010/how-to-make-websites-that-are-mobile-friendly/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 14:34:47 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[accessibility  web standards]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.brucelawson.co.uk/?p=2882</guid>
		<description><![CDATA[I&#8217;ve written an article on making sure your websites have a fighting chance of working across devices (mobiles, consoles etc). It&#8217;s for web designers used to making desktop sites, rather than for people designing iThing apps. The article was originally called &#8220;The ultimate guide to mobile optimisation&#8221; but the boss rightly said no (you could [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written an article on making sure your websites have a fighting chance of working across devices (mobiles, consoles etc).</p>
<p>It&#8217;s for web designers used to making desktop sites, rather than for people designing iThing apps.</p>
<p>The article was originally called &#8220;The ultimate guide to mobile optimisation&#8221; but the boss rightly said no (you could write a book about the subject, but all the main points are introduced in the article). </p>
<p>So now it&#8217;s called <a href="http://dev.opera.com/articles/view/the-mobile-web-optimization-guide/">Mobile-friendly: The mobile web optimization guide</a>. Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brucelawson.co.uk/2010/how-to-make-websites-that-are-mobile-friendly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Making iPad app everytimezone.com work cross-browser</title>
		<link>http://www.brucelawson.co.uk/2010/making-ipad-app-everytimezone-com-work-cross-browser/</link>
		<comments>http://www.brucelawson.co.uk/2010/making-ipad-app-everytimezone-com-work-cross-browser/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 10:26:39 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[accessibility  web standards]]></category>

		<guid isPermaLink="false">http://www.brucelawson.co.uk/?p=2748</guid>
		<description><![CDATA[As someone who is timezone-maths challenged and forever dialling into international conference calls an hour early or an hour late, I greatly appreciated the intuitiveness of the everytimezone iPad app by Amy Hoy (idea &#038; design) and Thomas Fuchs (development). The accompanying blog post Making an iPad HTML5 App &#038; making it really fast said [...]]]></description>
			<content:encoded><![CDATA[<p>As someone who is timezone-maths challenged and forever dialling into international conference calls an hour early or an hour late, I greatly appreciated the intuitiveness of the <a href="http://everytimezone.com/">everytimezone iPad app</a> by Amy Hoy (idea &#038; design) and Thomas Fuchs (development). </p>
<p>The accompanying blog post <a href="http://mir.aculo.us/2010/06/04/making-an-ipad-html5-app-making-it-really-fast/"><cite>Making an iPad HTML5 App &#038; making it really fast</cite></a> said &#8220;desktop browsers work, too!&#8221; but it didn&#8217;t work in Opera.</p>
<p>David Storey, Patrick Lauke and I set about exploring why. The answer was simple: browser-sniffing. The app was only looking for browsers with the strings &#8220;webkit&#8221; or &#8220;Gecko&#8221; in the user agent string, and only feeding those browsers the necessary code. So we copied the code and, as a proof of concept, added &#8220;opera&#8221; to the list of strings being sniffed, and made trivial amends to the JavaScript to send <a href="http://my.opera.com/ODIN/blog/2010/06/25/o-vendor-prefixed-css-supported-in-opera-10-50"><code>-o-</code> prefixed styles</a>.</p>
<p>Additionally, the main CSS was only using <code>-webkit-border-radius</code> and <code>-moz-border-radius</code>, while Opera and IE9 use the naked property name <code>border-radius</code>. (See my <a href="/2010/cross-browser-future-proof-css-3/"><cite>Writing cross-browser, future-proof CSS 3</cite></a> for more on this.)</p>
<p>Adding this to our proof of concept made the application work  in Opera. There are differences; Opera doesn&#8217;t support CSS Gradients so those don&#8217;t show (although an SVG gradient as a CSS <code>background-image</code> would work perfectly well) and a bug means it doesn&#8217;t pick up the Futura font. But <a href="http://dowebsitesneedtolookexactlythesameineverybrowser.com/">visual differences are to be expected</a> on the Web; it&#8217;s the content that&#8217;s king (or, in the case of an application, the functionality).</p>
<p>We sent this to Thomas, and very sportingly he made the code live, so now everytimezone.com works in Opera too. The moral is that it&#8217;s pretty easy to make your sites work across all modern browsers and, while you might expect the user to be coming from one specific device, if your app is on the Web (rather than a <a href="http://www.quirksmode.org/blog/archives/2009/04/introduction_to.html">W3C Widget</a> or some proprietary format like Apple app store) you can expect visitors using other devices, browsers and operating systems.</p>
<p>Of course, it won&#8217;t work in IE9, even though it was announced yesterday that IE9 will support canvas, as the browser-sniffing locks out all versions of IE, past and future. That&#8217;s the downside to browser-sniffing: it&#8217;s completely non-futureproof. If you make a deliberate policy to block a browser, and a future version of that browser is capable of supporting your code, you have to go back and amend your blocking code.  If you have hundreds of sites in your portfolio, that&#8217;s a massive commitment. </p>
<p>So congratulations s to Thomas and Amy for a lovely little app; I can now dial into conference calls with confidence and punctuality!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brucelawson.co.uk/2010/making-ipad-app-everytimezone-com-work-cross-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Introducing HTML5 (almost) in the can</title>
		<link>http://www.brucelawson.co.uk/2010/introducing-html5-almost-in-the-can/</link>
		<comments>http://www.brucelawson.co.uk/2010/introducing-html5-almost-in-the-can/#comments</comments>
		<pubDate>Wed, 05 May 2010 11:47:21 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[accessibility  web standards]]></category>

		<guid isPermaLink="false">http://www.brucelawson.co.uk/?p=2667</guid>
		<description><![CDATA[Last Friday was our deadline and, with the spec changing all around us, Remy and I got all the chapters in for Introducing HTML5. There&#8217;s still much to do; we have to address comments made by our editor Jeff Riley, a copyeditor and our two technical editors Patrick Lauke and Robert Nyman, as well as [...]]]></description>
			<content:encoded><![CDATA[<p>Last Friday was our deadline and, with the spec changing all around us, Remy and I got all the chapters in for <a href="http://www.introducinghtml5.com">Introducing <abbr>HTML</abbr>5</a>. There&#8217;s still much to do; we have to address comments made by our editor Jeff Riley, a copyeditor and our two technical editors <a href="http://www.splintered.co.uk">Patrick Lauke</a> and <a href="http://www.robertnyman.com">Robert Nyman</a>, as well as add information about the brand-new <code>track</code> element.</p>
<p>Some people have asked for a chapter list. Here it is:</p>
<ol>
<li>Introduction (why <abbr>HTML</abbr>5 exists)</li>
<li>Structuring a page (<code>header</code>, <code>footer</code>, <code>nav</code>, <code>aside</code> etc)</li>
<li>Marking up a blog (the outlining algorithm, other new elements, what&#8217;s removed, what&#8217;s changed, WAI-ARIA, case-study of <abbr>HTML</abbr>5ifying The Guardian homepage. This chapter is a monster so we may split it into two.)
</li>
<li>Forms</li>
<li>multimedia (<code>video</code>, <code>audio</code>) markup and APIs</li>
<li><code>canvas</code></li>
<li>storage</li>
<li>Working offline</li>
<li>Drag and Drop</li>
<li>Geolocation</li>
<li>messages, web workers, web sockets</li>
</ol>
<p>From the introduction:</p>
<h3>Who’s this book for? </h3>
<p>No knowledge of HTML5 is assumed, but we expect you’re an experienced (X)HTML author, familiar with the concepts of semantic markup. It doesn’t matter whether you’re more familiar with HTML or XHTML doctypes, but you should be happy coding in any kind of strict markup. While you don’t need to be a JavaScript ninja, you should have an understanding of the increasingly important role it plays in modern web development, and terms like DOM and API won’t make you drop this book in terror and run away. </p>
<h3>What this book isn’t</h3>
<p>This book is not a reference book. We don’t go through each element or API in a linear fashion, discussing each fully and then moving on. The specification does that job in mind-numbing, tear-jerking, but absolutely essential detail. What the specification doesn’t try to do is teach how to use each element or API or how they work in the context of each other. We’ll build up examples, discussing new topics as we go, and return to them later when there are new things to note. </p>
<p>You’ll also realise, from the title and the fact that you’re comfortably holding this book without requiring a forklift, that this book is not comprehensive. Explaining a specification that needs 900 pages to print (by comparison, the first HTML spec was three pages long) in a medium-sized book would require Tardis-like technology—which would be cool—or microscopic fonts—which wouldn’t. </p>
<p>The publishers are intransigent about page-count, so there&#8217;s lots that we can&#8217;t put in (but we cover the important things that are being implemented today). There also wasn&#8217;t room for &#8220;sexy photos of the authors looking dreamy lying on fluffy shag pile animal pelts, 70s style&#8221; that <a href="http://twitter.com/boblet/statuses/13356616131">one <abbr>HTML</abbr>5 Doctor requested</a>, although we may have  a contest in which the lucky winner gets 2 hours in which to take such photographs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brucelawson.co.uk/2010/introducing-html5-almost-in-the-can/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>I survived South By SouthWest</title>
		<link>http://www.brucelawson.co.uk/2010/i-survived-south-by-southwest/</link>
		<comments>http://www.brucelawson.co.uk/2010/i-survived-south-by-southwest/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 15:12:17 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[accessibility  web standards]]></category>
		<category><![CDATA[general geek]]></category>
		<category><![CDATA[personal, friends and family]]></category>

		<guid isPermaLink="false">http://www.brucelawson.co.uk/?p=2547</guid>
		<description><![CDATA[Other people have expressed surprise that I had never been to SxSW before (last year I had the chance to go to India so went there instead) and it was with some trepidation that I went to bring the good news about Opera, HTML5 and give the Texas ladies the chance of some hot lovin'. [...]]]></description>
			<content:encoded><![CDATA[<p>Other people have expressed surprise that I had never been to SxSW before (last year I had the chance to go to India so went there instead) and it was with some trepidation  that I went to bring the good news about Opera, HTML5 and give the Texas ladies the chance of some hot lovin'.</p>

<p>I very much liked Austin - or "Steve" as I like to call it - and it's become my new favourite American city; I used to like San Francisco but against Steve, it feels a bit like Brighton - too self-consciously cool to be relaxing.</p>

<p>I didn't see many talks as I had to be a boothbunny, but (to be brutally honest) I wasn't terribly impressed with those I did make it to. The panel format seemed a bit like paying to watch at a circlejerk, with everyone agreeing and congratulating each other, although I was impressed with some. The parties were not my thing either; I'm decades past queuing for an hour for a chance to shout at people you want to talk to (bah humbug get off my lawn). The free drinks in the lobby of my hotel every evening was far more conducive to chatting, sharing a laptop and doing the things I like to do with interesting people.</p>

<p>Fortunately, the "interactive workshop" I presented (which was actually a traditional presentation; there's no workshop potential with 400+ people in a room) was on Sunday so I had a couple of days to relax afterwards. (<a href="http://my.opera.com/ODIN/blog/html5-tales-from-the-developmenty-trenches-south-by-southwest-presentation">Slides are available</a> for your downloading pleasure). It was a full house, with some great feedback ("Bruce Lawson is like an open-source Steve Jobs") - thanks all! Special thanks to Martin Kliehm for inviting me to take part in the 3 hour extravaganza he curated.</p>

<p>One of the highlights was talking to real customers on the booth. Many challenged our "fastest browser" claim, and went away pleasantly surprised when they found their own sites rendering so speedily. It was also great to blow the "Opera has a bad UI" bullshit out of the water.</p>

<p>The other highlight was meeting so many people that I know on the Web, but rarely meet in real life&mdash;people like the unrepentant hardliner, <a href="http://www.flickr.com/photos/24374884@N08/4442747347/">John Foliot</a>,  <a href="http://www.flickr.com/photos/24374884@N08/4443514686/in/photostream/">baby-eating Matt May</a> and lovely people who I'd never actually met before, like <a href="http://www.flickr.com/photos/24374884@N08/4442740109/">Allan Kent</a> (on-line friend since 2003), Jared Smith of WebAim and the best-dressed lady in Web, <a href="http://www.flickr.com/photos/24374884@N08/4442738519/in/photostream/">Nimbupani</a>.</p>

<p>That nice Dan Oliver from .net magazine did an interview with me:</p>


<embed src="http://www.youtube.com/v/OQ4ekJ3mijs&#038;hl=en_GB&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed>


<p>I got to eat a burger (Whataburger!) for breakfast, hang in the Media Temple VIP room, wear a <a href="http://www.flickr.com/photos/24374884@N08/4443528616/">Mexican wrestling mask</a> and a glittery camisole. There are a <a href="http://www.flickr.com/photos/24374884@N08/sets/72157623520576997/">few photos</a>, fewer memories and, apart from liver made of pat&eacute; and terminal jetlag, I survived my first South By SouthWest.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.brucelawson.co.uk/2010/i-survived-south-by-southwest/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
<enclosure url="http://people.opera.com/brucel/talks/2010/SxSW/bruce-lawson-dotnet-interview.ogv" length="7344960" type="video/ogg" />
		</item>
		<item>
		<title>HTML5 video, canvas accessibility, microdata</title>
		<link>http://www.brucelawson.co.uk/2010/html5-video-canvas-accessibility-microdata/</link>
		<comments>http://www.brucelawson.co.uk/2010/html5-video-canvas-accessibility-microdata/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 13:55:55 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[accessibility  web standards]]></category>

		<guid isPermaLink="false">http://www.brucelawson.co.uk/?p=2534</guid>
		<description><![CDATA[As I sit here in Austin, Texas munching a breakfast of bafflingly-termed foodstuffs like &#8220;eggs medium over-easy&#8221;, &#8220;white omlette&#8221; and incorrectly-pronounced tomatoes, I thought I&#8217;d update you on a few HTML5 tidbits. The first is the news that Google will start indexing content marked up using microdata. No browser does anything with data it finds [...]]]></description>
			<content:encoded><![CDATA[<p>As I sit here in Austin, Texas munching a breakfast of bafflingly-termed  foodstuffs like &#8220;eggs medium over-easy&#8221;, &#8220;white omlette&#8221; and incorrectly-pronounced tomatoes, I thought I&#8217;d update you on a few <abbr>HTML</abbr>5 tidbits.</p>
<p>The first is the news that <a href="http://googlewebmastercentral.blogspot.com/2010/03/microdata-support-for-rich-snippets.html">Google will start indexing content marked up using microdata</a>. No browser does anything with data it finds in pages, but the voodoo magicians that do SEO will presumably find the  chance of extra googlejuice compelling. </p>
<p>You can have a play using <a href="http://www.twitter.com/foolip">@foolip</a>&#8216;s <a href="http://gitorious.org/microdatajs">JavaScript microdata implementation</a> (work in progress; the lad has <a href="http://blog.foolip.org/2009/12/30/im-getting-married/">other things on his mind</a>). I was chatting to Tantek &Ccedil;elik last night, and he said he&#8217;s looking to add some microdata support in microformats.</p>
<p>I&#8217;m a lurking member of two W3C subgroups that work on the accessibility of video and canvas. We recently had two internal votes. The first was on what type of captioning format should be supported, and asked us to choose between the .srt format (a plain text file with time markers and text) or the W3C standard <a href="http://www.w3.org/TR/ttaf1-dfxp/#dfxp-content-doctype"><abbr>DXFP</abbr></a> which, although minging, allows markup. (.srt seems to me to be as limited alt text on an image; it can&#8217;t contain markup or styling information). I voted for <abbr>DFXP</abbr> because, at its most basic it doesn&#8217;t need to be more complex than plain .srt, but has the potential for extensibility when browser implementations become more sophisticated. (My vote was a personal opinion and not an official Opera vote, by the way.)</p>
<p>The second vote that&#8217;s taking place is about extensions to canvas. There are two main proposals, one is for a new attribute called <a href="http://www.w3.org/2010/02/22-html-a11y-minutes.html"><code>adom</code></a> (for &#8220;accessibility DOM&#8221;) that constructs a &#8220;shadow DOM&#8221; for assistive technologies can hook into &#8211; and which the author must ensure is in sync with the visual rendering. I&#8217;m uncomfortable with this proposal for reasons that I&#8217;m not quite able to articulate at the moment (but its author is at South By Southwest so I hope to be able to catch up with him for a chat).</p>
<p>The proposal that I like is to extend <code>canvas</code> is <a href="http://www.w3.org/html/wg/wiki/ChangeProposals/Map4NotAdom">&#8220;Improve image maps, don&#8217;t use @adom&#8221;</a> which I favour because it uses familiar markup and reuses ideas from (and browser implementations of) <abbr>HTML</abbr>4. (Disclosure: the proposal was made by Chaals, Head of Standards at Opera, but that&#8217;s not why I prefer it.)</p>
<p>The Mighty Steve Faulkner also has a proposal <a href="http://www.w3.org/html/wg/wiki/ChangeProposals/canvasaccessibility">Provide accessibility implementation  for focus rectangle and caret</a>, which I haven&#8217;t read yet. But it&#8217;s Steve, and his shit is solid.</p>
<p>Anyway, gotta go and shower my pits before booth-bunnying the Opera South By Southwest booth. It&#8217;s in row 300 of exhibition room 4. Why not stop by a chat, especially if you&#8217;re a gorgeous Web Standards babe, or have a black coffee for me? Alternatively, I&#8217;m first speaker at an <a href="/2010/south-by-southwest-html5-talks/"><abbr>HTML</abbr>5 extravaganza</a> on Sunday from 2 to 6 pm.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brucelawson.co.uk/2010/html5-video-canvas-accessibility-microdata/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>South by Southwest HTML5 talks</title>
		<link>http://www.brucelawson.co.uk/2010/south-by-southwest-html5-talks/</link>
		<comments>http://www.brucelawson.co.uk/2010/south-by-southwest-html5-talks/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 18:18:15 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[accessibility  web standards]]></category>

		<guid isPermaLink="false">http://www.brucelawson.co.uk/?p=2522</guid>
		<description><![CDATA[Yikes. I remember when I used to blog at least once a week. I blame twitter. And the boss, for making me do some work. Anyway, if you&#8217;re headed over to South By Southwest next week, and fancy learning about HTML5 on Sunday afternoon, please pop along for a three hour workshop with me and [...]]]></description>
			<content:encoded><![CDATA[<p>Yikes. I remember when I used to blog at least once a week. I blame twitter. And the boss, for making me do some work.</p>
<p>Anyway, if you&#8217;re headed over to South By Southwest next week, and fancy learning about <abbr>HTML</abbr>5 on Sunday afternoon, please pop along for a three hour workshop with me and some lovely friends from the world of accessibility, Mozilla and Microsoft in Ballroom F (this is a rom change to one double the capacity of the origianal venue &#8211; gulp!).</p>
<p>The running order is </p>
<ol>
<li>
<h3><abbr>HTML</abbr>5: Tales from the Development Trenches</h3>
<p>2:00 PM &#8211; 3:00 PM</p>
<p>Me &#8216;n&#8217; Martin Kliehm. An overview of how <abbr>HTML</abbr>5 came to be, why we need it, what it can do: new structural elements, intelligent forms, scriptable images with &lt;canvas&gt; and a brief introduction to &lt;video&gt;.</p>
</li>
<li>
<h3>Wow, That&#8217;s Cool&#8230; Fun With <abbr>HTML</abbr>5 Video</h3>
<p>3:30 PM &#8211; 4:30 PM</p>
<p>Chris Blizzard (Mozilla), Michael Dale</p>
</li>
<li>
<h3><abbr>HTML</abbr>5 Accessibility</h3>
<p>5:00 PM &#8211; 5.30 PM</p>
<p>John Foliot (Unrepentant hardliner and lovely bloke), Cynthia Shelley (Microsoft)</p>
</li>
<li>
<h3>Panel Q&#038;A</h3>
<p>5:30 PM &#8211; 6:00 PM</p>
<p>Ensemble</p>
</li>
</ol>
<p>Why not <a href="http://my.sxsw.com/search/event_results?q=html5%20workshop%20-css3%20-google">add them to your schedule</a>?</p>
<p>I ain&#8217;t never been to South By Southwest  but everyone done told me that it&#8217;s <a href="/2010/if-youre-british-its-not-awesome/">awesome</a> to the max (I&#8217;m a-larnin&#8217; to speak American &#8211; yee har!). I don&#8217;t know much about Texas; is it the law that you must wear a JR Ewing stetson? </p>
<p>If you can&#8217;t make the talks, hopefully I&#8217;ll see you at the Opera booth and get a chance to love you up like the gorgeous canoodlebot that everyone tells me you are.</p>
<p>See you there?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brucelawson.co.uk/2010/south-by-southwest-html5-talks/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
