abbr-design-pattern: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
m (Reverted edits by ElborAcouc (Talk) to last version by BenWard)
(entry-title, auto-toc, rewrite to use value class pattern, time, etc.)
Line 1: Line 1:
<h1> Abbr design pattern </h1>
<entry-title> abbr design pattern </entry-title>


__TOC__
== Purpose ==
Use the [[abbr-design-pattern]] when you have localized, language, or design-specific human readable information that you want to markup and also provide a more globally human and machine readable alternative.


== Purpose ==
* Authors {{mustnot}} use the [[abbr-design-pattern]] to re-encode human text or to hide data
* Use the [[abbr-design-pattern]] to make text that is human readable also formally machine readable
* The contents of the <code>&lt;abbr></code> tag's <code>title</code> attribute {{must}} be both human-readable and human-listenable (e.g. for screenreaders), and {{should}} use a globally/internally human readable format.
* Avoiding using the [[abbr-design-pattern]] to re-encode human text or to hide data
* For dates and times authors {{should}} use the HTML5 <code>&lt;time></time> element instead of <code>&lt;abbr></code>. (ed: Once common tools like [[chrome-extensions]], [[h2vx]], [[operator]] all support the HTML5 time element, let's upgrade this statement to a {{{must}}}).


== How to use it ==
== How to use it ==
* enclose the human-friendly text that you want to make machine readable with <code>&lt;abbr></code>  
* enclose the preferred local human readable text that you want to make globally human & machine readable with <code>&lt;abbr></code>  
* as per the [[class-design-pattern]], add the appropriate <code>class</code> attribute to the <code>abbr</code> element
* add the relevant microformats property names to the <code>&lt;abbr></code> tag's <code>class</code> attribute
* add a <code>title</code> attribute to the <code>abbr</code> element with the machine readable data as the value
* add a <code>title</code> attribute to the <code>abbr</code> element with the globally human & machine readable data as the value
* The end result {{must}} be human readable & listenable, when reading/speaking the abbr element's contents and its surroundings ''and'' when reading/speaking the abbr element's title attribute with its surrounding text.


== Example ==
== Example ==
The [[datetime-design-pattern]] formally encodes (the notoriously unparsable) datetimes into an <code>abbr</code> element.
The [[date-design-pattern]] formally encodes globally human readable ISO dates into an <code>abbr</code> element. Per the documentation/research on the [[date-design-pattern]] page, ISO8601 dates, e.g. of the form YYYY-MM-DD, are the most globally/internationally date format.
 
Note: that dates and times {{should}} be marked up with the HTML5 time element. These examples illustrate both span/abbr markup for pre-HTML5 tools, and time element support for HTML5-capable tools.
 
Before:
 
<div style="background:#EEE">
<source lang=html4strict>
The party is on the 10th.
</source>
</div>
 
After:
 
<div style="background:#FFE">
<source lang=html4strict>
The party</span> is on
<abbr class="dtstart" title="2005-10-10">the 10th</abbr>.
</source>
</div>
 
Better (with HTML5 time instead of abbr)
 
<div style="background:#EFE">
<source lang=html4strict>
The party is on
<time class="dtstart" datetime="2005-10-10">the 10th</time>.
</source>
</div>
 
You could also use the abbr-design-pattern to markup colloquial time references, but those should also use the HTML5 time element


Before:
Before:


<pre>
<div style="background:#EEE">
The party is at 10 o'clock on the 10th.
<source lang=html4strict>
</pre>
The party is at 10 o'clock.
</source>
</div>


After:
After:


<pre>
<div style="background:#FFE">
The party is at  
<source lang=html4strict>
<abbr class="dtstart" title="20051010T10:10:10-0100">10 o'clock on the 10th</abbr>.
The party is at <abbr class="dtstart" title="10:00">10 o'clock</abbr>.
</pre>
</source>
</div>
 
Better (with HTML5 time instead of abbr)
 
<div style="background:#EFE">
<source lang=html4strict>
The party is at <time class="dtstart" datetime="10:00">10 o'clock</abbr>.
</source>
</div>
 


==Alternative presentations==
==Alternative presentations==
Note that the following are all equivalent, to a microformat parser:
Note that the following are all equivalent, to a microformat parser:


<pre>
<div style="background:#FFE">
<span class="dtstart">20070501</span>
<source lang="html4strict">
 
<span class="dtstart">2007-05-01</span>
<span class="dtstart">2007-05-01</span>
<abbr class="dtstart" title="20070501">1 May 2007</abbr>


<abbr class="dtstart" title="2007-05-01">1 May 2007</abbr>
<abbr class="dtstart" title="2007-05-01">1 May 2007</abbr>


<abbr class="dtstart" title="20070501">1st May 2007</abbr>.
<abbr class="dtstart" title="2007-05-01">1st May 2007</abbr>.


<abbr class="dtstart" title="20070501">May 1st 2007</abbr>.
<abbr class="dtstart" title="2007-05-01">May 1st 2007</abbr>.


<abbr class="dtstart" title="20070501">The first of May, 2007</abbr>.
<abbr class="dtstart" title="2007-05-01">The first of May, 2007</abbr>.


<abbr class="dtstart" title="20070501">2007-05-01</abbr>.
<abbr class="dtstart" title="2007-05-01">2007-05-01</abbr>.


<abbr class="dtstart" title="20070501">Tuesday, 1 May 2007</abbr>
<abbr class="dtstart" title="2007-05-01">Tuesday, 1 May 2007</abbr>


<abbr class="dtstart" title="20070501">2007, day 121</abbr>
<abbr class="dtstart" title="2007-05-01">2007, day 121</abbr>


<abbr class="dtstart" title="20070501">May Day, 2007</abbr>
<abbr class="dtstart" title="2007-05-01">May Day, 2007</abbr>


<abbr class="dtstart" title="20070501" lang="FR">1er mai, 2007</abbr>
<abbr class="dtstart" title="2007-05-01" lang="FR">1er mai, 2007</abbr>


<abbr class="dtstart" title="20070501" lang="ES">1 de mayo, 2007</abbr>
<abbr class="dtstart" title="2007-05-01" lang="ES">1 de mayo, 2007</abbr>
</pre>
</source>


and the following may be used in, say, a list, table, or page, headed "2007":
and the following may be used in, say, a list, table, or page, headed "2007":


<pre>
<source lang=html4strict>
<abbr class="dtstart" title="2007-05-01">1 May</abbr>
</source>
</div>
 
Better (with HTML5 time element)
 
<div style="background:#EFE">
<source lang="html4strict">
<time class="dtstart">2007-05-01</time>
 
<time class="dtstart" datetime="2007-05-01">1 May 2007</time>
 
<time class="dtstart" datetime="2007-05-01">1st May 2007</time>.
 
<time class="dtstart" datetime="2007-05-01">May 1st 2007</time>.
 
<time class="dtstart" datetime="2007-05-01">The first of May, 2007</time>.
 
<time class="dtstart" datetime="2007-05-01">2007-05-01</time>.
 
<time class="dtstart" datetime="2007-05-01">Tuesday, 1 May 2007</time>
 
<time class="dtstart" datetime="2007-05-01">2007, day 121</time>
 
<time class="dtstart" datetime="2007-05-01">May Day, 2007</time>
 
<time class="dtstart" datetime="2007-05-01" lang="FR">1er mai, 2007</time>
 
<time class="dtstart" datetime="2007-05-01" lang="ES">1 de mayo, 2007</time>
 
<abbr class="dtstart" datetime="2007-05-01">1 May</abbr>
</source>
</div>
 
=== anti-patterns ===
These are all past examples that are usages to '''avoid'''.
 
Authors {{mustnot}} use the <code>abbr</code> element as shown in these examples, as either the element text or the <code>title</code> attribute text are not easily human readable.
 
<div style="background:#FEE">
<source lang=html4strict>
<span class="dtstart">20070501</span>
<abbr class="dtstart" title="20070501">1 May 2007</abbr>
<abbr class="dtstart" title="20070501">1st May 2007</abbr>.
<abbr class="dtstart" title="20070501">May 1st 2007</abbr>.
<abbr class="dtstart" title="20070501">The first of May, 2007</abbr>.
<abbr class="dtstart" title="20070501">2007-05-01</abbr>.
<abbr class="dtstart" title="20070501">Tuesday, 1 May 2007</abbr>
<abbr class="dtstart" title="20070501">2007, day 121</abbr>
<abbr class="dtstart" title="20070501">May Day, 2007</abbr>
<abbr class="dtstart" title="20070501" lang="FR">1er mai, 2007</abbr>
<abbr class="dtstart" title="20070501" lang="ES">1 de mayo, 2007</abbr>
<abbr class="dtstart" title="20070501">1 May</abbr>
<abbr class="dtstart" title="20070501">1 May</abbr>
</pre>
 
<!-- lack of dashes in "20070501" reads like a large number, not a date -->
 
</source>
</div>


== Discussion ==
== Discussion ==
''This discussion is culled from [http://microformats.org/discuss/mail/microformats-discuss/2005-October/001277.html here]''. Consider two possible uses for the [[abbr-design-pattern]]:
=== about datetimes ===
'''Avoid''' using the [[abbr-design-pattern]] for datetimes.
 
E.g. Authors {{must}} avoid doing this:
 
<div style="background:#FEE">
<source lang=html4strict>
<abbr class="dtstart" title="20051012T11:10-0100">10 past 11 o'clock on the 12th</abbr>
</source>
</div>
 
Ideally use the HTML5 time element:
 
<div style="background:#FEE">
<source lang=html4strict>
<time class="dtstart" datetime="2005-10-12T11:10-0100">10 past 11 o'clock on the 12th</time>
</source>
</div>
 
Note the use of the hyphenated date to make it more human readable, as the more readable that even machine data is made, the greater the chance that a human will be able to accurately check it and verify that it matches the locale/language-specific contents of the time element.


<ol>
Alternatively, if the microformats tools you're using don't support HTML5 (yet), you may use the [[value-class-pattern]] with the [[abbr-design-pattern]]:
<li>
using ABBR to encode machine readable data around human readable data


<pre>
<div style="background:#FFE">
<abbr class="dtstart" title="20051010T10:10:10-0100">10 o'clock on the 10th</abbr>
<source lang=html4strict>
</pre>
<span class="dtstart">
</li>
<abbr class="value" title="11:10">10 past 11 o'clock</abbr> on  
<li>
<abbr class="value" title="2005-10-10">the 10th</abbr>
using ABBR to encode more formal human data around something less formal  
</span>
</source>
</div>
 
=== informal names ===
Using ABBR to encode more formal human data around something less formal:


<pre>
<source lang=html4strict>
<abbr class="author" title="Danny Ayers">Danny</abbr>  
<abbr class="author" title="Danny Ayers">Danny</abbr>  
</pre>
</source>
</li>
</ol>


Use #1 is encouraged if there's a reasonable need for it. Use #2 is discouraged under the [http://c2.com/cgi-bin/wiki?DontRepeatYourself Don't Repeat Yourself principle], as: "#2 is a case of *more* information being invisibly present, namely, the
This use is discouraged under the [http://c2.com/cgi-bin/wiki?DontRepeatYourself Don't Repeat Yourself principle], as it is a case of *more* information being less visibly present, namely,  
last name in this case. If someone is not willing to make some information visible, then we
the last name in this case.  
shouldn't be encouraging them to store that information invisibly, for all
If someone is not willing to make some information visible, then we
the same reasons that invisible metadata is bad/futile in the first place."
shouldn't be encouraging them to store that information invisibly or less visibly,  
for all the same reasons that invisible metadata is bad/futile in the first place."


''I'd like to delete this below, as the points are covered above''
=== screen readers ===
The <code>title</code> attribute of the <code>&lt;abbr></code> tag {{must}} always be human readable and ''speakable''.


* Theoretically, this could be done with almost any HTML element. But is it a good idea? If it's not, is abbr the only one? [[DavidJanes]]
Screenreaders such as JAWS and others which use title attributes from abbr, and when used properly (as in this example below from the WCAG group), pronounce words which would otherwise be unreadable or confusing.  
* abbr-design-pattern should be avoided, if possible. [[User:RobertBachmann|RobertBachmann]]
** why, or under what circumstances? For example, it is quite useful with datetimes. Should there not be other potentially analogous situations? [[DavidJanes]]
** Under circumstances where the text in the title would be gobbledegook if read by a screenreader. JAWS and other screenreaders use title attributes from abbr, when used properly (as in this example from the WCAG group), to pronounce words which would otherwise be unreadable or confusing. Using machine data such as datetime as a title is an bending of the dictionary definition of abbreviation (contraction by ommision or initialisation, applied at the word and not semantic level), this may not be a great issue in itself, but if screen readers are unable to turn title content into something comprehensible, this will lead to accessibility failures.


<pre>
<source lang=html4strict>
<p>Sugar is commonly sold in 5 <abbr title="pound">lb.<abbr> bags.</p>
<p>Sugar is commonly sold in 5 <abbr title="pound">lb.<abbr> bags.</p>
<p>Welcome to the <abbr title="World Wide Web">WWW</abbr>!</p>
<p>Welcome to the <abbr title="World Wide Web">WWW</abbr>!</p>
</pre>
</source>


==Accessibility issues==
If screen readers are unable to turn title content into something comprehensible, this will lead to accessibility failures. Here is a bad example:


Ironically, this pattern while machine readable for browsers compatible with microformats is not accessible for screenreaders when referring to a date. Therefore:
<div style="background:#FEE">
 
<source lang=html4strict>
<pre>
we have a party in  
we have a party in  
<abbr class="dtstart" title="20070312T1700-06">
<abbr class="dtstart" title="20070312T1700-06">
  March 12, 2007 at 5 PM
  March 12, 2007 at 5 PM
</abbr>
</abbr>
</pre>
</source>
</div>


would be read by Jaws as
would be read by Jaws as
Line 119: Line 235:
</pre>
</pre>


The [http://www.webstandards.org/2007/04/27/haccessibility/  accessibility task force] from webstandards.org recommends:
The [http://www.webstandards.org/2007/04/27/haccessibility/  accessibility task force] from webstandards.org recommended:


<pre>
<div style="background:#EEE">
<source lang=html4strict>
<span class="dtstart" title="20070312T1700-06">
<span class="dtstart" title="20070312T1700-06">
  March 12, 2007 at 5 PM, Central Standard Time
  March 12, 2007 at 5 PM, Central Standard Time
</span>
</span>
</pre>
</source>
<div>


or  
or


<pre>
<div style="background:#EEE">
<source lang=html4strict>
<span class="dtstart">
<span class="dtstart">
  March 12, 2007 at 5 PM, Central Standard Time
  March 12, 2007 at 5 PM, Central Standard Time
Line 136: Line 255:
</pre>
</pre>


see more at  [[abbr-design-pattern-issues]] and [http://www.webstandards.org/2007/04/27/haccessibility/]
But this approach is problematic due to the unhyphenated date and combined datetime in the title attribute being not easily human readable/verifiable.
 
However, based on this input and subsequent research into better alternatives, the microformats community developed the [[value-class-pattern]] :
 
(to be filled in)


== See Also ==
== See Also ==

Revision as of 01:07, 18 December 2011

<entry-title> abbr design pattern </entry-title>

Purpose

Use the abbr-design-pattern when you have localized, language, or design-specific human readable information that you want to markup and also provide a more globally human and machine readable alternative.

  • Authors MUST NOT use the abbr-design-pattern to re-encode human text or to hide data
  • The contents of the <abbr> tag's title attribute MUST be both human-readable and human-listenable (e.g. for screenreaders), and SHOULD use a globally/internally human readable format.
  • For dates and times authors SHOULD use the HTML5 <time> element instead of <abbr>. (ed: Once common tools like chrome-extensions, h2vx, operator all support the HTML5 time element, let's upgrade this statement to a {{{must}}}).

How to use it

  • enclose the preferred local human readable text that you want to make globally human & machine readable with <abbr>
  • add the relevant microformats property names to the <abbr> tag's class attribute
  • add a title attribute to the abbr element with the globally human & machine readable data as the value
  • The end result MUST be human readable & listenable, when reading/speaking the abbr element's contents and its surroundings and when reading/speaking the abbr element's title attribute with its surrounding text.

Example

The date-design-pattern formally encodes globally human readable ISO dates into an abbr element. Per the documentation/research on the date-design-pattern page, ISO8601 dates, e.g. of the form YYYY-MM-DD, are the most globally/internationally date format.

Note: that dates and times SHOULD be marked up with the HTML5 time element. These examples illustrate both span/abbr markup for pre-HTML5 tools, and time element support for HTML5-capable tools.

Before:

The party is on the 10th.

After:

The party</span> is on 
<abbr class="dtstart" title="2005-10-10">the 10th</abbr>.

Better (with HTML5 time instead of abbr)

The party is on 
<time class="dtstart" datetime="2005-10-10">the 10th</time>.

You could also use the abbr-design-pattern to markup colloquial time references, but those should also use the HTML5 time element

Before:

The party is at 10 o'clock.

After:

The party is at <abbr class="dtstart" title="10:00">10 o'clock</abbr>.

Better (with HTML5 time instead of abbr)

The party is at <time class="dtstart" datetime="10:00">10 o'clock</abbr>.


Alternative presentations

Note that the following are all equivalent, to a microformat parser:

<span class="dtstart">2007-05-01</span>

<abbr class="dtstart" title="2007-05-01">1 May 2007</abbr>

<abbr class="dtstart" title="2007-05-01">1st May 2007</abbr>.

<abbr class="dtstart" title="2007-05-01">May 1st 2007</abbr>.

<abbr class="dtstart" title="2007-05-01">The first of May, 2007</abbr>.

<abbr class="dtstart" title="2007-05-01">2007-05-01</abbr>.

<abbr class="dtstart" title="2007-05-01">Tuesday, 1 May 2007</abbr>

<abbr class="dtstart" title="2007-05-01">2007, day 121</abbr>

<abbr class="dtstart" title="2007-05-01">May Day, 2007</abbr>

<abbr class="dtstart" title="2007-05-01" lang="FR">1er mai, 2007</abbr>

<abbr class="dtstart" title="2007-05-01" lang="ES">1 de mayo, 2007</abbr>

and the following may be used in, say, a list, table, or page, headed "2007":

<abbr class="dtstart" title="2007-05-01">1 May</abbr>

Better (with HTML5 time element)

<time class="dtstart">2007-05-01</time>

<time class="dtstart" datetime="2007-05-01">1 May 2007</time>

<time class="dtstart" datetime="2007-05-01">1st May 2007</time>.

<time class="dtstart" datetime="2007-05-01">May 1st 2007</time>.

<time class="dtstart" datetime="2007-05-01">The first of May, 2007</time>.

<time class="dtstart" datetime="2007-05-01">2007-05-01</time>.

<time class="dtstart" datetime="2007-05-01">Tuesday, 1 May 2007</time>

<time class="dtstart" datetime="2007-05-01">2007, day 121</time>

<time class="dtstart" datetime="2007-05-01">May Day, 2007</time>

<time class="dtstart" datetime="2007-05-01" lang="FR">1er mai, 2007</time>

<time class="dtstart" datetime="2007-05-01" lang="ES">1 de mayo, 2007</time>

<abbr class="dtstart" datetime="2007-05-01">1 May</abbr>

anti-patterns

These are all past examples that are usages to avoid.

Authors MUST NOT use the abbr element as shown in these examples, as either the element text or the title attribute text are not easily human readable.

<span class="dtstart">20070501</span> 
<abbr class="dtstart" title="20070501">1 May 2007</abbr>
<abbr class="dtstart" title="20070501">1st May 2007</abbr>.
<abbr class="dtstart" title="20070501">May 1st 2007</abbr>.
<abbr class="dtstart" title="20070501">The first of May, 2007</abbr>.
<abbr class="dtstart" title="20070501">2007-05-01</abbr>.
<abbr class="dtstart" title="20070501">Tuesday, 1 May 2007</abbr>
<abbr class="dtstart" title="20070501">2007, day 121</abbr>
<abbr class="dtstart" title="20070501">May Day, 2007</abbr>
<abbr class="dtstart" title="20070501" lang="FR">1er mai, 2007</abbr>
<abbr class="dtstart" title="20070501" lang="ES">1 de mayo, 2007</abbr>
<abbr class="dtstart" title="20070501">1 May</abbr>

<!-- lack of dashes in "20070501" reads like a large number, not a date -->

Discussion

about datetimes

Avoid using the abbr-design-pattern for datetimes.

E.g. Authors MUST avoid doing this:

<abbr class="dtstart" title="20051012T11:10-0100">10 past 11 o'clock on the 12th</abbr>

Ideally use the HTML5 time element:

<time class="dtstart" datetime="2005-10-12T11:10-0100">10 past 11 o'clock on the 12th</time>

Note the use of the hyphenated date to make it more human readable, as the more readable that even machine data is made, the greater the chance that a human will be able to accurately check it and verify that it matches the locale/language-specific contents of the time element.

Alternatively, if the microformats tools you're using don't support HTML5 (yet), you may use the value-class-pattern with the abbr-design-pattern:

<span class="dtstart">
 <abbr class="value" title="11:10">10 past 11 o'clock</abbr> on 
 <abbr class="value" title="2005-10-10">the 10th</abbr>
</span>

informal names

Using ABBR to encode more formal human data around something less formal:

<abbr class="author" title="Danny Ayers">Danny</abbr>

This use is discouraged under the Don't Repeat Yourself principle, as it is a case of *more* information being less visibly present, namely, the last name in this case. If someone is not willing to make some information visible, then we shouldn't be encouraging them to store that information invisibly or less visibly, for all the same reasons that invisible metadata is bad/futile in the first place."

screen readers

The title attribute of the <abbr> tag MUST always be human readable and speakable.

Screenreaders such as JAWS and others which use title attributes from abbr, and when used properly (as in this example below from the WCAG group), pronounce words which would otherwise be unreadable or confusing.

<p>Sugar is commonly sold in 5 <abbr title="pound">lb.<abbr> bags.</p>
<p>Welcome to the <abbr title="World Wide Web">WWW</abbr>!</p>

If screen readers are unable to turn title content into something comprehensible, this will lead to accessibility failures. Here is a bad example:

we have a party in 
<abbr class="dtstart" title="20070312T1700-06">
 March 12, 2007 at 5 PM
</abbr>

would be read by Jaws as

we have a party at Twenty million seventy-thousand three-hundred twelve tee seventeen-hundred dash zero six. 

The accessibility task force from webstandards.org recommended:

<span class="dtstart" title="20070312T1700-06">
 March 12, 2007 at 5 PM, Central Standard Time
</span>

or

<source lang=html4strict>

March 12, 2007 at 5 PM, Central Standard Time

But this approach is problematic due to the unhyphenated date and combined datetime in the title attribute being not easily human readable/verifiable.

However, based on this input and subsequent research into better alternatives, the microformats community developed the value-class-pattern :

(to be filled in)

See Also