<?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>BarelyBlogging &#187; web design</title>
	<atom:link href="http://www.barelyfitz.com/blog/archives/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.barelyfitz.com/blog</link>
	<description>Patrick Fitzgerald of BarelyFitz Designs</description>
	<lastBuildDate>Thu, 13 Oct 2011 01:55:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>workaround for entity bug (?) in tabber</title>
		<link>http://www.barelyfitz.com/blog/archives/2007/02/06/527/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2007/02/06/527/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 13:25:49 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[DHTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tabber]]></category>
		<category><![CDATA[tabbifier]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2007/02/06/527/</guid>
		<description><![CDATA[A user of my tabber script discovered that when his tab headings had an ampersand character like this:
&#60;h2&#62;Me &#38;amp; My Shadow&#60;/h2&#62;
Then the tab control displayed &#8220;&#38;amp;&#8221; instead of a single ampersand character.
It looks like this occurs because the JavaScript DOM function document.createTextNode() does not convert entities. However, it looks like innerHTML does convert entities, so [...]]]></description>
			<content:encoded><![CDATA[<p>A user of my <a href="http://www.barelyfitz.com/projects/tabber/">tabber</a> script discovered that when his tab headings had an ampersand character like this:</p>
<p><code>&lt;h2&gt;Me &amp;amp; My Shadow&lt;/h2&gt;</code></p>
<p>Then the tab control displayed &#8220;&amp;amp;&#8221; instead of a single ampersand character.</p>
<p>It looks like this occurs because the JavaScript DOM function document.createTextNode() does not convert entities. However, it looks like innerHTML does convert entities, so to fix your problem find the following line in <a href="http://www.barelyfitz.com/projects/tabber/tabber.js">tabber.js</a>:</p>
<p><code>DOM_a.appendChild(document.createTextNode(t.headingText));</code></p>
<p>and replace with the following:</p>
<p><code>DOM_a.innerHTML = t.headingText;</code></p>
<p>I&#8217;ll think about this some more and if I can&#8217;t find any bad side effects I&#8217;ll add to the tabber code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2007/02/06/527/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>remember me</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/10/08/449/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/10/08/449/#comments</comments>
		<pubDate>Sun, 08 Oct 2006 17:09:07 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[UI]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/10/08/449/</guid>
		<description><![CDATA[Many sites have a &#8220;remember me on this computer&#8221; checkbox when logging in, which saves a cookie on your computer so you remain logged into the site. Slashdot actually makes the cookie opt-out: you must select &#8220;public terminal&#8221; if you don&#8217;t want to save a cookie on the computer.
Today I saw an interesting feature on [...]]]></description>
			<content:encoded><![CDATA[<p>Many sites have a &#8220;remember me on this computer&#8221; checkbox when logging in, which saves a cookie on your computer so you remain logged into the site. <a href="http://www.slashdot.org/">Slashdot</a> actually makes the cookie opt-out: you must select &#8220;public terminal&#8221; if you <em>don&#8217;t</em> want to save a cookie on the computer.</p>
<p>Today I saw an interesting feature on the <a href="http://www.aaa.com/">AAA Auto Club</a> web site. It had the typical &#8220;remember me&#8221; checkbox when logging in. I logged in but did not select the checkbox.</p>
<p>Then on the &#8220;my account&#8221; page, it presented the option again. This is the first time I have seen an option to save your account cookie other than on the log-in form. It also gives you the ability to delete the cookie. It&#8217;s a nice detail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/10/08/449/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LazyScript (made up word of the day)</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/09/05/424/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/09/05/424/#comments</comments>
		<pubDate>Tue, 05 Sep 2006 13:06:14 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/09/05/424/</guid>
		<description><![CDATA[LazyScript (n): a solution coded in JavaScript that should have been implemented with server-side coding. The resulting solution works in most browsers, but does not work when JavaScript is disabled, is not accessible, and does not appear in search engines. See also: kludge, hack
]]></description>
			<content:encoded><![CDATA[<p>LazyScript (n): a solution coded in JavaScript that should have been implemented with server-side coding. The resulting solution works in most browsers, but does not work when JavaScript is disabled, is not accessible, and does not appear in search engines. See also: kludge, hack</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/09/05/424/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>STOP YELLING: The Flickr Newbie Muzzle</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/04/12/332/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/04/12/332/#comments</comments>
		<pubDate>Wed, 12 Apr 2006 17:55:27 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[Flickr]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/04/12/332/</guid>
		<description><![CDATA[
ONE OF THE THINGS THAT EXPERIENCED INTERNET USERS HATE IS WHEN SOMEONE TYPES IN ALL CAPS&#8230; IT FEELS LIKE THE PERSON IS YELLING!
I noticed on Flickr that they have implemented anti-yelling technology &#8211; so if you enter a comment in all caps it automatically changes to lower-case and even attempts to capitalize words based on [...]]]></description>
			<content:encoded><![CDATA[<div class=shadow><img id="image331" src="http://www.barelyfitz.com/blog/upload/yell.jpg" alt="yell.jpg" /></div>
<p>ONE OF THE THINGS THAT EXPERIENCED INTERNET USERS HATE IS WHEN SOMEONE TYPES IN ALL CAPS&#8230; IT FEELS LIKE THE PERSON IS YELLING!</p>
<p>I noticed on <a href="http://www.flickr.com/">Flickr</a> that they have implemented anti-yelling technology &#8211; so if you enter a comment in all caps it automatically changes to lower-case and even attempts to capitalize words based on sentence position.</p>
<p>BEFORE:</p>
<pre>TESTING COMMENT. WOW! IT WORKS!</pre>
<p>AFTER:</p>
<pre>Testing comment. Wow! It works!</pre>
<p>This is cool, although if you really want to type in all caps it won&#8217;t let you. In my mind it&#8217;s a good tradeoff.</p>
<p>Update: it would have been even better if they had provided a notification that this was being done, and perhaps a way to override it if you really wanted all caps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/04/12/332/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>more user interface blast from the past</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/04/11/327/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/04/11/327/#comments</comments>
		<pubDate>Tue, 11 Apr 2006 06:15:35 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[HP]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/04/11/327/</guid>
		<description><![CDATA[
Forgive my continued stroll down memory lane as I sort out my old-school ui / web application design work. Back in those days we didn&#8217;t have any fancy &#8220;C S S&#8221; and we liked it that way! Harumph.
VirtualVault was a high-security variant of HP-UX with an integrated web server, used by the first Internet-enabled banks. [...]]]></description>
			<content:encoded><![CDATA[<p><img id="image323" alt="vv-power-anim.gif" src="http://www.barelyfitz.com/blog/upload/vv-power-anim.gif" /></p>
<p>Forgive my continued stroll down memory lane as I sort out my old-school ui / web application design work. Back in those days we didn&#8217;t have any fancy &#8220;C S S&#8221; and we liked it that way! Harumph.</p>
<p>VirtualVault was a high-security variant of HP-UX with an integrated web server, used by the first Internet-enabled banks. In fact, when SecureWare was pitching the first Internet bank (Security First Network Bank) I created the demo screens used in the presentation (my one meager contribution to history, I&#8217;ll puff up my resume to say &#8220;I designed the first internet bank&#8221;).</p>
<p>Compartmented-mode security was devilishly hard to administer, so we created a web-based administration tool. We solved a lot of problems and developed our own standards, and looking back at it I think it holds up remarkably well.</p>
<p><a class="imagelink" title="vv-home.gif" href="http://www.barelyfitz.com/blog/upload/vv-home.gif"><img id="image324" alt="vv-home.gif" src="http://www.barelyfitz.com/blog/upload/vv-home.thumbnail.gif" /></a> <a class="imagelink" title="vv-newaccount.gif" href="http://www.barelyfitz.com/blog/upload/vv-newaccount.gif"><img id="image325" alt="vv-newaccount.gif" src="http://www.barelyfitz.com/blog/upload/vv-newaccount.thumbnail.gif" /></a></p>
<p>In addition to doing information architecture, graphic design, user interface design, and high-security programming (phew!) one of the toughest things was to retrofit the application for internationalization/localization, then I got stuck managing the Japanese localization (what a time and culture difference!). We came up with a pretty good solution for internationalizing the code, then a few years later I was looking at a new <a href="http://www.gnu.org/software/gettext/">GNU gettext</a> solution, and realized it used a very similar system so I guess we did something right!  Even with the aid of tools we developed, retrofitting an existing application was a bitch, so now whenever I can I write i18n code from the start.</p>
<p><a class="imagelink" title="vv-i18n-2.gif" href="http://www.barelyfitz.com/upload/vv-i18n-2.gif" /><a title="vv-i18n-2.gif" class="imagelink" href="http://www.barelyfitz.com/blog/upload/vv-i18n-2.gif"><img alt="vv-i18n-2.gif" id="image326" src="http://www.barelyfitz.com/blog/upload/vv-i18n-2.thumbnail.gif" /></a></p>
<p>This project was a great opportunity for me, but the ultra-high security market was not lucrative enough so HP got out of the security market. The old team still gets together for a holiday party each year, which I think is pretty remarkable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/04/11/327/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screencast: Judge a Web App By Its Title</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/04/06/305/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/04/06/305/#comments</comments>
		<pubDate>Thu, 06 Apr 2006 13:02:15 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[YKMH]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[information architecture]]></category>
		<category><![CDATA[power user]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/04/06/305/</guid>
		<description><![CDATA[
The second episode of &#8220;You&#8217;re Killing Me Here!&#8221; (usability and design screencast series) discusses various uses of the page title (HTML TITLE element): in particular how you can use it to communicate with users of your web application.

View the Screencast (2.5 minutes)
]]></description>
			<content:encoded><![CDATA[<div class="shadow"><a href="http://www.barelyfitz.com/screencast/ykmh/"><img id="image276" alt="You're Killing Me Here!" src="http://www.barelyfitz.com/blog/upload/ykmh-logo-small.jpg" /></a></div>
<p>The second episode of &#8220;You&#8217;re Killing Me Here!&#8221; (usability and design screencast series) discusses various uses of the page title (HTML TITLE element): in particular how you can use it to communicate with users of your web application.<br />
<a href="http://www.barelyfitz.com/screencast/ykmh/ykmh-02-title/" /></p>
<p><a href="http://www.barelyfitz.com/screencast/ykmh/ykmh-02-title/">View the Screencast</a> (2.5 minutes)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/04/06/305/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript tabbifier v1.5 new features</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/03/26/281/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/03/26/281/#comments</comments>
		<pubDate>Mon, 27 Mar 2006 04:16:02 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[DHTML]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[tabber]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/03/26/281/</guid>
		<description><![CDATA[
I just released a new version of my JavaScript tab interface software. It has some new features that make it crazy-easy to use,  plus I eliminated a memory leak in the IE browser (damn you Microsoft!).
New Features

You can set the tabberOptions global variable before you include tabber.js to change any of the tabber settings.
You [...]]]></description>
			<content:encoded><![CDATA[<div style="margin: 0pt 1em 1em 0pt; float: right"><img id="image282" alt="Tabber" src="http://www.barelyfitz.com/blog/upload/tabber.png" /></div>
<p>I just released a new version of my <a href="http://www.barelyfitz.com/projects/tabber/">JavaScript tab interface</a> software. It has some new features that make it crazy-easy to use,  plus I eliminated a memory leak in the IE browser (damn you Microsoft!).</p>
<h3>New Features</h3>
<ul>
<li>You can set the tabberOptions global variable before you include tabber.js to change any of the tabber settings.</li>
<li>You no longer have to specify a title for each tab &#8211; it automatically finds heading elements in the body of the tab. Of course you can still specify a title if you don&#8217;t have headings or to override the title of the tab. And if you don&#8217;t do either it automatically numbers the tabs. See also tabberOptions.titleElements and tabberOptions.titleElementsStripHTML.</li>
<li>Removes the title attribute from the tab so it does not appear as a tooltip when you mouseover the body of the tab. See also tabberOptions.removeTitle.</li>
<li>You can prevent tabber from running automatically in the onload event. See tabberOptions.manualStartup.</li>
<li>Fixed a small memory leak that appeared in the IE web browser.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/03/26/281/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You&#8217;re Killing Me Here! Web Usability Screencast</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/03/24/277/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/03/24/277/#comments</comments>
		<pubDate>Fri, 24 Mar 2006 11:18:56 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[YKMH]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[information architecture]]></category>
		<category><![CDATA[power user]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/03/24/277/</guid>
		<description><![CDATA[
Introducing &#8220;You&#8217;re Killing Me Here!&#8221; a series of screencasts discussing web site and web application design, accessibility, and usability from the perspective of a power-user.
The first episode discusses &#8220;type ahead find&#8221; in the Firefox browser and the design implications that come along with it.
View the Screencast
]]></description>
			<content:encoded><![CDATA[<div class="shadow"><a href="http://www.barelyfitz.com/screencast/ykmh/"><img alt="You're Killing Me Here!" id="image276" src="http://www.barelyfitz.com/blog/upload/ykmh-logo-small.jpg" /></a></div>
<p>Introducing &#8220;You&#8217;re Killing Me Here!&#8221; a series of screencasts discussing web site and web application design, accessibility, and usability from the perspective of a power-user.</p>
<p>The first episode discusses &#8220;type ahead find&#8221; in the Firefox browser and the design implications that come along with it.</p>
<p><a href="http://www.barelyfitz.com/screencast/ykmh/ykmh-01-focus/">View the Screencast</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/03/24/277/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Three things to change about the default Wordpress template</title>
		<link>http://www.barelyfitz.com/blog/archives/2006/03/15/247/</link>
		<comments>http://www.barelyfitz.com/blog/archives/2006/03/15/247/#comments</comments>
		<pubDate>Wed, 15 Mar 2006 16:27:28 +0000</pubDate>
		<dc:creator>pat</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[information architecture]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.barelyfitz.com/blog/archives/2006/03/15/247/</guid>
		<description><![CDATA[
links in article text are not underlined
text-align:justify
article archive pages lose the sidebar. every page of your blog is an entry point, so why eliminate the sidebar when someone enters via an individual article archive page.

]]></description>
			<content:encoded><![CDATA[<ul>
<li>links in article text are not underlined</li>
<li>text-align:justify</li>
<li>article archive pages lose the sidebar. every page of your blog is an entry point, so why eliminate the sidebar when someone enters via an individual article archive page.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.barelyfitz.com/blog/archives/2006/03/15/247/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

