<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JulianStahnke</id>
	<title>Microformats Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JulianStahnke"/>
	<link rel="alternate" type="text/html" href="http://microformats.org/wiki/Special:Contributions/JulianStahnke"/>
	<updated>2026-04-27T03:14:51Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=value-class-pattern-brainstorming&amp;diff=28852</id>
		<title>value-class-pattern-brainstorming</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=value-class-pattern-brainstorming&amp;diff=28852"/>
		<updated>2008-09-04T12:51:34Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: /* issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;value excerption pattern brainstorming&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
&lt;br /&gt;
The [[value-excerption-pattern]] is derived from [[hCard#Value_excerpting|value-excerpting]] in hCard. The precise parsing behavior is not yet finalized, so the pattern should be used only with extreme caution.&lt;br /&gt;
&lt;br /&gt;
This brainstorming page is for exploring ideas related to specifying the value-excerption-pattern in more detail and ideas for special case handling of the value-excerption-pattern in combination with specific [[semantic HTML]] elements per those elements' particular semantics.&lt;br /&gt;
&lt;br /&gt;
These are merely explorations for now, and should NOT be used in actual content publishing, nor implemented in any production code.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
; &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;Editor&amp;lt;/span&amp;gt; &lt;br /&gt;
: &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== details for handling specific elements ==&lt;br /&gt;
=== object param handling ===&lt;br /&gt;
2008-08-23 [[User:BenWard|Ben Ward]] and [[User:Tantek|Tantek Çelik]] brainstormed the following possible special case markup handling for the use of the [[value-excerption-pattern]] with the &amp;lt;nowiki&amp;gt;&amp;lt;object&amp;gt;&amp;lt;/nowiki&amp;gt; element.  Modified 2008-08-26.&lt;br /&gt;
&lt;br /&gt;
The following markup example documents one way the [[hCard]] &amp;lt;code&amp;gt;tel&amp;lt;/code&amp;gt; property's &amp;lt;code&amp;gt;type&amp;lt;/code&amp;gt; subproperty could be specified with the enumerated value of &amp;quot;cell&amp;quot; while providing the UK English &amp;quot;mobile&amp;quot; as the human visible object text contents:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;object class=&amp;quot;type&amp;quot; lang=&amp;quot;en-GB&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;param name=&amp;quot;value&amp;quot; value=&amp;quot;cell&amp;quot; /&amp;gt;&lt;br /&gt;
 mobile&lt;br /&gt;
&amp;lt;/object&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== summary ====&lt;br /&gt;
* '''object element special case handling of value excerption'''. When a microformat (sub)property class name is specified on an object element, then value excerption handling is modified as follows:&lt;br /&gt;
* '''first param with name attribute value'''. if the first child of the object is a param element, and that param element has name attribute value of &amp;quot;value&amp;quot;, then use the value attribute value for the value for the microformat (sub)property class name specified on the object.&lt;br /&gt;
* '''continue'''. if not, continue with existing value excerption handling, and microformat (sub)property parsing rules as currently best specified by [[hcard-parsing]].&lt;br /&gt;
&lt;br /&gt;
==== notes ====&lt;br /&gt;
Note that the param element does not have a 'class' attribute and thus its 'name' attribute (which has a compatible semantic) is used instead to invoke the value excerption pattern.&lt;br /&gt;
&lt;br /&gt;
===== advantages =====&lt;br /&gt;
* '''Greater semantic re-use.''' The use of the param element to specify a value for its object is in line with the param element's semantics.  The semantic association between the object and the param element is defined in the HTML4 specification.  &lt;br /&gt;
* '''Less invention.''' This use of object param is superior to the use of a nested empty span element.  The association of an empty span with its parent is a new semantic not previously defined in the HTML4 specification. Thus this use of object param markup better follows the principle of minimum invention as compared to nested empty span markup.&lt;br /&gt;
===== neutral =====&lt;br /&gt;
* '''Similar violation of DRY to nested empty span.'''&lt;br /&gt;
===== disadvantages =====&lt;br /&gt;
* '''Less human visible than abbr DRY violation.''' The contents/values of param elements are not exposed to the user of a browser, unlike the title attribute of abbr which, since it is commonly available as a hover tooltip, is more human visible, thus verifiable, than param.&lt;br /&gt;
* '''DRY violation content divergence risk greater than abbr.''' With abbr, one element is used to express both a human visible string and the property value, thus tying these values closer together (thus reducing risk of divergence). With object param, two elements are used, and thus risk of divergence may be greater than the use of abbr. Possible mitigating techniques that would help keep the property value and the equivalent human visible string closer to each other, perhaps as close in the code as they are when using abbr:&lt;br /&gt;
*# require param be first child of object&lt;br /&gt;
*# require use of only one param child (allow other child elements)&lt;br /&gt;
*# require exclusive use of object for value excerption i.e. no using the same object for an actual replaced object and a value excerption&lt;br /&gt;
*# require &amp;quot;value&amp;quot; attribute be the last attribute specified on the param element&lt;br /&gt;
*# require equivalent human visible text be placed immediately (allowing for whitespace) following the param&lt;br /&gt;
===== criticisms =====&lt;br /&gt;
* '''Verbose''' - [[User:TobyInk|TobyInk]]&lt;br /&gt;
&lt;br /&gt;
==== to do ====&lt;br /&gt;
* Browser testing. This code sample must be tested in various browsers to determine how they process and handle pages with such code&lt;br /&gt;
*# determine which browsers to test (based on popularity, deployment, etc.)&lt;br /&gt;
*# write a full sample test case using the above object param markup pattern and a complete hCard&lt;br /&gt;
*# write a more complex sample test case with multiple uses of the object param markup pattern&lt;br /&gt;
*# test do browsers properly display the UK English text &amp;quot;mobile&amp;quot;?&lt;br /&gt;
*# test do browsers generate multiple browser (e.g. Webkit, Trident etc.) controls as they would for embedded frames (nested HTML objects)?&lt;br /&gt;
*# determine any other tests&lt;br /&gt;
* Parser implementability. Determine approximately how much work it would be to implement this special case object param support.&lt;br /&gt;
** I've just added support for this. It took 19 bytes of code. [[User:TobyInk|TobyInk]] 01:24, 25 Aug 2008 (PDT)&lt;br /&gt;
* Document in more detail. Assuming browser tests of a simple example pass (proper visible text displayed, page efficiency not compromised by additional control creation), document how to handle/parse this pattern in more detail. Iterate.&lt;br /&gt;
&lt;br /&gt;
==== Browser Testing ====&lt;br /&gt;
Using the following simple, HTML4 hcard:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;!DOCTYPE HTML PUBLIC &amp;amp;quot;-//W3C//DTD HTML 4.01//EN&amp;amp;quot;&lt;br /&gt;
    &amp;amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;title&amp;amp;gt;&amp;amp;amp;lt;object&amp;amp;gt; value excerption pattern: hCard Telephone Type Test Case&amp;amp;lt;/title&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;body class=&amp;amp;quot;vcard&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;h1 class=&amp;amp;quot;fn&amp;amp;quot;&amp;amp;gt;&amp;amp;lt;a class=&amp;amp;quot;url&amp;amp;quot; href=&amp;amp;quot;http://ben-ward.co.uk&amp;amp;quot;&amp;amp;gt;Ben Ward&amp;amp;lt;/a&amp;amp;gt;&amp;amp;lt;/h1&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;p class=&amp;amp;quot;tel&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
        &amp;amp;lt;object class=&amp;amp;quot;type&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
            &amp;amp;lt;param name=&amp;amp;quot;value&amp;amp;quot; value=&amp;amp;quot;cell&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
            Mobile:&lt;br /&gt;
        &amp;amp;lt;/object&amp;amp;gt;&lt;br /&gt;
        &amp;amp;lt;span class=&amp;amp;quot;value&amp;amp;quot;&amp;amp;gt;415-123-567&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;/p&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;/body&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Results =====&lt;br /&gt;
A pass is to display a heading level one ‘Ben Ward’ with hyperlink, followed by a paragraph displaying the text ‘Mobile: 415-123-567’&lt;br /&gt;
Browsers selected based on YUI Graded Browser Support (August 2008), plus some others.&lt;br /&gt;
&lt;br /&gt;
* Opera 9.5 - Pass&lt;br /&gt;
* Firefox 2, 3 - Pass&lt;br /&gt;
* Microsoft Internet Explorer 5.2 (Mac) - Pass&lt;br /&gt;
* Microsoft Internet Explorer 6 - Partial Pass†&lt;br /&gt;
* Microsoft Internet Explorer 7 - Partial Pass†&lt;br /&gt;
* Microsoft Internet Explorer 8 (beta) - Partial Pass†&lt;br /&gt;
* Safari 3 - Pass&lt;br /&gt;
* Safari 2 - *Fail* ††&lt;br /&gt;
&lt;br /&gt;
* † &amp;lt;span id=&amp;quot;iewarningfail&amp;quot;&amp;gt;Internet Explorer 6–8 on Windows XP renders the correct text, but triggers an ActiveX security warning bar on the page load.&amp;lt;/span&amp;gt;&lt;br /&gt;
** This is an error on behalf of IE/Windows. As the object has no type nor data attributes, it has nothing that would bind it to a specific ActiveX control, and therefore should not trigger a security warning bar. This bug should be reported, and the respective bug number referenced here. To do:&lt;br /&gt;
*** report bug to Microsoft to fix in IE8 at a minimum (and since it is a security related false positive, perhaps patch it in IE6 and IE7 as well)&lt;br /&gt;
*** ask Chris Wilson if there are any markup work-arounds to cause security alert to not happen for something that is not loading any ActiveX (2008-09-04 DONE. [[User:Tantek|Tantek]] direct messaged Chris, pointed him to this browser testing section, asked him about any markup work arounds.)&lt;br /&gt;
*** try DECLARE attribute, e.g. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;object class=&amp;quot;type&amp;quot; declare=&amp;quot;declare&amp;quot;&amp;gt;visible text&amp;lt;/object&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; to see if that makes IE/Windows not instantiate an ActiveX control and thus not trigger the warning.&lt;br /&gt;
&lt;br /&gt;
* †† Safari 2 renders a default-sized white box (as if embedding an external control). It breaks layout and does not display the desired content.&lt;br /&gt;
&lt;br /&gt;
===== Safari 2 Tweak =====&lt;br /&gt;
The example is tweaked as follows to affect Safari 2 rendering:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;!DOCTYPE HTML PUBLIC &amp;amp;quot;-//W3C//DTD HTML 4.01//EN&amp;amp;quot;&lt;br /&gt;
    &amp;amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;title&amp;amp;gt;&amp;amp;amp;lt;object&amp;amp;gt; value excerption pattern: hCard Telephone Type Test Case&amp;amp;lt;/title&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;body class=&amp;amp;quot;vcard&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;h1 class=&amp;amp;quot;fn&amp;amp;quot;&amp;amp;gt;&amp;amp;lt;a class=&amp;amp;quot;url&amp;amp;quot; href=&amp;amp;quot;http://ben-ward.co.uk&amp;amp;quot;&amp;amp;gt;Ben Ward&amp;amp;lt;/a&amp;amp;gt;&amp;amp;lt;/h1&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;p class=&amp;amp;quot;tel&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
        &amp;amp;lt;object data=&amp;amp;quot;data://&amp;amp;quot; class=&amp;amp;quot;type&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
            &amp;amp;lt;param name=&amp;amp;quot;value&amp;amp;quot; value=&amp;amp;quot;cell&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
            Mobile:&lt;br /&gt;
        &amp;amp;lt;/object&amp;amp;gt;&lt;br /&gt;
        &amp;amp;lt;span class=&amp;amp;quot;value&amp;amp;quot;&amp;amp;gt;415-123-567&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;/p&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;/body&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A &amp;lt;code&amp;gt;data=&amp;quot;data://&amp;quot;&amp;lt;/code&amp;gt; URL attribute is added to the &amp;lt;code&amp;gt;object&amp;lt;/code&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
====== Safari 2 Result ======&lt;br /&gt;
&lt;br /&gt;
* Safari 2 - Partial Pass†&lt;br /&gt;
&lt;br /&gt;
† Safari 2 renders the object correctly on first page load, *however*, upon using the browser ‘Refresh’ function, the &amp;lt;code&amp;gt;object&amp;lt;/code&amp;gt; element reverts to the broken rendering described in the original test.&lt;br /&gt;
&lt;br /&gt;
===== Current Conclusion =====&lt;br /&gt;
* Safari 2 does not pass the test acceptably for this to be adopted as the only solution.&lt;br /&gt;
* Internet Explorer's security warnings are irritating, but justifiably unacceptable.&lt;br /&gt;
--[[User:BenWard|BenWard]] 20:17, 26 Aug 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
* I concur. And while we can report a bug against IE/Windows in the hopes that it is fixed eventually (perhaps even in IE8 before it ships), as this problem has been fixed in Safari 3, it is doubtful that a bug report against Safari 2 would be fixed in an intermediate version.&lt;br /&gt;
--[[User:Tantek|Tantek]] 03:07, 27 Aug 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
==== misconceptions ====&lt;br /&gt;
===== misunderstanding of authoring unfriendliness =====&lt;br /&gt;
* not very hand-authoring friendly, compared to other proposals like: [[datetime-design-pattern#Machine-data_in_class|Machine data in class]]: &amp;lt;code&amp;gt;&amp;amp;lt;span class=&amp;quot;type data-cell&amp;quot;&amp;gt;Mobile:&amp;amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt;, and [http://microformats.org/discuss/mail/microformats-discuss/2008-February/011583.html data prefix in titles]: &amp;lt;code&amp;gt;&amp;amp;lt;span class=&amp;quot;type&amp;quot; title=&amp;quot;data:cell&amp;quot;&amp;gt;Mobile&amp;amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; [[User:TobyInk|TobyInk]]&lt;br /&gt;
** It is even more hand-authoring unfriendly to introduce a new syntax, as &amp;quot;Machine data in class&amp;quot; does, and to some extent as &amp;quot;data prefix in titles does&amp;quot;. Additional (especially new) syntax introduces far greater cognitive load to the author than a little bit more markup. [[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
==== previous iterations ====&lt;br /&gt;
===== 2008-08-23 =====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;object class=&amp;quot;type&amp;quot; lang=&amp;quot;en-GB&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;param class=&amp;quot;value&amp;quot; name=&amp;quot;value&amp;quot; value=&amp;quot;cell&amp;quot; /&amp;gt;&lt;br /&gt;
 mobile&lt;br /&gt;
&amp;lt;/object&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
====== disadvantages ======&lt;br /&gt;
* '''Invalid (X)HTML''' - although this pattern does make sense, it is worth noting that &amp;lt;code&amp;gt;&amp;amp;lt;param&amp;gt;&amp;lt;/code&amp;gt; is one of just a handful of HTML elements for which the &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; attribute is [http://www.w3.org/TR/REC-html40/struct/objects.html#h-13.3.2 not defined]. Use of this pattern will break validation unless a custom DTD is employed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== details for handling specific property types ==&lt;br /&gt;
=== date and time separation ===&lt;br /&gt;
&lt;br /&gt;
==== summary ====&lt;br /&gt;
By specifying a more precise parsing of the use of &amp;quot;value&amp;quot; excerption inside all datetime properties (e.g. dtstart, dtend, published, updated etc.), dates and times can be marked up separately, thus reducing/minimizing (and potentially eliminating) the readability issues that come with compound ISO8601 datetimes.&lt;br /&gt;
&lt;br /&gt;
==== introductory example ====&lt;br /&gt;
The sentence:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 The weekly dinner is tonight at 6:30pm.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
would be marked up as:&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 The weekly dinner is &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;2008-06-24&amp;quot;&amp;gt;tonight&amp;lt;/abbr&amp;gt; &lt;br /&gt;
 at &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== advantages ====&lt;br /&gt;
* re-uses the readable [[abbr-date-pattern]]&lt;br /&gt;
* identifies a similarly readable abbr-time-pattern.&lt;br /&gt;
* minimizes DRY violation distance, keeps machine data on exactly the same element as the respective human data&lt;br /&gt;
** even better than [[abbr-datetime-pattern]] does, which, in practice from experience often required specifying the date in machine readable form on the human readable time (separate from the human readable date).&lt;br /&gt;
* introduces no new class names - [[principle]] of minimal invention&lt;br /&gt;
* introduces no new use of the class attribute - principle of minimal invention again&lt;br /&gt;
* introduces no new syntax ([[datetime-design-pattern#problems_with_strtime_proposal|see above]] about any publishing method that requires the author to think like a programmer being a non-starter, and introducing new syntax almost always requires authors to think like programmers).&lt;br /&gt;
* and most importantly, introduces no dark data.&lt;br /&gt;
&lt;br /&gt;
==== issues ====&lt;br /&gt;
Some potential issues were raised in IRC, and it helps to document/resolve them so that they are not brought up repeatedly.&lt;br /&gt;
* [[http://rbach.priv.at/Microformats/IRC/2008-06-24#T163114 Does this sufficiently address the concerns raised with the current use of abbr-pattern?]]&lt;br /&gt;
*# The [[abbr-date-pattern]], as documented and explained by [[User:Adactio|Jeremy Keith]] is just fine (in contrast to the [[abbr-datetime-pattern]]).&lt;br /&gt;
*# Similar to the [[abbr-date-pattern]], this proposal implies/introduces the abbr-time-pattern, which is similarly acceptable.&lt;br /&gt;
*# In addition, as long there is incremental improvement, we are making progress. It is more important to take small steps that we know will help some things, rather than try to take a big step that is more risky in the attempt to help more but may not actually do so (as most big changes don't), therefore &amp;quot;sufficiently&amp;quot; is a flawed way of evaluating incremental fixes.&lt;br /&gt;
* Exposes data through tooltips. Separating into 2008-06-07 and 18:03 improves the ability for humans to consume the data, but still exposes data through tooltips and speech in formats that the publisher did not choose to use. --[[User:BenWard|BenWard]] 04:52, 25 Jun 2008 (PDT)&lt;br /&gt;
*# This is a feature, not a bug. By making the duplicated data at least *somewhat* visible (rather than fully invisible), effective data quality is increased due to the fact that the probability of the ISO8601 and locale-specific data getting out-of-sync is reduced because of the increased visibility (and therefore the increased inspectability and more eye-balls looking at/for problems effect).&lt;br /&gt;
*# Workaround: if a site publisher wishes to customize the presentation of tooltips, they can do so with a nested span with title.&lt;br /&gt;
*#* That proposes extraneous mark-up maintain some publisher's wish not to have a tool-tip in the first place. I object to a microformat pattern requiring an immediate work-around to meet publisher's desires. It goes against ‘Humans first…’. --[[User:BenWard|BenWard]] 09:09, 30 Jun 2008 (PDT)&lt;br /&gt;
*#*# Additional markup has nothing to do with &amp;quot;Humans first&amp;quot;. &lt;br /&gt;
*#*# Additional markup to work-around minor issues (e.g. CSS, cross-browser compatibility, etc.) is a well accepted modern web design practice.  It's not ideal, but it is both accepted and widely practiced. With the use of &amp;lt;code&amp;gt;&amp;amp;lt;span&amp;amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;amp;lt;div&amp;amp;gt;&amp;lt;/code&amp;gt; elements, it's also semantically neutral, therefore not a problem from that perspective either.&lt;br /&gt;
*#*# Finally, it should not be our goal to try to satisfy *every* publisher, for that would make every microformat beholden to every publisher and contort the design of microformats in really poor ways.  We must accept that not all publishers will adopt all microformats and that is ok. Our goal to incrementally increase the number of publishers that adopt microformats, not to try to satisfy each and every one.&lt;br /&gt;
*#* You *have* to have a tooltip though. It’s not possible to *not* have a tooltip. Not great.--[[User:JulianStahnke|Julian Stahnke]] 12:58, 4 Sep 2008 (BST)&lt;br /&gt;
*#** Doesn't a nested span with empty title attribute work? e.g. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span title=&amp;quot;&amp;quot;&amp;gt;...&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*** Nope, empty title on nested element didn’t override a title on the containing element when I tested in Safari 3 and Firefox 3. Browser would still display the title.&lt;br /&gt;
* Semantic misuses of ABBR. That ‘tonight’ is ever a textual, human abbreviation of ‘2008-06-24’ is not accepted.&lt;br /&gt;
*# Semantic stretch not misuse. It is a semantic abbreviation rather than a purely syntactical (character shortening) abbreviation, but it is an abbreviation in context nonetheless. Though this may stretch what may be commonly expected as an &amp;quot;abbreviation&amp;quot;, the HTML4 spec does seem to allow some flexibility here ([http://www.w3.org/TR/html401/struct/text.html#h-9.2.1 HTML 4.01 9.2.1 Phrase elements]).&lt;br /&gt;
* Maintaining proper sentences with the expanded form. It is not always possible to use this mark-up and maintain proper sentences with the expanded form. e.g. &amp;lt;code&amp;gt;it's my &amp;amp;lt;abbr class=&amp;quot;bday&amp;quot; title=&amp;quot;2005-06-20&amp;quot;&amp;gt;birthday today&amp;amp;lt;/abbr&amp;gt;!&amp;lt;/code&amp;gt; becomes ‘it's my 2005-06-20!’.  And thus audio rendition of such titles can be nonsensical - &amp;quot;The weekly dinner is two thousand and eight dash zero six dash twenty four at eighteen thirty.&amp;quot;&lt;br /&gt;
*# This can and should be addressed by improving authoring examples so that practices improve with experience.&lt;br /&gt;
* Publishing practices and desires show us that authors are not willing to compromise the semantics of abbr. [[User:Phae|Phae]] 04:30, 27 Jun 2008 (PDT)&lt;br /&gt;
*# Without specific citations of which authors and what specific issues they have, we are unable to address their issues.&lt;br /&gt;
*# See also above - not our goal to satisfy *every* publisher, but rather to incrementally satisfy more and more.  We must accept that  there may be some authors we are unable to satisfy in the immediate/short-term.&lt;br /&gt;
* [[http://rbach.priv.at/Microformats/IRC/2008-06-24#T163435 That's getting pretty complicated]]&lt;br /&gt;
** Much less complicated than inventing yet another syntax ( &amp;quot; { ... } &amp;quot; ???? ) that web authors would have to learn.&lt;br /&gt;
*** But it's all in one place, rather than spreading it out.&lt;br /&gt;
**** The spreading it out is what current content publishing practices do already! It is much more important to map the machine data as close to the existing publishing practice as possible, than to try to &amp;quot;put it all in one place&amp;quot;.  The &amp;quot;put it all in one place&amp;quot; way of thinking is why people ended up sticking so much invisible metadata in the head of the document, which we know fails.&lt;br /&gt;
&lt;br /&gt;
==== content requirements ====&lt;br /&gt;
Some requirements which enhance both human readability, ''and'' machine parsability (best of both) :&lt;br /&gt;
* date value excerpts MUST use hyphen separators. E.g. 2008-06-24.  Not ok:20080624.&lt;br /&gt;
* time value excerpts MUST use colon separators (seconds optional, implied :00 if absent). E.g. 18:30 or 18:30:00.  Not ok:183000.&lt;br /&gt;
* timezone value excerpts MUST use leading plus or minus and NO colon separator. E.g. -0700.  Not ok:-07:00.&lt;br /&gt;
&lt;br /&gt;
==== derivation ====&lt;br /&gt;
It's important to document the derivation/background of a brainstorm/proposal as it allows others to see some of the thinking that went into it, and avoid having to rediscuss alternatives already considered, and helps provide understanding as to why aspects of the design are as they are.&lt;br /&gt;
===== example with datetime =====&lt;br /&gt;
Here is a short code example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 the weekly dinner is tonight at &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-24T18:30&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===== example with abbr datetime =====&lt;br /&gt;
However that's not the easiest to read, nor do most people publish that as human visible text, so per the abbr-datetime pattern:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 the weekly dinner is tonight at &amp;lt;abbr class=&amp;quot;dtstart&amp;quot; title=&amp;quot;2008-06-24T18:30&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
which has raised two issues:&lt;br /&gt;
# When &amp;quot;2008-06-24T18:30&amp;quot; is inspected by a human reading a tooltip, or spoken by a screen reader, it's not the most understandable thing (precise citation needed, perhaps an mp3 with screen reader used version info).&lt;br /&gt;
# There is a non-local violation of DRY (which IMHO is a worse problem, as it leads to worse data quality -[[User:Tantek|Tantek]]). That is, the &amp;quot;date&amp;quot; information is now not only in the text twice (as it was before), but those two instances of the date information are not on the same element, which makes it worse. That is, &amp;quot;tonight&amp;quot; is in the prose, ''outside'' of the element with the precise date &amp;quot;2008-06-24&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In analysis of examples of event information on the web, the date and time are often published in separate elements, often for display purposes.&lt;br /&gt;
&lt;br /&gt;
Thus it is this existing content publishing practice which leads to this brainstorm proposal, to essentially to introduce a date and time value excerption longhand.&lt;br /&gt;
&lt;br /&gt;
(Initially [http://rbach.priv.at/Microformats/IRC/2008-06-21#T181634 Tantek's idea that he bounced off Jeremy Keith]  ([http://rbach.priv.at/Microformats/IRC/2008-06-24#T124652 similar idea conceived by Drew independently]) was to  [http://rbach.priv.at/Microformats/IRC/2008-06-24#T161819 introduce new classes &amp;quot;datevalue&amp;quot;, &amp;quot;timevalue&amp;quot;] and &amp;quot;tzvalue&amp;quot; for this purpose, but [http://rbach.priv.at/Microformats/IRC/2008-06-24#T171603 Bob Jonkman pointed out] that HTML5's time parsing algorithm enables a single &amp;lt;nowiki&amp;gt;&amp;lt;time&amp;gt;&amp;lt;/nowiki&amp;gt; element to contain dates or times (with or without timezone) without having to explicitly say whether the value contains dates or times (with or without timezone). [http://rbach.priv.at/Microformats/IRC/2008-06-24#T171723 Bob then proposed] that thus all was needed was a single new &amp;quot;datetime&amp;quot; class name.  This was the key realization that allowed minimal invention. Tantek pointed out that since from the type of property we already know it is a datetime, [http://rbach.priv.at/Microformats/IRC/2008-06-24#T171835 there was no need for even one new class name], that we could simply re-use &amp;quot;value&amp;quot; excerption, and simply more precisely specify the semantics/parsing in the case of datetime properties.)&lt;br /&gt;
&lt;br /&gt;
===== example with new date and time value excerpts =====&lt;br /&gt;
Thus we markup the date and time separately, as value excerpts, using the [[abbr-date-pattern]] and an implied parallel abbr-time-pattern:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 The weekly dinner is &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;2008-06-24&amp;quot;&amp;gt;tonight&amp;lt;/abbr&amp;gt; &lt;br /&gt;
 at &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== separate subtrees =====&lt;br /&gt;
The proposal also allows setting the date and time in separate element subtrees as well, which may be necessary for some document structures:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 the weekly dinner is &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;2008-06-24&amp;quot;&amp;gt;tonight&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
 at &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note the two instances of dtstart, one of which sets the date for the dtstart, and the other of which sets the time.&lt;br /&gt;
&lt;br /&gt;
The idea being, when a parser sees a datetime property (e.g. dtstart) with a value excerpt, that it only &amp;quot;set&amp;quot; the component of its full value that is specified by the value excerpt (e.g. the date), and that if lacking a complete datetime, it continue to parse additional instances of that datetime property for the remaining component(s) (e.g. the time).&lt;br /&gt;
&lt;br /&gt;
Of course this only works for singular properties, but fortunately all instances of datetime properties so far are singular, so this works.&lt;br /&gt;
* hCard's &amp;lt;code&amp;gt;rev&amp;lt;/code&amp;gt; is plural. [[User:TobyInk|TobyInk]]&lt;br /&gt;
** can someone give a reference to this being the case? The RFC says &amp;quot;The value distinguishes the current revision of the information in this vCard for other renditions of the information.&amp;quot; Does it make sense to have multiple REV dates in a single vCard?&lt;br /&gt;
*** The RFC is ambiguous as usual, but a contact card could conceivably have had several changes made to it, with a &amp;lt;code&amp;gt;rev&amp;lt;/code&amp;gt; for each. (&amp;quot;Change logs&amp;quot; are fairly common on the web.) The [[hcard|hCard spec]] is fairly specific about which properties are [[hcard#Singular_vs._Plural_Properties|singular]] and which are not, and &amp;lt;code&amp;gt;rev&amp;lt;/code&amp;gt; is not included in the list of singular properties.&lt;br /&gt;
&lt;br /&gt;
===== reusing date data for multiple datetime properties =====&lt;br /&gt;
This also provides a *very* convenient way to re-use the same date information for start and end, e.g. expanding the example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 the weekly dinner is &amp;lt;span class=&amp;quot;dtstart dtend&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;2008-06-24&amp;quot;&amp;gt;tonight&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
 from &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30&amp;quot;&amp;gt;6:30&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt; - &lt;br /&gt;
 &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;20:30&amp;quot;&amp;gt;8:30pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note what just happened. we just eliminated another duplication of date information by reusing the start *date* information for the end *date* information and *only* specifying the end *time* information separately for the two properties.&lt;br /&gt;
&lt;br /&gt;
Reducing the duplication (or triplication) of such data helps to reduce the chances of (even inadvertent) data corruption/drift/divergence among any duplicates.&lt;br /&gt;
&lt;br /&gt;
===== time zones =====&lt;br /&gt;
There are a few choices for timezones.&lt;br /&gt;
# Simply include the time zone information as part of the time &amp;quot;value&amp;quot;. &amp;lt;br /&amp;gt; E.g. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30-0700&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Or use another value excerpt for the timezone (was: &amp;lt;del&amp;gt;introduce the class name &amp;quot;tzvalue&amp;quot;&amp;lt;/del&amp;gt;) &amp;lt;br /&amp;gt; E.g. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt; &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;-0700&amp;quot;&amp;gt;PDT&amp;lt;/abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Or allow both and let web authors decide. This is the current leaning.&lt;br /&gt;
#* if web authors want to specify timezone as part of the time (first example above), they can, &lt;br /&gt;
#* or if web authors visibly publish the timezone separately (second example above), then they can mark that up. &lt;br /&gt;
#* or if web authors wish to omit timezone information, they can do so as well, as most do today. In practice this works fine, as it creates a &amp;quot;floating&amp;quot; time which works fine in far more than the 80/20.&lt;br /&gt;
&lt;br /&gt;
(more to come, documenting [http://rbach.priv.at/Microformats/IRC/2008-06-24#T161740 from IRC logs])&lt;br /&gt;
&lt;br /&gt;
==== discussion ====&lt;br /&gt;
Opening up a discussion section even though documentation [http://rbach.priv.at/Microformats/IRC/2008-06-24#T161740 from IRC logs] is still in progress. :)&lt;br /&gt;
&lt;br /&gt;
* regarding the [[datetime-design-pattern#advantages|advantage]] of &amp;quot;and most importantly, introduces no dark data.&amp;quot;&lt;br /&gt;
** &amp;quot;Dark data&amp;quot; is sometimes what publishers *want* to publish. To use the example of TV schedules which kick started the renewed discussion in this area, publishers will often not want to display the date. For instance, if a page entitled &amp;quot;Tomorrow's TV&amp;quot; and containing 300 different programmes marked up with &amp;lt;code&amp;gt;dtstart&amp;lt;/code&amp;gt;, it is superfluous to explicitly display the date for each one. With this proposed solution the [[include|include pattern]] could be used to include the date into each vevent, but a visible link to the date on each programme would simply be confusing. Sometimes it just makes sense to hide some of the information you're publishing as a microformat - because the information you want to make explicit to parsers can be inferred from context by humans, or is more appropriately displayed at a different level of granularity for machines and humans. [[User:TobyInk|TobyInk]] 14:26, 24 Jun 2008 (PDT)&lt;br /&gt;
*** It doesn't matter whether publishers *want* to publish dark data or not. Invisible data always leads to poorer quality data. Publishers publish all kinds of invisible metadata in the heads of documents etc. because they want to, but their desire doesn't stop the data from becoming obsolete, diverging from the actual visible data etc.  The quality of the data matters more than any publishers wish(es) of publishing in a specific format, or in a hidden way.  In the example you gave, using the include pattern in that way would not result in any visible links, but merely empty include anchors.  It never makes any sense to actually hide &amp;quot;some of the information you're publishing as a microformat&amp;quot;, because historically that always results in some loss of data quality over time and thus the microformats [[principle]] of visible data instead of invisible metadata. [[User:Tantek|Tantek]] 14:32, 24 Jun 2008 (PDT)&lt;br /&gt;
**** All microformats hide ''some'' data. In the example &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;01632 960123&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, the information that the long string of numbers represents a telephone number is invisible. And making it visible (&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;Tel: &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;01632 960123&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;) violates DRY. It's just a matter of where to draw the line.&lt;br /&gt;
***** That statement makes the mistake of conflating *type* data and *content* data.  &amp;quot;tel&amp;quot; is not content data, just as &amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;&amp;lt;/nowiki&amp;gt; is not content data. It's markup, indicating the type of the data. Markup (type data) being invisible to the user has worked just fine.  Content (content data) being invisible to the user is the problem of dark data. Or rather, if you think that everything is data, then you really should be spending time developing in a system that is built on that assumption, e.g. RDF, rather than microformats, which are built on HTML, and the clear separation of type of data (HTML elements, microformats properties) and content data (inner text, text attribute values).&lt;br /&gt;
****** My point is that there isn't a ''distinction'' between the two, but a ''continuum''. The choice of where to draw the line is never a clear one and always somewhat arbitrary. The vCard standard could quite easily have ended up with separate &amp;quot;TEL&amp;quot;, &amp;quot;FAX&amp;quot; and &amp;quot;CELL&amp;quot; properties, in which case hCard would have ended up with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;foo class=&amp;quot;tel&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;bar class=&amp;quot;fax&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;baz class=&amp;quot;cell&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. Going the other way, they could have stored e-mail addresses as mailto: URLs, and then hCard would have &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;a class=&amp;quot;url&amp;quot; href=&amp;quot;mailto:quux@example.com&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. They chose the way they did, and as a result in hCard the distinction between a mailto: URI and an http: URI is largely invisible (in most circumstances only obvious by looking at the status bar when hovering), but the distinction between a telephone number and a fax number is visible. But that wasn't the only possible (nor the only reasonable) outcome.&lt;br /&gt;
&lt;br /&gt;
== enabling more use of title attributes ==&lt;br /&gt;
=== valuetitle ===&lt;br /&gt;
Numerous proposals over the years have advocated expanding the use of the title attribute beyond the abbr tag for storing microformat property values.  One simple mechanism for doing so would be to introduce a new value excerption class name and rule.&lt;br /&gt;
&lt;br /&gt;
'''valuetitle''': before &amp;quot;normal&amp;quot; value excerption handling, first look (in the same manner as value-excerption) for the class name &amp;quot;valuetitle&amp;quot;, if it is found, use the value of the title attribute on that element and do no further value excerption or other parsing for that property value.&lt;br /&gt;
&lt;br /&gt;
E.g. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;valuetitle&amp;quot; title=&amp;quot;cell&amp;quot;&amp;gt;mobile&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In addition to first looking for &amp;quot;valuetitle&amp;quot; where a parser would look for &amp;quot;value&amp;quot;, it seems reasonable to also allow &amp;quot;valuetitle&amp;quot; on the property element itself in order to minimize the markup necessary, e.g.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;type&amp;quot; class=&amp;quot;valuetitle&amp;quot; title=&amp;quot;cell&amp;quot;&amp;gt;mobile&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Naming reasoning/methodology: by using the prefix &amp;quot;value-&amp;quot; it is clear that this is part of the value excerption pattern.  By using the suffix &amp;quot;-title&amp;quot;, it is clear that the &amp;quot;title&amp;quot; attribute is involved.  Thus the name &amp;quot;valuetitle&amp;quot; is a good mnemonic for its functionality.  See related [[naming-principles]].&lt;br /&gt;
&lt;br /&gt;
&amp;quot;valuetitle&amp;quot; was suggested on 2008-08-30 by [[User:Tantek|Tantek]] in a discussion with [[User:BenWard|Ben Ward]].&lt;br /&gt;
&lt;br /&gt;
==== previous similar proposals ====&lt;br /&gt;
I believe there may have been a proposal for &amp;quot;usetitle&amp;quot;(link+citation needed) in the past that would function similarly.  I think &amp;quot;valuetitle&amp;quot; is better than &amp;quot;usetitle&amp;quot; as &amp;quot;valuetitle&amp;quot; is more *descriptive*, i.e. meaning &amp;quot;the title is the value&amp;quot;, as opposed to &amp;quot;usetitle&amp;quot;, which is more *prescriptive*, i.e. &amp;quot;use the title&amp;quot;. [[User:Tantek|Tantek]] 08:13, 1 Sep 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== related pages ==&lt;br /&gt;
* [[value-excerption-pattern]]&lt;br /&gt;
* [[value-excerption-pattern-issues]]&lt;br /&gt;
* [[hcard#Value_excerpting|hCard: Value Excepting]]&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=value-class-pattern-brainstorming&amp;diff=28544</id>
		<title>value-class-pattern-brainstorming</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=value-class-pattern-brainstorming&amp;diff=28544"/>
		<updated>2008-09-04T12:00:02Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: /* issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;value excerption pattern brainstorming&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
&lt;br /&gt;
The [[value-excerption-pattern]] is derived from [[hCard#Value_excerpting|value-excerpting]] in hCard. The precise parsing behavior is not yet finalized, so the pattern should be used only with extreme caution.&lt;br /&gt;
&lt;br /&gt;
This brainstorming page is for exploring ideas related to specifying the value-excerption-pattern in more detail and ideas for special case handling of the value-excerption-pattern in combination with specific [[semantic HTML]] elements per those elements' particular semantics.&lt;br /&gt;
&lt;br /&gt;
These are merely explorations for now, and should NOT be used in actual content publishing, nor implemented in any production code.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
; &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;Editor&amp;lt;/span&amp;gt; &lt;br /&gt;
: &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== details for handling specific elements ==&lt;br /&gt;
=== object param handling ===&lt;br /&gt;
2008-08-23 [[User:BenWard|Ben Ward]] and [[User:Tantek|Tantek Çelik]] brainstormed the following possible special case markup handling for the use of the [[value-excerption-pattern]] with the &amp;lt;nowiki&amp;gt;&amp;lt;object&amp;gt;&amp;lt;/nowiki&amp;gt; element.  Modified 2008-08-26.&lt;br /&gt;
&lt;br /&gt;
The following markup example documents one way the [[hCard]] &amp;lt;code&amp;gt;tel&amp;lt;/code&amp;gt; property's &amp;lt;code&amp;gt;type&amp;lt;/code&amp;gt; subproperty could be specified with the enumerated value of &amp;quot;cell&amp;quot; while providing the UK English &amp;quot;mobile&amp;quot; as the human visible object text contents:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;object class=&amp;quot;type&amp;quot; lang=&amp;quot;en-GB&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;param name=&amp;quot;value&amp;quot; value=&amp;quot;cell&amp;quot; /&amp;gt;&lt;br /&gt;
 mobile&lt;br /&gt;
&amp;lt;/object&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== summary ====&lt;br /&gt;
* '''object element special case handling of value excerption'''. When a microformat (sub)property class name is specified on an object element, then value excerption handling is modified as follows:&lt;br /&gt;
* '''first param with name attribute value'''. if the first child of the object is a param element, and that param element has name attribute value of &amp;quot;value&amp;quot;, then use the value attribute value for the value for the microformat (sub)property class name specified on the object.&lt;br /&gt;
* '''continue'''. if not, continue with existing value excerption handling, and microformat (sub)property parsing rules as currently best specified by [[hcard-parsing]].&lt;br /&gt;
&lt;br /&gt;
==== notes ====&lt;br /&gt;
Note that the param element does not have a 'class' attribute and thus its 'name' attribute (which has a compatible semantic) is used instead to invoke the value excerption pattern.&lt;br /&gt;
&lt;br /&gt;
===== advantages =====&lt;br /&gt;
* '''Greater semantic re-use.''' The use of the param element to specify a value for its object is in line with the param element's semantics.  The semantic association between the object and the param element is defined in the HTML4 specification.  &lt;br /&gt;
* '''Less invention.''' This use of object param is superior to the use of a nested empty span element.  The association of an empty span with its parent is a new semantic not previously defined in the HTML4 specification. Thus this use of object param markup better follows the principle of minimum invention as compared to nested empty span markup.&lt;br /&gt;
===== neutral =====&lt;br /&gt;
* '''Similar violation of DRY to nested empty span.'''&lt;br /&gt;
===== disadvantages =====&lt;br /&gt;
* '''Less human visible than abbr DRY violation.''' The contents/values of param elements are not exposed to the user of a browser, unlike the title attribute of abbr which, since it is commonly available as a hover tooltip, is more human visible, thus verifiable, than param.&lt;br /&gt;
* '''DRY violation content divergence risk greater than abbr.''' With abbr, one element is used to express both a human visible string and the property value, thus tying these values closer together (thus reducing risk of divergence). With object param, two elements are used, and thus risk of divergence may be greater than the use of abbr. Possible mitigating techniques that would help keep the property value and the equivalent human visible string closer to each other, perhaps as close in the code as they are when using abbr:&lt;br /&gt;
*# require param be first child of object&lt;br /&gt;
*# require use of only one param child (allow other child elements)&lt;br /&gt;
*# require exclusive use of object for value excerption i.e. no using the same object for an actual replaced object and a value excerption&lt;br /&gt;
*# require &amp;quot;value&amp;quot; attribute be the last attribute specified on the param element&lt;br /&gt;
*# require equivalent human visible text be placed immediately (allowing for whitespace) following the param&lt;br /&gt;
===== criticisms =====&lt;br /&gt;
* '''Verbose''' - [[User:TobyInk|TobyInk]]&lt;br /&gt;
&lt;br /&gt;
==== to do ====&lt;br /&gt;
* Browser testing. This code sample must be tested in various browsers to determine how they process and handle pages with such code&lt;br /&gt;
*# determine which browsers to test (based on popularity, deployment, etc.)&lt;br /&gt;
*# write a full sample test case using the above object param markup pattern and a complete hCard&lt;br /&gt;
*# write a more complex sample test case with multiple uses of the object param markup pattern&lt;br /&gt;
*# test do browsers properly display the UK English text &amp;quot;mobile&amp;quot;?&lt;br /&gt;
*# test do browsers generate multiple browser (e.g. Webkit, Trident etc.) controls as they would for embedded frames (nested HTML objects)?&lt;br /&gt;
*# determine any other tests&lt;br /&gt;
* Parser implementability. Determine approximately how much work it would be to implement this special case object param support.&lt;br /&gt;
** I've just added support for this. It took 19 bytes of code. [[User:TobyInk|TobyInk]] 01:24, 25 Aug 2008 (PDT)&lt;br /&gt;
* Document in more detail. Assuming browser tests of a simple example pass (proper visible text displayed, page efficiency not compromised by additional control creation), document how to handle/parse this pattern in more detail. Iterate.&lt;br /&gt;
&lt;br /&gt;
==== Browser Testing ====&lt;br /&gt;
Using the following simple, HTML4 hcard:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;!DOCTYPE HTML PUBLIC &amp;amp;quot;-//W3C//DTD HTML 4.01//EN&amp;amp;quot;&lt;br /&gt;
    &amp;amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;title&amp;amp;gt;&amp;amp;amp;lt;object&amp;amp;gt; value excerption pattern: hCard Telephone Type Test Case&amp;amp;lt;/title&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;body class=&amp;amp;quot;vcard&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;h1 class=&amp;amp;quot;fn&amp;amp;quot;&amp;amp;gt;&amp;amp;lt;a class=&amp;amp;quot;url&amp;amp;quot; href=&amp;amp;quot;http://ben-ward.co.uk&amp;amp;quot;&amp;amp;gt;Ben Ward&amp;amp;lt;/a&amp;amp;gt;&amp;amp;lt;/h1&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;p class=&amp;amp;quot;tel&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
        &amp;amp;lt;object class=&amp;amp;quot;type&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
            &amp;amp;lt;param name=&amp;amp;quot;value&amp;amp;quot; value=&amp;amp;quot;cell&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
            Mobile:&lt;br /&gt;
        &amp;amp;lt;/object&amp;amp;gt;&lt;br /&gt;
        &amp;amp;lt;span class=&amp;amp;quot;value&amp;amp;quot;&amp;amp;gt;415-123-567&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;/p&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;/body&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Results =====&lt;br /&gt;
A pass is to display a heading level one ‘Ben Ward’ with hyperlink, followed by a paragraph displaying the text ‘Mobile: 415-123-567’&lt;br /&gt;
Browsers selected based on YUI Graded Browser Support (August 2008), plus some others.&lt;br /&gt;
&lt;br /&gt;
* Opera 9.5 - Pass&lt;br /&gt;
* Firefox 2, 3 - Pass&lt;br /&gt;
* Microsoft Internet Explorer 5.2 (Mac) - Pass&lt;br /&gt;
* Microsoft Internet Explorer 6 - Partial Pass†&lt;br /&gt;
* Microsoft Internet Explorer 7 - Partial Pass†&lt;br /&gt;
* Microsoft Internet Explorer 8 (beta) - Partial Pass†&lt;br /&gt;
* Safari 3 - Pass&lt;br /&gt;
* Safari 2 - *Fail* ††&lt;br /&gt;
&lt;br /&gt;
* † Internet Explorer 6–8 on Windows XP renders the correct text, but triggers an ActiveX security warning bar on the page load.&lt;br /&gt;
** This is an error on behalf of IE/Windows. As the object has no type nor data attributes, it has nothing that would bind it to a specific ActiveX control, and therefore should not trigger a security warning bar. This bug should be reported, and the respective bug number referenced here.&lt;br /&gt;
* †† Safari 2 renders a default-sized white box (as if embedding an external control). It breaks layout and does not display the desired content.&lt;br /&gt;
&lt;br /&gt;
===== Safari 2 Tweak =====&lt;br /&gt;
The example is tweaked as follows to affect Safari 2 rendering:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;amp;lt;!DOCTYPE HTML PUBLIC &amp;amp;quot;-//W3C//DTD HTML 4.01//EN&amp;amp;quot;&lt;br /&gt;
    &amp;amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;title&amp;amp;gt;&amp;amp;amp;lt;object&amp;amp;gt; value excerption pattern: hCard Telephone Type Test Case&amp;amp;lt;/title&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;body class=&amp;amp;quot;vcard&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;h1 class=&amp;amp;quot;fn&amp;amp;quot;&amp;amp;gt;&amp;amp;lt;a class=&amp;amp;quot;url&amp;amp;quot; href=&amp;amp;quot;http://ben-ward.co.uk&amp;amp;quot;&amp;amp;gt;Ben Ward&amp;amp;lt;/a&amp;amp;gt;&amp;amp;lt;/h1&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;p class=&amp;amp;quot;tel&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
        &amp;amp;lt;object data=&amp;amp;quot;data://&amp;amp;quot; class=&amp;amp;quot;type&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
            &amp;amp;lt;param name=&amp;amp;quot;value&amp;amp;quot; value=&amp;amp;quot;cell&amp;amp;quot;&amp;amp;gt;&lt;br /&gt;
            Mobile:&lt;br /&gt;
        &amp;amp;lt;/object&amp;amp;gt;&lt;br /&gt;
        &amp;amp;lt;span class=&amp;amp;quot;value&amp;amp;quot;&amp;amp;gt;415-123-567&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;/p&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;/body&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A &amp;lt;code&amp;gt;data=&amp;quot;data://&amp;quot;&amp;lt;/code&amp;gt; URL attribute is added to the &amp;lt;code&amp;gt;object&amp;lt;/code&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
====== Safari 2 Result ======&lt;br /&gt;
&lt;br /&gt;
* Safari 2 - Partial Pass†&lt;br /&gt;
&lt;br /&gt;
† Safari 2 renders the object correctly on first page load, *however*, upon using the browser ‘Refresh’ function, the &amp;lt;code&amp;gt;object&amp;lt;/code&amp;gt; element reverts to the broken rendering described in the original test.&lt;br /&gt;
&lt;br /&gt;
===== Current Conclusion =====&lt;br /&gt;
* Safari 2 does not pass the test acceptably for this to be adopted as the only solution.&lt;br /&gt;
* Internet Explorer's security warnings are irritating, but justifiably unacceptable.&lt;br /&gt;
--[[User:BenWard|BenWard]] 20:17, 26 Aug 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
* I concur. And while we can report a bug against IE/Windows in the hopes that it is fixed eventually (perhaps even in IE8 before it ships), as this problem has been fixed in Safari 3, it is doubtful that a bug report against Safari 2 would be fixed in an intermediate version.&lt;br /&gt;
--[[User:Tantek|Tantek]] 03:07, 27 Aug 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
==== misconceptions ====&lt;br /&gt;
===== misunderstanding of authoring unfriendliness =====&lt;br /&gt;
* not very hand-authoring friendly, compared to other proposals like: [[datetime-design-pattern#Machine-data_in_class|Machine data in class]]: &amp;lt;code&amp;gt;&amp;amp;lt;span class=&amp;quot;type data-cell&amp;quot;&amp;gt;Mobile:&amp;amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt;, and [http://microformats.org/discuss/mail/microformats-discuss/2008-February/011583.html data prefix in titles]: &amp;lt;code&amp;gt;&amp;amp;lt;span class=&amp;quot;type&amp;quot; title=&amp;quot;data:cell&amp;quot;&amp;gt;Mobile&amp;amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; [[User:TobyInk|TobyInk]]&lt;br /&gt;
** It is even more hand-authoring unfriendly to introduce a new syntax, as &amp;quot;Machine data in class&amp;quot; does, and to some extent as &amp;quot;data prefix in titles does&amp;quot;. Additional (especially new) syntax introduces far greater cognitive load to the author than a little bit more markup. [[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
==== previous iterations ====&lt;br /&gt;
===== 2008-08-23 =====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;object class=&amp;quot;type&amp;quot; lang=&amp;quot;en-GB&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;param class=&amp;quot;value&amp;quot; name=&amp;quot;value&amp;quot; value=&amp;quot;cell&amp;quot; /&amp;gt;&lt;br /&gt;
 mobile&lt;br /&gt;
&amp;lt;/object&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
====== disadvantages ======&lt;br /&gt;
* '''Invalid (X)HTML''' - although this pattern does make sense, it is worth noting that &amp;lt;code&amp;gt;&amp;amp;lt;param&amp;gt;&amp;lt;/code&amp;gt; is one of just a handful of HTML elements for which the &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; attribute is [http://www.w3.org/TR/REC-html40/struct/objects.html#h-13.3.2 not defined]. Use of this pattern will break validation unless a custom DTD is employed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== details for handling specific property types ==&lt;br /&gt;
=== date and time separation ===&lt;br /&gt;
&lt;br /&gt;
==== summary ====&lt;br /&gt;
By specifying a more precise parsing of the use of &amp;quot;value&amp;quot; excerption inside all datetime properties (e.g. dtstart, dtend, published, updated etc.), dates and times can be marked up separately, thus reducing/minimizing (and potentially eliminating) the readability issues that come with compound ISO8601 datetimes.&lt;br /&gt;
&lt;br /&gt;
==== introductory example ====&lt;br /&gt;
The sentence:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 The weekly dinner is tonight at 6:30pm.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
would be marked up as:&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 The weekly dinner is &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;2008-06-24&amp;quot;&amp;gt;tonight&amp;lt;/abbr&amp;gt; &lt;br /&gt;
 at &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== advantages ====&lt;br /&gt;
* re-uses the readable [[abbr-date-pattern]]&lt;br /&gt;
* identifies a similarly readable abbr-time-pattern.&lt;br /&gt;
* minimizes DRY violation distance, keeps machine data on exactly the same element as the respective human data&lt;br /&gt;
** even better than [[abbr-datetime-pattern]] does, which, in practice from experience often required specifying the date in machine readable form on the human readable time (separate from the human readable date).&lt;br /&gt;
* introduces no new class names - [[principle]] of minimal invention&lt;br /&gt;
* introduces no new use of the class attribute - principle of minimal invention again&lt;br /&gt;
* introduces no new syntax ([[datetime-design-pattern#problems_with_strtime_proposal|see above]] about any publishing method that requires the author to think like a programmer being a non-starter, and introducing new syntax almost always requires authors to think like programmers).&lt;br /&gt;
* and most importantly, introduces no dark data.&lt;br /&gt;
&lt;br /&gt;
==== issues ====&lt;br /&gt;
Some potential issues were raised in IRC, and it helps to document/resolve them so that they are not brought up repeatedly.&lt;br /&gt;
* [[http://rbach.priv.at/Microformats/IRC/2008-06-24#T163114 Does this sufficiently address the concerns raised with the current use of abbr-pattern?]]&lt;br /&gt;
*# The [[abbr-date-pattern]], as documented and explained by [[User:Adactio|Jeremy Keith]] is just fine (in contrast to the [[abbr-datetime-pattern]]).&lt;br /&gt;
*# Similar to the [[abbr-date-pattern]], this proposal implies/introduces the abbr-time-pattern, which is similarly acceptable.&lt;br /&gt;
*# In addition, as long there is incremental improvement, we are making progress. It is more important to take small steps that we know will help some things, rather than try to take a big step that is more risky in the attempt to help more but may not actually do so (as most big changes don't), therefore &amp;quot;sufficiently&amp;quot; is a flawed way of evaluating incremental fixes.&lt;br /&gt;
* Exposes data through tooltips. Separating into 2008-06-07 and 18:03 improves the ability for humans to consume the data, but still exposes data through tooltips and speech in formats that the publisher did not choose to use. --[[User:BenWard|BenWard]] 04:52, 25 Jun 2008 (PDT)&lt;br /&gt;
*# This is a feature, not a bug. By making the duplicated data at least *somewhat* visible (rather than fully invisible), effective data quality is increased due to the fact that the probability of the ISO8601 and locale-specific data getting out-of-sync is reduced because of the increased visibility (and therefore the increased inspectability and more eye-balls looking at/for problems effect).&lt;br /&gt;
*# Workaround: if a site publisher wishes to customize the presentation of tooltips, they can do so with a nested span with title.&lt;br /&gt;
*#* That proposes extraneous mark-up maintain some publisher's wish not to have a tool-tip in the first place. I object to a microformat pattern requiring an immediate work-around to meet publisher's desires. It goes against ‘Humans first…’. --[[User:BenWard|BenWard]] 09:09, 30 Jun 2008 (PDT)&lt;br /&gt;
*#*# Additional markup has nothing to do with &amp;quot;Humans first&amp;quot;. &lt;br /&gt;
*#*# Additional markup to work-around minor issues (e.g. CSS, cross-browser compatibility, etc.) is a well accepted modern web design practice.  It's not ideal, but it is both accepted and widely practiced. With the use of &amp;lt;code&amp;gt;&amp;amp;lt;span&amp;amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;amp;lt;div&amp;amp;gt;&amp;lt;/code&amp;gt; elements, it's also semantically neutral, therefore not a problem from that perspective either.&lt;br /&gt;
*#*# Finally, it should not be our goal to try to satisfy *every* publisher, for that would make every microformat beholden to every publisher and contort the design of microformats in really poor ways.  We must accept that not all publishers will adopt all microformats and that is ok. Our goal to incrementally increase the number of publishers that adopt microformats, not to try to satisfy each and every one.&lt;br /&gt;
*#* You *have* to have a tooltip though. It’s not possible to *not* have a tooltip. Not great.--[[User:JulianStahnke|Julian Stahnke]] 12:58, 4 Sep 2008 (BST)&lt;br /&gt;
* Semantic misuses of ABBR. That ‘tonight’ is ever a textual, human abbreviation of ‘2008-06-24’ is not accepted.&lt;br /&gt;
*# Semantic stretch not misuse. It is a semantic abbreviation rather than a purely syntactical (character shortening) abbreviation, but it is an abbreviation in context nonetheless. Though this may stretch what may be commonly expected as an &amp;quot;abbreviation&amp;quot;, the HTML4 spec does seem to allow some flexibility here ([http://www.w3.org/TR/html401/struct/text.html#h-9.2.1 HTML 4.01 9.2.1 Phrase elements]).&lt;br /&gt;
* Maintaining proper sentences with the expanded form. It is not always possible to use this mark-up and maintain proper sentences with the expanded form. e.g. &amp;lt;code&amp;gt;it's my &amp;amp;lt;abbr class=&amp;quot;bday&amp;quot; title=&amp;quot;2005-06-20&amp;quot;&amp;gt;birthday today&amp;amp;lt;/abbr&amp;gt;!&amp;lt;/code&amp;gt; becomes ‘it's my 2005-06-20!’.  And thus audio rendition of such titles can be nonsensical - &amp;quot;The weekly dinner is two thousand and eight dash zero six dash twenty four at eighteen thirty.&amp;quot;&lt;br /&gt;
*# This can and should be addressed by improving authoring examples so that practices improve with experience.&lt;br /&gt;
* Publishing practices and desires show us that authors are not willing to compromise the semantics of abbr. [[User:Phae|Phae]] 04:30, 27 Jun 2008 (PDT)&lt;br /&gt;
*# Without specific citations of which authors and what specific issues they have, we are unable to address their issues.&lt;br /&gt;
*# See also above - not our goal to satisfy *every* publisher, but rather to incrementally satisfy more and more.  We must accept that  there may be some authors we are unable to satisfy in the immediate/short-term.&lt;br /&gt;
* [[http://rbach.priv.at/Microformats/IRC/2008-06-24#T163435 That's getting pretty complicated]]&lt;br /&gt;
** Much less complicated than inventing yet another syntax ( &amp;quot; { ... } &amp;quot; ???? ) that web authors would have to learn.&lt;br /&gt;
*** But it's all in one place, rather than spreading it out.&lt;br /&gt;
**** The spreading it out is what current content publishing practices do already! It is much more important to map the machine data as close to the existing publishing practice as possible, than to try to &amp;quot;put it all in one place&amp;quot;.  The &amp;quot;put it all in one place&amp;quot; way of thinking is why people ended up sticking so much invisible metadata in the head of the document, which we know fails.&lt;br /&gt;
&lt;br /&gt;
==== content requirements ====&lt;br /&gt;
Some requirements which enhance both human readability, ''and'' machine parsability (best of both) :&lt;br /&gt;
* date value excerpts MUST use hyphen separators. E.g. 2008-06-24.  Not ok:20080624.&lt;br /&gt;
* time value excerpts MUST use colon separators (seconds optional, implied :00 if absent). E.g. 18:30 or 18:30:00.  Not ok:183000.&lt;br /&gt;
* timezone value excerpts MUST use leading plus or minus and NO colon separator. E.g. -0700.  Not ok:-07:00.&lt;br /&gt;
&lt;br /&gt;
==== derivation ====&lt;br /&gt;
It's important to document the derivation/background of a brainstorm/proposal as it allows others to see some of the thinking that went into it, and avoid having to rediscuss alternatives already considered, and helps provide understanding as to why aspects of the design are as they are.&lt;br /&gt;
===== example with datetime =====&lt;br /&gt;
Here is a short code example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 the weekly dinner is tonight at &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-24T18:30&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
===== example with abbr datetime =====&lt;br /&gt;
However that's not the easiest to read, nor do most people publish that as human visible text, so per the abbr-datetime pattern:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 the weekly dinner is tonight at &amp;lt;abbr class=&amp;quot;dtstart&amp;quot; title=&amp;quot;2008-06-24T18:30&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
which has raised two issues:&lt;br /&gt;
# When &amp;quot;2008-06-24T18:30&amp;quot; is inspected by a human reading a tooltip, or spoken by a screen reader, it's not the most understandable thing (precise citation needed, perhaps an mp3 with screen reader used version info).&lt;br /&gt;
# There is a non-local violation of DRY (which IMHO is a worse problem, as it leads to worse data quality -[[User:Tantek|Tantek]]). That is, the &amp;quot;date&amp;quot; information is now not only in the text twice (as it was before), but those two instances of the date information are not on the same element, which makes it worse. That is, &amp;quot;tonight&amp;quot; is in the prose, ''outside'' of the element with the precise date &amp;quot;2008-06-24&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In analysis of examples of event information on the web, the date and time are often published in separate elements, often for display purposes.&lt;br /&gt;
&lt;br /&gt;
Thus it is this existing content publishing practice which leads to this brainstorm proposal, to essentially to introduce a date and time value excerption longhand.&lt;br /&gt;
&lt;br /&gt;
(Initially [http://rbach.priv.at/Microformats/IRC/2008-06-21#T181634 Tantek's idea that he bounced off Jeremy Keith]  ([http://rbach.priv.at/Microformats/IRC/2008-06-24#T124652 similar idea conceived by Drew independently]) was to  [http://rbach.priv.at/Microformats/IRC/2008-06-24#T161819 introduce new classes &amp;quot;datevalue&amp;quot;, &amp;quot;timevalue&amp;quot;] and &amp;quot;tzvalue&amp;quot; for this purpose, but [http://rbach.priv.at/Microformats/IRC/2008-06-24#T171603 Bob Jonkman pointed out] that HTML5's time parsing algorithm enables a single &amp;lt;nowiki&amp;gt;&amp;lt;time&amp;gt;&amp;lt;/nowiki&amp;gt; element to contain dates or times (with or without timezone) without having to explicitly say whether the value contains dates or times (with or without timezone). [http://rbach.priv.at/Microformats/IRC/2008-06-24#T171723 Bob then proposed] that thus all was needed was a single new &amp;quot;datetime&amp;quot; class name.  This was the key realization that allowed minimal invention. Tantek pointed out that since from the type of property we already know it is a datetime, [http://rbach.priv.at/Microformats/IRC/2008-06-24#T171835 there was no need for even one new class name], that we could simply re-use &amp;quot;value&amp;quot; excerption, and simply more precisely specify the semantics/parsing in the case of datetime properties.)&lt;br /&gt;
&lt;br /&gt;
===== example with new date and time value excerpts =====&lt;br /&gt;
Thus we markup the date and time separately, as value excerpts, using the [[abbr-date-pattern]] and an implied parallel abbr-time-pattern:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 The weekly dinner is &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;2008-06-24&amp;quot;&amp;gt;tonight&amp;lt;/abbr&amp;gt; &lt;br /&gt;
 at &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== separate subtrees =====&lt;br /&gt;
The proposal also allows setting the date and time in separate element subtrees as well, which may be necessary for some document structures:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 the weekly dinner is &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;2008-06-24&amp;quot;&amp;gt;tonight&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
 at &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note the two instances of dtstart, one of which sets the date for the dtstart, and the other of which sets the time.&lt;br /&gt;
&lt;br /&gt;
The idea being, when a parser sees a datetime property (e.g. dtstart) with a value excerpt, that it only &amp;quot;set&amp;quot; the component of its full value that is specified by the value excerpt (e.g. the date), and that if lacking a complete datetime, it continue to parse additional instances of that datetime property for the remaining component(s) (e.g. the time).&lt;br /&gt;
&lt;br /&gt;
Of course this only works for singular properties, but fortunately all instances of datetime properties so far are singular, so this works.&lt;br /&gt;
* hCard's &amp;lt;code&amp;gt;rev&amp;lt;/code&amp;gt; is plural. [[User:TobyInk|TobyInk]]&lt;br /&gt;
** can someone give a reference to this being the case? The RFC says &amp;quot;The value distinguishes the current revision of the information in this vCard for other renditions of the information.&amp;quot; Does it make sense to have multiple REV dates in a single vCard?&lt;br /&gt;
*** The RFC is ambiguous as usual, but a contact card could conceivably have had several changes made to it, with a &amp;lt;code&amp;gt;rev&amp;lt;/code&amp;gt; for each. (&amp;quot;Change logs&amp;quot; are fairly common on the web.) The [[hcard|hCard spec]] is fairly specific about which properties are [[hcard#Singular_vs._Plural_Properties|singular]] and which are not, and &amp;lt;code&amp;gt;rev&amp;lt;/code&amp;gt; is not included in the list of singular properties.&lt;br /&gt;
&lt;br /&gt;
===== reusing date data for multiple datetime properties =====&lt;br /&gt;
This also provides a *very* convenient way to re-use the same date information for start and end, e.g. expanding the example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 the weekly dinner is &amp;lt;span class=&amp;quot;dtstart dtend&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;2008-06-24&amp;quot;&amp;gt;tonight&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt; &lt;br /&gt;
 from &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30&amp;quot;&amp;gt;6:30&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt; - &lt;br /&gt;
 &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;20:30&amp;quot;&amp;gt;8:30pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note what just happened. we just eliminated another duplication of date information by reusing the start *date* information for the end *date* information and *only* specifying the end *time* information separately for the two properties.&lt;br /&gt;
&lt;br /&gt;
Reducing the duplication (or triplication) of such data helps to reduce the chances of (even inadvertent) data corruption/drift/divergence among any duplicates.&lt;br /&gt;
&lt;br /&gt;
===== time zones =====&lt;br /&gt;
There are a few choices for timezones.&lt;br /&gt;
# Simply include the time zone information as part of the time &amp;quot;value&amp;quot;. &amp;lt;br /&amp;gt; E.g. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30-0700&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Or use another value excerpt for the timezone (was: &amp;lt;del&amp;gt;introduce the class name &amp;quot;tzvalue&amp;quot;&amp;lt;/del&amp;gt;) &amp;lt;br /&amp;gt; E.g. &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:30&amp;quot;&amp;gt;6:30pm&amp;lt;/abbr&amp;gt; &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;-0700&amp;quot;&amp;gt;PDT&amp;lt;/abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Or allow both and let web authors decide. This is the current leaning.&lt;br /&gt;
#* if web authors want to specify timezone as part of the time (first example above), they can, &lt;br /&gt;
#* or if web authors visibly publish the timezone separately (second example above), then they can mark that up. &lt;br /&gt;
#* or if web authors wish to omit timezone information, they can do so as well, as most do today. In practice this works fine, as it creates a &amp;quot;floating&amp;quot; time which works fine in far more than the 80/20.&lt;br /&gt;
&lt;br /&gt;
(more to come, documenting [http://rbach.priv.at/Microformats/IRC/2008-06-24#T161740 from IRC logs])&lt;br /&gt;
&lt;br /&gt;
==== discussion ====&lt;br /&gt;
Opening up a discussion section even though documentation [http://rbach.priv.at/Microformats/IRC/2008-06-24#T161740 from IRC logs] is still in progress. :)&lt;br /&gt;
&lt;br /&gt;
* regarding the [[datetime-design-pattern#advantages|advantage]] of &amp;quot;and most importantly, introduces no dark data.&amp;quot;&lt;br /&gt;
** &amp;quot;Dark data&amp;quot; is sometimes what publishers *want* to publish. To use the example of TV schedules which kick started the renewed discussion in this area, publishers will often not want to display the date. For instance, if a page entitled &amp;quot;Tomorrow's TV&amp;quot; and containing 300 different programmes marked up with &amp;lt;code&amp;gt;dtstart&amp;lt;/code&amp;gt;, it is superfluous to explicitly display the date for each one. With this proposed solution the [[include|include pattern]] could be used to include the date into each vevent, but a visible link to the date on each programme would simply be confusing. Sometimes it just makes sense to hide some of the information you're publishing as a microformat - because the information you want to make explicit to parsers can be inferred from context by humans, or is more appropriately displayed at a different level of granularity for machines and humans. [[User:TobyInk|TobyInk]] 14:26, 24 Jun 2008 (PDT)&lt;br /&gt;
*** It doesn't matter whether publishers *want* to publish dark data or not. Invisible data always leads to poorer quality data. Publishers publish all kinds of invisible metadata in the heads of documents etc. because they want to, but their desire doesn't stop the data from becoming obsolete, diverging from the actual visible data etc.  The quality of the data matters more than any publishers wish(es) of publishing in a specific format, or in a hidden way.  In the example you gave, using the include pattern in that way would not result in any visible links, but merely empty include anchors.  It never makes any sense to actually hide &amp;quot;some of the information you're publishing as a microformat&amp;quot;, because historically that always results in some loss of data quality over time and thus the microformats [[principle]] of visible data instead of invisible metadata. [[User:Tantek|Tantek]] 14:32, 24 Jun 2008 (PDT)&lt;br /&gt;
**** All microformats hide ''some'' data. In the example &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;01632 960123&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, the information that the long string of numbers represents a telephone number is invisible. And making it visible (&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;Tel: &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;01632 960123&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;) violates DRY. It's just a matter of where to draw the line.&lt;br /&gt;
***** That statement makes the mistake of conflating *type* data and *content* data.  &amp;quot;tel&amp;quot; is not content data, just as &amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;&amp;lt;/nowiki&amp;gt; is not content data. It's markup, indicating the type of the data. Markup (type data) being invisible to the user has worked just fine.  Content (content data) being invisible to the user is the problem of dark data. Or rather, if you think that everything is data, then you really should be spending time developing in a system that is built on that assumption, e.g. RDF, rather than microformats, which are built on HTML, and the clear separation of type of data (HTML elements, microformats properties) and content data (inner text, text attribute values).&lt;br /&gt;
****** My point is that there isn't a ''distinction'' between the two, but a ''continuum''. The choice of where to draw the line is never a clear one and always somewhat arbitrary. The vCard standard could quite easily have ended up with separate &amp;quot;TEL&amp;quot;, &amp;quot;FAX&amp;quot; and &amp;quot;CELL&amp;quot; properties, in which case hCard would have ended up with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;foo class=&amp;quot;tel&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;bar class=&amp;quot;fax&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;baz class=&amp;quot;cell&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. Going the other way, they could have stored e-mail addresses as mailto: URLs, and then hCard would have &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;a class=&amp;quot;url&amp;quot; href=&amp;quot;mailto:quux@example.com&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. They chose the way they did, and as a result in hCard the distinction between a mailto: URI and an http: URI is largely invisible (in most circumstances only obvious by looking at the status bar when hovering), but the distinction between a telephone number and a fax number is visible. But that wasn't the only possible (nor the only reasonable) outcome.&lt;br /&gt;
&lt;br /&gt;
== enabling more use of title attributes ==&lt;br /&gt;
=== valuetitle ===&lt;br /&gt;
Numerous proposals over the years have advocated expanding the use of the title attribute beyond the abbr tag for storing microformat property values.  One simple mechanism for doing so would be to introduce a new value excerption class name and rule.&lt;br /&gt;
&lt;br /&gt;
'''valuetitle''': before &amp;quot;normal&amp;quot; value excerption handling, first look (in the same manner as value-excerption) for the class name &amp;quot;valuetitle&amp;quot;, if it is found, use the value of the title attribute on that element and do no further value excerption or other parsing for that property value.&lt;br /&gt;
&lt;br /&gt;
E.g. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;valuetitle&amp;quot; title=&amp;quot;cell&amp;quot;&amp;gt;mobile&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In addition to first looking for &amp;quot;valuetitle&amp;quot; where a parser would look for &amp;quot;value&amp;quot;, it seems reasonable to also allow &amp;quot;valuetitle&amp;quot; on the property element itself in order to minimize the markup necessary, e.g.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;type&amp;quot; class=&amp;quot;valuetitle&amp;quot; title=&amp;quot;cell&amp;quot;&amp;gt;mobile&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Naming reasoning/methodology: by using the prefix &amp;quot;value-&amp;quot; it is clear that this is part of the value excerption pattern.  By using the suffix &amp;quot;-title&amp;quot;, it is clear that the &amp;quot;title&amp;quot; attribute is involved.  Thus the name &amp;quot;valuetitle&amp;quot; is a good mnemonic for its functionality.  See related [[naming-principles]].&lt;br /&gt;
&lt;br /&gt;
&amp;quot;valuetitle&amp;quot; was suggested on 2008-08-30 by [[User:Tantek|Tantek]] in a discussion with [[User:BenWard|Ben Ward]].&lt;br /&gt;
&lt;br /&gt;
==== previous similar proposals ====&lt;br /&gt;
I believe there may have been a proposal for &amp;quot;usetitle&amp;quot;(link+citation needed) in the past that would function similarly.  I think &amp;quot;valuetitle&amp;quot; is better than &amp;quot;usetitle&amp;quot; as &amp;quot;valuetitle&amp;quot; is more *descriptive*, i.e. meaning &amp;quot;the title is the value&amp;quot;, as opposed to &amp;quot;usetitle&amp;quot;, which is more *prescriptive*, i.e. &amp;quot;use the title&amp;quot;. [[User:Tantek|Tantek]] 08:13, 1 Sep 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== related pages ==&lt;br /&gt;
* [[value-excerption-pattern]]&lt;br /&gt;
* [[value-excerption-pattern-issues]]&lt;br /&gt;
* [[hcard#Value_excerpting|hCard: Value Excepting]]&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=User:JulianStahnke&amp;diff=32459</id>
		<title>User:JulianStahnke</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=User:JulianStahnke&amp;diff=32459"/>
		<updated>2007-12-30T16:43:27Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello, my name is Julian Stahnke and I work for [http://www.last.fm Last.fm]. I’m 22 years old and live in London after spending the first 20 years of my life in Bremen, Germany.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ccpublicdomainrelease&amp;quot; style=&amp;quot;background: #f7f8ff; border: 1px solid #88a; padding: 5px; font-size: 80%;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;float:left;margin:4em 0&amp;quot;&amp;gt;http://creativecommons.org/images/public/norights-a.gif&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;float:right;margin:4em 0&amp;quot;&amp;gt;http://creativecommons.org/images/public/norights-a.gif&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;background:#fff;margin:0 88px;padding:2px&amp;quot;&amp;gt;&amp;lt;div style=&amp;quot;text-align: center; background: #ccf;&amp;quot;&amp;gt;'''Released into public domain'''&amp;lt;/div&amp;gt;&amp;lt;p&amp;gt;I agree to release all my text and image contributions (past, present and future), into the [[#public-domain|public domain*]]. Please be aware that other contributors might not have done the same, so if you want to use pages with my contributions under public domain terms, please check past contributors' user pages.&amp;lt;/p&amp;gt;&amp;lt;p id=&amp;quot;public-domain&amp;quot;&amp;gt;&amp;quot;^ [http://creativecommons.org/licenses/publicdomain/ Creative Commons Public Domain License], the original at  http://creativecommons.org/licenses/publicdomain/ or any later version published by Creative Commons; with either a waiver of rights, or an assertion that no rights attach to a particular work.&amp;quot;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
[[Category:public domain license|{{PAGENAME}}]]&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=events/2008-london-microformats-vevent&amp;diff=23714</id>
		<title>events/2008-london-microformats-vevent</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=events/2008-london-microformats-vevent&amp;diff=23714"/>
		<updated>2007-12-12T11:43:45Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: /* Attending */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= London Microformats vEvent = &lt;br /&gt;
&lt;br /&gt;
This is a social [[events|event]] planned for the first quarter of 2008 in London.&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
TBC&lt;br /&gt;
&lt;br /&gt;
This page will be filled as details are decided.&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
We hope to put on a small social event in London in the first quarter of 2008.  It'll feature a couple of speakers on the topic of microformats and the semantic web and hopefully some drinks too.&lt;br /&gt;
&lt;br /&gt;
== Organisers ==&lt;br /&gt;
*[[User:Phae|Frances Berriman]] - http://fberriman.com&lt;br /&gt;
*[[User:DrewMcLellan|Drew McLellan]] - http://allinthehead.com&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
Please put yourself down if you're interested in attending an event in the first part of 2008.  We're currently using this page to gauge interest right now.&lt;br /&gt;
&lt;br /&gt;
* PJ Barry&lt;br /&gt;
* James Darling&lt;br /&gt;
* Jason Cale&lt;br /&gt;
* David Thompson&lt;br /&gt;
* Adam Liptrot&lt;br /&gt;
* Mark Ford&lt;br /&gt;
* Elliot Jay Stocks&lt;br /&gt;
* Mark Ng&lt;br /&gt;
* Julian Stahnke&lt;br /&gt;
* Add your name&lt;br /&gt;
* ..&lt;br /&gt;
&lt;br /&gt;
== Blog Posts ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
&lt;br /&gt;
== Additional Links / Information ==&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-advocacy&amp;diff=22653</id>
		<title>hcard-advocacy</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-advocacy&amp;diff=22653"/>
		<updated>2007-10-14T17:37:56Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: /* Online Profiles */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard advocacy&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Adding [[hcard|hCard]] to these sites would make them quite handy for their users and for being indexed:&lt;br /&gt;
&lt;br /&gt;
== Online Profiles ==&lt;br /&gt;
=== User Profiles ===&lt;br /&gt;
Nearly every website that has a login has a page representing the public profile of the user that other users can see and interact with. Many such sites already [[hcard-implementations|support hCard]] (e.g. ClaimID.com, Flickr.com, Technorati.com). Here are some that I think would benefit from the addition of hCard to their profile / user pages, making them [[hcard-supporting-user-profiles]]. In addition, if such profiles have friends lists, we should encourage them to add support for [[hcard-xfn-supporting-friends-lists]].  Both of these help [[social-network-portability]] and help the site become a node on the [[open-social-web]].&lt;br /&gt;
&lt;br /&gt;
Feel free to add more such sites that have a social network profile-like component and we'll see what we can do. [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
* Wikimedia - including this site, Wikipedia (See [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats WikiProject Microformats]), Wikitravel, etc.&lt;br /&gt;
**It would be nice if &amp;lt;nowiki&amp;gt;[[User:YOURNAME]]&amp;lt;/nowiki&amp;gt; links generated proper (mini)hCards. ([http://microformats.org/wiki?title=to-do&amp;amp;diff=12177&amp;amp;oldid=12173#Lazyweb per SteveIvy]; moved from 'to-do')&lt;br /&gt;
* Alexa.com has online profiles for domains with contact information.  Would be great if they could add hCard to those. 2007-04-18 [[User:Tantek]] requested of [[User:BenWest]] e.g.:&lt;br /&gt;
** http://www.alexa.com/data/details?url=alexa.com/&lt;br /&gt;
** http://www.alexa.com/data/details?url=w3.org/&lt;br /&gt;
* [http://dodgeball.com/ Dodgeball] profiles and venues need [[hcard|hCard]] for people and organizations&lt;br /&gt;
** [http://www.dodgeball.com/user?uid=30209 a profile]&lt;br /&gt;
** [http://www.dodgeball.com/venue?vid=23551 a venue] - could also use [[hreview|hReview]] for the user reviews listed there for the venue&lt;br /&gt;
* [http://idubyou.com/ i dub you]&lt;br /&gt;
* [http://www.icq.com/people ICQ, where they show people's profiles and have a few ways of contacting and/or connection to people.]&lt;br /&gt;
* http://youtube.com The very popular YouTube have profiles that do include some information that might use [[hcard|hCard]].&lt;br /&gt;
* [http://www.facebook.com Facebook] is a very popular (over 13 million members) community.&lt;br /&gt;
**Requested support of microformats in openly asked question to Mark Zuckerberg during Q&amp;amp;A at TechCrunch40 conference, founder, and got [http://therealmccrea.wordpress.com/2007/09/18/facebook-to-support-open-standards/ lukewarm reply]. Glimmer of hope: &amp;quot;When it's important to our users, we'll do it.&amp;quot;  Thus if you are a Facebook user, please make a request to them to support microformats and tell them it is important to you.  Feel free to add your name below. 2007-09-17 [[User:Tantek|Tantek]]&lt;br /&gt;
**Requested in message to developer, 2007-09-28 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://pownce.com Pownce] - I'm talking with them, and have requested the following (and a bit more) as of 2007-07-29 - [[User:Tantek|Tantek]]&lt;br /&gt;
** needs to add class=&amp;quot;photo&amp;quot; to image icon&lt;br /&gt;
*** 2007-09-02 success!&lt;br /&gt;
** needs to add class=&amp;quot;note&amp;quot; to description&lt;br /&gt;
*** 2007-09-02 success!&lt;br /&gt;
** needs to add hCard+XFN to friends lists.&lt;br /&gt;
*** 2007-09-02 partial success, friends lists have hCard, have asked Daniel Burka to add rel=&amp;quot;acquaintance&amp;quot; per [[xfn-clarifications#are_you_my_friend_yes_or_no|XFN clarifications for yes/no friend relationships]]. [[User:Tantek|Tantek]] 10:41, 3 Sep 2007 (PDT)&lt;br /&gt;
** 2007-09-02 note also XFN rel=&amp;quot;me&amp;quot; success: http://pownce.com/t/notes/644806/&lt;br /&gt;
* [http://anobii.com Anobii] - I asked them if they could implement hCard-supporting profiles and XFN on 2007-10-05 - [[User:JulianStahnke|Julian Stahnke]]&lt;br /&gt;
** Response: We will definitely spend some time to consider the suggestion.&lt;br /&gt;
** Got another mail from one of their developers, they’re looking into it.&lt;br /&gt;
&lt;br /&gt;
=== Company Profiles ===&lt;br /&gt;
* [http://getsatisfaction.com/ Satisfaction Unlimited], has company profiles, e.g. http://getsatisfaction.com/satisfaction/ that could be marked up with hCards.  &lt;br /&gt;
** Contacted Ted Grubb at the company and requested hCards for company and its employees for all their company profiles. [[User:Tantek|Tantek]] 11:24, 2 Sep 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Online Venues ==&lt;br /&gt;
There are many sites that offer pages that represent organizations and venues that could benefit from being marked up with hCard. [http://local.yahoo.com/ Yahoo Local] venues are marked up with hCards for example. Here are some more sites that have venues that would benefit from hCard markup.&lt;br /&gt;
* Yelp.com&lt;br /&gt;
* http://opentable.com - a site for making restaurant reservations&lt;br /&gt;
** [[hcard|hCard]] for restaurants&lt;br /&gt;
** [[hcalendar|hCalendar]] for free busy times at restaurants&lt;br /&gt;
** [[hcalendar|hCalendar]] for your reservations&lt;br /&gt;
** Tantek has emailed a friend who is a former employee of OpenTable with the above three requests, in the hopes she can pass on the message.  In addition, Ryan King may know someone in marketing there. [[User:Tantek|Tantek]] 16:57, 30 Sep 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Plugins for and modifications of web-applications ==&lt;br /&gt;
Many web-applications use plugin-systems to change their behavior and content. Most notable is probably web-forums and blogs. Many of these have a community of coders that develop plugins or code to modify the default behavior of these web-applications. Here are some sites where it might be interesting to develop hcard-related plugins/mods.&lt;br /&gt;
&lt;br /&gt;
* forum-software&lt;br /&gt;
** http://www.phpbb.com&lt;br /&gt;
* blog-software&lt;br /&gt;
** http://b2evolution.net&lt;br /&gt;
&lt;br /&gt;
==Telephone Directory Listings==&lt;br /&gt;
Telephone Directory Listings could usefully apply hCard to their results pages, e.g. (please add other examples!):&lt;br /&gt;
&lt;br /&gt;
* [http://www.thephonebook.bt.com/ BT]&lt;br /&gt;
** '''Requested''' via [http://tinyurl.com/yhtdjy BT feedback form], 2006-11-13 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
** BT confirm that they will consider this at their next re-build. 2006-12 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://118118.com 118118.com]&lt;br /&gt;
** '''Requested''' via e-mail, 2006-11-13. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://192.com/ 192.com]&lt;br /&gt;
** '''Requested''' via [http://www.192.com/support/feedback.cfm 192.com feedback form], 2007-03-07 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://www.skype.com/intl/en-gb/download/features/skypefind/ SkypeFind]&lt;br /&gt;
** ''Requested''' via [http://support.skype.com/?_a=tickets&amp;amp;_m=submit Skype feedback form], 2007-03-16 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://www.whitepages.com/ White Pages (USA/ Canada)]&lt;br /&gt;
* [http://www.whitepages.com.au/ White Pages (Australia)]&lt;br /&gt;
* [http://www.switchboard.com/ Stitchboard (USA)]]&lt;br /&gt;
* [http://people.yahoo.com/ Yahoo! People Search (USA)]&lt;br /&gt;
* [http://www.whowhere.com/ Lycos People Search (USA)]&lt;br /&gt;
* [http://www.bsnl.co.in/map.htm BSNL (India)]&lt;br /&gt;
* [http://www.saynoto0870.com/ saynoto0870.com] (UK listings of geo vs. non-geo equivalents)&lt;br /&gt;
** '''Requested''' by feedback form, 2007-10-13. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
==Postal (ZIP) code Finders==&lt;br /&gt;
Postal code Finders could usefully apply hCard to their results pages. [[User:AndyMabbett|Andy Mabbett]] 12:09, 13 Nov 2006 (PST)&lt;br /&gt;
&lt;br /&gt;
e.g. (please add other examples!):&lt;br /&gt;
*[http://pol.royalmail.com/dda/txt/pf.asp Royal Mail] (UK)&lt;br /&gt;
**Requested via [http://tinyurl.com/ya4hzu Royal Mail feedback form], 2006-11-13 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**Acknowledged 2006-11-30. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
==Government hCard==&lt;br /&gt;
===UK Gov. hCard===&lt;br /&gt;
* Parliament: [http://www.parliament.uk/directories/hciolists/alms.cfm Alphabetical List of Members of Parliament] (see also [http://www.parliament.uk/directories/directories.cfm other lists of MPs and Lords]). [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
===Europe Gov. hCard===&lt;br /&gt;
* e.g. [http://www.europarl.org.uk/uk_meps/westmidlands.asp UK MEPs]&lt;br /&gt;
&lt;br /&gt;
=== MAPLight ===&lt;br /&gt;
http://maplight.org/ can use a bunch of hCard markup, e.g.&lt;br /&gt;
* individual politicians, like [http://www.maplight.org/map/us/legislator/408/individuals Nancy Pelosi]&lt;br /&gt;
* mentions of politicians on interest pages like [http://www.maplight.org/map/us/interest/L1300 Teachers unions]&lt;br /&gt;
* their contact info of course: http://www.maplight.org/contact&lt;br /&gt;
Requested by [[User:Tantek|Tantek]] 12:13, 30 May 2007 (PDT) in person at the NetSquared2007 conference.&lt;br /&gt;
&lt;br /&gt;
== Organization Contacts ==&lt;br /&gt;
Many companies and organizations have about or contact pages that could benefit from being marked up with hCard.  [http://technorati.com/about/contact.html Technorati's contact page] for example is both marked up with hCard and has a convenient &amp;quot;Add to Address Book&amp;quot; hCard to vCard converter link. The following company sites could benefit from similar markup (and, until user agents support hCards natively, &amp;quot;Add to Address Book&amp;quot; links). [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
*Adobe&lt;br /&gt;
**[http://www.adobe.com/aboutadobe/offices.html Adobe offices]&lt;br /&gt;
***Requested using contact form, 2006-12-14. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*Google &lt;br /&gt;
**Contacts, e.g. &lt;br /&gt;
*** [http://www.google.com/intl/en/contact/index.html Google.com contact page]&lt;br /&gt;
**** Requested by asking Google Employee KevinMarks via instant messaging to add hCard to that page along with a &amp;quot;Add to Address Book&amp;quot; link [[User:Tantek|Tantek]] 11:32, 10 Apr 2007 (PDT) and RyanKing in IRC&lt;br /&gt;
*** [http://www.google.co.uk/intl/en/contact/index.html Google UK], etc.&lt;br /&gt;
*[http://ibm.com/ IBM]&lt;br /&gt;
**[http://www.ibm.com/contact/us/ IBM contact page]&lt;br /&gt;
*** Requested by asking IBM employee Michael Kaply via IRC 2007-07-31 08:57am PDT: &amp;quot;how about getting hCard and 'Add to address book' links on the IBM contact page?&amp;quot;&lt;br /&gt;
*[http://www.mozilla.com/ Mozilla]&lt;br /&gt;
**[http://www.mozilla.com/en-US/about/legal.html Mozilla legal notices]&lt;br /&gt;
*Opera &lt;br /&gt;
**People, e.g. [http://people.opera.com/howcome/ Håkon Wium Lie]; could also be hResume&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://www.w3.org/Consortium/contact W3C contact]&lt;br /&gt;
**[http://www.w3.org/People/all W3C Staff listing] and individual pages, e.g. [http://www.w3.org/People/Berners-Lee/ Tim Berners-Lee]&lt;br /&gt;
***Requested by e-mail. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
== Individual hCards ==&lt;br /&gt;
Getting these sites to at least add hCard to their home page or contact info page and then [http://pingerati.net/ping/ ping Pingerati] would be an excellent start with getting them some experience with microformats and thinking about adding microformats to other places in their sites that make sense:&lt;br /&gt;
* [http://metaweb.com/ Metaweb Technologies]&lt;br /&gt;
** [http://www.freebase.com/ Freebase ]&lt;br /&gt;
&lt;br /&gt;
==Trade directories==&lt;br /&gt;
* [http://www.booktrust.org.uk/info/search_publishers.php BookTrust (UK book publishers)]&lt;br /&gt;
* [http://www.gepir.org/ Global Electronic Party Information Register] (GEPIR) over 1 million companies&lt;br /&gt;
** Requested 2007-08-31 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
==Other hCard==&lt;br /&gt;
* [http://www.imdb.com/ Internet Movie Database] (IMDb) for people (real, not characters), e.g. [http://www.imdb.com/name/nm0000007/ Humphrey Bogart]. [[User:AndyMabbett|Andy Mabbett]] 02:49, 13 Nov 2006 (PST)&lt;br /&gt;
**Can't find contact info! [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**See also example, below.&lt;br /&gt;
*Wikitravel&lt;br /&gt;
**e.g. [http://wikitravel.org/en/Birmingham_%28England%29 Wikitravel - Birmingham]&lt;br /&gt;
***[http://microformats.org/wiki?title=User_talk:MarkJaroski&amp;amp;curid=2699&amp;amp;diff=0&amp;amp;oldid=10663&amp;amp;rcid=19955 Wikitravel is about to hugely roll out hCard] Mark Jaroski&lt;br /&gt;
***See also [http://wikitravel.org/en/Wikitravel:Microformats Wikitravel:Microformats]&lt;br /&gt;
*[http://orlabs.oclc.org/Identities/ WorldCat Identities]&lt;br /&gt;
**The recently prototyped WorldCat Identities provides pages for 20 million 'identities', mainly authors and people who are the subjects of published titles.&lt;br /&gt;
**Requested by feedback form, 2007-03-09 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
** No reply, as of 02:02, 13 Jun 2007 (PDT)&lt;br /&gt;
*[http://geonames.org GeoNames]&lt;br /&gt;
**Requested by e-mail, 2007-06-07 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**Reply confirms that they will deploy hCard and Geo&lt;br /&gt;
**Geo noted in use, 06:08, 30 Jul 2007 (PDT)&lt;br /&gt;
*[http://www.oup.com/oxforddnb/info/ Oxford Dictionary of National Biography] (ODNB); subscription based, but [http://www.oxforddnb.com/public/lotw/ some ODNB articles available free]. All 56,000+ entries have Date of Death.&lt;br /&gt;
*[http://www.findagrave.com/ Find-a-Grave] e.g. [http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&amp;amp;GRid=680 Karl Marx]. Most entries have Date of Death.&lt;br /&gt;
*[http://www.biography.com/ Biography.com] e.g. [http://www.biography.com/impressionists/monet-bio.jsp Camille Monet] Most posthumous entries have Date of Death.&lt;br /&gt;
*[http://www.cwgc.org/ Commonwealth War Graves Commission] (1.75 million  people's details)&lt;br /&gt;
**E-mail sent 2007-08-24. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
== Successes ==&lt;br /&gt;
&lt;br /&gt;
*Details of hCard should be added to the [http://www.imc.org/pdi/ Internet Mail Consortium's vCard page]&lt;br /&gt;
**Requested by e-mail, 2006-11-24 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**'''Success''' achieved 2006-11-25. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*W3C&lt;br /&gt;
**'''W3C webmaster''' [http://www.w3.org/People/Jean-Gui/ Jean-Guilhem Rouel] now has an hCard. [[User:AndyMabbett|Andy Mabbett]] 15:41, 4 Apr 2007 (PDT)&lt;br /&gt;
* [http://jpgmag.com/ JPG magazine] - have sent email to their web developer with sample marked up member profile with [[hcard|hCard]] and [[xfn]] [[rel-me|rel=&amp;quot;me&amp;quot;]]. [[User:Tantek|Tantek]] 23:48, 21 Feb 2007 (PST)&lt;br /&gt;
** [[hcard|hCard]]+[[xfn]] [[rel-me|rel=&amp;quot;me&amp;quot;]] support as of March 2007.&lt;br /&gt;
* Twitter.com - working on it [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST).  &lt;br /&gt;
** Completed [[hcard|hCard]]+[[xfn]]+[[hatom|hAtom]] support last week with help from Chris Messina. [[User:Tantek|Tantek]] 12:01, 16 May 2007 (PDT)&lt;br /&gt;
* Consumating.com - working on it [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
** [[hcard|hCard]] profiles, [[hcalendar|hCalendar]] events as of March 2007.&lt;br /&gt;
* [http://sunlightlabs.com/api/ SunlightLabs API] provides profiles for US Congresspeople.  Their [http://sunlightlabs.com/api/masterref/megatable.php megatable] could easily be marked up with hCard, and their APIs could return hCards and hCard fields.&lt;br /&gt;
** [[User:Tantek|Tantek]] 12:30, 20 Apr 2007 (PDT) contacted them and requested that they add hCard to megatable, consider a GethCard API method, and potentially a GethResume API method for each person.&lt;br /&gt;
** [[User:CarlAnderson|CarlAnderson]] 26 Apr 2007: http://sunlightlabs.com/api does now have a people.getHCard.php API method to get an hCard for every member of congress. See the documentation at http://sunlightlabs.com/api/people.getHCard.php. An example call: http://api.sunlightlabs.com/people.getHCard.php?id=fakeopenID1 &lt;br /&gt;
** [[User:CarlAnderson|CarlAnderson]] 30 Apr 2007: I created a page of hCards for every member of congress: http://sunlightlabs.com/api/hcards/index.php&lt;br /&gt;
&lt;br /&gt;
===Wikpedia hCard===&lt;br /&gt;
*Infobox Templates for people mostly now have [[hcard|hCard]] in their generated markup&lt;br /&gt;
** [http://en.wikipedia.org/wiki/Template:Infobox_Person Infobox_Person]; e.g. [http://en.wikipedia.org/wiki/E._O._Wilson E. O. Wilson]&lt;br /&gt;
** [http://en.wikipedia.org/wiki/Template:Infobox_actor Infobox_actor]; e.g. [http://en.wikipedia.org/wiki/Humphrey_Bogart Humphrey Bogart]&lt;br /&gt;
*Addressable buildings e.g. [http://en.wikipedia.org/wiki/The_Old_Crown%2C_Birmingham The Old Crown, Birmingham]&lt;br /&gt;
*Tourist attractions, e.g. [http://en.wikipedia.org/wiki/Cadbury_World%2C_Birmingham Cadbury World]&lt;br /&gt;
*Companies, e.g. [http://en.wikipedia.org/wiki/Tesco Tesco] (note headquarters address in infobox)&lt;br /&gt;
*Railway Stations, e.g. [http://en.wikipedia.org/wiki/Perry_Barr_railway_station Perry Barr]&lt;br /&gt;
*etc.&lt;br /&gt;
*See also [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats WikiProject Microformats] [[User:AndyMabbett|Andy Mabbett]] 13:10, 28 Jan 2007 (PST)&lt;br /&gt;
* See also [[persondata|discussion of Wikipedia's Persondata]], which aligns very closely with hCard, but has additional date and place of birth &amp;amp; death fields. [[User:AndyMabbett|Andy Mabbett]] 13:23, 28 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Some microformat data is now (2007-09-14) being removed from Wikipedia; see, for example [http://en.wikipedia.org/w/index.php?title=List_of_Gaudi_Buildings&amp;amp;diff=prev&amp;amp;oldid=157704557 List_of_Gaudi_Buildings]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[advocacy]] (in particular see [[advocacy#Geo|Geo advocacy]] - for the Geo microformat, including cases where it may be used inside hCard)&lt;br /&gt;
*[[advocacy-email-samples]]&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=irc-people&amp;diff=22678</id>
		<title>irc-people</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=irc-people&amp;diff=22678"/>
		<updated>2007-10-13T12:41:41Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: IRC nick instead of name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A list of [[irc|IRC]] regulars, sorted by nick, and their normal timezones (winter/summer).&lt;br /&gt;
&lt;br /&gt;
* {{irc user|Adam Ballai|AdamBallai|-700/-700}}&lt;br /&gt;
* {{irc user|Adam Craven|AdamCraven|+0000}}&lt;br /&gt;
* {{irc user|Alexander Graf|AlexanderGraf|+0100}}&lt;br /&gt;
* {{irc user|Tomasino|aloneone|-0500}}&lt;br /&gt;
* {{irc user|AmanuelTewolde|Amanuel|-0500/-0400}}&lt;br /&gt;
* {{irc user|Amette|amette|+1000}}&lt;br /&gt;
* {{irc user|Amir Guindehi|AmirGuindehi|+1000}}&lt;br /&gt;
* {{irc user|Ajaswa|Andrew Jaswa|-0500}}&lt;br /&gt;
* {{irc user|AnselHalliburton|anselxyz|-0800/-0700}}&lt;br /&gt;
* {{irc user|Ashe Dryden|Ashe|-600}}&lt;br /&gt;
* {{irc user|Ashley|Ashley|+1000}}&lt;br /&gt;
* {{irc user|Tyler Roehmholdt|Baristo|-0800/-0700}}&lt;br /&gt;
* {{irc user|BenjaminCarlyle|BenjaminCarlyle|+1000}}&lt;br /&gt;
* {{irc user|HenriBergius|bergie|+0200/+0300}}&lt;br /&gt;
* {{irc user|Ben Ward|BenWard|+0000}}&lt;br /&gt;
* {{irc user|BenWest|bewest|-0800/-0700}}&lt;br /&gt;
* {{irc user|B.K._DeLong|bkdelong|-0500/-0400}}&lt;br /&gt;
* {{irc user|Robert|blueace|+0100}}&lt;br /&gt;
* {{irc user|BluesMoon|bluesmoon|+0530}}&lt;br /&gt;
* {{irc user|BobChao|BobChao|+0800}}&lt;br /&gt;
* {{irc user|Bob Jonkman|BobJonkman|-0500/-0400}}&lt;br /&gt;
* {{irc user|Boneill|boneill|+0000}}&lt;br /&gt;
* {{irc user|Brian|briansuda|+0000}}&lt;br /&gt;
* {{irc user|Briski|Briski|+0000}}&lt;br /&gt;
* {{irc user|BryanL|BryanL|-0500/-0400}}&lt;br /&gt;
* {{irc user|BryanRieger|Bryan Rieger|+0000}}&lt;br /&gt;
* {{irc user|Bug-E|Bug-E|+0200}}&lt;br /&gt;
* {{irc user|CarlaHufstedler|carlamagpie|-0500/-0400}}&lt;br /&gt;
* {{irc user|Colin_Barrett|cbarrett|-1000}}&lt;br /&gt;
* {{irc user|ColinDDevroe|cdevroe|-0500/-0600}}&lt;br /&gt;
* {{irc user|Cgriego|cgriego|-0600/-0500}}&lt;br /&gt;
* {{irc user|Charlvn|Charl|+0200/+0200}}&lt;br /&gt;
* {{irc user|CharlesRoper|charles_r|0000/+0100}}&lt;br /&gt;
* {{irc user|ChristopherStJohn|cks|-0600/-0500}}&lt;br /&gt;
* {{irc user|Cloud|Cloud|+0000}}&lt;br /&gt;
* {{irc user|Cruster|cruster|+0200}}&lt;br /&gt;
* {{irc user|Csarven|csarven|-0500/-0400}}&lt;br /&gt;
* {{irc user|ChrisBrentano|ctb|-0800/-0700}}&lt;br /&gt;
* {{irc user|DanC|DanC|-0600/-0500}}&lt;br /&gt;
* {{irc user|DanielBurka|DanielBurka|-0400}}&lt;br /&gt;
* {{irc user|DannyAyers|danja|+0100/+0200}}&lt;br /&gt;
* {{irc user|Dave Cardwell|davecardwell|+0000}}&lt;br /&gt;
* {{irc user|DavidMead|DavidMead|-0400}}&lt;br /&gt;
* {{irc user|DenisDefreyne|ddfreyne|+0100/+0200}}&lt;br /&gt;
* {{irc user|DeanEro|deanero|-0800/-0700}}&lt;br /&gt;
* {{irc user|DerrickPallas|DerrickPallas|-0800/-0700}}&lt;br /&gt;
* {{irc user|DimitriGlazkov|dglazkov|-0600/-0500}}&lt;br /&gt;
* {{irc user|DiegoBudny|DiegoBudny|&amp;lt;small&amp;gt;-unspecified-&amp;lt;/small&amp;gt;}}&lt;br /&gt;
* {{irc user|Dan Kubb|dkubb|-0800/-0700}}&lt;br /&gt;
* {{irc user|DrErnie|DrErnie|-0800/-0700}}&lt;br /&gt;
* {{irc user|DrewMcLellan|drewinthehead|+0000/+0100}}&lt;br /&gt;
* {{irc user|DrewBell|droob|-0600/-0500}}&lt;br /&gt;
* {{irc user|DimitriosZachariadis|dzach|+0200/+0300}}&lt;br /&gt;
* {{irc user|DydimusTK|dydimustk|-0600}}&lt;br /&gt;
* {{irc user|Ed Summers|edsu|-0500/-0400}}&lt;br /&gt;
* {{irc user|Enric|Enric|-0800/-0700}} (alt sp &amp;quot;enric&amp;quot;)&lt;br /&gt;
* {{irc user|Evan|evanpro|-0500}}&lt;br /&gt;
* {{irc user|ChrisMessina|factoryjoe|-0800/-0700}}&lt;br /&gt;
* {{irc user|Fil|Fil|+0200}}&lt;br /&gt;
* {{irc user|MarkoMrdjenovic|friedcell|+0100/+0200}}&lt;br /&gt;
* {{irc user|GarethR|garethr|+0000/+0100}}&lt;br /&gt;
* {{irc user|Grantbow|Grantbow|-0800/-0700}}&lt;br /&gt;
* {{irc user|Griffin|Griffin|-0600/-0500}}&lt;br /&gt;
* {{irc user|Aubergine10|Guy Fraser|+0100/+0000}}&lt;br /&gt;
* {{irc user|HenrichPoehls|HenrichP|+0100}}&lt;br /&gt;
* {{irc user|IanHickson|Hixie|-0800/-0700}}&lt;br /&gt;
* {{irc user|Hlb|hlb|+0800-0700}}&lt;br /&gt;
* {{irc user|EdwardOConnor|hober|-0800/-0700}}&lt;br /&gt;
* {{irc user|Ichigo|ichigo|+1000}}&lt;br /&gt;
* {{irc user|Alper|illustir|+0100}}&lt;br /&gt;
* {{irc user|Inkbase|inkbase|-0800/-0700}}&lt;br /&gt;
* {{irc user|IwaiMasaharu|iwaim|+0900}}&lt;br /&gt;
* {{irc user|Izo|IZO|&amp;lt;small&amp;gt;-unspecified-&amp;lt;/small&amp;gt;}}&lt;br /&gt;
* {{irc user|JamieKnight|JamieKnight|+1000/0000}}&lt;br /&gt;
* {{irc user|JoeGregorio|jcgregorio|&amp;lt;small&amp;gt;-unspecified-&amp;lt;/small&amp;gt;}}&lt;br /&gt;
* {{irc user|WizardIsHungry|jcw9|-0500/-0400}}&lt;br /&gt;
* {{irc user|Adactio|Jeremy Keith|+0000}}&lt;br /&gt;
* {{irc user|JasonK|jkridner|-0600/-0500}}&lt;br /&gt;
* {{irc user|JeffMcNeill|jeffmcneill|-1000}}&lt;br /&gt;
* {{irc user|JimboJW|jimbojw|-0600/-0500}}&lt;br /&gt;
* {{irc user|Jonathan_Arkell|jonnay|-0700/0600}}&lt;br /&gt;
* {{irc user|JosephHolsten|josephholsten|-0600/-0500}}&lt;br /&gt;
* {{irc user|JulianStahnke|julianstahnke|+0000}}&lt;br /&gt;
* {{irc user|Kapowaz|kapowaz|+0000/+0100}}&lt;br /&gt;
* {{irc user|Keri Henare|kerihenare|+1200}}&lt;br /&gt;
* [http://epeus.blogspot.com/ KevinMarks] (-0800/-0700)&lt;br /&gt;
* {{irc user|RyanKing|kingryan|-0800/-0700}}&lt;br /&gt;
** [http://theryanking.com/blog/archives/2006/04/19/office-hours/ Office hours]: Wednesday, 21:00 UTC&lt;br /&gt;
* {{irc user|Lachlan Hunt|Lachy|+1000/+1100}}&lt;br /&gt;
* {{irc user|Linmic|linmic|+0800-0700}}&lt;br /&gt;
* {{irc user|MarkNg|madness|+0000/+0100}}&lt;br /&gt;
* {{irc user|Mark Mansour|Mark Mansour|+1100}}&lt;br /&gt;
* {{irc user|MarkNormanFrancis|Mark Norman Francis|+0000/+0100}}&lt;br /&gt;
* {{irc user|MattBowen|Matt Bowen|-0500/-0400}}&lt;br /&gt;
* {{irc user|MattisManzel|Mattis Manzel|+0100/+0200}}&lt;br /&gt;
* {{irc user|CiaranMc|McNulty|+0000/+0100}}&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[[mfbot]]&amp;lt;/span&amp;gt; - a bot which logs all edits to this wiki. It appends a number with a '+' or '-' sign, to indicate the number of characters added or removed as a result of the edit.&amp;lt;/span&amp;gt;&lt;br /&gt;
* {{irc user|Mike|Michael McCracken(mmc)|-0800/-0700}}&lt;br /&gt;
* {{irc user|MikeKaply|mkaply|-0600/-0500}}&lt;br /&gt;
* {{irc user|SteveIvy|monkinetic/redmonk|-0700}}&lt;br /&gt;
* {{irc user|RobManson|nambor|+1000}}&lt;br /&gt;
* {{irc user|neuro|neuro|&amp;lt;small&amp;gt;-unspecified-&amp;lt;/small&amp;gt;}}&lt;br /&gt;
* {{irc user|Niekie|niekie|+0100/+0200}}&lt;br /&gt;
* {{irc user|NTollervey|ntoll|+0000/+0100}}&lt;br /&gt;
* {{irc user|Andy Pemberton|pembertona|-0500/-0400}}&lt;br /&gt;
* {{irc user|Phae|Phae|+0000/+0100}}&lt;br /&gt;
* {{irc user|PriitLaes|plaes|+0200/+0300}}&lt;br /&gt;
* {{irc user|ChrisCasciano|pnhChris|-0500/-0400}}&lt;br /&gt;
* {{irc user|PetarPopov|popov|-0800/-0700}}&lt;br /&gt;
* {{irc user|DavidOsolkowski|qid|-0500}}&lt;br /&gt;
* {{irc user|RCanine|RCanine|-0500/-0400}}&lt;br /&gt;
* {{irc user|Remi|Remi|-0500/-0400}}&lt;br /&gt;
* {{irc user|RobertBachmann|RobertBachmann|+0100/+0200}}&lt;br /&gt;
** Office hours: &amp;lt;s&amp;gt;Wednesday, 18:00-20:00 UTC&amp;lt;/s&amp;gt; (Currently no office hours}}&lt;br /&gt;
* {{irc user|Ronnos|Ron Kok|+0000}}&lt;br /&gt;
* {{irc user|SarahWorsham|sazbean|-0500/-0400}}&lt;br /&gt;
* {{irc user|ScottNelle|snelle|-0500/-0400}}&lt;br /&gt;
* {{irc user|Dana Benson|Snowden|-0800/-0700}}&lt;br /&gt;
* {{irc user|Smackman|Steve Farrell|-0800/-0700}}&lt;br /&gt;
* {{irc user|Steve Ganz|SteveGanz|-0800/-0700}}&lt;br /&gt;
* {{irc user|Stii|Stii|+0200 GMT}}&lt;br /&gt;
* {{irc user|ReinierZ|surial|+0100 GMT}}&lt;br /&gt;
* {{irc user|SuperPhly|SuperPhly|-600/-500}}&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;sym[[User:LynX|lynX]]&amp;lt;/span&amp;gt; or (better) [[User:LynX|lynX]] on [http://about.psyc.eu PSYC] (+0100}}&lt;br /&gt;
* {{irc user|DavidLehn|taaz|-0500/-0400}}&lt;br /&gt;
* {{irc user|Tantek|Tantek|-0800/-0700}}&lt;br /&gt;
* {{irc user|Trovster|trovster|-0800/-0700}}&lt;br /&gt;
* {{irc user|Vadania|vadania|-0600/-0700}}&lt;br /&gt;
* {{irc user|Vant|vant|+0900}}&lt;br /&gt;
* {{irc user|Victor|victor|+0100/+0200}}&lt;br /&gt;
* {{irc user|V-I-P|V-I-P|+0100/+0200}}&lt;br /&gt;
* {{irc user|KrissWatt|VoodooChild|+0000/+0100}}&lt;br /&gt;
* {{irc user|WebOrganics|weborganics|+0100}}&lt;br /&gt;
* {{irc user|JacksonWilkinson|whafro|-0500/-0400}}&lt;br /&gt;
* {{irc user|Richard Conyard|WhiskeyM|+0000}}&lt;br /&gt;
* {{irc user|Veeliam|William Lawrence|-0800/-0700}}&lt;br /&gt;
* {{irc user|StevenWoods|woodss|+0000 GMT}}&lt;br /&gt;
* {{irc user|Wojciech|wzajac|+0100/+0200}}&lt;br /&gt;
* {{irc user|Ianloic|yakk|-0800/-0700}}&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=audio-info-issues&amp;diff=22584</id>
		<title>audio-info-issues</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=audio-info-issues&amp;diff=22584"/>
		<updated>2007-10-11T15:53:51Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: /* Votes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Audio info issues =&lt;br /&gt;
&lt;br /&gt;
This page defines the current issues with the hAudio draft specification. Any issues that have not yet been resolved are marked with an {{OpenIssue}} tag.&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
&lt;br /&gt;
In order of contribution:&lt;br /&gt;
&lt;br /&gt;
* [[User:Brian|Brian Suda]]&lt;br /&gt;
* [[User:ManuSporny|ManuSporny]] - Digital Bazaar, Inc. (Bitmunk)&lt;br /&gt;
* [[User:WebOrganics|Martin McEvoy]] - WebOrganics&lt;br /&gt;
* Michael Smethurst&lt;br /&gt;
&lt;br /&gt;
= Problem: Redundant Property Names =&lt;br /&gt;
&lt;br /&gt;
The audio info proposal has invented several new properties. These should be condensed, removed and/or discussed further.&lt;br /&gt;
&lt;br /&gt;
== image-summary Property==&lt;br /&gt;
hAudio ISSUE #1: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
[[audio-info-proposal#Image Summary|image-summary]] - This is a small graphic image that summarizes the audio piece. It should NOT be a MUST to use the &amp;lt;img&amp;gt; element, (it shouldn't be a MUST anyway) ~BrianSuda. There are several other formats that already use the PHOTO property, including [[hcard|hCard]] and [[hreview|hReview]]. This has potential to collapse and remove image-summary.&lt;br /&gt;
&lt;br /&gt;
===Possible Solutions===&lt;br /&gt;
&lt;br /&gt;
# Use PHOTO instead.&lt;br /&gt;
&lt;br /&gt;
=== Votes ===&lt;br /&gt;
&lt;br /&gt;
* +1 for using PHOTO [[User:ManuSporny|ManuSporny]] 06:40, 14 Aug 2007 (PDT)&lt;br /&gt;
* +1 for using PHOTO [[User:WebOrganics|Martin McEvoy]] 15:49, 14 Aug 2007 (GMT)&lt;br /&gt;
&lt;br /&gt;
== audio-title Property ==&lt;br /&gt;
hAudio ISSUE #2: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
[[audio-info-proposal#Audio Title|audio-title]] - There is an on going debate where this should be something else such as FN or SUMMARY, or RECORDING.&lt;br /&gt;
&lt;br /&gt;
===Possible Solutions===&lt;br /&gt;
&lt;br /&gt;
# Use FN instead&lt;br /&gt;
# Use SUMMARY instead&lt;br /&gt;
# Use RECORDING instead for singular audio recordings (songs, movements, chapters) and ALBUM/RELEASE for collections of audio recordings.&lt;br /&gt;
&lt;br /&gt;
===Votes===&lt;br /&gt;
&lt;br /&gt;
* +1 : use RECORDING and ALBUM [[User:ManuSporny|ManuSporny]] 18:20, 27 Sep 2007 (PDT)&lt;br /&gt;
* -1 : don't change audio-title [[User:WebOrganics|Martin McEvoy]] 15:48, 14 Aug 2007 (GMT)&lt;br /&gt;
* +1 for using FN, no clear difference between two so why invent another [[User:DavidJanes|David Janes]] 14 August 2007&lt;br /&gt;
&lt;br /&gt;
== published-date Property ==&lt;br /&gt;
hAudio ISSUE #3: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
[[audio-info-proposal#Published Date|published-date]] is a duplicate of the PUBLISHED property found-in [[hatom|hAtom]]. This can be collapsed to a single property name &lt;br /&gt;
&lt;br /&gt;
Alternatively, we could use &amp;lt;code&amp;gt;dtstart&amp;lt;/code&amp;gt;, from hCalendar (shouldn't the published date be an hCalendar event?) [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
===Possible Solutions===&lt;br /&gt;
&lt;br /&gt;
# Use PUBLISHED instead&lt;br /&gt;
# Use DTSTART instead&lt;br /&gt;
&lt;br /&gt;
===Votes===&lt;br /&gt;
&lt;br /&gt;
* +1 for using PUBLISHED instead of PUBLISHED-DATE [[User:ManuSporny|ManuSporny]] 06:41, 14 Aug 2007 (PDT)&lt;br /&gt;
* +1 for using PUBLISHED instead of PUBLISHED-DATE [[User:WebOrganics|Martin McEvoy]] 15:51, 14 Aug 2007 (GMT)&lt;br /&gt;
&lt;br /&gt;
== album-title Property==&lt;br /&gt;
hAudio ISSUE #9: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
It has been proposed that something else should be used instead of '''album-title'''.&lt;br /&gt;
&lt;br /&gt;
===Possible Solutions===&lt;br /&gt;
&lt;br /&gt;
# Use ALBUM instead of ALBUM-TITLE&lt;br /&gt;
# Use RELEASE instead of ALBUM-TITLE&lt;br /&gt;
# Keep ALBUM-TITLE&lt;br /&gt;
&lt;br /&gt;
=== Votes ===&lt;br /&gt;
&lt;br /&gt;
* +1 for using ALBUM [[User:ManuSporny|ManuSporny]] 09:31, 12 Sep 2007 (PDT)&lt;br /&gt;
* +1 for using RELEASE [http://microformats.org/discuss/mail/microformats-new/2007-September/000832.html Michael Smethurst], 12 Sep 2007&lt;br /&gt;
&lt;br /&gt;
== Collection Names==&lt;br /&gt;
hAudio ISSUE #10: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
The following have been proposed for collection names if hAlbum is going to be integrated into hAudio.&lt;br /&gt;
&lt;br /&gt;
===Possible Solutions===&lt;br /&gt;
&lt;br /&gt;
* ALBUM-TITLE, ALBUM, or RELEASE - used for vinyl albums, CD singles, Ringles (haha), EPs, and CDs.&lt;br /&gt;
* PODCAST - used for podcasts.&lt;br /&gt;
* TOPLIST, CHART - used for top 10, top 40 and lists of audio recordings. Can be re-used for television, short film and video recordings in the future.&lt;br /&gt;
* PLAYLIST - used to contain a grouped list of audio recordings and video recordings. Could be re-used for television episodes, short films, and video recordings in the future.&lt;br /&gt;
* TRACK - used for each item in the audio-recording collection above.&lt;br /&gt;
&lt;br /&gt;
=== Votes ===&lt;br /&gt;
&lt;br /&gt;
* +1 for using ALBUM [[User:ManuSporny|ManuSporny]] 09:31, 12 Sep 2007 (PDT)&lt;br /&gt;
* +1 for using PODCAST [[User:ManuSporny|ManuSporny]] 09:54, 12 Sep 2007 (PDT)&lt;br /&gt;
* +1 for using TRACK [[User:ManuSporny|ManuSporny]] 09:54, 12 Sep 2007 (PDT)&lt;br /&gt;
* +1 for using TRACK [[User:ChrisNewell|Chris Newell]] 12:21, 25 Sep 2007 (GMT+1)&lt;br /&gt;
* +1 for using CHART [[User:ChrisNewell|Chris Newell]] 12:21, 25 Sep 2007 (GMT+1)&lt;br /&gt;
* +1 for using PLAYLIST [[User:ChrisNewell|Chris Newell]] 12:21, 25 Sep 2007 (GMT+1)&lt;br /&gt;
* +1 for using RELEASE [http://microformats.org/discuss/mail/microformats-new/2007-September/000832.html Michael Smethurst], 12 Sep 2007&lt;br /&gt;
&lt;br /&gt;
=Problem: Display properties of rel-patterns=&lt;br /&gt;
hAudio ISSUE #4: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
In order to solve the [[audio-info-issues#Historical:_Graphic_buttons_in_rel-patterns|graphic-only buttons in rel-patterns problem]], it was identified that part of the problem dealt with attempting to create relationship quadruples, or incorrect relationship triples. &lt;br /&gt;
&lt;br /&gt;
If there is no text to display, then how does one place the item into a menu/display for Operator/Firefox? Grabbing the image and placing it in a UI is a difficult argument to make - there are a variety of image sizes that might not do well in the Operator UI (or Firefox 3 UI).&lt;br /&gt;
&lt;br /&gt;
Typically, rel-patterns are created by doing something like the following:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;a rel=&amp;quot;RELATIONSHIP&amp;quot; href=&amp;quot;URL&amp;quot;&amp;gt;TARGET&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The final triple that is created can be read thusly: URL is related to TARGET via RELATIONSHIP.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;a rel=&amp;quot;brother&amp;quot; href=&amp;quot;/people/john_f_kennedy.html&amp;quot;&amp;gt;Robert Kennedy&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The URL above would be read like so: The URL &amp;lt;code&amp;gt;http://www.people.org/john_f_kennedy.html&amp;lt;/code&amp;gt; is related to &amp;lt;code&amp;gt;Robert Kennedy&amp;lt;/code&amp;gt; via a relationship of type &amp;lt;code&amp;gt;brother&amp;lt;/code&amp;gt;. In other words, John F. Kennedy is Robert Kennedy's brother.&lt;br /&gt;
&lt;br /&gt;
Using rel-pattern as such:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;a rel=&amp;quot;brother&amp;quot; href=&amp;quot;/people/john_f_kennedy.html&amp;quot; title=&amp;quot;Robert Kennedy&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;img src=&amp;quot;/images/robert_kennedy.gif&amp;quot; alt=&amp;quot;Robert Kennedy&amp;quot; /&amp;gt;&lt;br /&gt;
 &amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It isn't defined if the displayable value of the relationship &amp;quot;Robert Kennedy&amp;quot; should be used from&lt;br /&gt;
&lt;br /&gt;
* the @alt attribute on the IMG element&lt;br /&gt;
* the @title attribute on the anchor (A element)&lt;br /&gt;
* or, not at all.&lt;br /&gt;
&lt;br /&gt;
This is because the rel attribute is only concerned with the relationship between the current page and the href. The TITLE of the link is not defined by rel.&lt;br /&gt;
&lt;br /&gt;
It is quite often that a site uses an image instead of a text link to present actions. For example: Instead of using the text &amp;quot;Download&amp;quot;, they will use a graphic image with a downward-facing arrow.&lt;br /&gt;
&lt;br /&gt;
How do we present this option to a human being in a non-web-page UI?&lt;br /&gt;
&lt;br /&gt;
===Possible Solutions===&lt;br /&gt;
&lt;br /&gt;
====Do nothing====&lt;br /&gt;
&lt;br /&gt;
The decision should be left up to uF implementors. The market should decide how the information is displayed. This is something that does not need to be explicit in the spec, but can be left flexible to developers to implement as they see best and to adapt to their applications and future developments. Forcing someone to use the @alt or @title prevents them from reusing the actual image or using their own graphics because the spec mandated the &amp;quot;correct&amp;quot; use.&lt;br /&gt;
&lt;br /&gt;
====Not Specified but Publish hAudio Best Practices Section====&lt;br /&gt;
&lt;br /&gt;
This is a slight variation on the &amp;quot;Do nothing&amp;quot; approach. Implementation is still left up to the uF/application implementors, but we recommend the following in a &amp;quot;Best Practices&amp;quot; section for hAudio:&lt;br /&gt;
&lt;br /&gt;
* Use TITLE on rel-patterns, which is backed up by the following from [[rel-payment#RelPayment]]:&lt;br /&gt;
&lt;br /&gt;
 Authors should use the &amp;quot;title&amp;quot; attribute to provide a human readable &lt;br /&gt;
 description of the type of support pointed to by the hyperlink. &lt;br /&gt;
 Aggregators may use the contents of the &amp;quot;title&amp;quot; attribute to provide &lt;br /&gt;
 additional information about the support link to their users. &lt;br /&gt;
  E.g. &amp;lt;a href=&amp;quot;[url]&amp;quot; rel=&amp;quot;payment&amp;quot; title=&amp;quot;Donate Money Via PayPal&amp;quot;&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
* If TITLE is not used, the link text that is displayed in a text-only web browser should be used.&lt;br /&gt;
&lt;br /&gt;
====Use the TITLE Attribute====&lt;br /&gt;
&lt;br /&gt;
Using @title was proposed in the following post to the mailing list:&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/discuss/mail/microformats-new/2007-July/000590.html&lt;br /&gt;
&lt;br /&gt;
=====Benefits=====&lt;br /&gt;
&lt;br /&gt;
# It POSH-ifies the website.&lt;br /&gt;
# It works well with Operator, Firefox 3 and other uF parsers/UIs.&lt;br /&gt;
# It adds the accessibility/screen reader problem.&lt;br /&gt;
&lt;br /&gt;
=====Drawbacks=====&lt;br /&gt;
&lt;br /&gt;
# There are arguments stating that the @alt attribute would be a better choice: http://microformats.org/discuss/mail/microformats-new/2007-July/000593.html&lt;br /&gt;
# there are arguments that this is not part of how the rel attribute was designed and it is layering semantics onto the attribute that don't exist in the HTML spec.&lt;br /&gt;
&lt;br /&gt;
====New Label Property====&lt;br /&gt;
&lt;br /&gt;
Create a specific new property that defines the label title, or other &amp;lt;code&amp;gt;displayable&amp;lt;/code&amp;gt; Microformat class that should specify the text value to be used.&lt;br /&gt;
&lt;br /&gt;
===Votes===&lt;br /&gt;
&lt;br /&gt;
* +1 for not specifying, but providing best practices section [[User:ManuSporny|ManuSporny]] 06:54, 14 Aug 2007 (PDT)&lt;br /&gt;
* +1 for Do Nothing recommend  proper use of @alt [[User:WebOrganics|Martin McEvoy]] 16:03, 14 Aug 2007 (GMT)&lt;br /&gt;
&lt;br /&gt;
=Problem: Peeking into child elements=&lt;br /&gt;
hAudio ISSUE #5: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
It has been proposed that peeking into child elements that are not labeled with microformatted class names goes against the established publishing practices of microformats. In other words, if there isn't a microformatted class name on the element, we shouldn't be reading/interpreting the contents of the element. &lt;br /&gt;
&lt;br /&gt;
There have been several proposed solutions, one of which automatically peeks at certain sub-elements, such as @alt in IMG:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;a rel=&amp;quot;license&amp;quot; href=&amp;quot;http://creativecommons.org/licenses/by/3.0/&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;img src=&amp;quot;/images/deed/by.png&amp;quot; alt=&amp;quot;Creative Commons Attribution 3.0&amp;quot; /&amp;gt;&lt;br /&gt;
 &amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A microformat parser would take the HTML above and automatically parse out the contents of the @alt attribute on all child elements.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Another approach would parse out display-able elements based on a pre-defined microformatted relationship such as &amp;lt;code&amp;gt;displayble&amp;lt;/code&amp;gt;, like so:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;a rel=&amp;quot;license&amp;quot; href=&amp;quot;http://creativecommons.org/licenses/by/3.0/&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;img rel=&amp;quot;displayable&amp;quot; src=&amp;quot;/images/deed/by.png&amp;quot; alt=&amp;quot;Creative Commons Attribution 3.0&amp;quot; /&amp;gt;&lt;br /&gt;
 &amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Possible Solutions===&lt;br /&gt;
&lt;br /&gt;
# Microformats should never peek into child elements when displaying information.&lt;br /&gt;
# The community should decide on a set of attributes and elements that are peek-able (for example: any element that contains an @alt attribute should be peek-able)&lt;br /&gt;
# Only elements that are marked with a class of a specified type, such as &amp;lt;code&amp;gt;displayable&amp;lt;/code&amp;gt;, should be used to display the text.&lt;br /&gt;
# Display what common text-only browser displays (in the case of Lynx, the value in @alt).&lt;br /&gt;
&lt;br /&gt;
====Benefits====&lt;br /&gt;
&lt;br /&gt;
# Valid HTML requires that the ALT tag is specified anyway, thus we're helping people write proper HTML.&lt;br /&gt;
# Because of the item above, this is in-line with what most text-based browsers and screen readers expect.&lt;br /&gt;
# There is no danger of @title and @alt both being specified and read by a screen reader.&lt;br /&gt;
## ?? what about @title on the 'a' and an @alt on the image?&lt;br /&gt;
&lt;br /&gt;
====Drawbacks====&lt;br /&gt;
# The point was raised that ALT tags are not used properly on the web: http://microformats.org/discuss/mail/microformats-new/2007-July/000598.html and http://microformats.org/wiki/hcard-faq#Why_is_IMG_alt_not_being_picked_up&lt;br /&gt;
&lt;br /&gt;
===Votes===&lt;br /&gt;
&lt;br /&gt;
* +1 for displaying what a common text-only browser or screen reader would display [[User:ManuSporny|ManuSporny]] 06:46, 14 Aug 2007 (PDT)&lt;br /&gt;
* +1 Display what common text-only browser displays [[User:WebOrganics|Martin McEvoy]] 15:58, 14 Aug 2007 (GMT)&lt;br /&gt;
&lt;br /&gt;
= Problem: Summary Property is Missing =&lt;br /&gt;
hAudio ISSUE #6: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
Martin McEvoy did another analysis run of the [[audio-info-examples]] data and [[audio-info-examples#Further_Analysis_Regarding_Summaries|found that audio descriptions existed]] for many of the examples. It has been proposed that audio descriptions should be added to the hAudio Microformat.&lt;br /&gt;
&lt;br /&gt;
== Possible Solutions ==&lt;br /&gt;
&lt;br /&gt;
* Add audio descriptions to the hAudio specification using SUMMARY&lt;br /&gt;
* Add audio descriptions to the hAudio specification using DESCRIPTION&lt;br /&gt;
&lt;br /&gt;
===Votes===&lt;br /&gt;
&lt;br /&gt;
* +1 for using DESCRIPTION [[User:ManuSporny|ManuSporny]] 06:45, 14 Aug 2007 (PDT)&lt;br /&gt;
* +1 for using DESCRIPTION [[User:WebOrganics|Martin McEvoy]] 15:46, 14 Aug 2007 (GMT)&lt;br /&gt;
&lt;br /&gt;
=Problem: TRACK does not work in tables=&lt;br /&gt;
hAudio ISSUE #11: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
Julian Stahnke noted that [http://microformats.org/discuss/mail/microformats-new/2007-October/000940.html the new track proposal doesn't work with tables ]. The previous examples required one to mark up track information using haudio, thus the publisher would have to do the following to mark up a track:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;track&amp;quot;&amp;gt;1.&lt;br /&gt;
    &amp;lt;span class=&amp;quot;haudio&amp;gt;&lt;br /&gt;
    ...&lt;br /&gt;
    &amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The nested approach above doesn't work when working with HTML tables because TR is usually the containing element of a track in the audio examples and nothing but a TD element is allowed inside of it. In other words, HAUDIO cannot be nested inside of TRACK in a table. &lt;br /&gt;
&lt;br /&gt;
== Possible Solutions ==&lt;br /&gt;
&lt;br /&gt;
One approach lets HAUDIO to co-exist with TRACK. Here is an example of valid markup using this approach:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;haudio&amp;quot;&amp;gt;&lt;br /&gt;
 ...&lt;br /&gt;
   &amp;lt;table&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;#&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;Track&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;Length&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr class=&amp;quot;track haudio&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;1.&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td class=&amp;quot;recording&amp;quot;&amp;gt;Sanity&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;abbr class=&amp;quot;duration&amp;quot; title=&amp;quot;P348S&amp;quot;&amp;gt;5:48&amp;lt;/abbr&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr class=&amp;quot;haudio track&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;2.&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td class=&amp;quot;recording&amp;quot;&amp;gt;Highway To Hell&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;abbr class=&amp;quot;duration&amp;quot; title=&amp;quot;P219S&amp;quot;&amp;gt;3:39&amp;lt;/abbr&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
   &amp;lt;/table&amp;gt;&lt;br /&gt;
 ...&lt;br /&gt;
 &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that in the above example, order doesn't matter since we are stating that a TRACK *is* HAUDIO.&lt;br /&gt;
&lt;br /&gt;
* Allow HAUDIO to co-exist with TRACK&lt;br /&gt;
&lt;br /&gt;
===Votes===&lt;br /&gt;
&lt;br /&gt;
* +1 for allowing HAUDIO to co-exist with TRACK [[User:ManuSporny|ManuSporny]] 19:52, 4 Oct 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
=Problem: CONTRIBUTOR and TRACK are not publisher friendly=&lt;br /&gt;
hAudio ISSUE #12: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
In order to specify a CONTRIBUTOR or TRACK, a publisher must use VCARD or HAUDIO mark up. This is annoying if the only piece of information being marked up is that of the artist name or the track name, which is usually what happens in most blog postings. We should provide a mechanism to make it easier for a publisher to blog about an album with a contributor or a track.&lt;br /&gt;
&lt;br /&gt;
== Possible Solutions ==&lt;br /&gt;
&lt;br /&gt;
We could enable this behavior by allowing the following short-form for TRACK, in addition to the HAUDIO long-form:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;haudio&amp;quot;&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
  &amp;lt;span class=&amp;quot;album&amp;quot;&amp;gt;Album Title&amp;lt;/span&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
  &amp;lt;span class=&amp;quot;track&amp;quot;&amp;gt;Song Name&amp;lt;/span&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and the following short-form for CONTRIBUTOR, in addition to the VCARD long-form:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;contributor&amp;quot;&amp;gt;Phish&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Make CONTRIBUTOR and TRACK accept short-forms that do not require VCARD or HAUDIO markup.&lt;br /&gt;
&lt;br /&gt;
===Votes===&lt;br /&gt;
&lt;br /&gt;
* +1 for making CONTRIBUTOR and TRACK easier to specify by allowing the short-form representation [[User:ManuSporny|ManuSporny]] 20:03, 4 Oct 2007 (PDT)&lt;br /&gt;
* +1 [[User:JulianStahnke|Julian Stahnke]] 11 October 2007&lt;br /&gt;
&lt;br /&gt;
= Problem: Track Number is Missing =&lt;br /&gt;
hAudio ISSUE #7: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
We assumed that the track number was going to be encapsulated by XOXO in the beginning, but it seems as if this is not the case. Unfortunately, we didn't analyze the number of sites that had tracks in them. We should do this and report our findings to the mailing list. It is also important to note that most of the audio formats support track numbers.&lt;br /&gt;
&lt;br /&gt;
== Possible Solutions ==&lt;br /&gt;
&lt;br /&gt;
* Gather examples and add track-number to hAudio if there is enough evidence to support it.&lt;br /&gt;
&lt;br /&gt;
== Findings ==&lt;br /&gt;
&lt;br /&gt;
It was [http://microformats.org/discuss/mail/microformats-new/2007-October/000972.html announced] that a re-analysis of the track-number in the audio-info-examples showed widespread support for a positional element. POSITION has been added to the hAudio proposal and was supported by [http://microformats.org/discuss/mail/microformats-new/2007-October/000972.html Manu Sporny], [http://microformats.org/discuss/mail/microformats-new/2007-October/000973.html Julian Stanhke], and [http://microformats.org/discuss/mail/microformats-new/2007-October/000974.html Martin McEvoy] with no opposition.&lt;br /&gt;
&lt;br /&gt;
= Problem: hAlbum is redundant =&lt;br /&gt;
&lt;br /&gt;
Most of hAlbum's properties overlap with hAudio. In fact, the only two properties that do not overlap with hAudio are 'album-title' and 'track'. &lt;br /&gt;
&lt;br /&gt;
== Possible Solutions ==&lt;br /&gt;
&lt;br /&gt;
hAudio ISSUE #8: {{OpenIssue}}&lt;br /&gt;
&lt;br /&gt;
It has been proposed that we merge these two properties into hAudio to provide a cleaner, more unified way of describing audio songs and albums. Examples of how this would work are below:&lt;br /&gt;
&lt;br /&gt;
You can specify an hAudio album instead of an hAudio song by specifying the 'album-title' property and not including the 'audio-title' property:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;haudio&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;album-title&amp;quot;&amp;gt;Underdog World Strike&amp;lt;/span&amp;gt; by &lt;br /&gt;
   &amp;lt;div class=&amp;quot;collaborator&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
         &amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Gogol Bordello&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
   &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can specify an audio song that belongs to an audio album by specifying both 'album-title' and 'audio-title':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;haudio&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;audio-title&amp;quot;&amp;gt;Start Wearing Purple&amp;lt;/span&amp;gt;&lt;br /&gt;
   is a song off of the album&lt;br /&gt;
   &amp;lt;span class=&amp;quot;album-title&amp;quot;&amp;gt;Underdog World Strike&amp;lt;/span&amp;gt; by &lt;br /&gt;
   &amp;lt;div class=&amp;quot;collaborator&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
         &amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Gogol Bordello&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
   &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can specify each track in an album by including one or more 'track' properties and specifying the 'album-title':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;haudio&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;img class=&amp;quot;photo&amp;quot; src=&amp;quot;images/live_phish_vol_15.jpg&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;album-title&amp;quot;&amp;gt;Live Phish, Volume 15&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;contributor&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
         &amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Phish&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;br/&amp;gt;&lt;br /&gt;
   Released on:&lt;br /&gt;
   &amp;lt;abbr class=&amp;quot;published&amp;quot; title=&amp;quot;20023110&amp;quot;&amp;gt;October 31, 2002&amp;lt;abbr&amp;gt;&lt;br /&gt;
   &amp;lt;br/&amp;gt;&lt;br /&gt;
   Acquire: &lt;br /&gt;
   &amp;lt;a rel=&amp;quot;sample&amp;quot; href=&amp;quot;/samples/live_phish_vol_15_sample.mp3&amp;quot;&amp;gt;Sample&amp;lt;/a&amp;gt;, &lt;br /&gt;
   &amp;lt;a rel=&amp;quot;enclosure&amp;quot; href=&amp;quot;/live/phish_live_phish_vol_15.mp3&amp;quot;&amp;gt;Live Recording&amp;lt;/a&amp;gt;,&lt;br /&gt;
   &amp;lt;a rel=&amp;quot;payment&amp;quot; href=&amp;quot;/buy/phish_live_phish_vol_15&amp;quot;&amp;gt;Buy High Quality Track&amp;lt;/a&amp;gt;&lt;br /&gt;
   Category: &amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;live&amp;lt;/span&amp;gt;&lt;br /&gt;
   Duration: &amp;lt;abbr class=&amp;quot;duration&amp;quot; title=&amp;quot;P8727S&amp;quot;&amp;gt;145 minutes, 27 seconds&amp;lt;/abbr&amp;gt;&lt;br /&gt;
   Price: &amp;lt;span class=&amp;quot;money&amp;quot;&amp;gt;&lt;br /&gt;
             &amp;lt;abbr class=&amp;quot;currency&amp;quot; title=&amp;quot;USD&amp;quot;&amp;gt;$&amp;lt;/abbr&amp;gt;&lt;br /&gt;
             &amp;lt;span class=&amp;quot;amount&amp;quot;&amp;gt;14.99&amp;lt;/span&amp;gt;&lt;br /&gt;
          &amp;lt;/span&amp;gt;&lt;br /&gt;
   Tracks:&lt;br /&gt;
   &amp;lt;span class=&amp;quot;track&amp;quot;&amp;gt;1.&lt;br /&gt;
    &amp;lt;span class=&amp;quot;haudio&amp;gt;&lt;br /&gt;
     &amp;lt;span class=&amp;quot;audio-title&amp;quot;&amp;gt;Sanity&amp;lt;/span&amp;gt; &lt;br /&gt;
     (&amp;lt;abbr class=&amp;quot;duration&amp;quot; title=&amp;quot;P348S&amp;quot;&amp;gt;5:48&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
     &amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;track&amp;quot;&amp;gt;2.&lt;br /&gt;
    &amp;lt;span class=&amp;quot;haudio&amp;gt;&lt;br /&gt;
     &amp;lt;span class=&amp;quot;audio-title&amp;quot;&amp;gt;Highway To Hell&amp;lt;/span&amp;gt; &lt;br /&gt;
     (&amp;lt;abbr class=&amp;quot;duration&amp;quot; title=&amp;quot;P219S&amp;quot;&amp;gt;3:39&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
     &amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Parsing rules would have to be changed slightly:&lt;br /&gt;
&lt;br /&gt;
* If only 'album-title' is specified, then the hAudio is an album.&lt;br /&gt;
* If only 'audio-title' is specified, then the hAudio is a song/speech or other singular work.&lt;br /&gt;
* If both 'album-title' and 'audio-title' is specified, then the hAudio is a song that is part of an album.&lt;br /&gt;
* If 'album-title' and one or more 'track's are specified, the hAudio is an album containing tracks. Each track is a hAudio.  None of the track properties should implicitly be added to the hAudio. In other words, the parser shouldn't parse the contents of the 'track' hAudio into the non-track hAudio object.&lt;br /&gt;
&lt;br /&gt;
This also allows us to easily extend hAudio into the realm of podcasts, toplists, and other types of audio collections by adding a  &amp;quot;*-title&amp;quot; property. For example, we could extend hAudio to support podcasts and podcast sections by adding a single property to hAudio: 'podcast-title'. 'track' would be used for each podcast section, in that use case.&lt;br /&gt;
&lt;br /&gt;
==Votes==&lt;br /&gt;
&lt;br /&gt;
* +1 for merging 'album-title' and 'track' into hAudio from hAlbum. [[User:ManuSporny|ManuSporny]] 12:57, 8 Sep 2007 (PDT)&lt;br /&gt;
* +1 also for merging album-title and track into hAudio [[User:WebOrganics|Martin McEvoy]] 21:48, 8 Sep 2007 (GMT+1)&lt;br /&gt;
* +1 also for merging album-title and track into hAudio [[User:ChrisNewell|Chris Newell]] 12:11, 25 Sep 2007 (GMT+1)&lt;br /&gt;
&lt;br /&gt;
=Historical: Graphic buttons in rel-patterns=&lt;br /&gt;
==Affected Parties==&lt;br /&gt;
&lt;br /&gt;
Any site that uses images for links. 'rel-sample', 'rel-enclosure', and 'rel-payment' and wants an additional property to display something besides a URL are affected. Most of the [[audio-info-examples|examples]] also contain images instead of text for samples, downloads and purchase links. This is a demonstrable, widespread problem.&lt;br /&gt;
&lt;br /&gt;
This problem has been split into two parts, per Brian Suda's request. The problems are listed above and refer to this problem statement, namely:&lt;br /&gt;
&lt;br /&gt;
[[audio-info-issues#Problem:_Display_properties_of_rel-patterns|Display properties of rel-patterns]] and [[audio-info-issues#Problem:_Peeking_into_child_elements_to_display_rel-patterns|Peeking into child elements]]&lt;br /&gt;
&lt;br /&gt;
====History====&lt;br /&gt;
&lt;br /&gt;
# ALT was proposed on the mailing list: http://microformats.org/discuss/mail/microformats-new/2007-July/000593.html&lt;br /&gt;
# The point was raised that ALT tags are not used properly on the web: http://microformats.org/discuss/mail/microformats-new/2007-July/000598.html&lt;br /&gt;
# Research was started on ALT tag usage on the web: http://microformats.org/discuss/mail/microformats-new/2007-July/000614.html and http://microformats.org/discuss/mail/microformats-new/2007-July/000596.html&lt;br /&gt;
# Analysis on ALT tag usage on the web was reported: http://microformats.org/discuss/mail/microformats-new/2007-July/000624.html and http://microformats.org/discuss/mail/microformats-new/2007-July/000627.html&lt;br /&gt;
# A very long argument started on the use/mis-use of ALT: http://microformats.org/discuss/mail/microformats-new/2007-July/000603.html&lt;br /&gt;
# More research was performed and presented to the list asserting that ALT is not being mis-used on the web: http://microformats.org/discuss/mail/microformats-new/2007-July/000629.html&lt;br /&gt;
# It was asserted that the research completed was not acceptable: http://microformats.org/discuss/mail/microformats-new/2007-July/000635.html&lt;br /&gt;
# Things got nasty: http://microformats.org/discuss/mail/microformats-new/2007-July/000637.html&lt;br /&gt;
# Posting stopped due to an End of Thread request: http://microformats.org/discuss/mail/microformats-new/2007-July/000644.html&lt;br /&gt;
# The issue and discussion was documented on the wiki.&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
{{haudio-related-pages}}&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-advocacy&amp;diff=22545</id>
		<title>hcard-advocacy</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-advocacy&amp;diff=22545"/>
		<updated>2007-10-08T08:31:38Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: response by anobii&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard advocacy&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Adding [[hcard|hCard]] to these sites would make them quite handy for their users and for being indexed:&lt;br /&gt;
&lt;br /&gt;
== Online Profiles ==&lt;br /&gt;
=== User Profiles ===&lt;br /&gt;
Nearly every website that has a login has a page representing the public profile of the user that other users can see and interact with. Many such sites already [[hcard-implementations|support hCard]] (e.g. ClaimID.com, Flickr.com, Technorati.com). Here are some that I think would benefit from the addition of hCard to their profile / user pages, making them [[hcard-supporting-user-profiles]]. In addition, if such profiles have friends lists, we should encourage them to add support for [[hcard-xfn-supporting-friends-lists]].  Both of these help [[social-network-portability]] and help the site become a node on the [[open-social-web]].&lt;br /&gt;
&lt;br /&gt;
Feel free to add more such sites that have a social network profile-like component and we'll see what we can do. [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
* Wikimedia - including this site, Wikipedia (See [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats WikiProject Microformats]), Wikitravel, etc.&lt;br /&gt;
**It would be nice if &amp;lt;nowiki&amp;gt;[[User:YOURNAME]]&amp;lt;/nowiki&amp;gt; links generated proper (mini)hCards. ([http://microformats.org/wiki?title=to-do&amp;amp;diff=12177&amp;amp;oldid=12173#Lazyweb per SteveIvy]; moved from 'to-do')&lt;br /&gt;
* Alexa.com has online profiles for domains with contact information.  Would be great if they could add hCard to those. 2007-04-18 [[User:Tantek]] requested of [[User:BenWest]] e.g.:&lt;br /&gt;
** http://www.alexa.com/data/details?url=alexa.com/&lt;br /&gt;
** http://www.alexa.com/data/details?url=w3.org/&lt;br /&gt;
* [http://dodgeball.com/ Dodgeball] profiles and venues need [[hcard|hCard]] for people and organizations&lt;br /&gt;
** [http://www.dodgeball.com/user?uid=30209 a profile]&lt;br /&gt;
** [http://www.dodgeball.com/venue?vid=23551 a venue] - could also use [[hreview|hReview]] for the user reviews listed there for the venue&lt;br /&gt;
* [http://idubyou.com/ i dub you]&lt;br /&gt;
* [http://www.icq.com/people ICQ, where they show people's profiles and have a few ways of contacting and/or connection to people.]&lt;br /&gt;
* http://youtube.com The very popular YouTube have profiles that do include some information that might use [[hcard|hCard]].&lt;br /&gt;
* [http://www.facebook.com Facebook] is a very popular (over 13 million members) community.&lt;br /&gt;
**Requested support of microformats in openly asked question to Mark Zuckerberg during Q&amp;amp;A at TechCrunch40 conference, founder, and got [http://therealmccrea.wordpress.com/2007/09/18/facebook-to-support-open-standards/ lukewarm reply]. Glimmer of hope: &amp;quot;When it's important to our users, we'll do it.&amp;quot;  Thus if you are a Facebook user, please make a request to them to support microformats and tell them it is important to you.  Feel free to add your name below. 2007-09-17 [[User:Tantek|Tantek]]&lt;br /&gt;
**Requested in message to developer, 2007-09-28 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://pownce.com Pownce] - I'm talking with them, and have requested the following (and a bit more) as of 2007-07-29 - [[User:Tantek|Tantek]]&lt;br /&gt;
** needs to add class=&amp;quot;photo&amp;quot; to image icon&lt;br /&gt;
*** 2007-09-02 success!&lt;br /&gt;
** needs to add class=&amp;quot;note&amp;quot; to description&lt;br /&gt;
*** 2007-09-02 success!&lt;br /&gt;
** needs to add hCard+XFN to friends lists.&lt;br /&gt;
*** 2007-09-02 partial success, friends lists have hCard, have asked Daniel Burka to add rel=&amp;quot;acquaintance&amp;quot; per [[xfn-clarifications#are_you_my_friend_yes_or_no|XFN clarifications for yes/no friend relationships]]. [[User:Tantek|Tantek]] 10:41, 3 Sep 2007 (PDT)&lt;br /&gt;
** 2007-09-02 note also XFN rel=&amp;quot;me&amp;quot; success: http://pownce.com/t/notes/644806/&lt;br /&gt;
* [http://anobii.com Anobii] - I asked them if they could implement hCard-supporting profiles and XFN on 2007-10-05 - [[User:JulianStahnke|Julian Stahnke]]&lt;br /&gt;
** Response: We will definitely spend some time to consider the suggestion.&lt;br /&gt;
&lt;br /&gt;
=== Company Profiles ===&lt;br /&gt;
* [http://getsatisfaction.com/ Satisfaction Unlimited], has company profiles, e.g. http://getsatisfaction.com/satisfaction/ that could be marked up with hCards.  &lt;br /&gt;
** Contacted Ted Grubb at the company and requested hCards for company and its employees for all their company profiles. [[User:Tantek|Tantek]] 11:24, 2 Sep 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Online Venues ==&lt;br /&gt;
There are many sites that offer pages that represent organizations and venues that could benefit from being marked up with hCard. [http://local.yahoo.com/ Yahoo Local] venues are marked up with hCards for example. Here are some more sites that have venues that would benefit from hCard markup.&lt;br /&gt;
* Yelp.com&lt;br /&gt;
* http://opentable.com - a site for making restaurant reservations&lt;br /&gt;
** [[hcard|hCard]] for restaurants&lt;br /&gt;
** [[hcalendar|hCalendar]] for free busy times at restaurants&lt;br /&gt;
** [[hcalendar|hCalendar]] for your reservations&lt;br /&gt;
** Tantek has emailed a friend who is a former employee of OpenTable with the above three requests, in the hopes she can pass on the message.  In addition, Ryan King may know someone in marketing there. [[User:Tantek|Tantek]] 16:57, 30 Sep 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Plugins for and modifications of web-applications ==&lt;br /&gt;
Many web-applications use plugin-systems to change their behavior and content. Most notable is probably web-forums and blogs. Many of these have a community of coders that develop plugins or code to modify the default behavior of these web-applications. Here are some sites where it might be interesting to develop hcard-related plugins/mods.&lt;br /&gt;
&lt;br /&gt;
* forum-software&lt;br /&gt;
** http://www.phpbb.com&lt;br /&gt;
* blog-software&lt;br /&gt;
** http://b2evolution.net&lt;br /&gt;
&lt;br /&gt;
==Telephone Directory Listings==&lt;br /&gt;
Telephone Directory Listings could usefully apply hCard to their results pages. [[User:AndyMabbett|Andy Mabbett]] 03:10, 13 Nov 2006 (PST)&lt;br /&gt;
&lt;br /&gt;
e.g. (please add other examples!):&lt;br /&gt;
*[http://www.thephonebook.bt.com/ BT]&lt;br /&gt;
**Requested via [http://tinyurl.com/yhtdjy BT feedback form], 2006-11-13 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**BT confirm that they will consider this at their next re-build. 2006-12 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*[http://118118.com 118118.com]&lt;br /&gt;
**Requested via e-mail, 2006-11-13. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*[http://192.com/ 192.com]&lt;br /&gt;
**Requested via [http://www.192.com/support/feedback.cfm 192.com feedback form], 2007-03-07 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*[http://www.skype.com/intl/en-gb/download/features/skypefind/ SkypeFind]&lt;br /&gt;
**Requested via [http://support.skype.com/?_a=tickets&amp;amp;_m=submit Skype feedback form], 2007-03-16 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*[http://www.whitepages.com/ White Pages (USA/ Canada)]&lt;br /&gt;
*[http://www.whitepages.com.au/ White Pages (Australia)]&lt;br /&gt;
*[http://www.switchboard.com/ Stitchboard (USA)]]&lt;br /&gt;
*[http://people.yahoo.com/ Yahoo! People Search (USA)]&lt;br /&gt;
*[http://www.whowhere.com/ Lycos People Search (USA)]&lt;br /&gt;
*[http://www.bsnl.co.in/map.htm BSNL (India)]&lt;br /&gt;
&lt;br /&gt;
==Postal (ZIP) code Finders==&lt;br /&gt;
Postal code Finders could usefully apply hCard to their results pages. [[User:AndyMabbett|Andy Mabbett]] 12:09, 13 Nov 2006 (PST)&lt;br /&gt;
&lt;br /&gt;
e.g. (please add other examples!):&lt;br /&gt;
*[http://pol.royalmail.com/dda/txt/pf.asp Royal Mail] (UK)&lt;br /&gt;
**Requested via [http://tinyurl.com/ya4hzu Royal Mail feedback form], 2006-11-13 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**Acknowledged 2006-11-30. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
==Government hCard==&lt;br /&gt;
===UK Gov. hCard===&lt;br /&gt;
* Parliament: [http://www.parliament.uk/directories/hciolists/alms.cfm Alphabetical List of Members of Parliament] (see also [http://www.parliament.uk/directories/directories.cfm other lists of MPs and Lords]). [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
===Europe Gov. hCard===&lt;br /&gt;
* e.g. [http://www.europarl.org.uk/uk_meps/westmidlands.asp UK MEPs]&lt;br /&gt;
&lt;br /&gt;
=== MAPLight ===&lt;br /&gt;
http://maplight.org/ can use a bunch of hCard markup, e.g.&lt;br /&gt;
* individual politicians, like [http://www.maplight.org/map/us/legislator/408/individuals Nancy Pelosi]&lt;br /&gt;
* mentions of politicians on interest pages like [http://www.maplight.org/map/us/interest/L1300 Teachers unions]&lt;br /&gt;
* their contact info of course: http://www.maplight.org/contact&lt;br /&gt;
Requested by [[User:Tantek|Tantek]] 12:13, 30 May 2007 (PDT) in person at the NetSquared2007 conference.&lt;br /&gt;
&lt;br /&gt;
== Organization Contacts ==&lt;br /&gt;
Many companies and organizations have about or contact pages that could benefit from being marked up with hCard.  [http://technorati.com/about/contact.html Technorati's contact page] for example is both marked up with hCard and has a convenient &amp;quot;Add to Address Book&amp;quot; hCard to vCard converter link. The following company sites could benefit from similar markup (and, until user agents support hCards natively, &amp;quot;Add to Address Book&amp;quot; links). [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
*Adobe&lt;br /&gt;
**[http://www.adobe.com/aboutadobe/offices.html Adobe offices]&lt;br /&gt;
***Requested using contact form, 2006-12-14. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*Google &lt;br /&gt;
**Contacts, e.g. &lt;br /&gt;
*** [http://www.google.com/intl/en/contact/index.html Google.com contact page]&lt;br /&gt;
**** Requested by asking Google Employee KevinMarks via instant messaging to add hCard to that page along with a &amp;quot;Add to Address Book&amp;quot; link [[User:Tantek|Tantek]] 11:32, 10 Apr 2007 (PDT) and RyanKing in IRC&lt;br /&gt;
*** [http://www.google.co.uk/intl/en/contact/index.html Google UK], etc.&lt;br /&gt;
*[http://ibm.com/ IBM]&lt;br /&gt;
**[http://www.ibm.com/contact/us/ IBM contact page]&lt;br /&gt;
*** Requested by asking IBM employee Michael Kaply via IRC 2007-07-31 08:57am PDT: &amp;quot;how about getting hCard and 'Add to address book' links on the IBM contact page?&amp;quot;&lt;br /&gt;
*[http://www.mozilla.com/ Mozilla]&lt;br /&gt;
**[http://www.mozilla.com/en-US/about/legal.html Mozilla legal notices]&lt;br /&gt;
*Opera &lt;br /&gt;
**People, e.g. [http://people.opera.com/howcome/ Håkon Wium Lie]; could also be hResume&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://www.w3.org/Consortium/contact W3C contact]&lt;br /&gt;
**[http://www.w3.org/People/all W3C Staff listing] and individual pages, e.g. [http://www.w3.org/People/Berners-Lee/ Tim Berners-Lee]&lt;br /&gt;
***Requested by e-mail. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
== Individual hCards ==&lt;br /&gt;
Getting these sites to at least add hCard to their home page or contact info page and then [http://pingerati.net/ping/ ping Pingerati] would be an excellent start with getting them some experience with microformats and thinking about adding microformats to other places in their sites that make sense:&lt;br /&gt;
* [http://metaweb.com/ Metaweb Technologies]&lt;br /&gt;
** [http://www.freebase.com/ Freebase ]&lt;br /&gt;
&lt;br /&gt;
==Trade directories==&lt;br /&gt;
* [http://www.booktrust.org.uk/info/search_publishers.php BookTrust (UK book publishers)]&lt;br /&gt;
* [http://www.gepir.org/ Global Electronic Party Information Register] (GEPIR) over 1 million companies&lt;br /&gt;
** Requested 2007-08-31 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
==Other hCard==&lt;br /&gt;
* [http://www.imdb.com/ Internet Movie Database] (IMDb) for people (real, not characters), e.g. [http://www.imdb.com/name/nm0000007/ Humphrey Bogart]. [[User:AndyMabbett|Andy Mabbett]] 02:49, 13 Nov 2006 (PST)&lt;br /&gt;
**Can't find contact info! [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**See also example, below.&lt;br /&gt;
*Wikitravel&lt;br /&gt;
**e.g. [http://wikitravel.org/en/Birmingham_%28England%29 Wikitravel - Birmingham]&lt;br /&gt;
***[http://microformats.org/wiki?title=User_talk:MarkJaroski&amp;amp;curid=2699&amp;amp;diff=0&amp;amp;oldid=10663&amp;amp;rcid=19955 Wikitravel is about to hugely roll out hCard] Mark Jaroski&lt;br /&gt;
***See also [http://wikitravel.org/en/Wikitravel:Microformats Wikitravel:Microformats]&lt;br /&gt;
*[http://orlabs.oclc.org/Identities/ WorldCat Identities]&lt;br /&gt;
**The recently prototyped WorldCat Identities provides pages for 20 million 'identities', mainly authors and people who are the subjects of published titles.&lt;br /&gt;
**Requested by feedback form, 2007-03-09 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
** No reply, as of 02:02, 13 Jun 2007 (PDT)&lt;br /&gt;
*[http://geonames.org GeoNames]&lt;br /&gt;
**Requested by e-mail, 2007-06-07 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**Reply confirms that they will deploy hCard and Geo&lt;br /&gt;
**Geo noted in use, 06:08, 30 Jul 2007 (PDT)&lt;br /&gt;
*[http://www.oup.com/oxforddnb/info/ Oxford Dictionary of National Biography] (ODNB); subscription based, but [http://www.oxforddnb.com/public/lotw/ some ODNB articles available free]. All 56,000+ entries have Date of Death.&lt;br /&gt;
*[http://www.findagrave.com/ Find-a-Grave] e.g. [http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&amp;amp;GRid=680 Karl Marx]. Most entries have Date of Death.&lt;br /&gt;
*[http://www.biography.com/ Biography.com] e.g. [http://www.biography.com/impressionists/monet-bio.jsp Camille Monet] Most posthumous entries have Date of Death.&lt;br /&gt;
*[http://www.cwgc.org/ Commonwealth War Graves Commission] (1.75 million  people's details)&lt;br /&gt;
**E-mail sent 2007-08-24. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
== Successes ==&lt;br /&gt;
&lt;br /&gt;
*Details of hCard should be added to the [http://www.imc.org/pdi/ Internet Mail Consortium's vCard page]&lt;br /&gt;
**Requested by e-mail, 2006-11-24 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**'''Success''' achieved 2006-11-25. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*W3C&lt;br /&gt;
**'''W3C webmaster''' [http://www.w3.org/People/Jean-Gui/ Jean-Guilhem Rouel] now has an hCard. [[User:AndyMabbett|Andy Mabbett]] 15:41, 4 Apr 2007 (PDT)&lt;br /&gt;
* [http://jpgmag.com/ JPG magazine] - have sent email to their web developer with sample marked up member profile with [[hcard|hCard]] and [[xfn]] [[rel-me|rel=&amp;quot;me&amp;quot;]]. [[User:Tantek|Tantek]] 23:48, 21 Feb 2007 (PST)&lt;br /&gt;
** [[hcard|hCard]]+[[xfn]] [[rel-me|rel=&amp;quot;me&amp;quot;]] support as of March 2007.&lt;br /&gt;
* Twitter.com - working on it [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST).  &lt;br /&gt;
** Completed [[hcard|hCard]]+[[xfn]]+[[hatom|hAtom]] support last week with help from Chris Messina. [[User:Tantek|Tantek]] 12:01, 16 May 2007 (PDT)&lt;br /&gt;
* Consumating.com - working on it [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
** [[hcard|hCard]] profiles, [[hcalendar|hCalendar]] events as of March 2007.&lt;br /&gt;
* [http://sunlightlabs.com/api/ SunlightLabs API] provides profiles for US Congresspeople.  Their [http://sunlightlabs.com/api/masterref/megatable.php megatable] could easily be marked up with hCard, and their APIs could return hCards and hCard fields.&lt;br /&gt;
** [[User:Tantek|Tantek]] 12:30, 20 Apr 2007 (PDT) contacted them and requested that they add hCard to megatable, consider a GethCard API method, and potentially a GethResume API method for each person.&lt;br /&gt;
** [[User:CarlAnderson|CarlAnderson]] 26 Apr 2007: http://sunlightlabs.com/api does now have a people.getHCard.php API method to get an hCard for every member of congress. See the documentation at http://sunlightlabs.com/api/people.getHCard.php. An example call: http://api.sunlightlabs.com/people.getHCard.php?id=fakeopenID1 &lt;br /&gt;
** [[User:CarlAnderson|CarlAnderson]] 30 Apr 2007: I created a page of hCards for every member of congress: http://sunlightlabs.com/api/hcards/index.php&lt;br /&gt;
&lt;br /&gt;
===Wikpedia hCard===&lt;br /&gt;
*Infobox Templates for people mostly now have [[hcard|hCard]] in their generated markup&lt;br /&gt;
** [http://en.wikipedia.org/wiki/Template:Infobox_Person Infobox_Person]; e.g. [http://en.wikipedia.org/wiki/E._O._Wilson E. O. Wilson]&lt;br /&gt;
** [http://en.wikipedia.org/wiki/Template:Infobox_actor Infobox_actor]; e.g. [http://en.wikipedia.org/wiki/Humphrey_Bogart Humphrey Bogart]&lt;br /&gt;
*Addressable buildings e.g. [http://en.wikipedia.org/wiki/The_Old_Crown%2C_Birmingham The Old Crown, Birmingham]&lt;br /&gt;
*Tourist attractions, e.g. [http://en.wikipedia.org/wiki/Cadbury_World%2C_Birmingham Cadbury World]&lt;br /&gt;
*Companies, e.g. [http://en.wikipedia.org/wiki/Tesco Tesco] (note headquarters address in infobox)&lt;br /&gt;
*Railway Stations, e.g. [http://en.wikipedia.org/wiki/Perry_Barr_railway_station Perry Barr]&lt;br /&gt;
*etc.&lt;br /&gt;
*See also [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats WikiProject Microformats] [[User:AndyMabbett|Andy Mabbett]] 13:10, 28 Jan 2007 (PST)&lt;br /&gt;
* See also [[persondata|discussion of Wikipedia's Persondata]], which aligns very closely with hCard, but has additional date and place of birth &amp;amp; death fields. [[User:AndyMabbett|Andy Mabbett]] 13:23, 28 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Some microformat data is now (2007-09-14) being removed from Wikipedia; see, for example [http://en.wikipedia.org/w/index.php?title=List_of_Gaudi_Buildings&amp;amp;diff=prev&amp;amp;oldid=157704557 List_of_Gaudi_Buildings]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[advocacy]] (in particular see [[advocacy#Geo|Geo advocacy]] - for the Geo microformat, including cases where it may be used inside hCard)&lt;br /&gt;
*[[advocacy-email-samples]]&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-advocacy&amp;diff=22386</id>
		<title>hcard-advocacy</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-advocacy&amp;diff=22386"/>
		<updated>2007-10-05T14:13:31Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: /* Online Profiles */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard advocacy&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Adding [[hcard|hCard]] to these sites would make them quite handy for their users and for being indexed:&lt;br /&gt;
&lt;br /&gt;
== Online Profiles ==&lt;br /&gt;
=== User Profiles ===&lt;br /&gt;
Nearly every website that has a login has a page representing the public profile of the user that other users can see and interact with. Many such sites already [[hcard-implementations|support hCard]] (e.g. ClaimID.com, Flickr.com, Technorati.com). Here are some that I think would benefit from the addition of hCard to their profile / user pages, making them [[hcard-supporting-user-profiles]]. In addition, if such profiles have friends lists, we should encourage them to add support for [[hcard-xfn-supporting-friends-lists]].  Both of these help [[social-network-portability]] and help the site become a node on the [[open-social-web]].&lt;br /&gt;
&lt;br /&gt;
Feel free to add more such sites that have a social network profile-like component and we'll see what we can do. [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
* Wikimedia - including this site, Wikipedia (See [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats WikiProject Microformats]), Wikitravel, etc.&lt;br /&gt;
**It would be nice if &amp;lt;nowiki&amp;gt;[[User:YOURNAME]]&amp;lt;/nowiki&amp;gt; links generated proper (mini)hCards. ([http://microformats.org/wiki?title=to-do&amp;amp;diff=12177&amp;amp;oldid=12173#Lazyweb per SteveIvy]; moved from 'to-do')&lt;br /&gt;
* Alexa.com has online profiles for domains with contact information.  Would be great if they could add hCard to those. 2007-04-18 [[User:Tantek]] requested of [[User:BenWest]] e.g.:&lt;br /&gt;
** http://www.alexa.com/data/details?url=alexa.com/&lt;br /&gt;
** http://www.alexa.com/data/details?url=w3.org/&lt;br /&gt;
* [http://dodgeball.com/ Dodgeball] profiles and venues need [[hcard|hCard]] for people and organizations&lt;br /&gt;
** [http://www.dodgeball.com/user?uid=30209 a profile]&lt;br /&gt;
** [http://www.dodgeball.com/venue?vid=23551 a venue] - could also use [[hreview|hReview]] for the user reviews listed there for the venue&lt;br /&gt;
* [http://idubyou.com/ i dub you]&lt;br /&gt;
* [http://www.icq.com/people ICQ, where they show people's profiles and have a few ways of contacting and/or connection to people.]&lt;br /&gt;
* http://youtube.com The very popular YouTube have profiles that do include some information that might use [[hcard|hCard]].&lt;br /&gt;
* [http://www.facebook.com Facebook] is a very popular (over 13 million members) community.&lt;br /&gt;
**Requested support of microformats in openly asked question to Mark Zuckerberg during Q&amp;amp;A at TechCrunch40 conference, founder, and got [http://therealmccrea.wordpress.com/2007/09/18/facebook-to-support-open-standards/ lukewarm reply]. Glimmer of hope: &amp;quot;When it's important to our users, we'll do it.&amp;quot;  Thus if you are a Facebook user, please make a request to them to support microformats and tell them it is important to you.  Feel free to add your name below. 2007-09-17 [[User:Tantek|Tantek]]&lt;br /&gt;
**Requested in message to developer, 2007-09-28 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://pownce.com Pownce] - I'm talking with them, and have requested the following (and a bit more) as of 2007-07-29 - [[User:Tantek|Tantek]]&lt;br /&gt;
** needs to add class=&amp;quot;photo&amp;quot; to image icon&lt;br /&gt;
*** 2007-09-02 success!&lt;br /&gt;
** needs to add class=&amp;quot;note&amp;quot; to description&lt;br /&gt;
*** 2007-09-02 success!&lt;br /&gt;
** needs to add hCard+XFN to friends lists.&lt;br /&gt;
*** 2007-09-02 partial success, friends lists have hCard, have asked Daniel Burka to add rel=&amp;quot;acquaintance&amp;quot; per [[xfn-clarifications#are_you_my_friend_yes_or_no|XFN clarifications for yes/no friend relationships]]. [[User:Tantek|Tantek]] 10:41, 3 Sep 2007 (PDT)&lt;br /&gt;
** 2007-09-02 note also XFN rel=&amp;quot;me&amp;quot; success: http://pownce.com/t/notes/644806/&lt;br /&gt;
* [http://anobii.com Anobii] - I asked them if they could implement hCard-supporting profiles and XFN on 2007-10-05 - [[User:JulianStahnke|Julian Stahnke]]&lt;br /&gt;
&lt;br /&gt;
=== Company Profiles ===&lt;br /&gt;
* [http://getsatisfaction.com/ Satisfaction Unlimited], has company profiles, e.g. http://getsatisfaction.com/satisfaction/ that could be marked up with hCards.  &lt;br /&gt;
** Contacted Ted Grubb at the company and requested hCards for company and its employees for all their company profiles. [[User:Tantek|Tantek]] 11:24, 2 Sep 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Online Venues ==&lt;br /&gt;
There are many sites that offer pages that represent organizations and venues that could benefit from being marked up with hCard. [http://local.yahoo.com/ Yahoo Local] venues are marked up with hCards for example. Here are some more sites that have venues that would benefit from hCard markup.&lt;br /&gt;
* Yelp.com&lt;br /&gt;
* http://opentable.com - a site for making restaurant reservations&lt;br /&gt;
** [[hcard|hCard]] for restaurants&lt;br /&gt;
** [[hcalendar|hCalendar]] for free busy times at restaurants&lt;br /&gt;
** [[hcalendar|hCalendar]] for your reservations&lt;br /&gt;
** Tantek has emailed a friend who is a former employee of OpenTable with the above three requests, in the hopes she can pass on the message.  In addition, Ryan King may know someone in marketing there. [[User:Tantek|Tantek]] 16:57, 30 Sep 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Plugins for and modifications of web-applications ==&lt;br /&gt;
Many web-applications use plugin-systems to change their behavior and content. Most notable is probably web-forums and blogs. Many of these have a community of coders that develop plugins or code to modify the default behavior of these web-applications. Here are some sites where it might be interesting to develop hcard-related plugins/mods.&lt;br /&gt;
&lt;br /&gt;
* forum-software&lt;br /&gt;
** http://www.phpbb.com&lt;br /&gt;
* blog-software&lt;br /&gt;
** http://b2evolution.net&lt;br /&gt;
&lt;br /&gt;
==Telephone Directory Listings==&lt;br /&gt;
Telephone Directory Listings could usefully apply hCard to their results pages. [[User:AndyMabbett|Andy Mabbett]] 03:10, 13 Nov 2006 (PST)&lt;br /&gt;
&lt;br /&gt;
e.g. (please add other examples!):&lt;br /&gt;
*[http://www.thephonebook.bt.com/ BT]&lt;br /&gt;
**Requested via [http://tinyurl.com/yhtdjy BT feedback form], 2006-11-13 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**BT confirm that they will consider this at their next re-build. 2006-12 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*[http://118118.com 118118.com]&lt;br /&gt;
**Requested via e-mail, 2006-11-13. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*[http://192.com/ 192.com]&lt;br /&gt;
**Requested via [http://www.192.com/support/feedback.cfm 192.com feedback form], 2007-03-07 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*[http://www.skype.com/intl/en-gb/download/features/skypefind/ SkypeFind]&lt;br /&gt;
**Requested via [http://support.skype.com/?_a=tickets&amp;amp;_m=submit Skype feedback form], 2007-03-16 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*[http://www.whitepages.com/ White Pages (USA/ Canada)]&lt;br /&gt;
*[http://www.whitepages.com.au/ White Pages (Australia)]&lt;br /&gt;
*[http://www.switchboard.com/ Stitchboard (USA)]]&lt;br /&gt;
*[http://people.yahoo.com/ Yahoo! People Search (USA)]&lt;br /&gt;
*[http://www.whowhere.com/ Lycos People Search (USA)]&lt;br /&gt;
*[http://www.bsnl.co.in/map.htm BSNL (India)]&lt;br /&gt;
&lt;br /&gt;
==Postal (ZIP) code Finders==&lt;br /&gt;
Postal code Finders could usefully apply hCard to their results pages. [[User:AndyMabbett|Andy Mabbett]] 12:09, 13 Nov 2006 (PST)&lt;br /&gt;
&lt;br /&gt;
e.g. (please add other examples!):&lt;br /&gt;
*[http://pol.royalmail.com/dda/txt/pf.asp Royal Mail] (UK)&lt;br /&gt;
**Requested via [http://tinyurl.com/ya4hzu Royal Mail feedback form], 2006-11-13 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**Acknowledged 2006-11-30. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
==Government hCard==&lt;br /&gt;
===UK Gov. hCard===&lt;br /&gt;
* Parliament: [http://www.parliament.uk/directories/hciolists/alms.cfm Alphabetical List of Members of Parliament] (see also [http://www.parliament.uk/directories/directories.cfm other lists of MPs and Lords]). [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
===Europe Gov. hCard===&lt;br /&gt;
* e.g. [http://www.europarl.org.uk/uk_meps/westmidlands.asp UK MEPs]&lt;br /&gt;
&lt;br /&gt;
=== MAPLight ===&lt;br /&gt;
http://maplight.org/ can use a bunch of hCard markup, e.g.&lt;br /&gt;
* individual politicians, like [http://www.maplight.org/map/us/legislator/408/individuals Nancy Pelosi]&lt;br /&gt;
* mentions of politicians on interest pages like [http://www.maplight.org/map/us/interest/L1300 Teachers unions]&lt;br /&gt;
* their contact info of course: http://www.maplight.org/contact&lt;br /&gt;
Requested by [[User:Tantek|Tantek]] 12:13, 30 May 2007 (PDT) in person at the NetSquared2007 conference.&lt;br /&gt;
&lt;br /&gt;
== Organization Contacts ==&lt;br /&gt;
Many companies and organizations have about or contact pages that could benefit from being marked up with hCard.  [http://technorati.com/about/contact.html Technorati's contact page] for example is both marked up with hCard and has a convenient &amp;quot;Add to Address Book&amp;quot; hCard to vCard converter link. The following company sites could benefit from similar markup (and, until user agents support hCards natively, &amp;quot;Add to Address Book&amp;quot; links). [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
*Adobe&lt;br /&gt;
**[http://www.adobe.com/aboutadobe/offices.html Adobe offices]&lt;br /&gt;
***Requested using contact form, 2006-12-14. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*Google &lt;br /&gt;
**Contacts, e.g. &lt;br /&gt;
*** [http://www.google.com/intl/en/contact/index.html Google.com contact page]&lt;br /&gt;
**** Requested by asking Google Employee KevinMarks via instant messaging to add hCard to that page along with a &amp;quot;Add to Address Book&amp;quot; link [[User:Tantek|Tantek]] 11:32, 10 Apr 2007 (PDT) and RyanKing in IRC&lt;br /&gt;
*** [http://www.google.co.uk/intl/en/contact/index.html Google UK], etc.&lt;br /&gt;
*[http://ibm.com/ IBM]&lt;br /&gt;
**[http://www.ibm.com/contact/us/ IBM contact page]&lt;br /&gt;
*** Requested by asking IBM employee Michael Kaply via IRC 2007-07-31 08:57am PDT: &amp;quot;how about getting hCard and 'Add to address book' links on the IBM contact page?&amp;quot;&lt;br /&gt;
*[http://www.mozilla.com/ Mozilla]&lt;br /&gt;
**[http://www.mozilla.com/en-US/about/legal.html Mozilla legal notices]&lt;br /&gt;
*Opera &lt;br /&gt;
**People, e.g. [http://people.opera.com/howcome/ Håkon Wium Lie]; could also be hResume&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://www.w3.org/Consortium/contact W3C contact]&lt;br /&gt;
**[http://www.w3.org/People/all W3C Staff listing] and individual pages, e.g. [http://www.w3.org/People/Berners-Lee/ Tim Berners-Lee]&lt;br /&gt;
***Requested by e-mail. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
== Individual hCards ==&lt;br /&gt;
Getting these sites to at least add hCard to their home page or contact info page and then [http://pingerati.net/ping/ ping Pingerati] would be an excellent start with getting them some experience with microformats and thinking about adding microformats to other places in their sites that make sense:&lt;br /&gt;
* [http://metaweb.com/ Metaweb Technologies]&lt;br /&gt;
** [http://www.freebase.com/ Freebase ]&lt;br /&gt;
&lt;br /&gt;
==Trade directories==&lt;br /&gt;
* [http://www.booktrust.org.uk/info/search_publishers.php BookTrust (UK book publishers)]&lt;br /&gt;
* [http://www.gepir.org/ Global Electronic Party Information Register] (GEPIR) over 1 million companies&lt;br /&gt;
** Requested 2007-08-31 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
==Other hCard==&lt;br /&gt;
* [http://www.imdb.com/ Internet Movie Database] (IMDb) for people (real, not characters), e.g. [http://www.imdb.com/name/nm0000007/ Humphrey Bogart]. [[User:AndyMabbett|Andy Mabbett]] 02:49, 13 Nov 2006 (PST)&lt;br /&gt;
**Can't find contact info! [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**See also example, below.&lt;br /&gt;
*Wikitravel&lt;br /&gt;
**e.g. [http://wikitravel.org/en/Birmingham_%28England%29 Wikitravel - Birmingham]&lt;br /&gt;
***[http://microformats.org/wiki?title=User_talk:MarkJaroski&amp;amp;curid=2699&amp;amp;diff=0&amp;amp;oldid=10663&amp;amp;rcid=19955 Wikitravel is about to hugely roll out hCard] Mark Jaroski&lt;br /&gt;
***See also [http://wikitravel.org/en/Wikitravel:Microformats Wikitravel:Microformats]&lt;br /&gt;
*[http://orlabs.oclc.org/Identities/ WorldCat Identities]&lt;br /&gt;
**The recently prototyped WorldCat Identities provides pages for 20 million 'identities', mainly authors and people who are the subjects of published titles.&lt;br /&gt;
**Requested by feedback form, 2007-03-09 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
** No reply, as of 02:02, 13 Jun 2007 (PDT)&lt;br /&gt;
*[http://geonames.org GeoNames]&lt;br /&gt;
**Requested by e-mail, 2007-06-07 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**Reply confirms that they will deploy hCard and Geo&lt;br /&gt;
**Geo noted in use, 06:08, 30 Jul 2007 (PDT)&lt;br /&gt;
*[http://www.oup.com/oxforddnb/info/ Oxford Dictionary of National Biography] (ODNB); subscription based, but [http://www.oxforddnb.com/public/lotw/ some ODNB articles available free]. All 56,000+ entries have Date of Death.&lt;br /&gt;
*[http://www.findagrave.com/ Find-a-Grave] e.g. [http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&amp;amp;GRid=680 Karl Marx]. Most entries have Date of Death.&lt;br /&gt;
*[http://www.biography.com/ Biography.com] e.g. [http://www.biography.com/impressionists/monet-bio.jsp Camille Monet] Most posthumous entries have Date of Death.&lt;br /&gt;
*[http://www.cwgc.org/ Commonwealth War Graves Commission] (1.75 million  people's details)&lt;br /&gt;
**E-mail sent 2007-08-24. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
== Successes ==&lt;br /&gt;
&lt;br /&gt;
*Details of hCard should be added to the [http://www.imc.org/pdi/ Internet Mail Consortium's vCard page]&lt;br /&gt;
**Requested by e-mail, 2006-11-24 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**'''Success''' achieved 2006-11-25. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*W3C&lt;br /&gt;
**'''W3C webmaster''' [http://www.w3.org/People/Jean-Gui/ Jean-Guilhem Rouel] now has an hCard. [[User:AndyMabbett|Andy Mabbett]] 15:41, 4 Apr 2007 (PDT)&lt;br /&gt;
* [http://jpgmag.com/ JPG magazine] - have sent email to their web developer with sample marked up member profile with [[hcard|hCard]] and [[xfn]] [[rel-me|rel=&amp;quot;me&amp;quot;]]. [[User:Tantek|Tantek]] 23:48, 21 Feb 2007 (PST)&lt;br /&gt;
** [[hcard|hCard]]+[[xfn]] [[rel-me|rel=&amp;quot;me&amp;quot;]] support as of March 2007.&lt;br /&gt;
* Twitter.com - working on it [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST).  &lt;br /&gt;
** Completed [[hcard|hCard]]+[[xfn]]+[[hatom|hAtom]] support last week with help from Chris Messina. [[User:Tantek|Tantek]] 12:01, 16 May 2007 (PDT)&lt;br /&gt;
* Consumating.com - working on it [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
** [[hcard|hCard]] profiles, [[hcalendar|hCalendar]] events as of March 2007.&lt;br /&gt;
* [http://sunlightlabs.com/api/ SunlightLabs API] provides profiles for US Congresspeople.  Their [http://sunlightlabs.com/api/masterref/megatable.php megatable] could easily be marked up with hCard, and their APIs could return hCards and hCard fields.&lt;br /&gt;
** [[User:Tantek|Tantek]] 12:30, 20 Apr 2007 (PDT) contacted them and requested that they add hCard to megatable, consider a GethCard API method, and potentially a GethResume API method for each person.&lt;br /&gt;
** [[User:CarlAnderson|CarlAnderson]] 26 Apr 2007: http://sunlightlabs.com/api does now have a people.getHCard.php API method to get an hCard for every member of congress. See the documentation at http://sunlightlabs.com/api/people.getHCard.php. An example call: http://api.sunlightlabs.com/people.getHCard.php?id=fakeopenID1 &lt;br /&gt;
** [[User:CarlAnderson|CarlAnderson]] 30 Apr 2007: I created a page of hCards for every member of congress: http://sunlightlabs.com/api/hcards/index.php&lt;br /&gt;
&lt;br /&gt;
===Wikpedia hCard===&lt;br /&gt;
*Infobox Templates for people mostly now have [[hcard|hCard]] in their generated markup&lt;br /&gt;
** [http://en.wikipedia.org/wiki/Template:Infobox_Person Infobox_Person]; e.g. [http://en.wikipedia.org/wiki/E._O._Wilson E. O. Wilson]&lt;br /&gt;
** [http://en.wikipedia.org/wiki/Template:Infobox_actor Infobox_actor]; e.g. [http://en.wikipedia.org/wiki/Humphrey_Bogart Humphrey Bogart]&lt;br /&gt;
*Addressable buildings e.g. [http://en.wikipedia.org/wiki/The_Old_Crown%2C_Birmingham The Old Crown, Birmingham]&lt;br /&gt;
*Tourist attractions, e.g. [http://en.wikipedia.org/wiki/Cadbury_World%2C_Birmingham Cadbury World]&lt;br /&gt;
*Companies, e.g. [http://en.wikipedia.org/wiki/Tesco Tesco] (note headquarters address in infobox)&lt;br /&gt;
*Railway Stations, e.g. [http://en.wikipedia.org/wiki/Perry_Barr_railway_station Perry Barr]&lt;br /&gt;
*etc.&lt;br /&gt;
*See also [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats WikiProject Microformats] [[User:AndyMabbett|Andy Mabbett]] 13:10, 28 Jan 2007 (PST)&lt;br /&gt;
* See also [[persondata|discussion of Wikipedia's Persondata]], which aligns very closely with hCard, but has additional date and place of birth &amp;amp; death fields. [[User:AndyMabbett|Andy Mabbett]] 13:23, 28 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Some microformat data is now (2007-09-14) being removed from Wikipedia; see, for example [http://en.wikipedia.org/w/index.php?title=List_of_Gaudi_Buildings&amp;amp;diff=prev&amp;amp;oldid=157704557 List_of_Gaudi_Buildings]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[advocacy]] (in particular see [[advocacy#Geo|Geo advocacy]] - for the Geo microformat, including cases where it may be used inside hCard)&lt;br /&gt;
*[[advocacy-email-samples]]&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-xfn-supporting-friends-lists&amp;diff=18989</id>
		<title>hcard-xfn-supporting-friends-lists</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-xfn-supporting-friends-lists&amp;diff=18989"/>
		<updated>2007-07-31T01:05:18Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: /* Services with XFN rel=&amp;quot;me&amp;quot; supporting identity consolidation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard+XFN supporting friends lists&amp;lt;/h1&amp;gt;&lt;br /&gt;
Welcome! If you have an account on any of the following services, you already have a list of your friends' hCards with your relationship to them in XFN which you can provide to other services to save time by either importing or subscribing to social network information so you can change it on one site, and have other sites automatically updated, rather than having to re-add/remove all your social network contacts multiple times everytime you meet a new person, decide to unfriend someone etc.&lt;br /&gt;
&lt;br /&gt;
== Services with hCard+XFN supporting friends lists ==&lt;br /&gt;
The following web sites support hCard+XFN on their friends lists and are thus suitable for importing/subscribing to other sites that support hCard+XFN.  Alphabetically sorted.  Feel free to add sites with hCard+XFN supporting friends lists here. Please include a link to the site home page, and instructions for retrieving your the URL of your hCard+XFN supporting friends list on that site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.corkd.com/ Cork'd] - login and copy the URL which should start with &amp;lt;nowiki&amp;gt;http://www.corkd.com/people/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* [http://dopplr.com Dopplr] - login and note that your user page has hCard and XFN for your contacts (site is private beta)&lt;br /&gt;
* [http://www.last.fm/ Last FM] - login, click the &amp;quot;Friends&amp;quot; tab, and copy the URL which should look like: &amp;lt;nowiki&amp;gt;http://www.last.fm/user/YOURUSERNAME/friends/&amp;lt;/nowiki&amp;gt; where YOURUSERNAME is your username.&lt;br /&gt;
* [http://twitter.com/ Twitter] - login, click on &amp;quot;Your profile&amp;quot; at the top, and copy the URL&lt;br /&gt;
&lt;br /&gt;
== Services that import hCard+XFN supporting friends lists ==&lt;br /&gt;
The following web sites support importing your existing hCard+XFN supporting friends lists, e.g. from the above sites. Alphabetically sorted.  Feel free to add sites supporting hCard+XFN import here. Please include a link to the site home page, and instructions for how to import friends on the site.&lt;br /&gt;
&lt;br /&gt;
* [http://dopplr.com Dopplr] - as [http://blog.dopplr.com/index.php/2007/06/23/importing-your-social-network-from-other-sites/ announced] login and go to &amp;lt;nowiki&amp;gt;http://www.dopplr.com/account/fellows_from_hcard&amp;lt;/nowiki&amp;gt; to import (site is private beta)&lt;br /&gt;
&lt;br /&gt;
== Services with XFN supporting friends lists ==&lt;br /&gt;
* [http://wordpress.com Wordpress.com] and any other blogs using Wordpress 1.5 or later have XFN supporting blog rolls.&lt;br /&gt;
&lt;br /&gt;
== Services with XFN rel=&amp;quot;me&amp;quot; supporting identity consolidation ==&lt;br /&gt;
* [http://flickr.com/ Flickr] - login, click &amp;quot;Your Photos&amp;quot;, click &amp;quot;Profile&amp;quot;, and copy the URL which should start with &amp;lt;nowiki&amp;gt;http://flickr.com/people/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
** Flickr supports rel=&amp;quot;me&amp;quot; identity consolidation with your webpage that you enter into your profile, and with your Flickr contacts page.&lt;br /&gt;
* [http://www.last.fm/ Last.FM] - login, go to your profile, and copy the URL which should start with &amp;lt;nowiki&amp;gt;http://www.last.fm/user/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
** Last.FM supports rel=&amp;quot;me&amp;quot; identity consolidation with your webpage that you enter into your profile, and with your Last.FM friends page.&lt;br /&gt;
&lt;br /&gt;
== For more information ==&lt;br /&gt;
Want to implement hCard+XFN on your site so you can list it here?  &lt;br /&gt;
&lt;br /&gt;
See the [[hcard-authoring|hCard authoring]] page for how to mark-up information about a person with hCard.&lt;br /&gt;
&lt;br /&gt;
See the [http://www.gmpg.org/xfn/join XFN: Getting Started] page for how to markup links to people with XFN.&lt;br /&gt;
&lt;br /&gt;
Join the [http://microformats.org/discuss microformats community], in particular the [http://microformats.org/mailman/listinfo/microformats-dev/ microformats-dev mailing list], and send a message stating that you'd like to add hCard to the profiles on your website.&lt;br /&gt;
&lt;br /&gt;
Please also consider implementing [[hcard-supporting-profiles|hCard profiles]].&lt;br /&gt;
&lt;br /&gt;
For more information see:&lt;br /&gt;
* [[hcard|hCard standard]]  / [[hcard-faq|FAQ]].  &lt;br /&gt;
* [http://gmpg.org/xfn/ XFN standard] / [http://gmpg.org/xfn/faq XFN FAQ] / More [[xfn|info on XFN]].&lt;br /&gt;
* [[social-network-portability]].&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-xfn-supporting-friends-lists&amp;diff=18971</id>
		<title>hcard-xfn-supporting-friends-lists</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-xfn-supporting-friends-lists&amp;diff=18971"/>
		<updated>2007-07-31T00:58:10Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: Last.FM support rel=&amp;quot;me&amp;quot; with the webpage you enter into your profile&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard+XFN supporting friends lists&amp;lt;/h1&amp;gt;&lt;br /&gt;
Welcome! If you have an account on any of the following services, you already have a list of your friends' hCards with your relationship to them in XFN which you can provide to other services to save time by either importing or subscribing to social network information so you can change it on one site, and have other sites automatically updated, rather than having to re-add/remove all your social network contacts multiple times everytime you meet a new person, decide to unfriend someone etc.&lt;br /&gt;
&lt;br /&gt;
== Services with hCard+XFN supporting friends lists ==&lt;br /&gt;
The following web sites support hCard+XFN on their friends lists and are thus suitable for importing/subscribing to other sites that support hCard+XFN.  Alphabetically sorted.  Feel free to add sites with hCard+XFN supporting friends lists here. Please include a link to the site home page, and instructions for retrieving your the URL of your hCard+XFN supporting friends list on that site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.corkd.com/ Cork'd] - login and copy the URL which should start with &amp;lt;nowiki&amp;gt;http://www.corkd.com/people/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* [http://dopplr.com Dopplr] - login and note that your user page has hCard and XFN for your contacts (site is private beta)&lt;br /&gt;
* [http://www.last.fm/ Last FM] - login, click the &amp;quot;Friends&amp;quot; tab, and copy the URL which should look like: &amp;lt;nowiki&amp;gt;http://www.last.fm/user/YOURUSERNAME/friends/&amp;lt;/nowiki&amp;gt; where YOURUSERNAME is your username.&lt;br /&gt;
* [http://twitter.com/ Twitter] - login, click on &amp;quot;Your profile&amp;quot; at the top, and copy the URL&lt;br /&gt;
&lt;br /&gt;
== Services that import hCard+XFN supporting friends lists ==&lt;br /&gt;
The following web sites support importing your existing hCard+XFN supporting friends lists, e.g. from the above sites. Alphabetically sorted.  Feel free to add sites supporting hCard+XFN import here. Please include a link to the site home page, and instructions for how to import friends on the site.&lt;br /&gt;
&lt;br /&gt;
* [http://dopplr.com Dopplr] - as [http://blog.dopplr.com/index.php/2007/06/23/importing-your-social-network-from-other-sites/ announced] login and go to &amp;lt;nowiki&amp;gt;http://www.dopplr.com/account/fellows_from_hcard&amp;lt;/nowiki&amp;gt; to import (site is private beta)&lt;br /&gt;
&lt;br /&gt;
== Services with XFN supporting friends lists ==&lt;br /&gt;
* [http://wordpress.com Wordpress.com] and any other blogs using Wordpress 1.5 or later have XFN supporting blog rolls.&lt;br /&gt;
&lt;br /&gt;
== Services with XFN rel=&amp;quot;me&amp;quot; supporting identity consolidation ==&lt;br /&gt;
* [http://flickr.com/ Flickr] - login, click &amp;quot;Your Photos&amp;quot;, click &amp;quot;Profile&amp;quot;, and copy the URL which should start with &amp;lt;nowiki&amp;gt;http://flickr.com/people/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
** Flickr supports rel=&amp;quot;me&amp;quot; identity consolidation with your webpage that you enter into your profile, and with your Flickr contacts page.&lt;br /&gt;
* [http://www.last.fm/ Last.FM] - login, go to your profile, and copy the URL which should start with &amp;lt;nowiki&amp;gt;http://www.last.fm/user/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
** Last.FM supports rel=&amp;quot;me&amp;quot; identity consolidation with your webpage that you enter into your profile.&lt;br /&gt;
&lt;br /&gt;
== For more information ==&lt;br /&gt;
Want to implement hCard+XFN on your site so you can list it here?  &lt;br /&gt;
&lt;br /&gt;
See the [[hcard-authoring|hCard authoring]] page for how to mark-up information about a person with hCard.&lt;br /&gt;
&lt;br /&gt;
See the [http://www.gmpg.org/xfn/join XFN: Getting Started] page for how to markup links to people with XFN.&lt;br /&gt;
&lt;br /&gt;
Join the [http://microformats.org/discuss microformats community], in particular the [http://microformats.org/mailman/listinfo/microformats-dev/ microformats-dev mailing list], and send a message stating that you'd like to add hCard to the profiles on your website.&lt;br /&gt;
&lt;br /&gt;
Please also consider implementing [[hcard-supporting-profiles|hCard profiles]].&lt;br /&gt;
&lt;br /&gt;
For more information see:&lt;br /&gt;
* [[hcard|hCard standard]]  / [[hcard-faq|FAQ]].  &lt;br /&gt;
* [http://gmpg.org/xfn/ XFN standard] / [http://gmpg.org/xfn/faq XFN FAQ] / More [[xfn|info on XFN]].&lt;br /&gt;
* [[social-network-portability]].&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-xfn-supporting-friends-lists&amp;diff=18970</id>
		<title>hcard-xfn-supporting-friends-lists</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-xfn-supporting-friends-lists&amp;diff=18970"/>
		<updated>2007-07-31T00:55:30Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: Last.fm marks up your friends as hcards now&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard+XFN supporting friends lists&amp;lt;/h1&amp;gt;&lt;br /&gt;
Welcome! If you have an account on any of the following services, you already have a list of your friends' hCards with your relationship to them in XFN which you can provide to other services to save time by either importing or subscribing to social network information so you can change it on one site, and have other sites automatically updated, rather than having to re-add/remove all your social network contacts multiple times everytime you meet a new person, decide to unfriend someone etc.&lt;br /&gt;
&lt;br /&gt;
== Services with hCard+XFN supporting friends lists ==&lt;br /&gt;
The following web sites support hCard+XFN on their friends lists and are thus suitable for importing/subscribing to other sites that support hCard+XFN.  Alphabetically sorted.  Feel free to add sites with hCard+XFN supporting friends lists here. Please include a link to the site home page, and instructions for retrieving your the URL of your hCard+XFN supporting friends list on that site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.corkd.com/ Cork'd] - login and copy the URL which should start with &amp;lt;nowiki&amp;gt;http://www.corkd.com/people/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* [http://dopplr.com Dopplr] - login and note that your user page has hCard and XFN for your contacts (site is private beta)&lt;br /&gt;
* [http://www.last.fm/ Last FM] - login, click the &amp;quot;Friends&amp;quot; tab, and copy the URL which should look like: &amp;lt;nowiki&amp;gt;http://www.last.fm/user/YOURUSERNAME/friends/&amp;lt;/nowiki&amp;gt; where YOURUSERNAME is your username.&lt;br /&gt;
* [http://twitter.com/ Twitter] - login, click on &amp;quot;Your profile&amp;quot; at the top, and copy the URL&lt;br /&gt;
&lt;br /&gt;
== Services that import hCard+XFN supporting friends lists ==&lt;br /&gt;
The following web sites support importing your existing hCard+XFN supporting friends lists, e.g. from the above sites. Alphabetically sorted.  Feel free to add sites supporting hCard+XFN import here. Please include a link to the site home page, and instructions for how to import friends on the site.&lt;br /&gt;
&lt;br /&gt;
* [http://dopplr.com Dopplr] - as [http://blog.dopplr.com/index.php/2007/06/23/importing-your-social-network-from-other-sites/ announced] login and go to &amp;lt;nowiki&amp;gt;http://www.dopplr.com/account/fellows_from_hcard&amp;lt;/nowiki&amp;gt; to import (site is private beta)&lt;br /&gt;
&lt;br /&gt;
== Services with XFN supporting friends lists ==&lt;br /&gt;
* [http://wordpress.com Wordpress.com] and any other blogs using Wordpress 1.5 or later have XFN supporting blog rolls.&lt;br /&gt;
&lt;br /&gt;
== Services with XFN rel=&amp;quot;me&amp;quot; supporting identity consolidation ==&lt;br /&gt;
* [http://flickr.com/ Flickr] - login, click &amp;quot;Your Photos&amp;quot;, click &amp;quot;Profile&amp;quot;, and copy the URL which should start with &amp;lt;nowiki&amp;gt;http://flickr.com/people/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
** Flickr supports rel=&amp;quot;me&amp;quot; identity consolidation with your webpage that you enter into your profile, and with your Flickr contacts page.&lt;br /&gt;
&lt;br /&gt;
== For more information ==&lt;br /&gt;
Want to implement hCard+XFN on your site so you can list it here?  &lt;br /&gt;
&lt;br /&gt;
See the [[hcard-authoring|hCard authoring]] page for how to mark-up information about a person with hCard.&lt;br /&gt;
&lt;br /&gt;
See the [http://www.gmpg.org/xfn/join XFN: Getting Started] page for how to markup links to people with XFN.&lt;br /&gt;
&lt;br /&gt;
Join the [http://microformats.org/discuss microformats community], in particular the [http://microformats.org/mailman/listinfo/microformats-dev/ microformats-dev mailing list], and send a message stating that you'd like to add hCard to the profiles on your website.&lt;br /&gt;
&lt;br /&gt;
Please also consider implementing [[hcard-supporting-profiles|hCard profiles]].&lt;br /&gt;
&lt;br /&gt;
For more information see:&lt;br /&gt;
* [[hcard|hCard standard]]  / [[hcard-faq|FAQ]].  &lt;br /&gt;
* [http://gmpg.org/xfn/ XFN standard] / [http://gmpg.org/xfn/faq XFN FAQ] / More [[xfn|info on XFN]].&lt;br /&gt;
* [[social-network-portability]].&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=accessibility&amp;diff=10754</id>
		<title>accessibility</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=accessibility&amp;diff=10754"/>
		<updated>2006-11-26T23:26:10Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: /* Accessibility of this wiki */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Accessibility=&lt;br /&gt;
&lt;br /&gt;
This page is for keeping track of issues relating to microformats and accessibility, in the hopes that any potential accessibility issues are resolved quickly, and for documenting techniques for making microformats more accessible.&lt;br /&gt;
&lt;br /&gt;
==External discussions==&lt;br /&gt;
=== Mailing lists ===&lt;br /&gt;
&lt;br /&gt;
* [http://lists.w3.org/Archives/Public/w3c-wai-ig/2006OctDec/0022.html Microformats and Semantic Structure (part 2)] - 2006-10-11 in w3c-wai-ig.&lt;br /&gt;
* [http://lists.w3.org/Archives/Public/w3c-wai-ig/2006JulSep/subject.html#msg133 hCard and hCalendar Formats] - 2006-08-03 in w3c-wai-ig.&lt;br /&gt;
&lt;br /&gt;
===Fora===&lt;br /&gt;
*[http://www.accessifyforum.com/viewtopic.php?t=6167&amp;amp;postdays=0&amp;amp;postorder=asc&amp;amp;start=0 Use of 'abbr' in microformats] - 2006-09-20. Issues: use of 'abbr'&lt;br /&gt;
&lt;br /&gt;
==Accessibility of this wiki==&lt;br /&gt;
*Large blocks of italic text are inaccessible to many readers, including people with types of visual impairment, dyslexia, etc. [http://www.intranet.man.ac.uk/accessibility/Disabilities/dyslexia.html], [https://tritonlink.ucsd.edu/portal/site/tritonlink-preview/menuitem.b4448692267a11256ec5e210514b01ca?storyID=20896]. [http://accessites.org/], [http://tlt.psu.edu/suggestions/accessibility/font.html], [http://www.wd4a.co.uk/Guidelines.htm] [[User:AndyMabbett|Andy Mabbett]] 14:33, 26 Nov 2006 (PST)&lt;br /&gt;
*Using emboldening and italics to differentiate types on, e.g. the cheatsheet pages [[hcard-cheatsheet]], is unhelpful to users of assistive technologies, text-only devices, etc. A number, letter or symbol should additionally be be used. [[User:AndyMabbett|Andy Mabbett]] 14:33, 26 Nov 2006 (PST)&lt;br /&gt;
**I think the emboldening is fine as it marks up the required properties. The italics are a bit of a problem but keep it simple at the moment. Additional characters can’t be used as they would break the class=&amp;quot;property&amp;quot; template. Colours would be a way but are inaccessible to some users, so there is no real solution to that problem for now. [[User:JulianStahnke|Julian Stahnke]] 22:55, 26 Nov 2006 (GMT)&lt;br /&gt;
***&amp;quot;I think the emboldening is fine&amp;quot; - how would you understand emboldening in a text-only browser like Lynx, or in an aural browser? [[User:AndyMabbett|Andy Mabbett]] 15:17, 26 Nov 2006 (PST)&lt;br /&gt;
****Ups, I just assumed that it would use strong and em tags. Yeah, well, let’s think about it. [[User:JulianStahnke|Julian Stahnke]] 23:22, 26 Nov 2006 (GMT)&lt;br /&gt;
**Of course, one could add that stuff ''after'' the class=&amp;quot;property&amp;quot; thing. That might look a little cluttered though. I’ll consider that for the next revision/next cheat sheet I do. [[User:JulianStahnke|Julian Stahnke]] 22:57, 26 Nov 2006 (GMT)&lt;br /&gt;
***All that's needed is:&lt;br /&gt;
::::&amp;lt;nowiki&amp;gt;* class=&amp;quot;vcard&amp;quot; (1)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
::instead of:&lt;br /&gt;
::::&amp;lt;nowiki&amp;gt;* class=&amp;quot;vcard&amp;quot;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
:::[[User:AndyMabbett|Andy Mabbett]] 15:24, 26 Nov 2006 (PST)&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=accessibility&amp;diff=10751</id>
		<title>accessibility</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=accessibility&amp;diff=10751"/>
		<updated>2006-11-26T22:58:06Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: /* Accessibility of this wiki */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Accessibility=&lt;br /&gt;
&lt;br /&gt;
This page is for keeping track of issues relating to microformats and accessibility, in the hopes that any potential accessibility issues are resolved quickly, and for documenting techniques for making microformats more accessible.&lt;br /&gt;
&lt;br /&gt;
==External discussions==&lt;br /&gt;
=== Mailing lists ===&lt;br /&gt;
&lt;br /&gt;
* [http://lists.w3.org/Archives/Public/w3c-wai-ig/2006OctDec/0022.html Microformats and Semantic Structure (part 2)] - 2006-10-11 in w3c-wai-ig.&lt;br /&gt;
* [http://lists.w3.org/Archives/Public/w3c-wai-ig/2006JulSep/subject.html#msg133 hCard and hCalendar Formats] - 2006-08-03 in w3c-wai-ig.&lt;br /&gt;
&lt;br /&gt;
===Fora===&lt;br /&gt;
*[http://www.accessifyforum.com/viewtopic.php?t=6167&amp;amp;postdays=0&amp;amp;postorder=asc&amp;amp;start=0 Use of 'abbr' in microformats] - 2006-09-20. Issues: use of 'abbr'&lt;br /&gt;
&lt;br /&gt;
==Accessibility of this wiki==&lt;br /&gt;
*Large blocks of italic text are inaccessible to many readers, including people with types of visual impairment, dyslexia, etc. [http://www.intranet.man.ac.uk/accessibility/Disabilities/dyslexia.html], [https://tritonlink.ucsd.edu/portal/site/tritonlink-preview/menuitem.b4448692267a11256ec5e210514b01ca?storyID=20896]. [http://accessites.org/], [http://tlt.psu.edu/suggestions/accessibility/font.html], [http://www.wd4a.co.uk/Guidelines.htm] [[User:AndyMabbett|Andy Mabbett]] 14:33, 26 Nov 2006 (PST)&lt;br /&gt;
*Using emboldening and italics to differentiate types on, e.g. the cheatsheet pages [[hcard-cheatsheet]], is unhelpful to users of assistive technologies, text-only devices, etc. A number, letter or symbol should additionally be be used. [[User:AndyMabbett|Andy Mabbett]] 14:33, 26 Nov 2006 (PST)&lt;br /&gt;
**I think the emboldening is fine as it marks up the required properties. The italics are a bit of a problem but keep it simple at the moment. Additional characters can’t be used as they would break the class=&amp;quot;property&amp;quot; template. Colours would be a way but are inaccessible to some users, so there is no real solution to that problem for now. [[User:JulianStahnke|Julian Stahnke]] 22:55, 26 Nov 2006 (GMT)&lt;br /&gt;
**Of course, one could add that stuff ''after'' the class=&amp;quot;property&amp;quot; thing. That might look a little cluttered though. I’ll consider that for the next revision/next cheat sheet I do. [[User:JulianStahnke|Julian Stahnke]] 22:57, 26 Nov 2006 (GMT)&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=accessibility&amp;diff=10749</id>
		<title>accessibility</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=accessibility&amp;diff=10749"/>
		<updated>2006-11-26T22:55:52Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: /* Accessibility of this wiki */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Accessibility=&lt;br /&gt;
&lt;br /&gt;
This page is for keeping track of issues relating to microformats and accessibility, in the hopes that any potential accessibility issues are resolved quickly, and for documenting techniques for making microformats more accessible.&lt;br /&gt;
&lt;br /&gt;
==External discussions==&lt;br /&gt;
=== Mailing lists ===&lt;br /&gt;
&lt;br /&gt;
* [http://lists.w3.org/Archives/Public/w3c-wai-ig/2006OctDec/0022.html Microformats and Semantic Structure (part 2)] - 2006-10-11 in w3c-wai-ig.&lt;br /&gt;
* [http://lists.w3.org/Archives/Public/w3c-wai-ig/2006JulSep/subject.html#msg133 hCard and hCalendar Formats] - 2006-08-03 in w3c-wai-ig.&lt;br /&gt;
&lt;br /&gt;
===Fora===&lt;br /&gt;
*[http://www.accessifyforum.com/viewtopic.php?t=6167&amp;amp;postdays=0&amp;amp;postorder=asc&amp;amp;start=0 Use of 'abbr' in microformats] - 2006-09-20. Issues: use of 'abbr'&lt;br /&gt;
&lt;br /&gt;
==Accessibility of this wiki==&lt;br /&gt;
*Large blocks of italic text are inaccessible to many readers, including people with types of visual impairment, dyslexia, etc. [http://www.intranet.man.ac.uk/accessibility/Disabilities/dyslexia.html], [https://tritonlink.ucsd.edu/portal/site/tritonlink-preview/menuitem.b4448692267a11256ec5e210514b01ca?storyID=20896]. [http://accessites.org/], [http://tlt.psu.edu/suggestions/accessibility/font.html], [http://www.wd4a.co.uk/Guidelines.htm] [[User:AndyMabbett|Andy Mabbett]] 14:33, 26 Nov 2006 (PST)&lt;br /&gt;
*Using emboldening and italics to differentiate types on, e.g. the cheatsheet pages [[hcard-cheatsheet]], is unhelpful to users of assistive technologies, text-only devices, etc. A number, letter or symbol should additionally be be used. [[User:AndyMabbett|Andy Mabbett]] 14:33, 26 Nov 2006 (PST)&lt;br /&gt;
**I think the emboldening is fine as it marks up the required properties. The italics are a bit of a problem but keep it simple at the moment. Additional characters can’t be used as they would break the class=&amp;quot;property&amp;quot; template. Colours would be a way but are inaccessible to some users, so there is no real solution to that problem for now.  [[User:JulianStahnke|Julian Stahnke]] 22:55, 26 Nov 2006 (GMT)&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10732</id>
		<title>hcard-cheatsheet</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10732"/>
		<updated>2006-11-26T22:11:25Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*class=&amp;quot;'''vcard'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''[[adr]]''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [work|home|pref|postal|dom|intl]&lt;br /&gt;
***class=&amp;quot;post-office-box&amp;quot;&lt;br /&gt;
***class=&amp;quot;''street-address''&amp;quot;&lt;br /&gt;
***class=&amp;quot;extended-address&amp;quot;&lt;br /&gt;
***class=&amp;quot;region&amp;quot;&lt;br /&gt;
***class=&amp;quot;locality&amp;quot;&lt;br /&gt;
***class=&amp;quot;postal-code&amp;quot;&lt;br /&gt;
***class=&amp;quot;country-name&amp;quot;&lt;br /&gt;
**class=&amp;quot;''agent''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#bday|bday]]&amp;quot; (ISO date)&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#class|class]]&amp;quot; – confidentiality/access classification of the ''entire'' hCard&lt;br /&gt;
**class=&amp;quot;''category''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''email''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot;&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;'''[[hcard-singular-properties#fn|fn]]'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[geo]]&amp;quot;&lt;br /&gt;
***class=&amp;quot;latitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;longitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;''key''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''label''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''logo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''mailer''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#n|n]]&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-prefix''&amp;quot;&lt;br /&gt;
***class=&amp;quot;given-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''additional-name''&amp;quot;&lt;br /&gt;
***class=&amp;quot;family-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-suffix''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''nickname''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''note''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''org''&amp;quot;&lt;br /&gt;
***class=&amp;quot;organization-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''organization-unit''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''photo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#rev|rev]]&amp;quot; – datetime of the revision of the ''entire'' hCard&lt;br /&gt;
**class=&amp;quot;''role''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#sort-string|sort-string]]&amp;quot;&lt;br /&gt;
**class=&amp;quot;''sound''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''title''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''tel''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [home|work|pref|fax|cell|pager]&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#tz|tz]]&amp;quot; – timezone of the person&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#uid|uid]]&amp;quot; – applies to the ''entire'' hCard&lt;br /&gt;
**class=&amp;quot;''url''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:Key&lt;br /&gt;
::'''Single occurrence required'''&lt;br /&gt;
::'''''One or more, required'''''&lt;br /&gt;
::single occurrence optional&lt;br /&gt;
::''zero or more occurrence''&lt;br /&gt;
::[common list of values]&lt;br /&gt;
::(data format)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;URL&amp;lt;/code&amp;gt; in vCard becomes  &amp;lt;code&amp;gt;&amp;lt;a class=&amp;quot;url&amp;quot; href=&amp;quot;...&amp;quot;&amp;gt;...&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt; inside the element with &amp;lt;code&amp;gt;class=&amp;quot;vcard&amp;quot;&amp;lt;/code&amp;gt; in hCard.&lt;br /&gt;
* Similarly, &amp;lt;code&amp;gt;EMAIL&amp;lt;/code&amp;gt; in vCard becomes &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;a class=&amp;quot;email&amp;quot; href=&amp;quot;mailto:...&amp;quot;&amp;gt;...&amp;lt;/a&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;PHOTO&amp;lt;/code&amp;gt; in vCard becomes &amp;lt;code&amp;gt;&amp;lt;img class=&amp;quot;photo&amp;quot; src=&amp;quot;...&amp;quot; alt=&amp;quot;Photo of ...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;lt;object class=&amp;quot;photo&amp;quot; data=&amp;quot;...&amp;quot; type=&amp;quot;...&amp;quot;&amp;gt;Photo of ...&amp;lt;/object&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;UID&amp;lt;/code&amp;gt; in vCard simply becomes another semantic applied to a specific URL (or EMAIL) for an hCard.&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10728</id>
		<title>hcard-cheatsheet</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10728"/>
		<updated>2006-11-26T22:04:24Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*class=&amp;quot;'''vcard'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''[[adr]]''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [work|home|pref|postal|dom|intl]&lt;br /&gt;
***class=&amp;quot;post-office-box&amp;quot;&lt;br /&gt;
***class=&amp;quot;''street-address''&amp;quot;&lt;br /&gt;
***class=&amp;quot;extended-address&amp;quot;&lt;br /&gt;
***class=&amp;quot;region&amp;quot;&lt;br /&gt;
***class=&amp;quot;locality&amp;quot;&lt;br /&gt;
***class=&amp;quot;postal-code&amp;quot;&lt;br /&gt;
***class=&amp;quot;country-name&amp;quot;&lt;br /&gt;
**class=&amp;quot;''agent''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#bday|bday]]&amp;quot; (ISO date)&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#class|class]]&amp;quot; – confidentiality/access classification of the hCard&lt;br /&gt;
**class=&amp;quot;''category''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''email''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot;&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;'''[[hcard-singular-properties#fn|fn]]'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[geo]]&amp;quot;&lt;br /&gt;
***class=&amp;quot;latitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;longitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;''key''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''label''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''logo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''mailer''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#n|n]]&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-prefix''&amp;quot;&lt;br /&gt;
***class=&amp;quot;given-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''additional-name''&amp;quot;&lt;br /&gt;
***class=&amp;quot;family-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-suffix''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''nickname''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''note''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''org''&amp;quot;&lt;br /&gt;
***class=&amp;quot;organization-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''organization-unit''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''photo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#rev|rev]]&amp;quot;&lt;br /&gt;
**class=&amp;quot;''role''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#sort-string|sort-string]]&amp;quot;&lt;br /&gt;
**class=&amp;quot;''sound''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''title''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''tel''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [home|work|pref|fax|cell|pager]&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#tz|tz]]&amp;quot; – timezone of the person&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#uid|uid]]&amp;quot; – datetime of the revision of the hCard&lt;br /&gt;
**class=&amp;quot;''url''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:Key&lt;br /&gt;
::'''Single occurrence required'''&lt;br /&gt;
::'''''One or more, required'''''&lt;br /&gt;
::single occurrence optional&lt;br /&gt;
::''zero or more occurrence''&lt;br /&gt;
::[common list of values]&lt;br /&gt;
::(data format)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;URL&amp;lt;/code&amp;gt; in vCard becomes  &amp;lt;code&amp;gt;&amp;lt;a class=&amp;quot;url&amp;quot; href=&amp;quot;...&amp;quot;&amp;gt;...&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt; inside the element with &amp;lt;code&amp;gt;class=&amp;quot;vcard&amp;quot;&amp;lt;/code&amp;gt; in hCard.&lt;br /&gt;
* Similarly, &amp;lt;code&amp;gt;EMAIL&amp;lt;/code&amp;gt; in vCard becomes &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;a class=&amp;quot;email&amp;quot; href=&amp;quot;mailto:...&amp;quot;&amp;gt;...&amp;lt;/a&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;PHOTO&amp;lt;/code&amp;gt; in vCard becomes &amp;lt;code&amp;gt;&amp;lt;img class=&amp;quot;photo&amp;quot; src=&amp;quot;...&amp;quot; alt=&amp;quot;Photo of ...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;&amp;lt;object class=&amp;quot;photo&amp;quot; data=&amp;quot;...&amp;quot; type=&amp;quot;...&amp;quot;&amp;gt;Photo of ...&amp;lt;/object&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;UID&amp;lt;/code&amp;gt; in vCard simply becomes another semantic applied to a specific URL (or EMAIL) for an hCard.&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10726</id>
		<title>hcard-cheatsheet</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10726"/>
		<updated>2006-11-26T21:52:37Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*class=&amp;quot;'''vcard'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''[[adr]]''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [work|home|pref|postal|dom|intl]&lt;br /&gt;
***class=&amp;quot;post-office-box&amp;quot;&lt;br /&gt;
***class=&amp;quot;''street-address''&amp;quot;&lt;br /&gt;
***class=&amp;quot;extended-address&amp;quot;&lt;br /&gt;
***class=&amp;quot;region&amp;quot;&lt;br /&gt;
***class=&amp;quot;locality&amp;quot;&lt;br /&gt;
***class=&amp;quot;postal-code&amp;quot;&lt;br /&gt;
***class=&amp;quot;country-name&amp;quot;&lt;br /&gt;
**class=&amp;quot;''agent''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#bday|bday]]&amp;quot; (ISO date)&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#class|class]]&amp;quot;&lt;br /&gt;
**class=&amp;quot;''category''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''email''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot;&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;'''[[hcard-singular-properties#fn|fn]]'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[geo]]&amp;quot;&lt;br /&gt;
***class=&amp;quot;latitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;longitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;''key''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''label''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''logo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''mailer''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#n|n]]&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-prefix''&amp;quot;&lt;br /&gt;
***class=&amp;quot;given-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''additional-name''&amp;quot;&lt;br /&gt;
***class=&amp;quot;family-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-suffix''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''nickname''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''note''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''org''&amp;quot;&lt;br /&gt;
***class=&amp;quot;organization-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''organization-unit''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''photo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#rev|rev]]&amp;quot;&lt;br /&gt;
**class=&amp;quot;''role''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#sort-string|sort-string]]&amp;quot;&lt;br /&gt;
**class=&amp;quot;''sound''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''title''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''tel''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [home|work|pref|fax|cell|pager]&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#tz|tz]]&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[hcard-singular-properties#uid|uid]]&amp;quot;&lt;br /&gt;
**class=&amp;quot;''url''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:Key&lt;br /&gt;
::'''Single occurrence required'''&lt;br /&gt;
::'''''One or more, required'''''&lt;br /&gt;
::single occurrence optional&lt;br /&gt;
::''zero or more occurrence''&lt;br /&gt;
::[common list of values]&lt;br /&gt;
::(data format)&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10725</id>
		<title>hcard-cheatsheet</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10725"/>
		<updated>2006-11-26T21:41:02Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*class=&amp;quot;'''vcard'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''[[adr]]''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [work|home|pref|postal|dom|intl]&lt;br /&gt;
***class=&amp;quot;post-office-box&amp;quot;&lt;br /&gt;
***class=&amp;quot;''street-address''&amp;quot;&lt;br /&gt;
***class=&amp;quot;extended-address&amp;quot;&lt;br /&gt;
***class=&amp;quot;region&amp;quot;&lt;br /&gt;
***class=&amp;quot;locality&amp;quot;&lt;br /&gt;
***class=&amp;quot;postal-code&amp;quot;&lt;br /&gt;
***class=&amp;quot;country-name&amp;quot;&lt;br /&gt;
**class=&amp;quot;''agent''&amp;quot;&lt;br /&gt;
**class=&amp;quot;bday&amp;quot; (ISO date)&lt;br /&gt;
**class=&amp;quot;class&amp;quot;&lt;br /&gt;
**class=&amp;quot;''category''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''email''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot;&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;'''fn'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[geo]]&amp;quot;&lt;br /&gt;
***class=&amp;quot;latitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;longitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;''key''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''label''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''logo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''mailer''&amp;quot;&lt;br /&gt;
**class=&amp;quot;n&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-prefix''&amp;quot;&lt;br /&gt;
***class=&amp;quot;given-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''additional-name''&amp;quot;&lt;br /&gt;
***class=&amp;quot;family-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-suffix''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''nickname''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''note''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''org''&amp;quot;&lt;br /&gt;
***class=&amp;quot;organization-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''organization-unit''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''photo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;rev&amp;quot;&lt;br /&gt;
**class=&amp;quot;''role''&amp;quot;&lt;br /&gt;
**class=&amp;quot;sort-string&amp;quot;&lt;br /&gt;
**class=&amp;quot;''sound''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''title''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''tel''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [home|work|pref|fax|cell|pager]&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;tz&amp;quot;&lt;br /&gt;
**class=&amp;quot;uid&amp;quot;&lt;br /&gt;
**class=&amp;quot;''url''&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:Key&lt;br /&gt;
::'''Single occurrence required'''&lt;br /&gt;
::'''''One or more, required'''''&lt;br /&gt;
::single occurrence optional&lt;br /&gt;
::''zero or more occurrence''&lt;br /&gt;
::[common list of values]&lt;br /&gt;
::(data format)&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10721</id>
		<title>hcard-cheatsheet</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10721"/>
		<updated>2006-11-26T21:38:35Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*class=&amp;quot;'''vcard'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''[[adr]]''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [work|home|pref|postal|dom|intl]&lt;br /&gt;
***class=&amp;quot;post-office-box&amp;quot;&lt;br /&gt;
***class=&amp;quot;''street-address''&amp;quot;&lt;br /&gt;
***class=&amp;quot;extended-address&amp;quot;&lt;br /&gt;
***class=&amp;quot;region&amp;quot;&lt;br /&gt;
***class=&amp;quot;locality&amp;quot;&lt;br /&gt;
***class=&amp;quot;postal-code&amp;quot;&lt;br /&gt;
***class=&amp;quot;country-name&amp;quot;&lt;br /&gt;
**class=&amp;quot;''agent''&amp;quot;&lt;br /&gt;
**class=&amp;quot;bday&amp;quot; (ISO date)&lt;br /&gt;
**class=&amp;quot;class&amp;quot;&lt;br /&gt;
**class=&amp;quot;''category''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''email''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot;&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;'''fn'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;[[geo]]&amp;quot;&lt;br /&gt;
***class=&amp;quot;latitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;longitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;''key''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''label''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''logo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''mailer''&amp;quot;&lt;br /&gt;
**class=&amp;quot;n&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-prefix''&amp;quot;&lt;br /&gt;
***class=&amp;quot;given-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''additional-name''&amp;quot;&lt;br /&gt;
***class=&amp;quot;family-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-suffix''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''nickname''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''note''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''org''&amp;quot;&lt;br /&gt;
***class=&amp;quot;organization-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''organization-unit''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''photo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;rev&amp;quot;&lt;br /&gt;
**class=&amp;quot;''role''&amp;quot;&lt;br /&gt;
**class=&amp;quot;sort-string&amp;quot;&lt;br /&gt;
**class=&amp;quot;''sound''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''title''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''tel''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [home|work|pref|fax|cell|pager]&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;tz&amp;quot;&lt;br /&gt;
**class=&amp;quot;uid&amp;quot;&lt;br /&gt;
**class=&amp;quot;''url''&amp;quot;&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10720</id>
		<title>hcard-cheatsheet</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10720"/>
		<updated>2006-11-26T21:36:16Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*class=&amp;quot;'''vcard'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''adr''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [work|home|pref|postal|dom|intl]&lt;br /&gt;
***class=&amp;quot;post-office-box&amp;quot;&lt;br /&gt;
***class=&amp;quot;''street-address''&amp;quot;&lt;br /&gt;
***class=&amp;quot;extended-address&amp;quot;&lt;br /&gt;
***class=&amp;quot;region&amp;quot;&lt;br /&gt;
***class=&amp;quot;locality&amp;quot;&lt;br /&gt;
***class=&amp;quot;postal-code&amp;quot;&lt;br /&gt;
***class=&amp;quot;country-name&amp;quot;&lt;br /&gt;
**class=&amp;quot;''agent''&amp;quot;&lt;br /&gt;
**class=&amp;quot;bday&amp;quot; (ISO date)&lt;br /&gt;
**class=&amp;quot;class&amp;quot;&lt;br /&gt;
**class=&amp;quot;''category''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''email''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot;&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;'''fn'''&amp;quot;&lt;br /&gt;
**class=&amp;quot;geo&amp;quot;&lt;br /&gt;
***class=&amp;quot;latitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;longitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;''key''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''label''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''logo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''mailer''&amp;quot;&lt;br /&gt;
**class=&amp;quot;n&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-prefix''&amp;quot;&lt;br /&gt;
***class=&amp;quot;given-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''additional-name''&amp;quot;&lt;br /&gt;
***class=&amp;quot;family-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''honorific-suffix''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''nickname''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''note''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''org''&amp;quot;&lt;br /&gt;
***class=&amp;quot;organization-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;''organization-unit''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''photo''&amp;quot;&lt;br /&gt;
**class=&amp;quot;rev&amp;quot;&lt;br /&gt;
**class=&amp;quot;''role''&amp;quot;&lt;br /&gt;
**class=&amp;quot;sort-string&amp;quot;&lt;br /&gt;
**class=&amp;quot;''sound''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''title''&amp;quot;&lt;br /&gt;
**class=&amp;quot;''tel''&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [home|work|pref|fax|cell|pager]&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;tz&amp;quot;&lt;br /&gt;
**class=&amp;quot;uid&amp;quot;&lt;br /&gt;
**class=&amp;quot;''url''&amp;quot;&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10719</id>
		<title>hcard-cheatsheet</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=hcard-cheatsheet&amp;diff=10719"/>
		<updated>2006-11-26T21:33:38Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*class=&amp;quot;vcard&amp;quot;&lt;br /&gt;
**class=&amp;quot;adr&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [work|home|pref|postal|dom|intl]&lt;br /&gt;
***class=&amp;quot;post-office-box&amp;quot;&lt;br /&gt;
***class=&amp;quot;street-address&amp;quot;&lt;br /&gt;
***class=&amp;quot;extended-address&amp;quot;&lt;br /&gt;
***class=&amp;quot;region&amp;quot;&lt;br /&gt;
***class=&amp;quot;locality&amp;quot;&lt;br /&gt;
***class=&amp;quot;postal-code&amp;quot;&lt;br /&gt;
***class=&amp;quot;country-name&amp;quot;&lt;br /&gt;
**class=&amp;quot;agent&amp;quot;&lt;br /&gt;
**class=&amp;quot;bday&amp;quot; (ISO date)&lt;br /&gt;
**class=&amp;quot;class&amp;quot;&lt;br /&gt;
**class=&amp;quot;category&amp;quot;&lt;br /&gt;
**class=&amp;quot;email&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot;&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;fn&amp;quot;&lt;br /&gt;
**class=&amp;quot;geo&amp;quot;&lt;br /&gt;
***class=&amp;quot;latitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;longitude&amp;quot;&lt;br /&gt;
**class=&amp;quot;key&amp;quot;&lt;br /&gt;
**class=&amp;quot;label&amp;quot;&lt;br /&gt;
**class=&amp;quot;logo&amp;quot;&lt;br /&gt;
**class=&amp;quot;mailer&amp;quot;&lt;br /&gt;
**class=&amp;quot;n&amp;quot;&lt;br /&gt;
***class=&amp;quot;honorific-prefix&amp;quot;&lt;br /&gt;
***class=&amp;quot;given-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;additional-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;family-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;honorific-suffix&amp;quot;&lt;br /&gt;
**class=&amp;quot;nickname&amp;quot;&lt;br /&gt;
**class=&amp;quot;note&amp;quot;&lt;br /&gt;
**class=&amp;quot;org&amp;quot;&lt;br /&gt;
***class=&amp;quot;organization-name&amp;quot;&lt;br /&gt;
***class=&amp;quot;organization-unit&amp;quot;&lt;br /&gt;
**class=&amp;quot;photo&amp;quot;&lt;br /&gt;
**class=&amp;quot;rev&amp;quot;&lt;br /&gt;
**class=&amp;quot;role&amp;quot;&lt;br /&gt;
**class=&amp;quot;sort-string&amp;quot;&lt;br /&gt;
**class=&amp;quot;sound&amp;quot;&lt;br /&gt;
**class=&amp;quot;title&amp;quot;&lt;br /&gt;
**class=&amp;quot;tel&amp;quot;&lt;br /&gt;
***class=&amp;quot;type&amp;quot; [home|work|pref|fax|cell|pager]&lt;br /&gt;
***class=&amp;quot;value&amp;quot;&lt;br /&gt;
**class=&amp;quot;tz&amp;quot;&lt;br /&gt;
**class=&amp;quot;uid&amp;quot;&lt;br /&gt;
**class=&amp;quot;url&amp;quot;&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=User:JulianStahnke&amp;diff=24015</id>
		<title>User:JulianStahnke</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=User:JulianStahnke&amp;diff=24015"/>
		<updated>2006-11-18T11:25:18Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello, my name is Julian Stahnke and I work for [http://www.last.fm Last.fm]. I’m 21 years old and live in London after spending the first 20 years of my life in Bremen, Germany.&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=User:JulianStahnke&amp;diff=10320</id>
		<title>User:JulianStahnke</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=User:JulianStahnke&amp;diff=10320"/>
		<updated>2006-11-18T11:24:51Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello, my name is Julian Stahnke and I work for [Last.fm]. I’m 21 years old and live in London after spending the first 20 years of my life in Bremen, Germany.&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=User:JulianStahn&amp;diff=32458</id>
		<title>User:JulianStahn</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=User:JulianStahn&amp;diff=32458"/>
		<updated>2006-11-18T11:23:49Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=irc-people&amp;diff=10398</id>
		<title>irc-people</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=irc-people&amp;diff=10398"/>
		<updated>2006-11-18T11:23:30Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A list of [[irc|IRC]] regulars and their normal timezones. (winter/summer)&lt;br /&gt;
&lt;br /&gt;
* [[User:BenWest|bewest]] (-0800/-0700)&lt;br /&gt;
* [[User:Adam Craven|AdamCraven]] (+0000)&lt;br /&gt;
* [[User:Amette|amette]] (+1000)&lt;br /&gt;
* [[User:B.K._DeLong|bkdelong]] (-0500/-0400)&lt;br /&gt;
* [[User:Ben Ward|BenWard]] (+0000)&lt;br /&gt;
* [[User:BenjaminCarlyle|BenjaminCarlyle]] (+1000)&lt;br /&gt;
* [[User:Boneill|boneill]] (+0000)&lt;br /&gt;
* [[User:Brian|briansuda]] (+0000)&lt;br /&gt;
* [[User:ColinDDevroe|cdevroe]] (-0500/-0600)&lt;br /&gt;
* [[User:Cgriego|cgriego]] (-0600/-0500)&lt;br /&gt;
* [[User:CharlesRoper|charles_r]] (0000/+0100)&lt;br /&gt;
* [[User:ChrisCasciano|pnhChris]] (-0500/-0400)&lt;br /&gt;
* [[User:ChrisMessina|factoryjoe]] (-0800/-0700)&lt;br /&gt;
* [[User:ChristopherStJohn|cks]] (-0600/-0500)&lt;br /&gt;
* [[User:Cloud|Cloud]] (+0000)&lt;br /&gt;
* [[User:DanC|DanC]] (-0600/-0500)&lt;br /&gt;
** office hours: Wednesday afternoons, America/Chicago time&lt;br /&gt;
* [[User:DannyAyers|danja]] (+0100/+0200)&lt;br /&gt;
* [[User:Dave Cardwell|davecardwell]] (+0000)&lt;br /&gt;
* [[User:DeanEro|deanero]] (-0800/-0700)&lt;br /&gt;
* [[User:DimitriGlazkov|dglazkov]] (-0600/-0500)&lt;br /&gt;
* [[User:DrewMcLellan|drewinthehead]] (+0000/+0100)&lt;br /&gt;
* [[User:EdwardOConnor|hober]] (-0800/-0700)&lt;br /&gt;
* [[User:Enric|enric]] (-0800/-0700)&lt;br /&gt;
* [[User:Evan|evanpro]] (-0500)&lt;br /&gt;
* [[User:Fil|Fil]] (+0200)&lt;br /&gt;
* [[User:Grantbow|Grantbow]] (-0800/-0700)&lt;br /&gt;
* [[User:Hlb|hlb]] (+0800-0700)&lt;br /&gt;
* [[User:IanHickson|Hixie]] (-0800/-0700)&lt;br /&gt;
* [[User:Izo|IZO]]&lt;br /&gt;
* [[User:JoeGregorio|jcgregorio]]&lt;br /&gt;
* [[User:Jonathan_Arkell|jonnay]] (-0700/0600)&lt;br /&gt;
* [[User:JasonK|jkridner]]] (-0600/-0500)&lt;br /&gt;
* [[User:Kapowaz|kapowaz]] (+0000/+0100)&lt;br /&gt;
* [[User:Keri Henare|kerihenare]] (+1200)&lt;br /&gt;
* [http://epeus.blogspot.com/ KevinMarks] (-0800/-0700)&lt;br /&gt;
* [[User:Mark Mansour|Mark Mansour]] (+1100)&lt;br /&gt;
* [[User:MarkNormanFrancis|Mark Norman Francis]] (+0000/+0100)&lt;br /&gt;
* [[User:CiaranMc|McNulty]] (+0000/+0100)&lt;br /&gt;
* [[User:neuro|neuro`]]&lt;br /&gt;
* [[User:Phae|Phae]] (+0000/+0100)&lt;br /&gt;
* [[User:PriitLaes|plaes]] (+0200/+0300)&lt;br /&gt;
* [[User:DavidOsolkowski|qid]] (-0500)&lt;br /&gt;
* [[User:Remi|Remi]] (-0500/-0400)&lt;br /&gt;
* [[User:RobertBachmann|RobertBachmann]] (+0100/+0200)&lt;br /&gt;
** Office hours: &amp;lt;del&amp;gt;Wednesday, 18:00-20:00 UTC&amp;lt;/del&amp;gt; (Currently no office hours)&lt;br /&gt;
* [[User:Ronnos|Ron Kok]] (+0000)&lt;br /&gt;
* [[User:RyanKing|kingryan]] (-0800/-0700)&lt;br /&gt;
** [http://theryanking.com/blog/archives/2006/04/19/office-hours/ Office hours]: Wednesday, 21:00 UTC&lt;br /&gt;
* [[User:Csarven|csarven]] (-0500/-0400)&lt;br /&gt;
* [[User:Dana Benson|Snowden]] (-0800/-0700)&lt;br /&gt;
* [[User:Steve Ganz|SteveGanz]] (-0800/-0700)&lt;br /&gt;
* [[User:Tantek|Tantek]] (-0800/-0700)&lt;br /&gt;
* [[User:Trovster|trovster]] (-0800/-0700)&lt;br /&gt;
* [[User:Dan Kubb|dkubb]] (-0800/-0700)&lt;br /&gt;
* [[User:Ed Summers|edsu]] (-0500/-0400)&lt;br /&gt;
* [[User:Smackman|Steve Farrell]] (-0800/-0700)&lt;br /&gt;
* [[User:Enric|Enric]] (-0800/-0700)&lt;br /&gt;
* [[User:Charlvn|Charl]] (+0200/+0200)&lt;br /&gt;
* [[User:MarkoMrdjenovic|friedcell]] (+0100/+0200)&lt;br /&gt;
* [[User:Vant|vant]] (+0900)&lt;br /&gt;
* [[User:KrissWatt|VoodooChild]] (+0000/+0100)&lt;br /&gt;
* [[User:IwaiMasaharu|iwaim]] (+0900)&lt;br /&gt;
* [[User:Richard Conyard|WhiskeyM]] (+0000)&lt;br /&gt;
* [[User:Veeliam|William Lawrence]] (-0800/-0700)&lt;br /&gt;
* [[User:Ianloic|yakk]] (-0800/-0700)&lt;br /&gt;
* [[User:Ashley|Ashley]] (+1000)&lt;br /&gt;
* [[User:SuperPhly|SuperPhly]] (-600/-500)&lt;br /&gt;
* [[User:Colin_Barrett|cbarrett]] (-1000)&lt;br /&gt;
* [[User:HenriBergius|bergie]] (+0200/+0300)&lt;br /&gt;
* [[User:JacksonWilkinson|whafro]] (-0500/-0400)&lt;br /&gt;
* [[User:Adactio|Jeremy Keith]] (+0000)&lt;br /&gt;
* [[User:JulianStahnke|Julian Stahnke]] (+0000)&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=User:JulianStahn&amp;diff=10319</id>
		<title>User:JulianStahn</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=User:JulianStahn&amp;diff=10319"/>
		<updated>2006-11-18T11:22:53Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My name is Julian Stahnke and I work for [Last.fm]&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=irc-people&amp;diff=10318</id>
		<title>irc-people</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=irc-people&amp;diff=10318"/>
		<updated>2006-11-18T11:22:21Z</updated>

		<summary type="html">&lt;p&gt;JulianStahnke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A list of [[irc|IRC]] regulars and their normal timezones. (winter/summer)&lt;br /&gt;
&lt;br /&gt;
* [[User:BenWest|bewest]] (-0800/-0700)&lt;br /&gt;
* [[User:Adam Craven|AdamCraven]] (+0000)&lt;br /&gt;
* [[User:Amette|amette]] (+1000)&lt;br /&gt;
* [[User:B.K._DeLong|bkdelong]] (-0500/-0400)&lt;br /&gt;
* [[User:Ben Ward|BenWard]] (+0000)&lt;br /&gt;
* [[User:BenjaminCarlyle|BenjaminCarlyle]] (+1000)&lt;br /&gt;
* [[User:Boneill|boneill]] (+0000)&lt;br /&gt;
* [[User:Brian|briansuda]] (+0000)&lt;br /&gt;
* [[User:ColinDDevroe|cdevroe]] (-0500/-0600)&lt;br /&gt;
* [[User:Cgriego|cgriego]] (-0600/-0500)&lt;br /&gt;
* [[User:CharlesRoper|charles_r]] (0000/+0100)&lt;br /&gt;
* [[User:ChrisCasciano|pnhChris]] (-0500/-0400)&lt;br /&gt;
* [[User:ChrisMessina|factoryjoe]] (-0800/-0700)&lt;br /&gt;
* [[User:ChristopherStJohn|cks]] (-0600/-0500)&lt;br /&gt;
* [[User:Cloud|Cloud]] (+0000)&lt;br /&gt;
* [[User:DanC|DanC]] (-0600/-0500)&lt;br /&gt;
** office hours: Wednesday afternoons, America/Chicago time&lt;br /&gt;
* [[User:DannyAyers|danja]] (+0100/+0200)&lt;br /&gt;
* [[User:Dave Cardwell|davecardwell]] (+0000)&lt;br /&gt;
* [[User:DeanEro|deanero]] (-0800/-0700)&lt;br /&gt;
* [[User:DimitriGlazkov|dglazkov]] (-0600/-0500)&lt;br /&gt;
* [[User:DrewMcLellan|drewinthehead]] (+0000/+0100)&lt;br /&gt;
* [[User:EdwardOConnor|hober]] (-0800/-0700)&lt;br /&gt;
* [[User:Enric|enric]] (-0800/-0700)&lt;br /&gt;
* [[User:Evan|evanpro]] (-0500)&lt;br /&gt;
* [[User:Fil|Fil]] (+0200)&lt;br /&gt;
* [[User:Grantbow|Grantbow]] (-0800/-0700)&lt;br /&gt;
* [[User:Hlb|hlb]] (+0800-0700)&lt;br /&gt;
* [[User:IanHickson|Hixie]] (-0800/-0700)&lt;br /&gt;
* [[User:Izo|IZO]]&lt;br /&gt;
* [[User:JoeGregorio|jcgregorio]]&lt;br /&gt;
* [[User:Jonathan_Arkell|jonnay]] (-0700/0600)&lt;br /&gt;
* [[User:JasonK|jkridner]]] (-0600/-0500)&lt;br /&gt;
* [[User:Kapowaz|kapowaz]] (+0000/+0100)&lt;br /&gt;
* [[User:Keri Henare|kerihenare]] (+1200)&lt;br /&gt;
* [http://epeus.blogspot.com/ KevinMarks] (-0800/-0700)&lt;br /&gt;
* [[User:Mark Mansour|Mark Mansour]] (+1100)&lt;br /&gt;
* [[User:MarkNormanFrancis|Mark Norman Francis]] (+0000/+0100)&lt;br /&gt;
* [[User:CiaranMc|McNulty]] (+0000/+0100)&lt;br /&gt;
* [[User:neuro|neuro`]]&lt;br /&gt;
* [[User:Phae|Phae]] (+0000/+0100)&lt;br /&gt;
* [[User:PriitLaes|plaes]] (+0200/+0300)&lt;br /&gt;
* [[User:DavidOsolkowski|qid]] (-0500)&lt;br /&gt;
* [[User:Remi|Remi]] (-0500/-0400)&lt;br /&gt;
* [[User:RobertBachmann|RobertBachmann]] (+0100/+0200)&lt;br /&gt;
** Office hours: &amp;lt;del&amp;gt;Wednesday, 18:00-20:00 UTC&amp;lt;/del&amp;gt; (Currently no office hours)&lt;br /&gt;
* [[User:Ronnos|Ron Kok]] (+0000)&lt;br /&gt;
* [[User:RyanKing|kingryan]] (-0800/-0700)&lt;br /&gt;
** [http://theryanking.com/blog/archives/2006/04/19/office-hours/ Office hours]: Wednesday, 21:00 UTC&lt;br /&gt;
* [[User:Csarven|csarven]] (-0500/-0400)&lt;br /&gt;
* [[User:Dana Benson|Snowden]] (-0800/-0700)&lt;br /&gt;
* [[User:Steve Ganz|SteveGanz]] (-0800/-0700)&lt;br /&gt;
* [[User:Tantek|Tantek]] (-0800/-0700)&lt;br /&gt;
* [[User:Trovster|trovster]] (-0800/-0700)&lt;br /&gt;
* [[User:Dan Kubb|dkubb]] (-0800/-0700)&lt;br /&gt;
* [[User:Ed Summers|edsu]] (-0500/-0400)&lt;br /&gt;
* [[User:Smackman|Steve Farrell]] (-0800/-0700)&lt;br /&gt;
* [[User:Enric|Enric]] (-0800/-0700)&lt;br /&gt;
* [[User:Charlvn|Charl]] (+0200/+0200)&lt;br /&gt;
* [[User:MarkoMrdjenovic|friedcell]] (+0100/+0200)&lt;br /&gt;
* [[User:Vant|vant]] (+0900)&lt;br /&gt;
* [[User:KrissWatt|VoodooChild]] (+0000/+0100)&lt;br /&gt;
* [[User:IwaiMasaharu|iwaim]] (+0900)&lt;br /&gt;
* [[User:Richard Conyard|WhiskeyM]] (+0000)&lt;br /&gt;
* [[User:Veeliam|William Lawrence]] (-0800/-0700)&lt;br /&gt;
* [[User:Ianloic|yakk]] (-0800/-0700)&lt;br /&gt;
* [[User:Ashley|Ashley]] (+1000)&lt;br /&gt;
* [[User:SuperPhly|SuperPhly]] (-600/-500)&lt;br /&gt;
* [[User:Colin_Barrett|cbarrett]] (-1000)&lt;br /&gt;
* [[User:HenriBergius|bergie]] (+0200/+0300)&lt;br /&gt;
* [[User:JacksonWilkinson|whafro]] (-0500/-0400)&lt;br /&gt;
* [[User:Adactio|Jeremy Keith]] (+0000)&lt;br /&gt;
* [[User:JulianStahn|Julian Stahnke]] (+0000)&lt;/div&gt;</summary>
		<author><name>JulianStahnke</name></author>
	</entry>
</feed>