<?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>justaddwater.dk &#187; Accessibility</title>
	<atom:link href="http://justaddwater.dk/category/accessibility/feed/" rel="self" type="application/rss+xml" />
	<link>http://justaddwater.dk</link>
	<description>Instant Usability &#38; Web Standards</description>
	<lastBuildDate>Thu, 02 Feb 2012 08:51:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Internal Apps In Firefox</title>
		<link>http://justaddwater.dk/2009/09/23/internal-apps-in-firefox/</link>
		<comments>http://justaddwater.dk/2009/09/23/internal-apps-in-firefox/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 10:28:46 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[capgemini]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1152</guid>
		<description><![CDATA[This post is probably highly irrelevant unless you work at Capgemini and want to use the internal nordic applications in Firefox. Read on if you want to access systems like CTR (time reporting), Event calendar, Skills database, PDR, Project forms or similar applications in Firefox. Problem is that the systems are not accessible at all [...]]]></description>
			<content:encoded><![CDATA[<p>This post is probably highly irrelevant unless you work at Capgemini and want to use the <a href="http://applications.capgemini.se/">internal nordic applications</a> in Firefox.</p>
<p>Read on if you want to access systems like CTR (time reporting), Event calendar, Skills database, PDR, Project forms or similar applications in Firefox.</p>
<p>Problem is that the systems are not accessible at all if you&#8217;re not logged in. The reason is some extremely malformed HTML. Here is the entire content of the HTML page sent out:</p>
<blockquote><p>&lt;!&#8211; CFIF (#Cookie.CFId# LT 10000) &#8211;&gt;<br />
&lt;!&#8211; CFLOCATION URL=&#8221;/applikationer/Login/CleanUp.cfm&#8221; Addtoken=&#8221;NO&#8221; &#8211;&gt;<br />
&lt;!&#8211; /CFIF &#8212;&gt;</p>
<p>&lt;HTML&gt;<br />
&lt;HEAD&gt;<br />
&lt;TITLE&gt;CTR System&lt;/TITLE&gt;<br />
&lt;/HEAD&gt;</p>
<p>&lt;!&#8211; No Cookie &#8211;&gt;</p>
<p>&lt;FORM Name=&#8221;ssoRedirect&#8221; Method=&#8221;Post&#8221; Action=&#8221;https://sso.capgemini.com/gate.asp&#8221;&gt;<br />
&lt;INPUT Type = &#8220;hidden&#8221; Name=&#8221;calling_url&#8221; Value=&#8221;http://applications.capgemini.se/Applications/CTR/CTR.cfm?&#8221;&gt;<br />
&lt;INPUT Type = &#8220;hidden&#8221; Name=&#8221;server_identifier&#8221; Value=&#8221;applications.capgemini.se&#8221;&gt;<br />
&lt;/FORM&gt;</p>
<p>&lt;SCRIPT Language=&#8221;javascript&#8221;&gt;<br />
document.forms['ssoRedirect'].submit()<br />
&lt;/SCRIPT&gt;</p></blockquote>
<p>Several problems here: Content outside of HTML element. No body element. No end HTML tag. And the most critical that triggers this particular problem: The form element and the SCRIPT element are outside the body.</p>
<p>IE has an interpretation of this illegal structure: It creates a body element and fills in the SCRIPT and FORM tag into them.</p>
<p>Firefox guesses differently. It moves the FORM element to the body as well, but the SCRIPT element is put in the HEAD section. The consequence is that the form submit happens before the FORM element is rendered. And it gives a JavaScript error that the form is not found.</p>
<p>I wrote a Greasemonkey script that essentially posts the form again (and Greasemonkey is not triggered until DOM is loaded).</p>
<p>Install greasemonkey script:</p>
<p><a href="http://justaddwater.dk/wp-content/uploads/2009/09/capinternal_systems_login_nordic_apps.user.js">capinternal_systems_login_nordic_apps.user.js</a> (version 1.0 created 2009-09-23)</p>
<p>If you want to improve on it or add more for more internal systems, feel free to fork this gist on Github <a href="http://gist.github.com/191896">http://gist.github.com/191896</a></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2009/09/23/internal-apps-in-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sharepoint 2007, Accessibility, and Impossible UI Customization</title>
		<link>http://justaddwater.dk/2008/01/20/sharepoint-2007-accessibility-and-impossible-ui-customization/</link>
		<comments>http://justaddwater.dk/2008/01/20/sharepoint-2007-accessibility-and-impossible-ui-customization/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 19:51:53 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2008/01/20/sharepoint-2007-accessibility-and-impossible-ui-customization/</guid>
		<description><![CDATA[Emil Stenström&#8217;s recent &#8220;Sharepoint 2007 from an interface developer’s view&#8221; is definitely worth reading if you care about webstandards, accessibility and decent frontend code in general. Here are some of the quotes that really stand out in an excellent article that i really recommend you read before picking your web development platform. One major problem [...]]]></description>
			<content:encoded><![CDATA[<p>Emil Stenström&#8217;s recent &#8220;<a href="http://friendlybit.com/css/sharepoint-2007-from-an-interface-developers-view/">Sharepoint 2007 from an interface developer’s view</a>&#8221; is definitely worth reading if you care about webstandards, accessibility and decent frontend code in general.<br />
Here are some of the quotes that really stand out in an excellent article that i really recommend you read before picking your web development platform.</p>
<blockquote><p>One major problem is that you still need javascript enabled for many of the accessibility features. Enabling “Accessibility mode”, among other things, makes dropdown menus appear as new windows (popups) instead of dynamically writing HTML to the page. And this is after they “fixed” it.</p></blockquote>
<blockquote><p>Except from core.js, the javascript is spread out all over the place. As usual in many CMS:es, javascript is not treated as a real programming language, so there’s no structuring whatsoever. Sometimes it’s script tags, sometimes inline, sometimes external mini files, and most often automatically generated code. It’s a real mess, and is a big reason for the HTML size being so large. Many of the scripts do not work in browsers other than IE, which means you really need IE to properly use the admin interface.</p></blockquote>
<blockquote><p>The problem is that the system is built so that all of those “out of the box” features are hard to customize. Things like changing how the wiki renders, is really hard. Often it’s easier to rebuild that feature from scratch, than customizing what Sharepoint ships.</p></blockquote>
<p>Keep an eye out for Emil, as he promises more posts as the project moves on. It&#8217;s good that people like him write about the ups and downs of development frameworks. And also valuable to share the possible workaround and best solutions &#8212; even when it is formulated like here:</p>
<blockquote><p><strong>Sharepoint 2007, is beyond repair when it comes to interface customization</strong>, and you should do everything in your power to avoid working with it. If I can give one interface developer the arguments to convince a customer to pick another system, this article was worth it.</p></blockquote>
<p>Read more:</p>
<ul>
<li>Emil Stenström: <a href="http://friendlybit.com/css/sharepoint-2007-from-an-interface-developers-view/">Sharepoint 2007 from an interface developer’s view</a></li>
<li>Justaddwater: <a href="http://justaddwater.dk/2007/06/04/sharepoint-meets-web-standards/" rel="bookmark" title="Permanent Link to Sharepoint Meets Web Standards">Sharepoint Meets Web Standards</a> (June 2007)</li>
</ul>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/standards" rel="tag">standards</a>, <a href="http://technorati.com/tag/web+standards" rel="tag">  web standards</a>, <a href="http://technorati.com/tag/webstandards" rel="tag">  webstandards</a>, <a href="http://technorati.com/tag/sharepoint" rel="tag">  sharepoint</a>, <a href="http://technorati.com/tag/sharepoint+2007" rel="tag">  sharepoint 2007</a>, <a href="http://technorati.com/tag/MOSS" rel="tag">  MOSS</a>, <a href="http://technorati.com/tag/2007" rel="tag"> 2007</a>, <a href="http://technorati.com/tag/microsoft" rel="tag"> microsoft</a>, <a href="http://technorati.com/tag/cameron+moll" rel="tag">  cameron moll</a>, <a href="http://technorati.com/tag/xhtml" rel="tag">  xhtml</a>, <a href="http://technorati.com/tag/css" rel="tag">  css</a>, <a href="http://technorati.com/tag/w3c" rel="tag">  w3c</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2008/01/20/sharepoint-2007-accessibility-and-impossible-ui-customization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blue Beanie Day &#8211; A day for Web Standards and Accessibility</title>
		<link>http://justaddwater.dk/2007/11/18/blue-beanie-day-a-day-for-web-standards-and-accessibility/</link>
		<comments>http://justaddwater.dk/2007/11/18/blue-beanie-day-a-day-for-web-standards-and-accessibility/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 12:47:46 +0000</pubDate>
		<dc:creator>Thomas Watson Steen</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2007/11/18/blue-beanie-day-a-day-for-web-standards-and-accessibility/</guid>
		<description><![CDATA[I just got an event invitation on Facebook asking me to join &#8220;Blue Beanie Day&#8220;. Two questions quickly popped into my head: What is a Blue Beanie? Where do I get one? If you are into web standards and accessibility you have already seen a blue beanie on the cover of Jeffery Zeldman&#8217;s great book [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://justaddwater.dk/wp-content/uploads/2007/11/dwws.jpg" alt="Designing With Web Standards cover photo" style="margin: 0pt 0pt 1em 1em; float: right" /></p>
<p>I just got an event invitation on Facebook asking me to join &#8220;<a href="http://www.facebook.com/event.php?eid=6209917619" title="Facebook Event: Blue Beanie Day">Blue Beanie Day</a>&#8220;. Two questions quickly popped into my head:</p>
<ol>
<li>What is a Blue Beanie?</li>
<li>Where do I get one?</li>
</ol>
<p>If you are into web standards and accessibility you have already seen a blue beanie on the cover of Jeffery Zeldman&#8217;s great book &#8220;<a href="http://www.zeldman.com/dwws/" title="Zeldman: Designing With Web Standards">Designing With Web Standards</a>&#8220;. A must-have for any web developer &#8211; both amateurs and professionals. You can see the cover here to the right.</p>
<p>The point of the event is to, on the 26th of November, wear a blue beanie when you go to work, to school, ride the subway, walk your dog at the local park, anywhere&#8230; <strong>This is your way of saying: Web Standards matter! Accessibility matter! This is your chance to raise awareness on this sometimes forgotten subject of web development.</strong></p>
<p><a href="http://www.facebook.com/event.php?eid=6209917619" title="Facebook Event: Blue Beanie Day">Join now!</a></p>
<p><a href="http://www.flickr.com/groups/bluebeanieday2007/" title="Flickr group: bluebeanieday2007">And add a picture of yourself on Flickr afterwards</a>.</p>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/Blue+Beanie+Day" rel="tag">Blue Beanie Day</a>, <a href="http://technorati.com/tag/Jeffery+Zeldman" rel="tag"> Jeffery Zeldman</a>, <a href="http://technorati.com/tag/DWWS" rel="tag"> DWWS</a>, <a href="http://technorati.com/tag/Designing+With+Web+Standards" rel="tag"> Designing With Web Standards</a>, <a href="http://technorati.com/tag/Web+Standards" rel="tag"> Web Standards</a>, <a href="http://technorati.com/tag/Accessibility" rel="tag"> Accessibility</a>, <a href="http://technorati.com/tag/Facebook" rel="tag"> Facebook</a>, <a href="http://technorati.com/tag/Flickr" rel="tag"> Flickr</a>, <a href="http://technorati.com/tag/book" rel="tag"> book</a>, <a href="http://technorati.com/tag/event" rel="tag"> event</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2007/11/18/blue-beanie-day-a-day-for-web-standards-and-accessibility/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Power Tool for Webmasters</title>
		<link>http://justaddwater.dk/2007/10/19/google-power-tool-for-webmasters/</link>
		<comments>http://justaddwater.dk/2007/10/19/google-power-tool-for-webmasters/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 14:02:56 +0000</pubDate>
		<dc:creator>Thomas Watson Steen</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Search Engines]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2007/10/19/google-power-tool-for-webmasters/</guid>
		<description><![CDATA[If you run a blog or any other website for that matter, you might want to check out Google Webmaster Central &#8211; in particular their Google Webmaster Tool &#8211; if you haven&#8217;t already seen it. Google Webmaster Tool is a great tool for webmasters who want to see and manage how Google crawls their site(s). [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://justaddwater.dk/wp-content/uploads/2007/10/tools2.gif" alt="Google Webmaster Tools logo" style="margin: 0pt 0pt 1em 1em; float: right" />If you run a blog or any other website for that matter, you might want to check out <a href="http://www.google.com/webmasters/">Google Webmaster Central</a> &#8211; in particular their <a href="http://www.google.com/webmasters/tools/">Google Webmaster Tool</a> &#8211; if you haven&#8217;t already seen it.</p>
<p><strong>Google Webmaster Tool is a great tool for webmasters who want to see and manage how Google crawls their site(s).</strong> If you have a Google ID you can add all the sites that you control to a dashboard. From here you can see intimate details for each site. After adding justaddwater.dk I found that Google was encountering some HTTP errors when crawling our site. This of cause is very important since other users unfortunately also encounter these errors.</p>
<p><img src="http://justaddwater.dk/wp-content/uploads/2007/10/googlewebmastertools-http-errors.png" alt="Google Webmaster Tools: Dashboard, Web crawl errors" /></p>
<p>When diving into the errors I can see that some links to our site point at stuff that is not there. I unfortunately cant see where these links come from. They could be external or internal I guess, but I have to manually look at my site to see. <strong>Adding a &#8220;source&#8221; for the link would be very easy for Google and be a great benefit to the webmaster.</strong></p>
<p>Besides web crawling problems, the tool also gives loads of other interesting information. I suggest you take a look your self, but to just summarize I quote Google:</p>
<p><strong>Statistics</strong></p>
<blockquote><p><strong>Top search queries</strong><br />
See which search queries most often returned pages from your site, and which of them were clicked.</p>
<p><strong>Crawl stats</strong><br />
See your distribution info for your site, including the current PageRank for pages on your site.</p>
<p><strong>Subscriber stats</strong><br />
If your site publishes feeds of its content, this page will display the number of users who have subscribed to these feeds using Google products such as iGoogle, Google Reader, or Orkut.</p>
<p><strong>What Googlebot sees</strong><br />
See details about how the Googlebot sees your site.</p>
<p><strong>Index stats</strong><br />
Learn how your site is indexed by Google, including which pages are indexed, and which other sites point to your site.</p></blockquote>
<p><strong>Links</strong></p>
<blockquote><p><strong>Pages with external links</strong><br />
See which pages on your site have links pointing to them from other sites.</p>
<p><strong>Sitelinks</strong><br />
See which links on your site have been identified as candidates for appearing directly in Google search results.</p>
<p><strong>Pages with internal links</strong><br />
See which pages on your site have links pointing to them internally from elsewhere on your site.</p></blockquote>
<p><strong>Sitemaps</strong><br />
Add and manage your <a href="http://www.sitemaps.org/" title="Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling.">sitemaps</a> (including <a href="http://googlewebmastercentral.blogspot.com/2007/10/introducing-code-search-sitemaps.html" title="Google Webmaster Central Blog: Introducing Code Search Sitemaps">code sitemaps</a>).</p>
<p><strong>Tools</strong></p>
<blockquote><p><strong>Analyze robots.txt</strong><br />
See whether your robots.txt file blocks specific URLs as is, or with modifications you make. Test against various Google user-agents, too.</p>
<p><strong>Enable enhanced image search</strong><br />
Enable Google&#8217;s enhanced search for images on your site, including advanced labeling techniques for images hosted by Google.</p>
<p><strong>Manage site verification</strong><br />
See all verified owners of this site, and optionally reverify them.</p>
<p><strong>Set crawl rate</strong><br />
See statistics about how often Google crawls your site, and optionally adjust that speed if desired.</p>
<p><strong>Set preferred domain</strong><br />
Associate a preferred domain with this site, to always or never show the leading &#8220;www.&#8221; in Google&#8217;s search results.</p>
<p><strong>Remove URLs</strong><br />
Remove content from the Google index, including expediting that removal.</p></blockquote>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/Google+Webmaster+Tools" rel="tag">Google Webmaster Tools</a>, <a href="http://technorati.com/tag/Google+Webmaster+Central" rel="tag"> Google Webmaster Central</a>, <a href="http://technorati.com/tag/sitemap" rel="tag"> sitemap</a>, <a href="http://technorati.com/tag/sitemaps" rel="tag"> sitemaps</a>, <a href="http://technorati.com/tag/tool" rel="tag"> tool</a>, <a href="http://technorati.com/tag/review" rel="tag"> review</a>, <a href="http://technorati.com/tag/search+engines" rel="tag"> search engines</a>, <a href="http://technorati.com/tag/http+errors" rel="tag"> http errors</a>, <a href="http://technorati.com/tag/accessibility" rel="tag"> accessibility</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2007/10/19/google-power-tool-for-webmasters/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Mobile User Experience:Trying Out Opera Mini</title>
		<link>http://justaddwater.dk/2007/06/28/mobile-user-experiencetrying-out-opera-mini/</link>
		<comments>http://justaddwater.dk/2007/06/28/mobile-user-experiencetrying-out-opera-mini/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 21:27:25 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2007/06/28/mobile-user-experiencetrying-out-opera-mini/</guid>
		<description><![CDATA[While being on vacation in beautiful Toscana, Italy, i&#8217;m trying out the Opera Mini browser on my Nokia 6233 cell phone. It is actually possible to use the blog administration software on the browser (log in, navigate, write posts, etc.) But it sure is not easy! There are lots of issues in the interface that [...]]]></description>
			<content:encoded><![CDATA[<p>While being on vacation in beautiful Toscana, Italy, i&#8217;m trying out the Opera Mini browser on my Nokia 6233 cell phone. It is actually possible to use the blog administration software on the browser (log in, navigate, write posts, etc.)</p>
<p>But it sure is not easy! There are lots of issues in the interface that easily leads to catastrophic accidents: For instance, i just lost half an hour worth of typing because i accidentally hit the back button. Normally i get a warning (&#8220;Are you sure&#8230;&#8221;), but apparently that warning does not work on the Opera Mini browser. HTML is tedious: I could use some kind of snippet library with at least p + a tags, and how do i enter a line break? Furthermore, i can see only two lines of text (8-10 words) at any time in the text area where i write this text. Absolutely horrific for reviewing text and really really annoying that there is blank space on the screen for probably six more lines of text! </p>
<p>Opera, Nokia: please team up and fix these issues. I will gladly help if you need more info.<p><small>Technorati Tags: <a href="http://technorati.com/tag/opera" rel="tag">opera</a>, <a href="http://technorati.com/tag/opera+mini" rel="tag"> opera mini</a>, <a href="http://technorati.com/tag/nokia" rel="tag"> nokia</a>, <a href="http://technorati.com/tag/wordpress" rel="tag"> wordpress</a>, <a href="http://technorati.com/tag/usability" rel="tag"> usability</a>, <a href="http://technorati.com/tag/browser" rel="tag"> browser</a>, <a href="http://technorati.com/tag/mobile" rel="tag"> mobile</a>, <a href="http://technorati.com/tag/user+experience" rel="tag"> user experience</a>, <a href="http://technorati.com/tag/uxp" rel="tag"> uxp</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2007/06/28/mobile-user-experiencetrying-out-opera-mini/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Does Sony think their customers are morons?</title>
		<link>http://justaddwater.dk/2007/04/16/does-sony-think-their-customers-are-morons/</link>
		<comments>http://justaddwater.dk/2007/04/16/does-sony-think-their-customers-are-morons/#comments</comments>
		<pubDate>Mon, 16 Apr 2007 12:33:34 +0000</pubDate>
		<dc:creator>Thomas Watson Steen</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[User experience]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2007/04/16/does-sony-think-their-customers-are-morons/</guid>
		<description><![CDATA[I&#8217;m not pirating music or films, and I will gladly pay huge sums of money to huge world-wide record companies and film studios. But if they insist on protecting their publications with DRM, I will in turn insist only to pay half the price at the shop counter in return for less accessible content. It [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I&#8217;m not pirating music or films, and I will gladly pay huge sums of money to huge world-wide record companies and film studios. But if they insist on protecting their publications with DRM, I will in turn insist only to pay half the price at the shop counter in return for less accessible content.</strong></p>
<p>It is no secret that DRM, or <a href="http://en.wikipedia.org/wiki/Digital_Rights_Management" title="Wikipedia: Digital Rights Management">Digital Rights Management</a>, have been used widely throughout the DVD and CD publishing world for some years now. DRM is not a technology in its own, but rather an umbrella-term used to cover the various technologies that exist, intended to prevent illegal copying of DVDs and CDs. </p>
<p><img src='http://justaddwater.dk/wp-content/uploads/2007/04/cd-dvd-logo.thumbnail.png' alt='Half CD and DVD logo' style='float: left; margin: 8px 8px 0 0' /> CD is short for &#8220;Compact Disc&#8221;, a standard originally developed by Sony and Philips between 1979 and 1982. DVD stands for &#8220;Digital Versatile Disc&#8221;, a standard developed by Toshiba (and others) in the early 1990s. But you don&#8217;t need a Sony or Philips CD player to play your latest music CD, nor do you need a special Toshiba DVD player to watch a DVD-movie. This is due to the interesting phenomenon known as a &#8220;standard&#8221;.</p>
<p>Sony, Philips and Toshiba made a great effort to get other hardware manufactures to create CD and DVD players that could play the new format. They also allowed CD and DVD manufactures to create and sell CDs and DVDs. This all helped the formats to be widely accepted into every household. So when you buy the new James Bond movie, Casino Royale, you expect that you can go home and watch it, using one of your various DVD players in your household &#8211; even if they aren&#8217;t manufactured by Sony, Philips or Toshiba.</p>
<h3>How DRM is bad User Experience</h3>
<p>The way many DRM technologies work is by deviating a little bit from the CD or DVD standard, making the disc non-compliant to that particular standard. This works due to the odd fact that many optical computer drives aren&#8217;t that tolerant for errors in the CD or DVD. Regular players like the one in your Hi-Fi system or below your TV-set usually are though. Since most illegal copying takes place on computers and since it is now harder to get the computer to read the original CD or DVD, this in turn results in a medium that is harder to copy &#8211; not impossible, but harder.</p>
<p>The problem with this tactic is that it is not bulletproof. Like I wrote above, many standalone CD and DVD players <em>can</em> play the corrupted medium &#8211; but not all! There are many, many cases where <strong>a perfectly good car-audio system, home stereo or top-of-the-line DVD player are <em>not</em> capable of playing DRM protected CDs or DVDs.</strong> Just as many cases exist where computer CD-ROM or DVD drives <em>are</em> capable of playing <em>and</em> copying these same DRM protected CDs and DVDs.</p>
<p>In the early days of DRM the manufactures still labeled the DRM protected mediums the same way as the real CDs and DVDs. They got the certified &#8220;Compact Disc&#8221; or &#8220;Digital Versatile Disc&#8221; logos printed on them. In many cases these logos where removed due to huge outrage from the public. Personally I couldn&#8217;t agree more. It was like selling cheese at the supermarket labeling it &#8220;Lo-fat, only 2%&#8221; when it actually contained 25% fat. Putting the Compact Disc logo on an optical disc that did not live up the the Compact Disc standards was not good business practice (is it even legal?).</p>
<p>Let&#8217;s forget the fact that most consumers don&#8217;t bother to check for these missing logos, nor that they are still called &#8220;CDs&#8221; and &#8220;DVDs&#8221;. <strong>The biggest issue by far is that they still expect you to pay the same amount of money for a product that is only half as good.</strong> A product that can only be played on half of your players, not to mention the fact that you are not allowed to take backup copies for your car etc. &#8211; even in countries where this is actually allowed with real CDs and DVDs.</p>
<p><strong>Dear record label and Dear film studio, please be fair and either drop the prices or just drop DRM altogether!</strong></p>
<p><em>This story was inspired by many years of irritation over DRM. Recently spawned by a story on <a href="http://slashdot.org/articles/07/04/15/1914248.shtml" title="Slashdot: New Sony DVDs Not Working In Some Players">Slashdot</a> where new DVDs released by Sony are reported not to work on multiple DVD players. Sony responded that it&#8217;s up to the manufacturers to update their hardware.</em></p>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/DRM" rel="tag">DRM</a>, <a href="http://technorati.com/tag/piracy" rel="tag"> piracy</a>, <a href="http://technorati.com/tag/Sony" rel="tag"> Sony</a>, <a href="http://technorati.com/tag/Philips" rel="tag"> Philips</a>, <a href="http://technorati.com/tag/Toshiba" rel="tag"> Toshiba</a>, <a href="http://technorati.com/tag/CD" rel="tag"> CD</a>, <a href="http://technorati.com/tag/DVD" rel="tag"> DVD</a>, <a href="http://technorati.com/tag/storage" rel="tag"> storage</a>, <a href="http://technorati.com/tag/music+industry" rel="tag"> music industry</a>, <a href="http://technorati.com/tag/film+industry" rel="tag"> film industry</a>, <a href="http://technorati.com/tag/movies" rel="tag"> movies</a>, <a href="http://technorati.com/tag/file+sharing" rel="tag"> file sharing</a>, <a href="http://technorati.com/tag/accessibility" rel="tag"> accessibility</a>, <a href="http://technorati.com/tag/user+experience" rel="tag"> user experience</a>, <a href="http://technorati.com/tag/uxp" rel="tag"> uxp</a>, <a href="http://technorati.com/tag/video" rel="tag"> video</a>, <a href="http://technorati.com/tag/security" rel="tag"> security</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2007/04/16/does-sony-think-their-customers-are-morons/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Bad Usability Calendar 2007 in Danish</title>
		<link>http://justaddwater.dk/2007/02/09/bad-usability-calendar-2007-in-danish/</link>
		<comments>http://justaddwater.dk/2007/02/09/bad-usability-calendar-2007-in-danish/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 09:48:43 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[User experience]]></category>
		<category><![CDATA[calendar]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2007/02/09/bad-usability-calendar-2007-in-danish/</guid>
		<description><![CDATA[Thomas Baekdal and I have translated and are now publishing Bad Usability Calendar 2007 in Danish. I can highly recommend using this calendar in projects as wallpaper. But good luck on using it for actual planning. This year&#8217;s version contains advice regarding AJAX, overwhelming use of graphics, advertising, and much more. Download Bad Usability Calendar [...]]]></description>
			<content:encoded><![CDATA[<p>Thomas Baekdal and I have translated and are now publishing Bad Usability Calendar 2007 in Danish.</p>
<p>I can highly recommend using this calendar in projects as wallpaper. But good luck on using it for actual planning.</p>
<p><img id="image544" src="http://justaddwater.dk/wp-content/uploads/2007/02/bad-usability-calendar-2007-danish-dk-screenshot.jpg" alt="Screenshot of Danish Bad Usability Calendar (dårlig brugervenlighed kalender 2007)" /></p>
<p>This year&#8217;s version contains advice regarding AJAX, overwhelming use of graphics, advertising, and much more.</p>
<h3>Download Bad Usability Calendar 2007</h3>
<ul>
<li><a href="http://iallenkelhet.no/nedlast/bad_usability_calendar_07_english_A3.pdf">English</a> <small>(560KB PDF)</small></li>
<li><a href="http://www.iallenkelhet.no/nedlast/bad_usability_calendar_07_norsk_A3.pdf">Norwegian</a> <small>(1.2 MB PDF)</small></li>
<li><a id="p543" href="http://justaddwater.dk/wp-content/uploads/2007/02/bad_usability_calendar_07-da-opt.pdf" title="Download Bad Usability Calendar (Danish version)">Danish</a> <small>(3.3 MB PDF)</small></li>
</ul>
<p>Related articles:</p>
<ul>
<li>Thomas Baekdal: <a href="http://www.baekdal.com/notes/work/bad-usability-2007/">Bad Usability Calendar &#8211; in Danish</a></li>
<li>Netlife Research: <a href="http://www.iallenkelhet.no/bad-usability-calendar-2007-is-here">Bad Usability Calendar 2007 is here!</a></li>
<li>Justadddwater.dk: <a href="http://justaddwater.dk/2007/01/27/bad-usability-calendar-2007-finally-ready/" rel="bookmark" title="Justaddwater.dk: Bad Usability Calendar 2007 Finally Ready">Bad Usability Calendar 2007 Finally Ready</a></li>
<li>Justaddwater.dk: <a href="http://justaddwater.dk/2006/10/16/bad-usability-calendar/" rel="bookmark" title="Justaddwater.dk: Bad Usability Calendar 2006">Bad Usability Calendar (2006)</a></li>
</ul>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/usability" rel="tag"> usability</a>, <a href="http://technorati.com/tag/accessibility" rel="tag">  accessibility</a>, <a href="http://technorati.com/tag/calendar" rel="tag">  calendar</a>, <a href="http://technorati.com/tag/anti-usability" rel="tag">  anti-usability</a>, <a href="http://technorati.com/tag/user+experience" rel="tag">  user experience</a>, <a href="http://technorati.com/tag/ux" rel="tag">  ux</a>, <a href="http://technorati.com/tag/uxp" rel="tag">  uxp</a>, <a href="http://technorati.com/tag/humor" rel="tag">  humor</a>, <a href="http://technorati.com/tag/ajax" rel="tag"> ajax</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2007/02/09/bad-usability-calendar-2007-in-danish/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Bad Usability Calendar 2007 Finally Ready</title>
		<link>http://justaddwater.dk/2007/01/27/bad-usability-calendar-2007-finally-ready/</link>
		<comments>http://justaddwater.dk/2007/01/27/bad-usability-calendar-2007-finally-ready/#comments</comments>
		<pubDate>Sat, 27 Jan 2007 08:57:31 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[User experience]]></category>
		<category><![CDATA[calendar]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2007/01/27/bad-usability-calendar-2007-finally-ready/</guid>
		<description><![CDATA[I&#8217;ve been waiting for this with excitement: Eidar and the rest of NetLife Research in Norway have finally released the 2007 version of Bad Usability Calendar. Direct download: Bad Usability Calendar 2007 (1.2 MB PDF) Very nice to see that the calendar actually is released under a Creative Commons license, so you can translate it [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been waiting for this with excitement: Eidar and the rest of NetLife Research in Norway have finally <a href="http://www.iallenkelhet.no/bad-usability-calendar-2007-is-here">released the 2007 version of Bad Usability Calendar</a>.</p>
<p>Direct download: <a href="http://iallenkelhet.no/nedlast/bad_usability_calendar_07_english_A3.pdf">Bad Usability Calendar 2007</a> (1.2 MB PDF)</p>
<p>Very nice to see that the calendar actually is released under a Creative Commons license, so you can translate it into you native language as long as you keep the reference to NetLife Research.</p>
<p>Related posts:</p>
<ul>
<li><a href="http://justaddwater.dk/2006/10/16/bad-usability-calendar/" rel="bookmark" title="Permanent Link: Bad Usability Calendar">Bad Usability Calendar</a> (2006)</li>
<li><a href="http://justaddwater.dk/2006/11/10/bad-usability-calendar-2007-open-for-proposals/" rel="bookmark" title="Permanent Link: Bad Usability Calendar 2007 open for proposals">Bad Usability Calendar 2007 open for proposals</a></li>
</ul>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/usability" rel="tag"> usability</a>, <a href="http://technorati.com/tag/accessibility" rel="tag">  accessibility</a>, <a href="http://technorati.com/tag/calendar" rel="tag">  calendar</a>, <a href="http://technorati.com/tag/anti-usability" rel="tag">  anti-usability</a>, <a href="http://technorati.com/tag/user+experience" rel="tag">  user experience</a>, <a href="http://technorati.com/tag/ux" rel="tag">  ux</a>, <a href="http://technorati.com/tag/uxp" rel="tag">  uxp</a>, <a href="http://technorati.com/tag/humor" rel="tag">  humor</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2007/01/27/bad-usability-calendar-2007-finally-ready/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Google Release of Audio Alternative to CAPTCHA</title>
		<link>http://justaddwater.dk/2006/12/03/google-release-of-audio-alternative-to-captcha/</link>
		<comments>http://justaddwater.dk/2006/12/03/google-release-of-audio-alternative-to-captcha/#comments</comments>
		<pubDate>Sun, 03 Dec 2006 20:47:20 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Accessibility]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2006/12/03/google-release-of-audio-alternative-to-captcha/</guid>
		<description><![CDATA[Google updated their CAPTCHA logic to provide an audio alternative for visual impaired users &#8212; or also users that have a hard time reading the twisted letters. Without even mentioning the online petition where almost 5,000 people protested against the original format where only an image was available. From the Google blog &#8211; Audio captchas [...]]]></description>
			<content:encoded><![CDATA[<p>Google updated their CAPTCHA logic to provide an audio alternative for visual impaired users &mdash; or also users that have a hard time reading the twisted letters.</p>
<p>Without even mentioning the online petition where almost 5,000 people protested against the original format where only an image was available. From the Google blog &#8211; <a href="http://googleblog.blogspot.com/2006/11/audio-captchas-when-visual-images-are.html">Audio captchas when visual images are unusable</a>:</p>
<blockquote cite="http://googleblog.blogspot.com/2006/11/audio-captchas-when-visual-images-are.html"><p>You can easily spot the availability of audio captchas by the presence of the well-recognized &#8220;wheelchair&#8221; icon for accessibility &#8212; the image is tagged with appropriate alt text to help blind users. Incidentally you don’t have to be visually impaired to use the audio captcha; if you are in a situation where you find it hard to view the visual captcha &#8212; either because you&#8217;re at a non-graphical display, or because the specific visual challenge we offered you turned out to be unusable in a given situation, feel free to give the audio captcha a try. We&#8217;ve worked hard to ensure that the audio captchas work on different hardware/software combinations, and you do not need any special hardware (or software) other than a sound card to be able to use them.</p></blockquote>
<p>Interesting that they changed the meaning of the wheelchair icon. Back in January when I wrote about <a href="http://justaddwater.dk/2006/01/30/captcha-usability-revisited-google-inaccessible-to-blind-people/" title="Justaddwater.dk: Captcha usability revisited: Google inaccessible to blind people">Google being inaccessible to blind people</a>, the wheelchair just symbolized a popup version of the same image.<br />
<a id="p124" rel="attachment" class="imagelink" title="screenshot of the google account signup captcha" href="http://justaddwater.dk/2006/01/30/captcha-usability-revisited-google-inaccessible-to-blind-people/screenshot-of-the-google-account-signup-captcha/"><img width="495" height="186" id="image124" alt="screenshot of the google account signup captcha" src="http://justaddwater.dk/wp-content/uploads/2006/01/screenshot-google-captcha.png" /></a><br />
<small>Original Google CAPTCHA as described in <a href="http://justaddwater.dk/2006/01/30/captcha-usability-revisited-google-inaccessible-to-blind-people/" title="Justaddwater.dk: Captcha usability revisited: Google inaccessible to blind people">Captcha usability revisited: Google inaccessible to blind people</a></small></p>
<p><strong>More info:</strong></p>
<ul>
<li>Google blog: <a href="http://googleblog.blogspot.com/2006/11/audio-captchas-when-visual-images-are.html">Audio captchas when visual images are unusable</a></li>
<li>Justaddwater.dk: <a href="http://justaddwater.dk/2006/01/30/captcha-usability-revisited-google-inaccessible-to-blind-people/" title="Justaddwater.dk: Captcha usability revisited: Google inaccessible to blind people">Captcha usability revisited: Google inaccessible to blind people</a>
</li>
<li>Justaddwater.dk: <a href="http://justaddwater.dk/2006/10/23/captcha-usability-humane-alternative-to-captcha/"  title="justaddwater: CAPTCHA usability: Humane alternative to CAPTCHA">CAPTCHA usability: Humane alternative to CAPTCHA</a>
</li>
<li>Petition online: <a href="http://www.petitiononline.com/captcha/">Google Word Verification Accessibility</a></li>
</ul>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/accessibility" rel="tag">accessibility</a>, <a href="http://technorati.com/tag/google" rel="tag"> google</a>, <a href="http://technorati.com/tag/captcha" rel="tag"> captcha</a>, <a href="http://technorati.com/tag/image" rel="tag"> image</a>, <a href="http://technorati.com/tag/audio" rel="tag"> audio</a>, <a href="http://technorati.com/tag/alternative" rel="tag"> alternative</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2006/12/03/google-release-of-audio-alternative-to-captcha/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Bad Usability Calendar 2007 open for proposals</title>
		<link>http://justaddwater.dk/2006/11/10/bad-usability-calendar-2007-open-for-proposals/</link>
		<comments>http://justaddwater.dk/2006/11/10/bad-usability-calendar-2007-open-for-proposals/#comments</comments>
		<pubDate>Fri, 10 Nov 2006 08:37:38 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[User experience]]></category>
		<category><![CDATA[calendar]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2006/11/10/bad-usability-calendar-2007-open-for-proposals/</guid>
		<description><![CDATA[Our Norwegian friends at Netlife Research have opened for suggestions to next years Bad Usability Calendar. I already used the 2006 calendar with great impact in my professional engagements, and I&#8217;m really looking forward to next year&#8217;s version. To make a calendar for 2007 that has the same level of unusual unusefulness, we would like [...]]]></description>
			<content:encoded><![CDATA[<p>Our Norwegian friends at Netlife Research have opened for suggestions to next years Bad Usability Calendar. I already used the <a title="Justaddwater.dk: Bad Usability Calendar 2006" href="http://justaddwater.dk/2006/10/16/bad-usability-calendar/">2006 calendar with great impact</a> in my professional engagements, and I&#8217;m really looking forward to next year&#8217;s version.</p>
<blockquote cite="http://www.iallenkelhet.no/the-worst-12-usability-problems-give-us-your-ideas-for-bad-usability-calendar-2007"><p>To make a calendar for 2007 that has the same level of unusual unusefulness, we would like your feedback.</p>
<p>Give us your best examples of bad usability!</p>
<p>The best idea will get an honourable mention, as well as a numbered limited edition of the 2007 Bad Usability Calendar. All suggestions that make the final cut will get a prize.</p>
<p>If you need inspiration, check out the Bad Usability Calendars for <a href="http://www.netliferesearch.com/files/kalender_netlife_V3_mai2005.jpg">2005</a>(jpg), and <a href="http://www.netliferesearch.com/files/kalender_2006_eng_A3.pdf">2006</a> (pdf). Thank you in advance for all your help. </p></blockquote>
<p>Add your suggestions at their blog IAllEnkelhet.no (which means something like &#8220;in all it&#8217;s simplicity&#8221;).</p>
<p>For inspiration, I really enjoy the suggestion from Christian Watson (<a href="http://www.smileycat.com/">smileycat</a>):<br />
<img src="http://www.smileycat.com/miaow/archives/images/misc/smileycat-bad-usability.gif" alt="Bad usability calendar example: Flash intro hides content" /></p>
<p><strong>Read more at Netlife Research: <a title="IAllEnkelhet.no:  The worst 12 usability problems - give us your ideas for Bad Usability Calendar 2007"  href="http://www.iallenkelhet.no/the-worst-12-usability-problems-give-us-your-ideas-for-bad-usability-calendar-2007">Suggestions for 2007 calendar</a></strong></p>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/usability" rel="tag">usability</a>, <a href="http://technorati.com/tag/accessibility" rel="tag">  accessibility</a>, <a href="http://technorati.com/tag/calendar" rel="tag">  calendar</a>, <a href="http://technorati.com/tag/anti-usability" rel="tag">  anti-usability</a>, <a href="http://technorati.com/tag/user+experience" rel="tag">  user experience</a>, <a href="http://technorati.com/tag/ux" rel="tag">  ux</a>, <a href="http://technorati.com/tag/uxp" rel="tag">  uxp</a>, <a href="http://technorati.com/tag/humor" rel="tag"> humor</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2006/11/10/bad-usability-calendar-2007-open-for-proposals/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

