include-pattern: Difference between revisions
m (Reverted edit of DelacCocna, changed back to last version by VinceVeselosky) |
(Big update. Updated both Hyperlink and OBJECT patterns to reflect accessibility testing results. Removed opinion (please keep that to -issues pages). Spec is now up-to-date based on current knowledge.) |
||
Line 1: | Line 1: | ||
<h1>Include Pattern</h1> | <h1>Include Pattern</h1> | ||
{{TOC-right}} | {{TOC-right}} | ||
Initially developed as part of [[resume-brainstorming]], the include pattern is a mechanism to include a portion of data from one area of a page into another area of the same page. The following is documentation for re-use of the pattern in other microformats, and for publishers working with it. | Initially developed as part of [[resume-brainstorming]], the include pattern is a mechanism to include a portion of data from one area of a page into another area of the same page, allowing the data to be reused by multiple microformats, independent of content order, without repeating all the information. The following is documentation for re-use of the pattern in other microformats, and for publishers working with it. | ||
;Editors: Tantek Çelik | ;Editors: Tantek Çelik | ||
Line 8: | Line 8: | ||
== background == | == background == | ||
[[hresume|hResume]] needed the ability to include a name from one hCard at the top of a resume — the person's contact details — into the separate hCards used in the same person's employment history. Repeating name information would not have matched the existing publishing | [[hresume|hResume]] needed the ability to include a name from one hCard at the top of a resume — the person's contact details — into the separate hCards used in the same person's employment history. Repeating name information would not have matched the existing publishing practices used in Resumes and Curriculum Vitæ, would be inconvenient to publishers, and irritating to consumers. The include pattern is a mechanism to reference data from the same page, avoiding repetition, or duplicate visible information. | ||
== scope == | == scope == | ||
Line 16: | Line 16: | ||
== quick reference== | == quick reference== | ||
The include-pattern is a mechanism to include content from one microformat into another microformat elsewhere in the same document, using hyperlinks | The include-pattern is a mechanism to include content from one microformat into another microformat elsewhere in the same document, using hyperlinks or OBJECT. For example: | ||
<pre><nowiki><a class="include" href="#author" | <pre><nowiki><a class="include" href="#author">James Levine</a></nowiki></pre> | ||
<pre><nowiki><object class="include" data="#author"></object></nowiki></pre> | <pre><nowiki><object class="include" data="#author"></object></nowiki></pre> | ||
In | In specifications which cite the include-pattern, either of the above code snippets MUST cause a microformats parser to replace the A or OBJECT element with class name "include" with the content fragment with ID "author". Full examples follow. | ||
== in general== | == in general== | ||
Line 43: | Line 43: | ||
==== Hyperlink example==== | ==== Hyperlink example==== | ||
Here is an [[hcard|hCard]] | Here is an [[hcard|hCard]] for a bar, included at the top of a reviews page, shown here as a verbose hCard. | ||
<pre><nowiki> | <pre><nowiki> | ||
< | <div class="vcard" id="bricklayers-card"> | ||
<div class="fn org">The Bricklayers Arms</div> | |||
<div class="adr"> | |||
<span class="street-address">31 Gresse Street</span>, | |||
</span> | <span class="locality">Fitzrovia</span> | ||
</nowiki></pre> | <span class="region">London</span> | ||
<span class="postal-code">W1T 1QS</span> | |||
</div> | |||
</div> | |||
</nowiki></pre> | |||
Elsewhere on the page, a | Elsewhere on the page, a number of reviews reference the hcard in the item property. Rather than repeat all the verbose detail, only the name is reprinted and the detailed hcard referenced using the include-pattern. | ||
<pre><nowiki> | <pre><nowiki> | ||
< | <div class="hreview"> | ||
<h1 class="summary">A great venue for monthly gatherings!</h1> | |||
<div class="item"><a class="include" href="#bricklayers-card">The Bricklayers Arms</a></div> | |||
<p class="description">Wonderful pub, cheap beer, open fire to warm mince pies at Christmas.</p> | |||
</ | </div> | ||
<div class="hreview"> | |||
<h1 class="summary">Takes a while to thin out, but!</h1> | |||
<div class="item"><a class="include" href="#bricklayers-card">The Bricklayers Arms</a></div> | |||
<p class="rating"><span class="value">5</span>/<span class="best">5</span></p> | |||
</div> | |||
</nowiki></pre> | </nowiki></pre> | ||
Note that | Note that you must include content within the anchor element. See the notes and issues below. | ||
A microformat parser must treat | A microformat parser must treat each review as follows, with the hyperlink include element completely replaced (including inner-text) by the sub-tree that was referenced: | ||
<pre><nowiki> | <pre><nowiki> | ||
< | <div class="hreview"> | ||
<h1 class="summary">A great venue for monthly gatherings!</h1> | |||
<div class="item"> | |||
<div class="vcard" id="bricklayers-card"> | |||
<div class="fn org">The Bricklayers Arms</div> | |||
<div class="adr"> | |||
</ | <span class="street-address">31 Gresse Street</span>, | ||
<span class="locality">Fitzrovia</span> | |||
<span class="region">London</span> | |||
<span class="postal-code">W1T 1QS</span> | |||
</div> | |||
</div> | |||
</div> | |||
<p class="description">Wonderful pub, cheap beer, open fire to warm mince pies at Christmas.</p> | |||
</div> | |||
</nowiki></pre> | </nowiki></pre> | ||
==== notes and issues ==== | ==== notes and issues ==== | ||
Note: The <code>id</code> attribute value in the example " | Note: The <code>id</code> attribute value in the example "bricklayers-card" was chosen for demonstration purposes. The text of the value has no semantic per the include-pattern other than to connect the source of the include to the destination. Authors {{should}} use good [[POSH]] techniques to choose <code>id</code> and <code>class</code> names. | ||
Authors {{must}} supply content text for the hyperlink itself. This can require repeating a small piece of information (such as a person's name in an hcard), or including generic text as appropriate to the context of the page. | |||
Authors {{ | |||
===== accessibility ===== | ===== accessibility ===== | ||
* Testing indicates that the only way to guarantee accessibility of hyperlinks to users of assistive technology (such as screen readers) is to include inner-text. [http://yuiblog.com/blog/2008/01/23/empty-links/ See: Empty Links and Screen Readers] | |||
* You MUST include inner-text in the hyperlink element. | |||
* You MAY enhance the rendered user experience (depending on the context of your page) by hiding the include element using CSS <code>display: none</code> | |||
* Where you wish to hide the content of the include element, you SHOULD NOT hide the include element using a CSS negative margin offset as the hidden link will remain in the tab order of the document. Use <code>display: none</code> instead. | |||
Where a publishing constraint prevents putting content within the include-pattern, you must use the OBJECT element pattern instead of a hyperlink. | |||
=== Object === | === Object === | ||
The Object Include Pattern is semantically superior to the Hyperlink Include; it is being used to embed content into the page. The <code>object</code> element based include was the original developed include pattern. However, there are | The Object Include Pattern is semantically superior to the Hyperlink Include; it is being used to embed content into the page. The <code>object</code> element based include was the original developed include pattern. However, there are some browser compatibility issues that can affect some implementation scenarios and thus the above Hyperlink Include Pattern was is preferred. | ||
==== Object example ==== | ==== Object example ==== | ||
Here is the | Here is the an [[hcard|hCard]] from the beginning of the resumé. | ||
<pre><nowiki> | <pre><nowiki> | ||
<span class="vcard"> | <span class="vcard"> | ||
<span class="fn n" id="james-hcard-name"> | |||
<span class="given-name">James</span> <span class="family-name">Levine</span> | |||
</span> | |||
</span> | </span> | ||
</nowiki></pre> | </nowiki></pre> | ||
Elsewhere on the page, | Elsewhere on the page, an employer's hCard re-uses the "fn n" content from the first hCard: | ||
<pre><nowiki> | <pre><nowiki> | ||
<span class="vcard"> | <span class="vcard"> | ||
<object data="#james-hcard-name | <object class="include" data="#james-hcard-name"></object> | ||
<span class="org">SimplyHired</span> | <span class="org">SimplyHired</span> | ||
<span class="title">Microformat Brainstormer</span> | <span class="title">Microformat Brainstormer</span> | ||
Line 123: | Line 141: | ||
<pre><nowiki> | <pre><nowiki> | ||
<span class="vcard"> | <span class="vcard"> | ||
<span class="fn n" id="james-hcard-name"> | |||
<span class="given-name">James</span> <span class="family-name">Levine</span> | |||
</span> | |||
<span class="org">SimplyHired</span> | |||
<span class="title">Microformat Brainstormer</span> | |||
</span> | </span> | ||
</nowiki></pre> | </nowiki></pre> | ||
Line 134: | Line 152: | ||
=== notes and issues=== | === notes and issues=== | ||
* Unlike the hyperlink pattern, the | |||
* Apple's Safari | * Unlike the hyperlink pattern, the OBJECT is not known to cause problems in assistive technology when fallback text is absent. ('''research needed''') | ||
* Bugs have been reported in some web browsers (Internet Explorer, Safari, Firefox) that <code>object</code> elements referencing fragments of the same document erroneously cause the browser to make additional HTTP requests ('''version(s) affected needed'''). For scenarios where HTTP requests are a | * Apple's Safari 1.x browser has some rendering issues with this use of <code>object</code>: You should set a width and height of "0" for the include elements to resolve this ('''clarification of issue needed'''). | ||
* Bugs have been reported in some web browsers (Internet Explorer, Safari, Firefox) that <code>object</code> elements referencing fragments of the same document erroneously cause the browser to make additional HTTP requests ('''version(s) affected needed'''). For scenarios where HTTP requests are a performance measure, you should use the hyperlink pattern instead. | |||
* Versions of Microsoft Internet Explorer with ActiveX controls disabled will throw a warning prompt upon finding an <code>object</code> element ('''version(s) affected needed'''). | * Versions of Microsoft Internet Explorer with ActiveX controls disabled will throw a warning prompt upon finding an <code>object</code> element ('''version(s) affected needed'''). | ||
== acknowledgements == | == acknowledgements == | ||
Thanks to discussions and brainstorms with a bunch of folks: [http://theryanking.com/ Ryan King], James Levine, the whole crowd at the [http://mashupcamp.com/index.cgi?HAtomFinalization Microformats specifications working session] at MashupCamp, [http://suda.co.uk/ Brian Suda], [http://randomchaos.com/ Scott Reynen], [http://allinthehead.com/ Drew McLellan]. | Thanks to discussions and brainstorms with a bunch of folks: [http://theryanking.com/ Ryan King], James Levine, the whole crowd at the [http://mashupcamp.com/index.cgi?HAtomFinalization Microformats specifications working session] at MashupCamp, [http://suda.co.uk/ Brian Suda], [http://randomchaos.com/ Scott Reynen], [http://allinthehead.com/ Drew McLellan]. Thanks to [http://www.isolani.co.uk/ Mike Davies] for accessibility research. | ||
== specifications using == | == specifications using == |
Revision as of 02:24, 12 February 2008
Include Pattern
Initially developed as part of resume-brainstorming, the include pattern is a mechanism to include a portion of data from one area of a page into another area of the same page, allowing the data to be reused by multiple microformats, independent of content order, without repeating all the information. The following is documentation for re-use of the pattern in other microformats, and for publishers working with it.
- Editors
- Tantek Çelik
- Ben Ward
background
hResume needed the ability to include a name from one hCard at the top of a resume — the person's contact details — into the separate hCards used in the same person's employment history. Repeating name information would not have matched the existing publishing practices used in Resumes and Curriculum Vitæ, would be inconvenient to publishers, and irritating to consumers. The include pattern is a mechanism to reference data from the same page, avoiding repetition, or duplicate visible information.
scope
The include pattern is strictly limited to the scope of the current page. It cannot be used to include content from other URLs.
quick reference
The include-pattern is a mechanism to include content from one microformat into another microformat elsewhere in the same document, using hyperlinks or OBJECT. For example:
<a class="include" href="#author">James Levine</a>
<object class="include" data="#author"></object>
In specifications which cite the include-pattern, either of the above code snippets MUST cause a microformats parser to replace the A or OBJECT element with class name "include" with the content fragment with ID "author". Full examples follow.
in general
To reference includes, use an include element with class name "include" and a document fragment identifier. The content to be included should have an ID attribute set, and that ID should be referenced from the HREF or DATA attribute at the point of inclusion.
The include element with class name "include" indicates a reference to a sub-tree elsewhere in the document which must be included in-place by microformat parsers. That is, the element with class "include" is _replaced_ in the DOM by the referenced sub-tree.
To prevent infinite loops, if a class="include" refers to itself or to an ancestor in the parse tree, then it is ignored and has no effect on the parser.
Per the scope, the OBJECT 'data' attribute and hyperlink 'href' attribute MUST be local ID references when used as include pattern instances. External references (requiring a consuming application to load an external resource) are not supported by this method.
There are two HTML elements available to reference includes, hyperlink/Anchor and OBJECT. They are documented below.
These methods of property indirection via a hyperlink element can apply to any/all properties in class-based microformats, but should only be used where a microformat explicitly states that the include-pattern is a dependency. For example, XOXO does not reference the include-pattern at this time, so sub-trees cannot be included by reference in XOXO. hResume and hReview do reference the include pattern.
Hyperlink
The recommended way to reference includes within microformats is to use a hyperlink.
Hyperlink example
Here is an hCard for a bar, included at the top of a reviews page, shown here as a verbose hCard.
<div class="vcard" id="bricklayers-card"> <div class="fn org">The Bricklayers Arms</div> <div class="adr"> <span class="street-address">31 Gresse Street</span>, <span class="locality">Fitzrovia</span> <span class="region">London</span> <span class="postal-code">W1T 1QS</span> </div> </div>
Elsewhere on the page, a number of reviews reference the hcard in the item property. Rather than repeat all the verbose detail, only the name is reprinted and the detailed hcard referenced using the include-pattern.
<div class="hreview"> <h1 class="summary">A great venue for monthly gatherings!</h1> <div class="item"><a class="include" href="#bricklayers-card">The Bricklayers Arms</a></div> <p class="description">Wonderful pub, cheap beer, open fire to warm mince pies at Christmas.</p> </div> <div class="hreview"> <h1 class="summary">Takes a while to thin out, but!</h1> <div class="item"><a class="include" href="#bricklayers-card">The Bricklayers Arms</a></div> <p class="rating"><span class="value">5</span>/<span class="best">5</span></p> </div>
Note that you must include content within the anchor element. See the notes and issues below.
A microformat parser must treat each review as follows, with the hyperlink include element completely replaced (including inner-text) by the sub-tree that was referenced:
<div class="hreview"> <h1 class="summary">A great venue for monthly gatherings!</h1> <div class="item"> <div class="vcard" id="bricklayers-card"> <div class="fn org">The Bricklayers Arms</div> <div class="adr"> <span class="street-address">31 Gresse Street</span>, <span class="locality">Fitzrovia</span> <span class="region">London</span> <span class="postal-code">W1T 1QS</span> </div> </div> </div> <p class="description">Wonderful pub, cheap beer, open fire to warm mince pies at Christmas.</p> </div>
notes and issues
Note: The id
attribute value in the example "bricklayers-card" was chosen for demonstration purposes. The text of the value has no semantic per the include-pattern other than to connect the source of the include to the destination. Authors SHOULD use good POSH techniques to choose id
and class
names.
Authors MUST supply content text for the hyperlink itself. This can require repeating a small piece of information (such as a person's name in an hcard), or including generic text as appropriate to the context of the page.
accessibility
- Testing indicates that the only way to guarantee accessibility of hyperlinks to users of assistive technology (such as screen readers) is to include inner-text. See: Empty Links and Screen Readers
- You MUST include inner-text in the hyperlink element.
- You MAY enhance the rendered user experience (depending on the context of your page) by hiding the include element using CSS
display: none
- Where you wish to hide the content of the include element, you SHOULD NOT hide the include element using a CSS negative margin offset as the hidden link will remain in the tab order of the document. Use
display: none
instead.
Where a publishing constraint prevents putting content within the include-pattern, you must use the OBJECT element pattern instead of a hyperlink.
Object
The Object Include Pattern is semantically superior to the Hyperlink Include; it is being used to embed content into the page. The object
element based include was the original developed include pattern. However, there are some browser compatibility issues that can affect some implementation scenarios and thus the above Hyperlink Include Pattern was is preferred.
Object example
Here is the an hCard from the beginning of the resumé.
<span class="vcard"> <span class="fn n" id="james-hcard-name"> <span class="given-name">James</span> <span class="family-name">Levine</span> </span> </span>
Elsewhere on the page, an employer's hCard re-uses the "fn n" content from the first hCard:
<span class="vcard"> <object class="include" data="#james-hcard-name"></object> <span class="org">SimplyHired</span> <span class="title">Microformat Brainstormer</span> </span>
A microformat parser must treat the second hCard as follows, with the object
include element completely replaced by the sub-tree that it referenced:
<span class="vcard"> <span class="fn n" id="james-hcard-name"> <span class="given-name">James</span> <span class="family-name">Levine</span> </span> <span class="org">SimplyHired</span> <span class="title">Microformat Brainstormer</span> </span>
This method of hCard property indirection via an object element can apply to any/all properties in class-based microformats.
notes and issues
- Unlike the hyperlink pattern, the OBJECT is not known to cause problems in assistive technology when fallback text is absent. (research needed)
- Apple's Safari 1.x browser has some rendering issues with this use of
object
: You should set a width and height of "0" for the include elements to resolve this (clarification of issue needed). - Bugs have been reported in some web browsers (Internet Explorer, Safari, Firefox) that
object
elements referencing fragments of the same document erroneously cause the browser to make additional HTTP requests (version(s) affected needed). For scenarios where HTTP requests are a performance measure, you should use the hyperlink pattern instead. - Versions of Microsoft Internet Explorer with ActiveX controls disabled will throw a warning prompt upon finding an
object
element (version(s) affected needed).
acknowledgements
Thanks to discussions and brainstorms with a bunch of folks: Ryan King, James Levine, the whole crowd at the Microformats specifications working session at MashupCamp, Brian Suda, Scott Reynen, Drew McLellan. Thanks to Mike Davies for accessibility research.
specifications using
considering
All class-based microformats SHOULD consider using and explicitly normatively stating support for the include pattern.
implementations
- X2V implements the include-pattern when parsing hCards and hCalendars for both object.include and a.include.
references
normative
- HTML 4.01
informative
- the include pattern
- include-pattern examples in the wild - an on-going list of websites which use the include pattern.
- include-pattern FAQ - if you have any questions about the include pattern, check here, and if you don't find answers, add your questions!
- include-pattern feedback- general feedback (as opposed to specific issues).
- include-pattern issues - specific issues with the include pattern.
- include-pattern strawman - alternative proposals
- See also blogs discussing this page.