May 31, 2008 - Comments Off on Google I/O
May 29, 2008 - Comments Off on Google I/O
Google I/O
Sorry, would love to write more, but completely beat after four hours of sleep and an intense day learning about the latest Google projects. Until I'm able to write a wrap up, check out my photos and audio from the keynote and some of the sessions. (Note—the audio quality might be poor. These are unedited recordings made from the audience using an .mp3 recorder)
Can We Get There From Here? by Alex Russell
Part 1:
[audio:GoogleIO-1.mp3]
Part 2:
[audio:GoogleIO-2.mp3]
Secure Collaboration—How Web Applications can Share and Still Be Paranoid by Mike Samuel
[audio:GoogleIO-3.mp3]Improving Browsers in New Ways: Gears++ by Chris Prince
Part 1:
[audio:GoogleIO-4.mp3]
Part 2:
[audio:GoogleIO-5.mp3]
Jeffrey Barke is senior developer and information architect at theMechanism, a multimedia firm with offices in New York, London and Durban, South Africa.
Published by: jeffreybarke in The Programming Mechanism
Tags: io2008
May 23, 2008 - Comments Off on Introduction to microformats
Introduction to microformats
Notes and links from last night's discussion of microformats at the New York Web Standards Meetup Group. Thanks to everyone who made it!
- PowerPoint presentation (PPT, 156 KB)
- PowerPoint presentation in PDF format (PDF, 144 KB)
- Microformats cheat sheet
Listen to this event
[audio:BarKode-Episode6-IntroductionMicroformats.mp3]During the meetup, someone asked if there was a microformats validator. I replied that I wasn't sure, but I believed there was a validator in Operator. It turns out the answer isn't so simple.
From All in the <head> by Drew McLellan:
With microformats, however, we're embedding a dialect inside HTML. Whilst it's easy to spot items that are part of that dialect, it doesn't hold true that anything not recognisable as being of that dialect is an error. To take an example for hCard, I might have an image with a class name of
photograph
as part of an hCard block. The official class name from hCard isphoto
, but that doesn't mean that a value ofphotograph
is an error—it's just not something we're looking for.
Operator does not contain a full microformats validator, however it does have a debug mode:
Debug mode provides a number of different options for people developing microformats as well as RDFa and eRDF. A new action is added called "Debug." For microformat developers, this action provides access to the internal representation of the microformat, the HTML source that created the microformats, and for hCards and hCalendars, the vCard/iCalendar representation from both Operator and Brian Suda's X2V. For RDF developers, the debug action provides a representation of the RDF triplets. RDF developers can also access the model when in debug mode.
Another feature of debug mode is that invalid microformats are displayed in the menus. When they are clicked on, they display the same information as standard debug, but provide an additional pane that gives the reason that the microformat was invalid.
Drew McLellan has written a microformats lint tool: rel-lint is a bookmarklet that checks the value assigned to the rel attribute of links.
Our next meetup is 26 June 2008. It will feature Adam Detrick (TheStreet.com) presenting "IE Root," a technique using conditional comments to target IE without making extra calls to the server or using CSS hacks, and Jeffrey Barke (theMechanism) discussing what the WAI-ARIA (Accessible Rich Internet Applications Suite) is and how to use it. RSVP
Jeffrey Barke is senior developer and information architect at theMechanism, a multimedia firm with offices in New York, London and Durban, South Africa.
Published by: jeffreybarke in The Programming Mechanism
The New York Web Standards Meetup Group will be meeting at theMechanism on 22 May 2008 (tonight!) at 7:00 pm to discuss microformats, a set of simple, open data formats built upon existing and widely adopted standards.
Attend the meetup to learn what microformats are, why they were created, and how to use this simple technology to make data on webpages more easily indexed, searched, and cross-referenced
22 May 2008 . 7:00 pm
theMechanism
440 9th Avenue 11th Floor
New York, NY 10001 [map]
Please contact us if you’d like to present at the July or August meetup.
Jeffrey Barke is senior developer and information architect at theMechanism, a multimedia firm with offices in New York, London and Durban, South Africa.
Published by: jeffreybarke in The Programming Mechanism
April 30, 2008 - Comments Off on New event compatibility tables at QuirksMode.org
New event compatibility tables at QuirksMode.org
Peter-Paul Koch has released a new version of his browser event compatibility tables (the last major version dates to 2005) at QuirksMode.org. He has data on IE 5.5, 6, 7, and 8 beta 1; Firefox 2 and 3 beta 5; Safari 3.0 and 3.1 on Windows; Opera 9.26 and 9.5 beta; and Konqueror 3.5.7
Jeffrey Barke is senior developer and information architect at theMechanism, a multimedia firm with offices in New York, London and Durban, South Africa.
Published by: jeffreybarke in The Programming Mechanism
During last week's New York Web Standards meetup on the WCAG Samurai errata, the group generated a few questions that no one could answer. Joe Clark, who led the WCAG Samurai, was kind enough to help out.
All of the WCAG Samurai errata we had questions about are listed below, in <blockquote>
. They are organized by WCAG guidelines in bold.
You can download the PowerPoint presentation and listen to the event at this post: NY Web Standards Meetup—WCAG Samurai Errata for Web Content Accessibility Guidelines (WCAG) 1.0, published on 25 April 2008.
Guideline 6.
Ensure that pages featuring new technologies transform gracefully
A page that uses digital-rights management or copy protection of any kind cannot be claimed to comply with WCAG+Samurai, as its compatibility with adaptive technology and future technologies cannot be independently proven.
While this seems straightforward, none of us could think of an example. Joe Clark suggested an eBook.
Guideline 10.
Use interim solutions
Do not cause pop-ups or other windows to appear and do not change the current window without informing the user.
Does not apply to JavaScript modal windows created in an unobtrusive way (obviously, no <a href="#" onclick="javascript"></a>
). Check out WAI-ARIA for ways to make JavaScript applications more accessible.
Do not add non-link, printable characters (surrounded by spaces or not) between adjacent links unless the semantics of the document naturally would include such characters.
Navigation schemes marked up like this are a no-no:
<ul>
<li><a href=""></a> Link 1 |</li>
<li><a href=""></a> Link 2 |</li>
<li><a href=""></a> Link 3</li>
</ul>
Use the CSS pseudo-element :after
, background images, or borders.
Guideline 12.
Provide context and orientation information
Do not use frames. (You may use iframes.)
I was curious why iframes
were allowed and wondered how assistive technologies handle them. Joe let me know that assistive technologies handle them "quite well. … Everything inside the <iframe>
and </iframe>
is the alternative content, plus it's inline or block so you can do whatever you want with it."
Do not place distinguishing information at the beginning of headings, paragraphs, lists, etc. unless it is significantly harder to understand the document without it. (We do not define "significantly harder.")
We weren't sure what the WCAG meant by "distinguishing information." According to Joe, the WCAG wanted us to front-load everything (headings, paragraphs), so people wouldn't have to read more than a few words to understand what the meaning.
Hidden structural information (e.g., heading elements positioned offscreen) is permitted when document semantics warrant it.
None of us were familiar with this technique or could think of a reason to hide structural information. Joe suggested Googling "offscreen positioning" accessibility:
- "In cases where we need to hide content from a visitor but still make it available to the screenreader, we position it offscreen."
- Accessibility Tips. "Positioning content offscreen."
- "The advantage of offscreen display for iTV captions it that the captions can be much larger and easier to read. The minor disadvantage is that they will be unfamiliar to most viewers for the first few minutes."
- Joe Clark. "Captioning and iTV."
Jeffrey Barke is senior developer and information architect at theMechanism, a multimedia firm in New York City and London.
Published by: jeffreybarke in The Programming Mechanism
April 29, 2008 - Comments Off on Accessible Rich Internet Applications (WAI-ARIA)
Accessible Rich Internet Applications (WAI-ARIA)
Thanks to John Resig, I just heard about WAI-ARIA, which, "defines a way to make Web content and Web applications more accessible to people with disabilities. It especially helps with dynamic content and advanced user interface controls developed with Ajax, HTML, JavaScript, and related technologies" (WAI-ARIA Overview).
At the moment, I don't know anything about ARIA, but, according to John, it's currently implemented in Firefox 2 and will be supported to a greater degree in Firefox 3. I was also impressed to learn that the Google Reader team has recently added full ARIA support to their application.
So it seems that learning about ARIA is the thing to do and I intend to speak about my findings at the June meeting of the New York Web Standards meetup group.
Published by: jeffreybarke in The Programming Mechanism
Slides from Chris Heilmann's talk at AbilityNet's Accessbility 2.0 conference. Heilmann's presentation was on how we try to sell accessibility and the mistakes we make while doing so.
From "Fencing in the habitat—doing things right and getting the accessibility wrong" on Wait till I come! by Chris Heilmann, published on 26 April 2008 at 12:09 AM.
Update 2008-04-29: Chris posted a summary of AbilityNet's Accessibility 2.0 conference on the Yahoo Developer Network blog.
Published by: jeffreybarke in The Programming Mechanism
Notes and links from last night's discussion of the WCAG Samurai Errata for Web Content Accessibility Guidelines (WCAG) 1.0 at the New York Web Standards Meetup Group. Thanks to everyone who made it!
- My PowerPoint presentation (PPT, 236 KB)
- My PowerPoint presentation in PDF format (PDF, 188 KB)
- Feedburner podcast link
During the meeting, Lydia mentioned Automated Sync Technologies, a transcription and captioning services she found. They are the best priced, easiest, and most flexible transcription and captioning service she has found. Check out their help page for useful how-to videos.
Lydia also provided the following links on Adobe Flash CS3's captioning component:
- Adobe Flash CS3 accessibility design guidelines
- Captions for Video with Flash CS3 by Tom Green. 4 June 2007
Update 2008-04-30: There is a Q&A from this meetup posted at http://themechanism.com/blog/2008/04/30/wcag-samurai-errata-qa/
Listen to this event
[audio:BarKode-Episode5-WCAGSamurai.mp3]Please contact us if you'd like to present at the June or July meetup.
Jeffrey Barke is senior developer and information architect at theMechanism, a multimedia firm in New York City and London.
Published by: jeffreybarke in The Programming Mechanism
Audio from the 27 March 2008 presentation on Version Targeting and IE 8 to the New York Web Standards Meetup Group.
Please contact us if you'd like to present at the June or July meetup.
Listen to this event
[audio:BarKode-Episode4-VersionTargetingIE8.mp3]Published by: davefletcher in The Programming Mechanism