<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Spiritquest</id>
	<title>Microformats Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Spiritquest"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/Special:Contributions/Spiritquest"/>
	<updated>2026-04-24T09:17:01Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=value-class-pattern-brainstorming&amp;diff=42292</id>
		<title>value-class-pattern-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=value-class-pattern-brainstorming&amp;diff=42292"/>
		<updated>2010-04-07T08:21:56Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: /* feedback */ added support to the brainstorm / proposal&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;value excerption pattern brainstorming&amp;lt;/entry-title&amp;gt;&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;
== details for handling specific elements ==&lt;br /&gt;
None currently.&lt;br /&gt;
&lt;br /&gt;
== details for handling specific property types ==&lt;br /&gt;
&lt;br /&gt;
=== duration ===&lt;br /&gt;
[[hCalendar]] has a duration property which takes the [http://en.wikipedia.org/wiki/ISO_8601#Durations ISO8601 duration format].&lt;br /&gt;
&lt;br /&gt;
[[hAudio]] also has a duration property, based on the hCalendar property.&lt;br /&gt;
&lt;br /&gt;
In both cases, the [[abbr-design-pattern]] is often used to move the less human friendly ISO8601 duration (e.g. &amp;quot;PT1H30M&amp;quot;) into the title attribute, while displaying more human friendly text (e.g. &amp;quot;1hr 30mins&amp;quot;). Based on real world example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;abbr class=&amp;quot;duration&amp;quot; title=&amp;quot;PT1H30M&amp;quot;&amp;gt;1hr 30mins&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://www.stereoartist.com/sfl09/hcal1.html&lt;br /&gt;
&lt;br /&gt;
Unfortunately the text &amp;quot;PT1H30M&amp;quot; is not very human-readable (e.g. in a tooltip) or listenable (e.g. when read by a screen reader), thus it probably shouldn't be in the title attribute.&lt;br /&gt;
&lt;br /&gt;
In hAudio, durations of songs and albums more often provide minutes and seconds (see &amp;quot;length&amp;quot; in [[audio-info-examples]]), e.g. &amp;quot;2:46&amp;quot; meaning 2 minutes, 46 seconds.&lt;br /&gt;
&lt;br /&gt;
==== ISO8601 alternate duration format ====&lt;br /&gt;
ISO8601 has the following alternate duration format:&lt;br /&gt;
&lt;br /&gt;
* P[YYYY]-[MM]-[DD]T[hh]:[mm]:[ss]&lt;br /&gt;
&lt;br /&gt;
Thus the example above:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;PT1H30M&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
could instead be represented as &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;PT1:30:00&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
which is a bit more readable, and yet still likely to be confusing due to the &amp;quot;PT&amp;quot; prefix.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== hours minutes seconds ====&lt;br /&gt;
Given the common use cases from hCalendar of hours and minutes, and from hAudio of minutes and seconds it makes sense to take the ISO8601 alternate duration format and simply permit it without the &amp;quot;PT&amp;quot; prefix, e.g.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;duration&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;1:30:00&amp;quot;&amp;gt;1hr 30mins&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Advantages.''' This new title attribute value has the advantages of&lt;br /&gt;
* more human readable. &amp;quot;1:30:00&amp;quot; is more human readable than &amp;quot;PT1:30:00&amp;quot; and certainly than &amp;quot;PT1H30M&amp;quot;.&lt;br /&gt;
* more international. &amp;quot;1:30:00&amp;quot; is more internationally understandable than even the included text from the example of &amp;quot;1hr 30mins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Thus the author could instead provide the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;duration&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;1:30:00&amp;quot;&amp;gt;1:30&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where the more visible text &amp;quot;1:30&amp;quot; is understand by humans from the context of the site (a list of films) to be in the units of hours and minutes.&lt;br /&gt;
&lt;br /&gt;
Thus the proposal would be to add a section to [[value-class-pattern]] accordingly (with heading levels adjusted accordingly)&lt;br /&gt;
&lt;br /&gt;
===== Duration values =====&lt;br /&gt;
&lt;br /&gt;
====== Summary ======&lt;br /&gt;
Some microformats properties expect an ISO8601 duration value, e.g. [[hCalendar]] and [[hAudio]]'s &amp;lt;code&amp;gt;duration&amp;lt;/code&amp;gt; property.&lt;br /&gt;
&lt;br /&gt;
Authors may use the value class pattern to specify duration in more human friendly format.&lt;br /&gt;
&lt;br /&gt;
Example, this hCalendar 'duration' property with 'value' element: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The dinner will be  &lt;br /&gt;
    &amp;lt;span class=&amp;quot;duration&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;1:30:00&amp;quot;&amp;gt;an hour and 30 minutes long&amp;lt;/abbr&amp;gt; &lt;br /&gt;
    &amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
produces the following 'duration' value:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
1:30:00&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and iCalendar converters produce the following DURATION:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
DURATION:PT1H30M&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====== Duration parsing ======&lt;br /&gt;
For all duration properties (as defined in their respective microformats specifications), the following rules apply in addition to (and in some cases replacing) the above value class pattern parsing rules.&lt;br /&gt;
&lt;br /&gt;
When a &amp;quot;value&amp;quot; element is found, parse a value from the element as follows:&lt;br /&gt;
* if the element is an &amp;lt;code&amp;gt;img&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt; element, then use the element's &amp;lt;code&amp;gt;alt&amp;lt;/code&amp;gt; attribute value.&lt;br /&gt;
* if the element is an &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt; element, then use the element's &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute value.&lt;br /&gt;
* for any other element, use its inner-text.&lt;br /&gt;
* if the value has an hours minutes seconds duration, specifically, fits any of the following:&lt;br /&gt;
** HH:MM:SS&lt;br /&gt;
** :MM:SS&lt;br /&gt;
** HH is the optional number of &amp;quot;hours&amp;quot; in the duration. if omitted, infer 0.&lt;br /&gt;
** MM are the minutes from 00 to 59&lt;br /&gt;
** SS are the seconds from 00 to 59 (60 for a leap second).&lt;br /&gt;
** For the purposes of the value class pattern, the colons &amp;quot;:&amp;quot; separating the hour, minutes, seconds are required. &lt;br /&gt;
** ignore any further &amp;quot;value&amp;quot; elements that specify the duration.&lt;br /&gt;
&lt;br /&gt;
====== format specific details ======&lt;br /&gt;
The following are format specific details and &amp;lt;span id=&amp;quot;format_specific_optimizations&amp;quot;&amp;gt;optimizations&amp;lt;/span&amp;gt; that make use of the value-class-pattern.&lt;br /&gt;
&lt;br /&gt;
====== iCalendar generators ======&lt;br /&gt;
microformats implementations which consume [[hCalendar]] and generate iCalendar {{must}} in addition:&lt;br /&gt;
# convert the duration to ISO8601 duration format&lt;br /&gt;
&lt;br /&gt;
===== duration property incorporation =====&lt;br /&gt;
If this brainstorm proposal is accepted for the value class pattern, it would be even better if it was permitted directly on the &amp;quot;duration&amp;quot; property and incorporated as such into [[hCalendar]] (i.e. into v1.0.1), [[hAudio]], and any other microformats specifications that have a &amp;quot;duration&amp;quot; property ([[hRecipe]]?).&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]] 02:12, 7 April 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
===== feedback =====&lt;br /&gt;
Please indicate your support/ambivalence/disapproval of this proposal with a +1/0/-1 followed by your name (use &amp;quot;&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;&amp;quot;) and optionally reasons for your opinion.&lt;br /&gt;
&lt;br /&gt;
* +1 [[User:Tantek|Tantek]] 02:19, 7 April 2010 (UTC) (obviously, as the author :)&lt;br /&gt;
* +1 [[User:Spiritquest|Ketan]] [[User:Spiritquest|spiritquest]] 08:21, 7 April 2010 (UTC) (Quizzed Tantek about its use and the proposals above make sense.)&lt;br /&gt;
&lt;br /&gt;
Please feel free to provide additional input as well!&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Thanks, [[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
== Condensed &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
It has been proposed that the [[value-class-pattern]] could be made less verbose by allowing the &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; element to be included on the same element as the property declaration. For example:&lt;br /&gt;
&lt;br /&gt;
Currently, you can write this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang='html4strict'&amp;gt;&lt;br /&gt;
&amp;lt;p class='dtstart'&amp;gt;&amp;lt;span class='value-title' title='2009-06-21'&amp;gt;Sunday&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Condensing would enable this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang='html4strict'&amp;gt;&lt;br /&gt;
&amp;lt;p class='dtstart value-title' title='2009-06-21'&amp;gt;Sunday&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It could also allow for non-visible data to be published less verbosely. e.g. in hReview:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang='html4strict'&amp;gt;&lt;br /&gt;
&amp;lt;span class='best value-title' title='10'&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Advantages===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class='discussion'&amp;gt;&lt;br /&gt;
* Publish less code.&lt;br /&gt;
* Answers unverified claims that element nesting confuses authors. Examples needed.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Disadvantages===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class='discussion issues'&amp;gt;&lt;br /&gt;
* Adds an additional variant to a syntax, raising the barrier to entry and risking author confusion when different documentation uses different syntax. --[[User:BenWard|BenWard]] 02:38, 22 June 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Implied &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
In some situations of using the value-title pattern to publish non-visible data (such as an implied &amp;lt;code&amp;gt;best&amp;lt;/code&amp;gt; rating in [[hReview]], mark-up could be reduced. E.g rather than:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang='html4strict'&amp;gt;&lt;br /&gt;
&amp;lt;span class='best'&amp;gt;&amp;lt;span class='value-title' title='10'&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Optimize to:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang='html4strict'&amp;gt;&lt;br /&gt;
&amp;lt;span class='best' title='10'&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There is no need to explicitly mention the &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt;, instead it is implied by the element itself being empty (or containing a single collapsable white-space character).&lt;br /&gt;
&lt;br /&gt;
===Advantages===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=discussion&amp;gt;&lt;br /&gt;
* Publish less code.&lt;br /&gt;
* Answers unverified claims that element nesting confuses authors. Examples needed.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Disadvantages===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class='discussion issues'&amp;gt;&lt;br /&gt;
* Adds an additional variant to a syntax, raising the barrier to entry and risking author confusion when different documentation uses different syntax. --[[User:BenWard|BenWard]] 02:38, 22 June 2009 (UTC)&lt;br /&gt;
* Is it more confusing to see this sort of optimization (which will only apply to certain properties) without an explicit class-name? The presence of &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; provides some self-documentation to the code. --[[User:BenWard|BenWard]] 02:38, 22 June 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Accepted ==&lt;br /&gt;
The following brainstorm proposals have been accepted are written up more formally on the [[value-class-pattern]] page.  They are included here merely for historical reference.&lt;br /&gt;
&lt;br /&gt;
=== date and time separation ===&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;
&amp;lt;div class=&amp;quot;discussion issues&amp;quot;&amp;gt;&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;
*#** If it is a requirement for the publisher that no tooltip whatsoever be displayed, then the publisher should consider using [[value-class-pattern#Using_value-title_to_publish_machine-data|value-title]] to publish the data in an empty first-child span as specified in the [[value-class-pattern#Using_value-title_to_publish_machine-data|value-title pattern]].&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;
*# In some cases this can be addressed by improving authoring examples, and helping practices improve with experience.&lt;br /&gt;
*# Alternatively, for cases like these, the [[value-class-pattern#Using_value-title_to_publish_machine-data|value-title pattern]] can be used to include the precise ISO8601 date or datetime immediately adjacent to the informal date or datetime reference like &amp;quot;today&amp;quot; or &amp;quot;tonight&amp;quot;.&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;
&amp;lt;/div&amp;gt;&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;
&lt;br /&gt;
issue:&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&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;
**** ACCEPTED RESOLVED. The RFC states &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Type name: REV&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;Type purpose: To specify revision information about the current vCard.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt; which thus implies the REV property applies to the entire vCard, not just portions thereof. I've updated the [[hcard#Singular_vs._Plural_Properties|hCard singular properties accordingly]], and note that the [[hcard-singular-properties#rev|explanation for why rev is singular]] was already updated - just added that same RFC text as quoted above. [[User:Tantek|Tantek]] 00:36, 2 May 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&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;
Much of the above was derived from [http://rbach.priv.at/Microformats/IRC/2008-06-24#T161740 a lengthy discussion on IRC].&lt;br /&gt;
&lt;br /&gt;
==== discussion ====&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;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;
******* REJECTED THEORETICAL AND TANGENT. There is a clear distinction between *type* data and *content* data in the concrete examples of both HTML and hCard (and vCard from which it derived its distinctions). The expression of a &amp;quot;continuum&amp;quot; and the hypothetical examples given to justify the expression are all purely theoretical (rather than real and pragmatic), and thus are not worthy of being the basis of an issue. In addition, such a theoretical continuation of discussion is tangential to the original issue raised (publishers wanting to publish dark data), and thus is rejected on that basis as well. [[User:Tantek|Tantek]] 00:51, 2 May 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== date time separation test ====&lt;br /&gt;
In order to determine the feasibility of this pattern, it's useful to try a few test cases with various microformat examples:&lt;br /&gt;
&lt;br /&gt;
* [[value-excerption-dt-separation-test]] (in progress)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Please take a look and report your results on that page.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== enabling more use of title attributes ==&lt;br /&gt;
&lt;br /&gt;
===parsing &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; from empty &amp;lt;code&amp;gt;value&amp;lt;/code&amp;gt; elements===&lt;br /&gt;
&lt;br /&gt;
As a solution to the invisible data requirements sometimes presented by [[machine-data]] in microformats, a parsing rule is proposed where the &amp;lt;code&amp;gt;value&amp;lt;/code&amp;gt; element is &amp;lt;em&amp;gt;empty&amp;lt;/em&amp;gt; (contains no non-whitespace characters), the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute instead be parsed.&lt;br /&gt;
&lt;br /&gt;
e.g. &amp;lt;code&amp;gt;&amp;amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;Tuesday the 24th at 6pm &amp;amp;lt;span class=&amp;quot;value&amp;quot; title=&amp;quot;20080624T180000+1000&amp;quot;&amp;gt;&amp;amp;lt;/span&amp;gt;lt;/span&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that due to a quirk in parsers, this technique can already be used in some parsers where the empty &amp;lt;code&amp;gt;value&amp;lt;/code&amp;gt; node is also an &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt; element. That is semantically incorrect use of &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt;, though.&lt;br /&gt;
&lt;br /&gt;
====resolution notes====&lt;br /&gt;
&lt;br /&gt;
* This is parsable, but needs to be specced precisely.&lt;br /&gt;
* Suggest restricting to instances where a single &amp;lt;code&amp;gt;value&amp;lt;/code&amp;gt; element exists, e.g. &lt;br /&gt;
** Disallow concatenation of multiple non-visible embedded values&lt;br /&gt;
** Disallow embedded non-visible values from being appended to visible data.&lt;br /&gt;
* This pattern exists to solve the [[machine-data]] problem, and restricting it more will discourage it being mis-used for hiding other, useful data&lt;br /&gt;
** Restrict the value element to be the first-child (excluding white-space text-nodes) of a µf property element, forcing the data to be kept physically close to the µf property in code. Keeps data close, helps maintenance issues. Intends to alleviate some invisible data principal concerns.&lt;br /&gt;
** Require that only the machine-data value  and its human form be contained within the microformat property; the µf property should not include arbitrary date&lt;br /&gt;
*** Include something to effect of ‘parsers may attempt to validate the human form against the machine form’ (PHP has a human date parsing function, for example)&lt;br /&gt;
** Restrict opt-in to specific properties. Do not allow it to be parsed globally. Fail parsers which implement it globally.&lt;br /&gt;
* Regarding accessibility, have confirmation that the empty element will be ignored (''Thank you'': James Craig, Gez Lemon, Bruce Lawson): “JAWS and Window-Eyes announce the title attribute for an empty abbr is used and verbosity is set to ‘expand abbreviations’, but neither read the title attribute on an empty span.”&lt;br /&gt;
&lt;br /&gt;
====issues====&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion issues&amp;quot;&amp;gt;&lt;br /&gt;
* '''Violates the microformats [[principle]] of visible data.''' Numerous previous efforts (e.g. markup in comments etc.) have walked down that path of &amp;quot;dark data&amp;quot; and failed in practice. We must hold ourselves to higher standards than any XML/RDF solution.  It's part of what sets microformats apart from so many other failed efforts at data representation on the web. We must not go down the path of dark data. IMHO that principle is inviolable for [[microformats]]. [[User:Tantek|Tantek]]&lt;br /&gt;
** The approach here is that we have ''exceptional'' situations where we are requiring data to be duplicated for machines. They are exceptions which have existed in microformats since hCard, and this is a pattern to handle those exceptions and '''only''' those exceptions in response to the problems people have publishing them. The specification for this could be written to make it a per-property opt-in device, only for those properties identified above. ''This is not a ‘generic data embedding’ device'' and in line with the cited principals, should not be allowed to become one. --[[User:BenWard|BenWard]] 05:17, 25 Jun 2008 (PDT)&lt;br /&gt;
** An alternative, I suppose, would be to recognise all of the above data format examples as being in violation of the microformats principal, since authors are hiding them in favour of their own content. Every instance of fixed data formats in microformats that force authors to break the invisible data principal would need to be eliminated in favour of accessible, i18n compatible replacements, including those in hCard which are 1:1 mappings from vCard. We _could_ undertake that, but previous discussions (people being advised to misuse ABBR for translation of the vCard telephone types, for example) have already suggested that supporting the visible publishing is too complex. --[[User:BenWard|BenWard]] 05:17, 25 Jun 2008 (PDT)&lt;br /&gt;
** Additionally, the use of terms such as ‘dark data’ is inappropriate for this discussion, which is focused on functional, practical solutions to the identified problem. The term is emotive, and aggressive toward other, completely unrelated technologies (such as RDF) which is irrelevant to this solving this issue. Precisely, the machine-data in this technique is ‘non-visible machine-data’, and is being approached with specific regard to the microformats principal of ''design for humans first''. --[[User:BenWard|BenWard]] 05:34, 26 Jun 2008 (PDT)&lt;br /&gt;
* '''Worsens the [[principles#related|DRY]] violation''' by separating the human visible version and machine readable version into separate elements.  Duplicate data itself is bad, but at least by keeping the duplicates local on the same element (as the existing abbr-pattern does), the risk of drift/divergence is reduced. The greater the distance in content of the duplicates, the greater the risk of drift/divergence, and thus the lower the quality of data. This has been illustrated by the divergence of invisible metadata in the head of a document versus the content in the body, and even more so across documents.&lt;br /&gt;
**The machine-data form is kept as a sibling of the human form, and in distance in code, is not much further away than the data stored on a single elements &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute. Further, the specification for this could demand the value element be placed as the _first child_ of the parent property, forcing it to be published immediately after the property element. --[[User:BenWard|BenWard]] 05:17, 25 Jun 2008 (PDT)&lt;br /&gt;
* '''Some parsers may strip empty inline elements''' (particularly those that run incoming HTML through [http://tidy.sf.net Tidy] to convert it into well-formed XML). A workaround may be to allow (or even require) hard white space (i.e. &amp;lt;code&amp;gt;&amp;amp;amp;nbsp;&amp;lt;/code&amp;gt;) within the element with class='value&amp;quot;.&lt;br /&gt;
**It is, however, trivial to patch and build Tidy not to do this (keeping empty elements where that element also has a class attribute). Parser writers need to feed back on whether using a custom build is impossible to their solution, but since Tidy can be made to work, the problem can likely be alleviated. Ben Ward has put up an experimental build of Tidy with patched element-dropping behavior here: [http://ben-ward.co.uk/files/tidy-microformats.zip tidy-microformats.zip]&lt;br /&gt;
*** Tidy is not just used in parsers, but also by publishers, as part of CMSes, etc.&lt;br /&gt;
* '''WYSIWYG editors''' - this might present a problem in these editors in terms of allowing the user to change the value of the title of an empty span. Some of them allow editing title attributes of some elements, namely &amp;lt;A&amp;gt;, &amp;lt;IMG&amp;gt; and not much more. Needs to be properly researched, but is this an issue? Should we care about default WYSIWYG deployments? Or leave that for microformats-aware WYSIWYG versions, they would allow editing this span somehow... [User:Andr3|Andr3]] 04:38, 7 Nov 2008 (GMT)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ‘&amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt;’ ===&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.&lt;br /&gt;
&lt;br /&gt;
A more restrictive variant of the previous &amp;quot;parsing title from empty value elements&amp;quot; brainstorm is to introduce a new value excerption class name and some rules designed to reduce the negative impact of the disadvantages/issues noted above.&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;
This &amp;quot;valuetitle&amp;quot; variant was suggested on 2008-08-30 by [[User:Tantek|Tantek]] in a discussion with [[User:BenWard|Ben Ward]], derived from the previous brainstorm over parsing of title from empty elements — this pattern could also be used with empty elements.&lt;br /&gt;
&lt;br /&gt;
When using an ''empty'' element with the &amp;quot;valuetitle&amp;quot; classname (e.g. to avoid tooltip/hover effects if that is desired), it must be the '''first child element''' of the property element. E.g. (whitespace added for illustrate nesting/hierarchy)&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;&amp;lt;/span&amp;gt;&lt;br /&gt;
 mobile&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;
==== advantages ====&lt;br /&gt;
* Avoids confusing existing parser's use of the class=&amp;quot;value&amp;quot; excerption pattern by introducing a new class name for this specific purpose.&lt;br /&gt;
* Reduces some of the DRY violation impact by encouraging the tight binding of the property element (the element with the property name class name, e.g. the &amp;lt;code&amp;gt;span class=&amp;quot;type&amp;quot;&amp;lt;/code&amp;gt; in the example) to the element containing the format-specific data while encouraging the adjacent proximity of the human readable duplicate.&lt;br /&gt;
&lt;br /&gt;
==== value-title test ====&lt;br /&gt;
[[User:BenWard|Ben Ward]] has updated this brainstorm to use &amp;quot;value-title&amp;quot; per microformats [[naming-convention#Some_Details|naming principles for compound words]] and created some test cases:&lt;br /&gt;
&lt;br /&gt;
* [[value-excerption-value-title-test]]&lt;br /&gt;
&lt;br /&gt;
Please take a look and report your results on that page.&lt;br /&gt;
&lt;br /&gt;
==== previous similar proposals ====&lt;br /&gt;
&amp;lt;div class=discussion&amp;gt;&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;
** Agreed. ‘Processing instruction’ classenames are ugly and undesirable. Class should always be descriptive of the content. --[[User:BenWard|BenWard]] 05:42, 14 January 2009 (UTC) &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Rejected ==&lt;br /&gt;
The following brainstorm proposals have been rejected for various reasons (included inline) and are included here to hopefully avoid going down the same paths again.&lt;br /&gt;
&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;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&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;
*** IE6 and IE7 (as tested on virtual machines on [[User:BenWard|Ben Ward]]'s computer) still trigger the warning message, but do properly display &amp;quot;visible text&amp;quot;.  It appears this may happen for *any* inline markup use of the &amp;lt;code&amp;gt;object&amp;lt;/code&amp;gt; element due to Microsoft's attempting to &amp;quot;[http://jritmeijer.spaces.live.com/blog/cns!8A48A27460FB898A!372.entry avoid paying patent whores such as Eolas hundreds of millions of dollars for something they did not invent in the first place.]&amp;quot; This would seem to imply that we cannot depend on any inline use of object for any markup solutions. We should still specify what happens with object for parsing purposes, and then document the current/past implementation/browser problems with object on another page like [[object-warnings]]. [[User:Tantek|Tantek]] 14:36, 23 Sep 2008 (PDT)&lt;br /&gt;
*** Safari 2 still puts an empty box in place of the object, and fails to display &amp;quot;visible text&amp;quot;.&lt;br /&gt;
&amp;lt;/div&amp;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;
* 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;
&amp;lt;div class=&amp;quot;discussion issues&amp;quot;&amp;gt;&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. --[[User:BenWard|BenWard]] 20:17, 26 Aug 2008 (PDT)&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. --[[User:Tantek|Tantek]] 03:07, 27 Aug 2008 (PDT)&lt;br /&gt;
&amp;lt;/div&amp;gt;&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;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;type data-cell&amp;quot;&amp;gt;Mobile:&amp;lt;/span&amp;gt;&amp;lt;/nowiki&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;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;type&amp;quot; title=&amp;quot;data:cell&amp;quot;&amp;gt;Mobile&amp;lt;/span&amp;gt;&amp;lt;/nowiki&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;
====== advantages ======&lt;br /&gt;
None unique to this variant.&lt;br /&gt;
===== no previous iterations =====&lt;br /&gt;
==== inspiration ====&lt;br /&gt;
Ben Ward and Tantek Çelik decided to explore other markup possibilities beyond use of empty span elements in the hopes that more semantic alternatives could be found.&lt;br /&gt;
&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;
* [[value-excerption-dt-separation-test]]&lt;br /&gt;
* [[value-excerption-value-title-test]]&lt;br /&gt;
* [[hcard#Value_excerpting|hCard: Value Excepting]]&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hlisting-brainstorming&amp;diff=40976</id>
		<title>hlisting-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hlisting-brainstorming&amp;diff=40976"/>
		<updated>2009-10-08T09:03:35Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: /* Items changed: */  spelling correction&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;listing microformat brainstorming &amp;lt;/entry-title&amp;gt;&lt;br /&gt;
This is brainstorming for a [[hlisting]] microformat per the [[process]].&lt;br /&gt;
&lt;br /&gt;
== proposed schema revisions ==&lt;br /&gt;
=== Revised Base Schema Elements (proposed, revised by [[User:JayMyers|Jay Myers]] 16:55, 29 Jun 2009 (UTC)) ===&lt;br /&gt;
&lt;br /&gt;
*hListing (hlisting)&lt;br /&gt;
** listing action. optional. one or more tags, suggested set: sell | rent | trade | meet | announce | offer | wanted | event | service&lt;br /&gt;
** '''lister.''' required. hCard | (fn || email || url || tel).&lt;br /&gt;
** dtlisted. optional. ISO8601 absolute date time.&lt;br /&gt;
** dtexpired. optional. ISO8601 absolute date time.&lt;br /&gt;
** price. optional. text. [should include a floating-point number with optional ISO currency codes] - see the currency proposal&lt;br /&gt;
** item info. optional. (fn || url || photo || geo || adr) | hCard (for person or business).&lt;br /&gt;
** summary. optional. text.&lt;br /&gt;
** '''description.''' required. text with optional valid XHTML markup.&lt;br /&gt;
** item tags. optional. keywords or phrases describing the item being offered, using rel-tag&lt;br /&gt;
** permalink. optional.&lt;br /&gt;
** availability. optional. text.&lt;br /&gt;
** condition. optional. text. examples: 'new', 'used', 'refurbished'.&lt;br /&gt;
** shipping. optional. text. text describing shipping and fulfillment&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
Please see [[hlisting-examples|hListing examples page]] for analysis of 80/20 use case for new attributes availability, condition and shipping. I believe condition should still be considered even though it misses the 80/20 use case mark (71.2% based on current analysis) as it is included in most product-specific data submission services (e.g., Yahoo Product Submit, Google Base).   &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Revised Base Schema Elements (proposed) ===&lt;br /&gt;
&lt;br /&gt;
*hListing (hlisting)&lt;br /&gt;
** listing action. optional. one or more tags, suggested set: sell | rent | trade | meet | announce | offer | wanted | event | service&lt;br /&gt;
** lister. optional. hCard | (fn || email || url || tel).&lt;br /&gt;
** dtlisted. optional. ISO8601 absolute date time.&lt;br /&gt;
** dtexpired. optional. ISO8601 absolute date time.&lt;br /&gt;
** price. optional. text. [should include a floating-point number with optional ISO currency codes] - see the currency proposal&lt;br /&gt;
** item info. optional. (fn || url || photo || [[geo]] || [[adr]]) |  [[hcard|hCard]] (for person or business). &lt;br /&gt;
** summary. optional. text.&lt;br /&gt;
** '''description'''. required. text with optional valid XHTML markup.&lt;br /&gt;
** item tags. optional. keywords or phrases describing the item being offered, using rel-tag&lt;br /&gt;
** permalink. optional. &lt;br /&gt;
** availability. optional. text.&lt;br /&gt;
** condition. optional. text. examples: 'new', 'used', 'refurbished'.&lt;br /&gt;
** shipping. optional. text. text describing shipping and fulfillment&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Items removed ====&lt;br /&gt;
* version. optional. text.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=discussion&amp;gt;&lt;br /&gt;
* +1 I'm tending to agree with the removal of version, as in practice it has not been necessary for either [[hReview]] or [[hListing]].[[User:Tantek|Tantek]] 17:45, 16 April 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* item info. optional. (fn || url || photo || geo || adr) | hCard (for person or business).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=discussion&amp;gt;&lt;br /&gt;
* Removal of &amp;lt;code&amp;gt;item&amp;lt;/code&amp;gt; seems to be a mistake, as that is used to indicate the item itself being listed. E.g., a nested &amp;lt;code&amp;gt;hProduct&amp;lt;/code&amp;gt; would be &amp;lt;code&amp;gt;&amp;amp;lt;p class='item hproduct'&amp;gt;&amp;amp;lt;/p&amp;gt;&amp;lt;/code&amp;gt;. Removal appears to leave no way to include ''what'' is being listed. --[[User:BenWard|BenWard]] 17:38, 16 April 2009 (UTC)&lt;br /&gt;
** +1 completely agreed with Ben Ward's point. Wide use of [[hReview]] in the [[hreview-examples-in-wild|wild]] has shown that having an explicit &amp;quot;item&amp;quot; is both necessary and works in practice. [[User:Tantek|Tantek]] 17:40, 16 April 2009 (UTC)&lt;br /&gt;
* Indeed it was a mistake... left it out of my edits. Replaced. [[User:JayMyers|JayMyers]] 21:04, 22 April 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Items added ====&lt;br /&gt;
&amp;lt;div class=discussion&amp;gt;&lt;br /&gt;
* Each of the following should cite the analysis made of real world examples that demonstrates the 80%+ use case need, otherwise, they should not be added. [[User:Tantek|Tantek]] 17:45, 16 April 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* availability. optional. text.&lt;br /&gt;
* condition. optional. text. examples: 'new', 'used', 'refurbished'.&lt;br /&gt;
* shipping. optional. text. text describing shipping and fulfillment&lt;br /&gt;
&lt;br /&gt;
==== Items changed: ====&lt;br /&gt;
* listing action =&amp;gt; optional. if omitted, action assumed to be sell &lt;br /&gt;
* lister =&amp;gt; optional. if omitted, the buyer/seller is assumed to be the site where the microformat exists&lt;br /&gt;
&amp;lt;div class=discussion&amp;gt;&lt;br /&gt;
* In that case, an algorithm should be provided for how to determine the hCard for the lister, if no explicit lister is given. [[User:Tantek|Tantek]] 17:45, 16 April 2009 (UTC)&lt;br /&gt;
* Isn't the instruction above (&amp;quot;buyer/seller is assumed to be the site where the microformat exists&amp;quot; itself an algorithm? So, if Target.com has an item for sale and lister isn't specified, you use the domain of the web page containing the markup to identify the seller as &amp;quot;target.com&amp;quot; --Kavi, 6 July 2009&lt;br /&gt;
* Wouldn't it make sense for it remain compulsory? If you are stating that the value reverts to a default in the case of an omission - the requirement is still that the hlisting requires a URI as part of the lister - I feel it should stay so that aggregation of hlisting information is possible outside of the domain it was originally posted on. It therefore ''requires'' this information to exist. Maybe the required property should be the url value and the other properties can be optional. [[User:Spiritquest|Spiritquest]] 19:04, 30 September 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== payment ==&lt;br /&gt;
Use [[rel-payment]] or something similar to indicate payment method for hListing.&lt;br /&gt;
&lt;br /&gt;
== additional transactional details ==&lt;br /&gt;
Per the discussions raised in the [[hproduct-issues|hProduct issues list]], consider provisions for providing transactional details like &amp;quot;shipping&amp;quot; or &amp;quot;buy/payment&amp;quot; attributes or similar for an iteration of hListing.&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [[hListing]]&lt;br /&gt;
* [[hlisting-issues]]&lt;br /&gt;
* [[hlisting-feedback]]&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Spiritquest&amp;diff=40886</id>
		<title>User:Spiritquest</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Spiritquest&amp;diff=40886"/>
		<updated>2009-09-30T21:52:07Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: username&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ketan Majmudar&lt;br /&gt;
Developer, Designer &amp;amp; Semantic Web Lover&lt;br /&gt;
&lt;br /&gt;
my IRC nickanme is ethicaljunction&lt;br /&gt;
&lt;br /&gt;
* Developing [http://www.ethical-junction.org Ethical Junction CIC] - all profiles use hCard&lt;br /&gt;
* Try to incorporate microformats as widely as possible&lt;br /&gt;
* Interested in exploring possibilities in using microformats in other areas&lt;br /&gt;
* hCard or alternative to capture social site usernames and share in an address card type of format&lt;br /&gt;
* eco labels&lt;br /&gt;
* exploring [[hlisting-brainstorming | hListing]] and its usage&lt;br /&gt;
* Am working on a project to explore the use of [[hrecipe | hRecipe]] as well&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I seem to also have created another alias - which is [[User:Ket Majmudar]] - I'm going to try and consolidate my IRC / uf-usernames - not sure how I got into this mess, please bear with me.&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Ket_Majmudar&amp;diff=40885</id>
		<title>User:Ket Majmudar</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Ket_Majmudar&amp;diff=40885"/>
		<updated>2009-09-30T21:50:00Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My IRC username is ethicaljunction (atm)&lt;br /&gt;
&lt;br /&gt;
I'm a web author, designer &amp;amp;  developer&lt;br /&gt;
&lt;br /&gt;
I've integrated hCard into [http://www.ethical-junction.org] - all the members profiles now have hCard markup and pars through technorati to download as vCard.&lt;br /&gt;
&lt;br /&gt;
Interested in getting products and reviews into the site, also interested in the proposal of eco-labels microformat proposal.&lt;br /&gt;
&lt;br /&gt;
I seem to also have created another alias - which is [[User:Spiritquest]] - I'm going to try and consolidate my IRC / uf-usernames - not sure how I got into this mess, please bear with me.&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hlisting-brainstorming&amp;diff=40878</id>
		<title>hlisting-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hlisting-brainstorming&amp;diff=40878"/>
		<updated>2009-09-30T19:04:09Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: /* Items changed: */  discussion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;listing microformat brainstorming &amp;lt;/entry-title&amp;gt;&lt;br /&gt;
This is brainstorming for a [[hlisting]] microformat per the [[process]].&lt;br /&gt;
&lt;br /&gt;
== proposed schema revisions ==&lt;br /&gt;
=== Revised Base Schema Elements (proposed, revised by [[User:JayMyers|Jay Myers]] 16:55, 29 Jun 2009 (UTC)) ===&lt;br /&gt;
&lt;br /&gt;
*hListing (hlisting)&lt;br /&gt;
** listing action. optional. one or more tags, suggested set: sell | rent | trade | meet | announce | offer | wanted | event | service&lt;br /&gt;
** '''lister.''' required. hCard | (fn || email || url || tel).&lt;br /&gt;
** dtlisted. optional. ISO8601 absolute date time.&lt;br /&gt;
** dtexpired. optional. ISO8601 absolute date time.&lt;br /&gt;
** price. optional. text. [should include a floating-point number with optional ISO currency codes] - see the currency proposal&lt;br /&gt;
** item info. optional. (fn || url || photo || geo || adr) | hCard (for person or business).&lt;br /&gt;
** summary. optional. text.&lt;br /&gt;
** '''description.''' required. text with optional valid XHTML markup.&lt;br /&gt;
** item tags. optional. keywords or phrases describing the item being offered, using rel-tag&lt;br /&gt;
** permalink. optional.&lt;br /&gt;
** availability. optional. text.&lt;br /&gt;
** condition. optional. text. examples: 'new', 'used', 'refurbished'.&lt;br /&gt;
** shipping. optional. text. text describing shipping and fulfillment&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
Please see [[hlisting-examples|hListing examples page]] for analysis of 80/20 use case for new attributes availability, condition and shipping. I believe condition should still be considered even though it misses the 80/20 use case mark (71.2% based on current analysis) as it is included in most product-specific data submission services (e.g., Yahoo Product Submit, Google Base).   &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Revised Base Schema Elements (proposed) ===&lt;br /&gt;
&lt;br /&gt;
*hListing (hlisting)&lt;br /&gt;
** listing action. optional. one or more tags, suggested set: sell | rent | trade | meet | announce | offer | wanted | event | service&lt;br /&gt;
** lister. optional. hCard | (fn || email || url || tel).&lt;br /&gt;
** dtlisted. optional. ISO8601 absolute date time.&lt;br /&gt;
** dtexpired. optional. ISO8601 absolute date time.&lt;br /&gt;
** price. optional. text. [should include a floating-point number with optional ISO currency codes] - see the currency proposal&lt;br /&gt;
** item info. optional. (fn || url || photo || [[geo]] || [[adr]]) |  [[hcard|hCard]] (for person or business). &lt;br /&gt;
** summary. optional. text.&lt;br /&gt;
** '''description'''. required. text with optional valid XHTML markup.&lt;br /&gt;
** item tags. optional. keywords or phrases describing the item being offered, using rel-tag&lt;br /&gt;
** permalink. optional. &lt;br /&gt;
** availability. optional. text.&lt;br /&gt;
** condition. optional. text. examples: 'new', 'used', 'refurbished'.&lt;br /&gt;
** shipping. optional. text. text describing shipping and fulfillment&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Items removed ====&lt;br /&gt;
* version. optional. text.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=discussion&amp;gt;&lt;br /&gt;
* +1 I'm tending to agree with the removal of version, as in practice it has not been necessary for either [[hReview]] or [[hListing]].[[User:Tantek|Tantek]] 17:45, 16 April 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* item info. optional. (fn || url || photo || geo || adr) | hCard (for person or business).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=discussion&amp;gt;&lt;br /&gt;
* Removal of &amp;lt;code&amp;gt;item&amp;lt;/code&amp;gt; seems to be a mistake, as that is used to indicate the item itself being listed. E.g., a nested &amp;lt;code&amp;gt;hProduct&amp;lt;/code&amp;gt; would be &amp;lt;code&amp;gt;&amp;amp;lt;p class='item hproduct'&amp;gt;&amp;amp;lt;/p&amp;gt;&amp;lt;/code&amp;gt;. Removal appears to leave no way to include ''what'' is being listed. --[[User:BenWard|BenWard]] 17:38, 16 April 2009 (UTC)&lt;br /&gt;
** +1 completely agreed with Ben Ward's point. Wide use of [[hReview]] in the [[hreview-examples-in-wild|wild]] has shown that having an explicit &amp;quot;item&amp;quot; is both necessary and works in practice. [[User:Tantek|Tantek]] 17:40, 16 April 2009 (UTC)&lt;br /&gt;
* Indeed it was a mistake... left it out of my edits. Replaced. [[User:JayMyers|JayMyers]] 21:04, 22 April 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Items added ====&lt;br /&gt;
&amp;lt;div class=discussion&amp;gt;&lt;br /&gt;
* Each of the following should cite the analysis made of real world examples that demonstrates the 80%+ use case need, otherwise, they should not be added. [[User:Tantek|Tantek]] 17:45, 16 April 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* availability. optional. text.&lt;br /&gt;
* condition. optional. text. examples: 'new', 'used', 'refurbished'.&lt;br /&gt;
* shipping. optional. text. text describing shipping and fulfillment&lt;br /&gt;
&lt;br /&gt;
==== Items changed: ====&lt;br /&gt;
* listing action =&amp;gt; optional. if omitted, action assumed to be sell &lt;br /&gt;
* lister =&amp;gt; optional. if omitted, the buyer/seller is assumed to be the site where the microformat exists&lt;br /&gt;
&amp;lt;div class=discussion&amp;gt;&lt;br /&gt;
* In that case, an algorithm should be provided for how to determine the hCard for the lister, if no explicit lister is given. [[User:Tantek|Tantek]] 17:45, 16 April 2009 (UTC)&lt;br /&gt;
* Isn't the instruction above (&amp;quot;buyer/seller is assumed to be the site where the microformat exists&amp;quot; itself an algorithm? So, if Target.com has an item for sale and lister isn't specified, you use the domain of the web page containing the markup to identify the seller as &amp;quot;target.com&amp;quot; --Kavi, 6 July 2009&lt;br /&gt;
* Wouldn't it make sense for it remain compulsory? If you are stating that the value reverts to a default in teh case of an omission - the requirement is still that the hlisting requires a URI as part of the lister - I feel it should stay so that aggregation of hlisting information is possible outside of the domain it was originally posted on. It therefore ''requires'' this information to exist. Maybe the required property should be the url value and the other properties can be optional. [[User:Spiritquest|Spiritquest]] 19:04, 30 September 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== payment ==&lt;br /&gt;
Use [[rel-payment]] or something similar to indicate payment method for hListing.&lt;br /&gt;
&lt;br /&gt;
== additional transactional details ==&lt;br /&gt;
Per the discussions raised in the [[hproduct-issues|hProduct issues list]], consider provisions for providing transactional details like &amp;quot;shipping&amp;quot; or &amp;quot;buy/payment&amp;quot; attributes or similar for an iteration of hListing.&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [[hListing]]&lt;br /&gt;
* [[hlisting-issues]]&lt;br /&gt;
* [[hlisting-feedback]]&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Spiritquest&amp;diff=40875</id>
		<title>User:Spiritquest</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Spiritquest&amp;diff=40875"/>
		<updated>2009-09-30T18:22:14Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ketan Majmudar&lt;br /&gt;
Developer, Designer &amp;amp; Semantic Web Lover&lt;br /&gt;
* Developing [http://www.ethical-junction.org Ethical Junction CIC] - all profiles use hCard&lt;br /&gt;
* Try to incorporate microformats as widely as possible&lt;br /&gt;
* Interested in exploring possibilities in using microformats in other areas&lt;br /&gt;
* hCard or alternative to capture social site usernames and share in an address card type of format&lt;br /&gt;
* eco labels&lt;br /&gt;
* exploring [[hlisting-brainstorming | hListing]] and its usage&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Spiritquest&amp;diff=40874</id>
		<title>User:Spiritquest</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Spiritquest&amp;diff=40874"/>
		<updated>2009-09-30T18:21:26Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ketan Majmudar&lt;br /&gt;
Developer, Designer &amp;amp; Semantic Web Lover&lt;br /&gt;
* Developing [[http://www.ethical-junction.org |Ethical Junction CIC]] - all profiles use hCard&lt;br /&gt;
* Try to incorporate microformats as widely as possible&lt;br /&gt;
* Interested in exploring possibilities in using microformats in other areas&lt;br /&gt;
* hCard or alternative to capture social site usernames and share in an address card type of format&lt;br /&gt;
* eco labels&lt;br /&gt;
* exploring [hlisting-brainstorming] and its usage&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-examples-in-wild&amp;diff=40873</id>
		<title>hcard-examples-in-wild</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-examples-in-wild&amp;diff=40873"/>
		<updated>2009-09-30T18:18:27Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: /* new and uncategorized examples */ Added website - Ethical Junction to a profile page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;hCard Examples in the wild&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;height:7.5em;text-align:center;font-weight:bold;font-size:larger&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;padding:3em 0;float:left;width:33%&amp;quot;&amp;gt;[[hcard-examples-in-wild#examples_by_category|Want hCards]]&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;padding:3em 0;float:left;width:33%&amp;quot;&amp;gt;[[hcard-examples-in-wild#new_and_uncategorized_examples|Have hCards]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page is an '''informative''' section of the [[hcard|hCard specification]].&lt;br /&gt;
&lt;br /&gt;
The following sites have published [[hcard|hCards]], and thus are a great place to start for anyone looking for examples &amp;quot;in the wild&amp;quot; for inspiration, or try parsing and indexing.&lt;br /&gt;
&lt;br /&gt;
== new and uncategorized examples ==&lt;br /&gt;
'''Have hCard?''' If you have a site with hCard(s), add it to the top of this list. Include at least one URL to a page that includes actual [[hcard|hCard]] markup. Examples without direct links hCard(s) will be removed. Check back after a few days, to see if anyone has found any problems with the examples supplied. Note that examples may be categorized and moved to the grouped section below.&lt;br /&gt;
&lt;br /&gt;
You may want to use these buttons on your pages with hCards. See [[buttons#hCard]] for any recent additions.&lt;br /&gt;
http://www.davidjanes.com/images/mf_hcard.png &amp;lt;!-- was originally http://www.crowley.nl/images/hcard.png --&amp;gt; &amp;lt;!-- http://rbach.priv.at/2006/buttons/hcard.png --&amp;gt; http://www.boogdesign.com/images/buttons/microformat_hcard.png&lt;br /&gt;
&lt;br /&gt;
*[http://www.ethical-junction.org/member/org-2012.html Ethical Junction CIC - Profile page] We use hCard for every organisation on their profile page&lt;br /&gt;
*[http://www.bowtietv.com Bow Tie Television] Uses hCard for contact information on every page and in the contacts section.&lt;br /&gt;
*[http://www.tauruslogistics.co.nz/about/contact Taurus Logistics] Uses hCard for contact information.&lt;br /&gt;
*[http://www.professdiamond.com/ professdiamond] encodes Thai as UTF8 in an inline hCard at the bottom of every page.&lt;br /&gt;
*[http://avonvalleylocalguide.iinet.net.au/ Avon Valley Local Guide] uses hCard for contact information of advertisers.&lt;br /&gt;
*[http://www.arizonafirstresponse.com/ Arizona First Response] uses an hCard on each page footer.&lt;br /&gt;
*[http://dillingham.me.uk/ Iain Dillingham] uses an hCard on each page footer, and has a styled example (with the microformats logo) on his [http://dillingham.me.uk/contact.html contact page].&lt;br /&gt;
*[http://www.pixeflips.com/ Pixelflips Web &amp;amp;amp; Interface Design] hCard is used in the footer of all pages for easy access to contact information.&lt;br /&gt;
*[http://www.herminesperr.at/ Hermine Sperr, Qualified Practitionier of the Grinberg Method&amp;amp;reg; in Wien/Austria] A hcard is used for contact information on every page on her website.&lt;br /&gt;
* [http://www.barnard.edu/ Barnard College] - College faculty profiles use hCard for contact info. Example: [http://www.barnard.edu/faculty/profiles/mehrling_p.html P. Mehrling's profile].&lt;br /&gt;
* [http://www.ivycat.com/ IvyCat Website Services] - Web design &amp;amp; hosting firm uses hCard for business contact info. Example: [http://www.ivycat.com/contact/ Contact Us].&lt;br /&gt;
* [http://www.modeltrainswithlarry.com/ ModelTrainsWithLarry] - Uses hCard for organization and business address. Example: [http://www.modeltrainswithlarry.com/index.php?listing=502 Choo Choo Barn].&lt;br /&gt;
* [http://www.gardeningwithlarry.com/ GardeningWithLarry] - Uses hCard for organization and business address. Example: [http://www.gardeningwithlarry.com/index.php?listing=2681 United States Botanic Garden].&lt;br /&gt;
* [http://abyrvalg.com/ Abyrvalg] - russian city community. Uses hCard to display local businesses address. Example: [http://moscow.abyrvalg.com/biz/faq-cafe FAQ cafe in Moscow].&lt;br /&gt;
* [http://www.jdclark.org/v1 Jordan Clark], from the Swansea area of Wales in the United Kingdom, uses [http://www.jdclark.org/card hcard for contact information].&lt;br /&gt;
* [http://whichtwitterapp.com/ WhichTwitterApp] provides [http://whichtwitterapp.com/reviews/iphone/tweetie reviews of twitter apps] using hCard, hReview, rel-tag and rel-home.&lt;br /&gt;
* [http://www.robinleysen.be/Robin.html Robin Leysen] has a hCard on a separate page. Tried to be as complete as possible. hCard validated with Optimus.&lt;br /&gt;
* [http://www.jay-photographics.de/ Jay Photographics] Photographer from Stuttgart, Germany. The hcard format is used on all pages for contact information.&lt;br /&gt;
* [http://www.uniquesite.co.uk/ UNIQUEsite] Website designer based in Brighton, UK. Uses the hcard format for contact information.&lt;br /&gt;
* [http://www.slideshare.net/ SlideShare] uses hcard to identify its users. see [http://hcard.geekhood.net/?url=http%3A%2F%2Fwww.slideshare.net%2Fkcmani#result Validated hcard] and [http://www.slideshare.net/kcmani Mani's SlideShare profile]&lt;br /&gt;
* [http://chrisruppel.com Chris Ruppel], a web developer in Dallas, TX, uses an hcard for contact information site-wide (as well as XFN)&lt;br /&gt;
* [http://greenspiritgardeners.com/ Green Spirit Gardeners] uses the hCard format throughout the site, including on the portfolio page for [http://greenspiritgardeners.com/portfolio/ commercial clients] and the [http://greenspiritgardeners.com/contact/ contact] page.&lt;br /&gt;
* [http://www.dorettebos.nl/ Dorette Bos Coaching &amp;amp;amp; Training] uses hcard microformat on the [http://www.dorettebos.nl/contact.php contactpage]&lt;br /&gt;
* [http://volunteers.st/ Steffi &amp;amp;amp; the volunteers] is an Austrian band and uses hcards for [http://volunteers.st/ band-contact in the footer] and on the page of the [http://volunteers.st/crew.html crew]&lt;br /&gt;
* [http://www.textundkonzept.at Bernhard Ulrich] an Austrian copywriter uses the hcard format [http://www.textundkonzept.at on all pages of his website] for his contact information&lt;br /&gt;
* [http://www.powerbrand.at/contact.html POWERBRAND] a brand name development agency uses a [http://www.powerbrand.at/contact.html hcard for contact information]&lt;br /&gt;
*[http://www.koerperarbeit.net/ Anita Braunsberger, Qualified Practitionier of the Grinberg Method&amp;amp;reg; in Linz/Austria] A hcard is used for contact information on her website.&lt;br /&gt;
*[http://www.carpetscleansandiego.com Durbin's Carpet Care] displays a vCard for contact information and relevancy&lt;br /&gt;
*[http://www.nationalrural.org/organisation.aspx?id=96a3fc04-5c03-4d31-bb8a-2c55cc29aed4 National Rural Knowledge Exchange] uses an hCard with geo tags when displaying an organisations information&lt;br /&gt;
* [http://www.tinstar.co.uk/about-tinstar-design/contact-tinstar-design.html Tinstar Design] uses an hCard for company contact information.&lt;br /&gt;
* [http://www.interdixit.com/esp/contacto.php Interdixit] uses an hCard for his contact information.&lt;br /&gt;
* [http://www.sisnova.com/ Sisnova] uses hCard for his location pages.&lt;br /&gt;
* [http://www.fenoyarquitectura.com/esp/situacion.php Eduard Fenoy i Associats] uses an hCard.&lt;br /&gt;
* [http://www.deltronic.com/ Deltronic Corporation] of Santa Ana, CA has posted an hCard with geo tags on its [http://www.deltronic.com/contact.shtml Contact] page.  Background image of a contact card reinforces content.  For those without enabling browser extensions, both hCard &amp;quot;logo&amp;quot; and text link make vCard available via external parser.&lt;br /&gt;
* [http://transitionsmft.org/ Transitions Marriage and Family Therapy] has an hCard with geo tags in the footer of each page. There is also an hCard for each counselor on the [http://transitionsmft.org/about.php About] and [http://transitionsmft.org/contact.php Contact]pages.&lt;br /&gt;
* [http://ball.in.th/ ball.in.th] uses hCard to display all usernames.&lt;br /&gt;
* Italian business directory and community portal [http://www.cylex.it/ cylex.it] implements hCard for companies’ contact information with geo tags. Example: [http://www.cylex.it/azienda/computerland-10559319.html company profile]&lt;br /&gt;
* [http://jermy.musicremedy.com/ Jermy Leeuwis MSc] uses an hCard for his contact information.&lt;br /&gt;
* [http://idoinfotech.com Gary Eckstein] uses an hCard for [http://idoinfotech.com/contact contact information].&lt;br /&gt;
* [http://www.drsuarez.net/  Dr. Suarez]  uses hCard on his  [http://www.drsuarez.net/cvitae.html resume page]&lt;br /&gt;
* [http://sourceforge.net/projects/adx/ addressbook.xml] provides hCard support:  [http://elektronengehirn.net/addressbook/addressbook.html adx live example]&lt;br /&gt;
* [http://aplawrence.com APlawrence.com] is using hCard for its [http://aplawrence.com/Links/consultants.html Unix and Linux Consultants Page]&lt;br /&gt;
* [http://www.afonsoduarte.com Afonso Duarte's Portfolio]. Uses an hCard for the contact information.&lt;br /&gt;
* [http://www.rafe.me Web development by Rafe Harwood]. Uses an hCard for the contact line in the footer of every page.&lt;br /&gt;
* [http://www.frogmeat.com Los Angeles Web Design]. Uses an hCard for contact information.&lt;br /&gt;
* [http://www.arbea.basilicata.it/ ARBEA - Agenzia della Regione Basilicata per le Erogazioni in Agricoltura]. hCard is used both for classic [http://www.arbea.basilicata.it/index.php?option=com_contact&amp;amp;view=contact&amp;amp;id=4&amp;amp;Itemid=101 Contact page] and for farms showcase (&amp;quot;Vetrina Aziende Agricole&amp;quot;) available for registered users. I've embedded it modifying Joomla! 1.5 com_contact core component. Users of this CMS can [http://joomlacode.org/gf/project/hcardcontact/ download my patch].&lt;br /&gt;
* [http://trumps.net Los Angeles Search Engine Optimization] Uses hCard in the footer of all pages.&lt;br /&gt;
* [http://reaganvick.com Personal Portfolio of Lance Reagan Vick]. Includes examples of PGP and SSH public keys I have not seen used anywhere else. Hopefully someone finds it helpful!&lt;br /&gt;
* [http://www.fracturedstudios.com Los Angeles Search Engine Optimization] uses hCard to provide address information at bottom of page&lt;br /&gt;
* [http://www.csid.upt.ro/home.php The Distance Learning Center - CSID, &amp;quot;Politehnica&amp;quot; University Timisoara], Romania uses hCard, including geo information, in every page's footer for encoding the University address. hCard is also used for [http://www.csid.upt.ro/personal.php staff] and student contact information.&lt;br /&gt;
* [http://rehabpizza.co.uk Rehab Restaurant] London restaurant, see the sidebar for link to [http://rehabpizza.co.uk/rehab.hcard the hcard].&lt;br /&gt;
* [http://www.outdoorla.org/ Los Angeles Hiking Trails] at the bottom right, our contact information is marked up as an hcard.&lt;br /&gt;
* [http://c7.se Code7 Interactive] uses a hCard for Peter's [http://c7.se/contact contact details].&lt;br /&gt;
* The [http://www.austinartcollective.com Austin Art Collective] is a group dedicated to helping emerging artists sell their artwork online. There is space for users to submit [http://www.austinartcollective.com/gallery/Art-City-Austin.html art gallery reviews] as well, [http://www.austinartcollective.com/austin-galleries/Downtown.html organized by neighborhood] in Austin, TX USA.&lt;br /&gt;
* [http://www.squaremeal.co.uk/ Square Meal Restaurant Guide] uses hCards and hReviews for all restaurant listings and [http://www.squaremeal.co.uk/review/Ristorante_Semplice/1596 visitor reviews].&lt;br /&gt;
* [http://www.vegan-nottingham.co.uk/ Vegan Nottingham Guide] uses hcards, including geo information, for each entry in the guide.&lt;br /&gt;
* [http://www.cgtworld.com/ Cybernation Gamers Tournament] uses hCard in all users profiles like [http://www.cgtworld.com/profile/id-1/ Moonlext's Profile] and in the [http://www.cgtworld.com/about/press.html press page of CGT].&lt;br /&gt;
* [http://fcctlh.org First Christian Church of Tallahassee] Uses hCard in the footer of all pages.&lt;br /&gt;
* [http://www.pseps.com/vc-people/a.cfm The PSEPS Venture Capital and Private Equity Directory] Venture capital and private equity directory using microformats (both for professionals and firms).&lt;br /&gt;
* [http://www.koningskindkadootjes.nl koningskindkadootjes.nl] Hcard located at the bottom of the pages.&lt;br /&gt;
* [http://www.futurix.nl futurix.nl website and webshop development] At the bottom of the pages you'll find the hcard. With a link to technorati the hcard is used to get a vcard out of the hcard.&lt;br /&gt;
* [http://romjon.com/contact-us romjon.com website design &amp;amp;amp; development] Contact Us page using hcard to markup address details. By using Operator, Google Maps and Yahoo! Maps can be made to open with the pointer, respectively, in pretty much and more or less exactly the right place.&lt;br /&gt;
* [http://www.thebeanmachine.nl/ The Bean Machine] at the bottom right, our contact information is marked up as a hcard&lt;br /&gt;
* [http://www.universalmedicalid.com/canada Universal Medical ID Canada] uses hCard to provide address information at bottom of page, as well as on a number of pages within the site.&lt;br /&gt;
* [http://web.mac.com/a.gibson/ Alex Gibson Web Developer] uses hCard for contact info on his homepage.&lt;br /&gt;
* [http://www.wardelldesign.com/html/contact/index.php Wardell Design] uses hCard for contact info with optional vCard download.&lt;br /&gt;
* [http://www.drfosterhealth.co.uk/hospital-guide/  Dr Foster Hospital Guide] uses hCard to mark up hospital addresses. See [http://www.drfosterhealth.co.uk/hospital-guide/hospital/nhs/Basingstoke-and-North-Hampshire-Hospital-366.aspx Basingstoke hospital page] for example.&lt;br /&gt;
* [http://www.drfosterhealth.co.uk/complementary-therapist-guide/ Dr Foster Complementary therapist guide] The [http://www.drfosterhealth.co.uk/complementary-therapist-guide/objectlist.aspx?w=32&amp;amp;p=8&amp;amp;obid=&amp;amp;sub=0 regulatory bodies page] uses hCard for contact details.&lt;br /&gt;
* [http://wayne.edu/ Wayne State University] uses hCard for University address and contact details in the global footer used on most web pages.&lt;br /&gt;
* [http://www.brakemeters.co.nz/ Portable Brake Meters N.Z. Ltd] uses hCard for business address and contact details.&lt;br /&gt;
* [http://www.tallpoppieshamilton.co.nz/ Tall Poppies Florist] uses hCard for business address and contact details.&lt;br /&gt;
* [http://www.livingcolour.co.nz/ Living Colour Florist] uses hCard for business address and contact details. See [http://www.livingcolour.co.nz/Information.aspx Information] page&lt;br /&gt;
* [http://www.dallasfamilyhomes.com/ DallasFamilyHomes.com] uses hCard for property addresses and geo latitude and longitude. See [http://www.dallasfamilyhomes.com/dallas-homes/ Dallas Homes] page for embedded hcards and property detail pages.&lt;br /&gt;
** Pretty good. An improvement might be to use &amp;lt;code&amp;gt;agent&amp;lt;/code&amp;gt; to mark up the agent's contact details, and &amp;lt;code&amp;gt;note&amp;lt;/code&amp;gt; to mark up the property descriptions. [[User:TobyInk|TobyInk]] 16:22, 4 December 2008 (UTC)&lt;br /&gt;
** Thanks for the suggestion Toby.  Added the &amp;lt;code&amp;gt;note&amp;lt;/code&amp;gt; for the description to the homes listings and home detail pages. &lt;br /&gt;
* [http://www.jabz.de/ Jabz | Internet Marketing Agentur] uses hCard for business address and contact details. See [http://www.jabz.de/kontakt/ Contact Page] &lt;br /&gt;
* [http://sixthirteendesign.com/ Six Thirteen Design] uses an embedded hCard along with other contact details on the footer of each page (http://sixthirteendesign.com/) &lt;br /&gt;
** ''Problems:'' page also includes class=&amp;quot;vcard&amp;quot; used in a non-hCard context (for a VCARD download); types for telephone number and e-mail address are improper. [[User:TobyInk|TobyInk]] 16:22, 4 December 2008 (UTC)&lt;br /&gt;
* [http://www.locanto.com/ Locanto - Free Classifieds] uses hcards to geolocate their classified listings. Visit the ad pages for examples.&lt;br /&gt;
* [http://www.yalwa.com/ Yalwa - Local Directory] uses hcard on their directory listings. Example: [http://wiesbaden.yalwa.de/ID_102318221/Yalwa-GmbH.html Yalwa Address Listing] &lt;br /&gt;
* [http://www.fluendi.com/Contact Fluendi Consulting] uses hcard on their contact page (http://www.fluendi.com/Contact) &lt;br /&gt;
* [http://www.badbedbugs.com/ Bed Bugs] uses hcard for their site information. See the [http://www.badbedbugs.com/about-bad-bed-bugs/ about bed bugs] page. &lt;br /&gt;
* [http://www.lawyer-directory.net/ Lawyer Directory] uses hcard for addresses within the lawyer directory. Example [http://www.lawyer-directory.net/lawyer/Grand-Rapids-Bar-Association-Grand-Rapids-law434032.htm listing]&lt;br /&gt;
* [http://www.hanfmuseum.de/about About Hanf Museum Berlin] uses hcard for addresses and contact informations.&lt;br /&gt;
* [http://maps.google.com/ Google Maps] uses hCards for addresses. See [http://googlemapsapi.blogspot.com/2007/06/microformats-in-google-maps.html Microformats in Google Maps].&lt;br /&gt;
* [http://local.mapquest.com/ MapQuest Local] uses hCards for locations, hCalendar for events and supports the draft Geo format when lat/lng data is provided. See [http://blog.mapquest.com/2008/09/25/microformat-support-on-mapquest-local/ Microformat Support on MapQuest Local] for more information.&lt;br /&gt;
* [http://www.whitepoppy.com/ WhitePoppy.com] uses hCard for business address.  See [http://www.whitepoppy.com/Contact.aspx Contact Page]&lt;br /&gt;
* [http://www.hightechcville.com/ HighTechCville] uses hcard to mark up people and organizations.  See [http://www.hightechcville.com/people/72-eric-pugh Eric Pugh] for an example.&lt;br /&gt;
* [http://www.cleanertoday.com/ Cleaner Today] uses hcard to mark up contact details. (see [http://www.cleanertoday.com/Cleaner-Today-a/1.htm Contact Page])&lt;br /&gt;
* [http://www.aduk.org Audience Data UK] use hcard on their [http://www.aduk.org/contact.php contact page] and [http://www.aduk.org/directory.php directory of related organisations]&lt;br /&gt;
* [http://georgebrock.com georgebrock.com] used hcard for George's contact details&lt;br /&gt;
* [http://suggestionbox.com/ SuggestionBox] uses hcard for companies listed on its site. Example: [http://transfercar.suggestionbox.com/ Transfercar].&lt;br /&gt;
* [http://www.vcventerprise.com/wp/ Christopia] uses hcard to mark up contact details. (see [http://vcventerprise.com/wp/contact/])&lt;br /&gt;
* [http://www.rossirovetti.com/ Rossi &amp;amp; Rovetti Flowers in San Francisco] uses hcard to mark up company details in the about us page of the website. (see [http://www.rossirovetti.com/scripts/aboutus.asp example])&lt;br /&gt;
* [http://youtube.com YouTube] uses hcard to identify video contributors (see [http://www.flickr.com/photos/factoryjoe/2793731119/in/photostream/ screenshot]]&lt;br /&gt;
* [http://sewmyheadon.com/contact sewmyheadon.com] uses hcard to mark up contact details on contact and about pages.&lt;br /&gt;
* [http://www.kleinassoc.com/ Klein &amp;amp; Associates - Estate Planning] used hcard to mark up contact details on law firm's contact page.&lt;br /&gt;
* [http://www.markuspage.com/markus/en/contact Markus Kil&amp;amp;aring;s] uses hCard to mark up his contact details.&lt;br /&gt;
* [http://www.southsidewarriors.com/impressum.cfm Southside Warriors] uses hcard to mark up contact details on the imprint page.&lt;br /&gt;
* [http://applesold.com/ Apple Realty - Bristol Real Estate Company] uses hcard to mark up company details in the footer of website.&lt;br /&gt;
* [http://www.surfcom.co.uk/app/contact/ Surf Commission] uses hcard to mark up company contact details with option to download vcard.&lt;br /&gt;
* [http://www.k9yardpatch.com/contact-us/ K9YardPatch] uses hcard to markup company contact details with option to download.&lt;br /&gt;
* [http://www.ecovian.com Ecovian] uses hCard to mark up eco-friendly business contact details, see [http://www.ecovian.com/l/san-francisco-ca/jardiniere-restaurant example]&lt;br /&gt;
* [http://www.dischord.com/ Dischord Records] uses hCard to mark up company contact details in the footer of the home page.&lt;br /&gt;
* [http://www.thinkambient.co.uk/ ThinkAmbient] uses hCard to mark up company contact details.&lt;br /&gt;
* [http://proofile.org/ Proofile] extensive profiles with hCard, vCard, XFN and FOAF support.&lt;br /&gt;
* [http://www.ebycattle.com/horses/index.html Eby Ranch] uses hCard for the different branches of the company, with option to download the vCard.&lt;br /&gt;
* [http://www.clavex.com/contactus.aspx Clavex - A Latin America Financial Institution ] Uses hCard and geo for the contact information. Simple but effective.&lt;br /&gt;
* [http://www.dancefederation.co.uk Dance Federation Salsa Dancing &amp;amp; Jive Dancing Lessons and Events ] Directory for classes, lessons and events users hcard on its lessons and events -- region and url properties are empty. Is that an error?&lt;br /&gt;
* [http://mop.ardom.co.il/contact.php Southern Arava Research and Development Center] uses hCard for their contact details on their contact page and in sub pages with contact info. -- one card has two fn properties.&lt;br /&gt;
* [http://www.itma.org.uk/find-expert/London] - ITMA Trade Mark Attorney search presents results as hCards&lt;br /&gt;
* [http://interkonect.com Interkonect &amp;gt; Website Application Specialists] Office contact details marked up using vcard.&lt;br /&gt;
* [http://library.christchurch.org.nz/ContactUs/ Christchurch City Libraries (N.Z.)]  contact page plus each of our libraries' individual pages linked from [http://library.christchurch.org.nz/Community/Libraries/ Library Locations map].&lt;br /&gt;
* [http://www.leftclick.com/about-us/ LeftClick] uses hcards for contact information.&lt;br /&gt;
* [http://ideas.veer.com/skinny Veer's Skinny Blog] implements hcard for comments and post authors.&lt;br /&gt;
* [http://wolpy.com/missha Wolpy] Uses hcards for contacts and [http://wolpy.com/missha/profile profile]. &lt;br /&gt;
* [http://www.veganworldorder.com/index.php?m=vegguide Vegan World Order | Restaurants ] Uses hcards for restaurant listings. &lt;br /&gt;
* [http://mahalo.com Mahalo] per the announcement [http://www.seanpercival.com/blog/2008/04/23/mahalo-adds-microformats/]&lt;br /&gt;
* [http://www.buythatlocally.com BuyThatLocally ] uses hcards for local business information. &lt;br /&gt;
* [http://www.firmendb.de Firmendb] uses hCard for individual business contacts, e.g. [http://www.firmendb.de/firmen/15592.php]&lt;br /&gt;
* [http://autopendium.com Autopendium] has resources (e.g. suppliers, clubs) marked up with throughout the site, e.g. [http://autopendium.com/clubs/8-Volvo-Enthusiasts-Club]&lt;br /&gt;
* [http://display-block.co.uk Display-Block] uses hCard contacts for People and Companies on my personal Blog.&lt;br /&gt;
* [http://bergantinedesign.us Bergantine Design] has contact information marked up with hCard throughout the site&lt;br /&gt;
* [http://www.codesignville.com/ Codesignville] uses hCard for his contact details.&lt;br /&gt;
* [http://fan-expo.com/Contactez-nous,2  Forum des Acteurs du NumÃ©rique] (a French trade show and exhibition dedicated to content management) uses hCard for contact information (exhibition staff and exhibitors). It also makes use of hCalendar as well as rel-tag when relevant.&lt;br /&gt;
* [http://www.corewhisperer.com/  The Core Whisperer] (Paul Ransom) Geological Services uses hCard for contact information.&lt;br /&gt;
* [http://chairmanship.mfa.md/en/ The regional presidencies] of Republic of Moldova to the SEECP, CEI, MAG-RACVIAC, SEEHN, CEFTA uses hCard on [http://chairmanship.mfa.md/seecp-contacts/ contacts pages]&lt;br /&gt;
* [http://www.viget.com/about/team Viget Labs] - Team page and Individuals' Pages.&lt;br /&gt;
* [http://www.re3elstance.com RE3EL STANCE] - Entrepreneurship: Rebel Style.&lt;br /&gt;
* [http://www.worldeventsguide.com World Events Guide] - Events occuring around the world marked up with hCard.&lt;br /&gt;
* [http://www.amaliahotel.eu/en/contact.html Amalia Hotel Apartments] uses hCard in the contact-info page.&lt;br /&gt;
* [http://www.sslcertificaten.nl/contact.php Xolphin SSL Certificaten] uses hCard for their contact details&lt;br /&gt;
* [http://examples.tobyinkster.co.uk/hcard hCard + RDFa Example] - raising the bar for parsers...&lt;br /&gt;
* [http://competitiondiva.com/ Competition Diva] uses hCard in its page footer (and plans on it for the upcoming profile pages).&lt;br /&gt;
* [http://sanisoft.com/ SANIsoft] uses hCard in its page footer&lt;br /&gt;
* [http://www.bossalive.com BossaLive] uses [[hcard|hCard]] on user profile pages. &lt;br /&gt;
** Example: [http://www.bossalive.com/user/barry Barry's Profile]&lt;br /&gt;
** Also uses rel-tag microformat for tagging music. Publishes rel-tags for album, artist and genre.&lt;br /&gt;
* [http://hillhursthardware.com/ Hillhurst Hardware's] contact info w.logo uses hcard.&lt;br /&gt;
* Birmingham's [http://bigcityplan.org.uk/ Big City Plan] (England)&lt;br /&gt;
* Producer [http://www.sun-treader.com/contact.html Christopher Davis] uses hCard markup on his contact page.&lt;br /&gt;
* [http://www.tpexpress.co.uk/Liverpool08-Capital-of-Culture/ First TransPennine Express - Liverpool 08, Capital of Culture] - uses hCard to markup suggested venues.&lt;br /&gt;
* [http://anand.ws/ Anand's Musings] uses hCard to mark up authors for comments and posts.&lt;br /&gt;
* [http://www.onyomo.com/ OnYoMo] uses hCard markup for all addresses listed in their local search results.&lt;br /&gt;
* [http://www.dctalks.org/design/ DC Design Talks] used hCard to mark up the speakers for this one-day event.&lt;br /&gt;
* [http://www.entidi.it eNTiDi software] provides a basic hCard sample.&lt;br /&gt;
* [http://quickbase.intuit.com QuickBase] uses hCard markup on our contact us page.&lt;br /&gt;
* [http://www.pixsense.com/contact_us.html PixSense.com] uses hCard markup for addresses across the PixSense website.&lt;br /&gt;
* [http://www.areaguides.net areaguides.net] uses hCard markup for all addresses across the site.&lt;br /&gt;
** Examples: http://chicagoil.areaguides.net/ypcyellowpg/restaurants.html, http://newyorkny.areaguides.net/hotels.html&lt;br /&gt;
* [http://www.ll.georgetown.edu/ Georgetown University Law Library] in Washington, D.C. now uses hCard for our address on all pages.  Also, library staff biography pages use hCard such as [http://www.ll.georgetown.edu/staff/bio.cfm?id_no=105 here] and [http://www.ll.georgetown.edu/staff/bio.cfm?id_no=32 here].&lt;br /&gt;
* [http://www.ll.georgetown.edu/ Georgetown University Law Library] in Washington, D.C. now uses hCard for our address on all pages.  Also, library staff biography pages use hCard such as [http://www.ll.georgetown.edu/staff/bio.cfm?id_no=105 here] and [http://www.ll.georgetown.edu/staff/bio.cfm?id_no=32 here].&lt;br /&gt;
&lt;br /&gt;
* [http://www.mtgd.gov.md/ Ministry of Transport and Road Industry] of Republic of Moldova. First Moldavian governmental site using hCards on [http://www.mtgd.gov.md/ministrul/ staff pages], [http://www.mtgd.gov.md/subdiviziunile-ministerului/ subdivisions page] and in the footer of each page (contact information) &lt;br /&gt;
**Only [http://www.mtgd.gov.md/ Romanian] and [http://www.mtgd.gov.md/ru/ Russian] versions available yet  &lt;br /&gt;
* [http://www.auctionlink.com.au/ AuctionLink] uses hCard for Auctioneer records like [http://www.auctionlink.com.au/Auctioneers/Auctioneer/Cam_Brown_Auctions/ Cam Brown Auctions] (also uses hCalendar)&lt;br /&gt;
* [[User:WebOrganics|User WebOrganics]] The Microformats wiki has hcards on its user pages.&lt;br /&gt;
* [http://www.ontwerpkliniek.nl Ontwerpkliniek - Bureau voor Visuele Identiteit] uses the hCard contact information at the frontpage and the contact page.&lt;br /&gt;
* [http://www.instantdes.com L'instant des...] uses the hCard format for all photographers published on this collective photoblog.&lt;br /&gt;
* the mediadesigner groupblog [http://www.pixeltapete.de Pixeltapete] uses the hCard for the contactinformation of the authorpages of [http://www.pixeltapete.de/alex Alex] and [http://www.pixeltapete.de/carsten Carsten] and also for the [http://www.pixeltapete.de/kontakt imprint]. [http://www.pixeltapete.de Pixeltapete] uses its own  [http://www.pixeltapete.de/2007/11/hcard-sidebarwidget-fuer-wordpress/ hcard widget] for wordpress sidebars. &lt;br /&gt;
* [http://www.thorsten-ott.de Thorsten Ott] uses hCard format for the contact section of his online resume.&lt;br /&gt;
* [http://rosebleed.net/ Rosebleed] supports [[hCard user profiles]] - your profile URL is &amp;lt;nowiki&amp;gt;http://rosebleed.net/users/profile.php/&amp;lt;/nowiki&amp;gt; followed by your username, e.g. [http://rosebleed.net/users/profile.php/silvermoon82 silvermoon82].&lt;br /&gt;
**'''Fixed''' profiles now explicitly mark up 'n' where possible, otherwise omits it&lt;br /&gt;
* [http://www.whitepages.com WhitePages.com] Now WhitePages.com main implemented hCard on all its listings. Over 120 million hCards! Includes work information.&lt;br /&gt;
* [http://www.warmoth.com Warmoth Guitar Products] features hCard contact information in two places, [http://www.warmoth.com/customerservice/customer.cfm?fuseaction=order How To Order] and all of the [http://www.warmoth.com/catalog Warmoth E-Store]&lt;br /&gt;
* [http://www.bbc.co.uk/worldservice/bangladeshboat BBC World Service Bangladesh River Journey] a social network mashup, with hCard &amp;amp; other microformats. See [http://dharmafly.com/blog/bangladeshboat Dharmafly blog discussion].&lt;br /&gt;
* [http://www.amants-du-chocolat.net/ ACCP:Les Amants du Chocolat de la Couronne Parisienne] uses hCard on their contact page and in the chocolate maker they've reviewed.&lt;br /&gt;
* [http://www.accountviewsoftware.nl/ AccountviewSoftware.nl] makes use of hCards for the dealer directory [http://www.accountviewsoftware.nl/dir/ (directory)]&lt;br /&gt;
* [http://www.crystalvision.co.il/ CrystalVision] uses hCard on their contact page and in the footer throughout the site.&lt;br /&gt;
* [http://www.indigoclothing.com/ Indigo Clothing] a London based t-shirt company uses hCard with Technorati's Add to Address Book throughout the site in the footer&lt;br /&gt;
* [http://www.joshuamcginnis.com Joshua McGinnis] uses hCard to display his contact information to potential clients.&lt;br /&gt;
* [http://www.myaffordablemarketing.com/contact.php Affordable Marketing Solutions' contact page] uses hCard with Technorati &amp;quot;Add to Address Book&amp;quot;.&lt;br /&gt;
* [http://www.bo.ingv.it/contents/INGV-Bologna/Staff.html INGV Bologna] implemented hCards for staff-members, marked-up as HTML table-rows ([[include-pattern]] also used to add organization-name and fax-number to each hCard).&lt;br /&gt;
* [http://www.lefora.com Lefora] is a free forum hosting site (using custom forum software). Every user's profile contains an hCard. (Example forum for testing: [http://funstuff.lefora.com funstuff.lefora.com])&lt;br /&gt;
* [http://www.handlairsystems.com H&amp;amp;L Air Systems] uses hCard with Technorati link Add to Address Book on all contact pages.&lt;br /&gt;
* [http://theultimates.whitepages.com WhitePages.com] A special version of whitepages.com has all its listings marked up in hCard.&lt;br /&gt;
* [http://piermontweb.com/contact/ Piermont Web Design] uses hCard on its contact page.&lt;br /&gt;
* [http://www.ie.asm.md/en/ The Institute of Power Engineering] of the Academy of Science of Moldova. First Moldavian site using hCards on staff pages, e.g [http://www.ie.asm.md/employees/oleschuk-valentin/]&lt;br /&gt;
**Also in Russian: [http://www.ie.asm.md/employees-ru/sit-michail-lvovich/] and Romanian: [http://www.ie.asm.md/angajati/chiorsac-mihail/]&lt;br /&gt;
* The good ship [http://styrheim.com/test/leonid.html Leonid Miloslavskiy] spotted in the North Atlantic&lt;br /&gt;
* [http://richi.co.uk/blog/2005/12/structured-blogging.html Richi Jennings] has put up his attempt&lt;br /&gt;
*[http://oberrycavanaugh.com O'Berry|Cavanaugh] has an organization hCard in the footer on every page as while as individual hCards on the [http://oberrycavanaugh.com/team.php Team] page.&lt;br /&gt;
* [http://fortisgc.com Fortis General Counsel], e. g. [http://fortisgc.com/joyce_lan_kim.html Joyce Kim's profile], uses hCard for profile and contact information.&lt;br /&gt;
* [http://peryplo.com Peryplo.com], e. g. [http://peryplo.com/personal/7e6786e711c6d051a39a1b7085f34955 Sample Page], uses hCard for Hotels, Gastronomy Places and services for tourists.&lt;br /&gt;
* [http://www.navitraveler.com/places/629/ NaviTraveler], e. g. [http://www.navitraveler.com/places/629/Lincoln_Memorial.html Lincoln Memorial], including [[geo|Geo]].&lt;br /&gt;
* [http://corewar.atspace.com/about.html sfghoul] has marked her contact info with [[hcard|hCard]]&lt;br /&gt;
* [http://www.zaadz.com Zaadz] uses [[hcard|hCard]] and [http://gmpg.org/xfn XFN] for friends on a user's profile page.&lt;br /&gt;
*[http://www.xoxiety.com/about.html Xoxiety] uses hCards on its about page, linking data from a within a block of text.&lt;br /&gt;
*[http://yedda.com Yedda] - Yedda provides hcard based identities on all of the people's profiles&lt;br /&gt;
*[http://openid.ne.jp OpenID.ne.jp] First OpenID provider service in Japan(æ¥æ¬èª). Each personal  OpenID page (ex:[http://eouia.openid.ne.jp http://eouia.openid.ne.jp]) is marked up as his hCard. And there is a company hCard on every page, too.&lt;br /&gt;
* [http://www.goldenglovepromotions.com/ Golden Glove Promotions] used hcards on the footer of every page to store contact information.&lt;br /&gt;
* Australian national news sites The Australian and Australian IT use hCard on their contact pages: [http://www.theaustralian.com.au/contactus The Australian (contact us)] and [http://www.australianit.news.com.au/contactus Australian IT (contact us)]&lt;br /&gt;
* [http://www.thekiwiholiday.com/ The Kiwi Holiday] uses hCards for [http://www.thekiwiholiday.com/view-hostels New Zealand Hostels], [http://www.thekiwiholiday.com/view-restaurants New Zealand Restaurants], and [http://www.thekiwiholiday.com/view-activities New Zealand Activities]. Also provides hCard &amp;quot;download to address book&amp;quot; functionality on listing detail pages, e.g. [http://www.thekiwiholiday.com/restaurant/tonys-steak Tonys Steak Restaurant]&lt;br /&gt;
* [http://www.qcindustries.com/ QC Industries Conveyors] uses hcards to store contact information in the site footer and in their [http://www.qcindustries.com/news/press-releases/ press releases].&lt;br /&gt;
* [http://www.confuciusinstitute.ac.uk/ The Confucius Institute for Scotland at the University of Edinburgh] has their used a hcard to store contact information in the footer of the page.&lt;br /&gt;
* [http://admnj.com/ Affiliated Direct Mail] is a New Jersey based direct mail company that has their contact information and footer in hCard format.&lt;br /&gt;
* [http://www.golfdigest.com/ Golf Digest] now supports hCard in its [http://www.golfdigest.com/courses/places Course Finder] detail pages. [http://www.golfdigest.com/courses/places/2483 example]&lt;br /&gt;
* [http://dev.opera.com/authors/ Dev Opera] Opera's developer site uses hCards on the author details pages.&lt;br /&gt;
* [http://chrischerry.name/ Chris Cherry's contact page with his hCard]&lt;br /&gt;
* [http://www.kiteboarder.com.au/php/search.php www.kiteboarder.com.au] A new Australian kiteboarding portal.  Microformats have been used so that users can export the shops &amp;lt;s&amp;gt;directly to outlook&amp;lt;/s&amp;gt;. I was able to learn microformats through the Media 2007 conference in London. Author: Damien King&lt;br /&gt;
* [http://krevi.dk/ KREVI] A Danish research institute. Using hCard in the footer of each page and on staff list. This is the first known danish website from the public sector of Denmark using microformats.[http://krevi.dk/om-krevi/organisation/medarbejdere example staff list]&lt;br /&gt;
* [http://www.hss.ed.ac.uk/web-team/ College of Humanities and Social Science Web Team's site], University of Edinburgh uses a hCard in the footer of each page.&lt;br /&gt;
* [http://www.theglobeandmail.com/ globeandmail.com] Canada's National Newspaper uses an hCard for their contact information.&lt;br /&gt;
* [http://www.logisteam.pl/ Krzysztof Rucinski] uses an hCard for his contact details on [http://www.logisteam.pl/kontakt.html Logisteam keylogger contact] page.&lt;br /&gt;
* Creation design &amp;amp; marketing has hCards throughout the site, including the [http://www.creation.uk.com/contact/ contact page], the [http://www.creation.uk.com/company/leigh-scott/ company profile pages] and on the [http://www.creation.uk.com/news/2007/06/06/easy-money/#comments-view comments on articles]&lt;br /&gt;
*&amp;lt;s&amp;gt; Wikipedia now has a template, [http://en.wikipedia.org/wiki/Template:Hcard-geo hcard-geo], for in-line hCards with coordinates, such as that on [http://en.wikipedia.org/wiki/Engine_Arm Engine Arm]&amp;lt;/s&amp;gt;&lt;br /&gt;
* [http://www.thomsonlocal.com/ ThomsonLocal.com], major UK business directory publisher, use hcard on the search results and company information pages.&lt;br /&gt;
* [http://www.corissia.com Corissia Group Hotels in Crete Greece] have included contact information as a hCard on the footer of every page of the website. There is a multilingual implementation as well.&lt;br /&gt;
* [http://zucchetti.co.uk/2007/03/06/simple-address-formatting-solution/ Laura Zucchetti] illustrates a simple address formatting solution as a hCard and marked up in a definition list. &lt;br /&gt;
* [http://www.feike.de/Kontakt.html Feike Contact] has a hCard on to top of the page.&lt;br /&gt;
* [http://www.londondrum.com/ London Drum] uses a whole host of microformats - there are hcards and geo's on the hotel pages, events are written up in hcalendar format on the cityguide page, and you can also find some hreviews as well (like on the [http://www.londondrum.com/hotels/athenaeum.php Athenaeum Hotel page]) &lt;br /&gt;
* [http://www.regels-stadskanaal.nl/ Regelingenbank Stadskanaal] has a hCard on each page, containing Geo-information too. &lt;br /&gt;
* [http://www.tomstone.se Tom Stone - Trollkarl] has a hCard in the footer of each page of the site.&lt;br /&gt;
* [http://www.rolandinsh.lv/ Rolands Umbrovskis]'s home page has hCard in [http://www.rolandinsh.lv/?ro=contacts contact page] and all other pages with contact information.&lt;br /&gt;
* [http://www.epiphanysolutions.co.uk/ Epiphany Solutions Ltd] use a hCard on their contact us page. We intend to use the hCard on everypage if successfully implemented, along with a link to the Technorati vCard generator.&lt;br /&gt;
* [http://twitter.com Twitter] uses hCard for user information (along with [http://ihack.us/2007/05/14/twitter-gets-microformatted/ several other microformats])&lt;br /&gt;
* [http://www.bendodson.com/developer/ Ben Dodson] uses an hCard for his contact details on every page of his site as well as using hCards for any XFN relationships in his blogrolls.&lt;br /&gt;
*[http://www.pats.ua.ac.be/group PATS Group Members] uses hCard to mark up member contact information.&lt;br /&gt;
*[http://couchsurfing.com CouchSurfing] has limited information in hCard available on members' profiles (such as [http://www.couchsurfing.com/people/guaka Guaka's]).&lt;br /&gt;
*Wikipedia-UK (Ukranian)&lt;br /&gt;
**Starting to roll out on biographies e.g. [http://uk.wikipedia.org/wiki/%D0%93%D0%B5%D1%82%D1%8C%D0%BC%D0%B0%D0%BD_%D0%92%D0%B0%D0%B4%D0%B8%D0%BC_%D0%9F%D0%B5%D1%82%D1%80%D0%BE%D0%B2%D0%B8%D1%87 Vadym Hetman]&lt;br /&gt;
* [http://kpumuk.info Dmytro Shteflyuk] uses an hCard on his [http://kpumuk.info/contact/ contact] and [http://kpumuk.info/curriculum-vitae/ curriculum vitae] pages.&lt;br /&gt;
*Wikipedia-EN&lt;br /&gt;
**starting to roll-out on articles about people, for example [http://en.wikipedia.org/wiki/Albert_einstein Albert Einstein]. The nature of Wikipedia means that there are a large number of templates to update (Albert's is &amp;quot;infobox scientist; there's also &amp;quot;infobox military people&amp;quot;, &amp;quot;infobox musician&amp;quot; and so on, almost ad infinitum). DoB is only included if it's entered using a birth-date template, not as raw text. &lt;br /&gt;
**starting to roll-out on articles about places, for example on UK Railway station template, e.g. [http://en.wikipedia.org/wiki/Birmingham_New_Street Birmingham New Street station] (includes Geo); and  cities, for example [http://en.wikipedia.org/wiki/New_York_City New York]. See above for note on Wikipedia templates.&lt;br /&gt;
**Any Wikipedia editors willing to assist with updating templates should see [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats Wikipedia's microformat project]; [http://en.wikipedia.org/wiki/Category:Templates_generating_hCards Wikipedia templates generating hCards]&lt;br /&gt;
**Unfortunately, [http://en.wikipedia.org/w/index.php?title=Template:Infobox_Protected_area&amp;amp;diff=prev&amp;amp;oldid=152308153 other editors are already breaking some of the implementations on Wikipedia]; e.g. [http://en.wikipedia.org/wiki/Grand_Canyon_National_Park Grand Canyon National Park]; [http://en.wikipedia.org/w/index.php?title=List_of_islands_of_Argentina&amp;amp;diff=prev&amp;amp;oldid=155590535 removal of &amp;quot;region&amp;quot; attributes]&lt;br /&gt;
* The [http://www.bayofislands.net/ Bay of Islands] site has implemented hCard on all listing pages, eg: [http://www.bayofislands.net/accommodation/backpackers/saltwater-lodge/ Saltwater Lodge]&lt;br /&gt;
* [http://people.cs.uchicago.edu/~mpschaef/index.html Merrick Schaefer] is psyched to use hCard on his homepage for his contact info.&lt;br /&gt;
* Christian Hess (from San JosÃ©, Costa Rica) has an hCard in his [http://www.hess-cr.com home page], [http://www.hess-cr.com/utilidades/correo.shtml#postal contact] and [http://www.hess-cr.com/secciones/curriculum/datos.shtml personal rÃ©sumÃ©] pages (all in Spanish). He also recommends using the [https://addons.mozilla.org/es-ES/firefox/addon/4106 Operator] extension in Firefox to check them out.&lt;br /&gt;
* [http://www.JamPlanet.com Jam Planet] uses hCard in Contact Us page; application can generate hCard for a contact.&lt;br /&gt;
* [http://www.anisfield-wolf.org/ The Anisfield-Wolf Book Awards], designated specifically to recognize works addressing issues of racism and diversity, uses hCard for the author bios of [http://www.anisfield-wolf.org/Winners/PastWinners/ past winners].&lt;br /&gt;
* [http://www.buy-our-honeymoon.com/ Buy Our Honeymoon], a [http://www.buy-our-honeymoon.com/registry honeymoon registry] service, uses hCard in their [http://www.buy-our-honeymoon.com/contact Contact Us] page.&lt;br /&gt;
* '''W3C webmaster''' [http://www.w3.org/People/Jean-Gui/ Jean-Guilhem Rouel] now has an hCard.&lt;br /&gt;
* [http://source.ibegin.com/ iBegin Source] - All 10.8+ million business listings have their information marked up in hCard. Example: [http://source.ibegin.com/california/adelanto/aeronautical-supplies/general-atomics-9779-yucca-rd-1.html General Atomics]&lt;br /&gt;
* [http://david.weekly.org/ David Weekly] has added an hCard to his home page for himself.&lt;br /&gt;
* [http://ficlets.com/stories/12 Ficlets] story page uses hCard for author bio.&lt;br /&gt;
* [http://redmonk.com/contact/ RedMonk Contact page] uses hCard for RedMonk firm as well as each analysts.&lt;br /&gt;
* [http://source.ibegin.com/ iBegin Source] uses hCard to identify business information for all 10.5+ million businesses listed.&lt;br /&gt;
* [http://cloudislands.com/contact.php Cloud Islands] uses hCard for our Contact Info.&lt;br /&gt;
* [http://www.international.unt.edu UNT International] uses hCard to mark up contact information sitewide (see esp. [http://www.international.unt.edu/offices/ieli/people/instructors/profiles the IELI instructor profile listing])&lt;br /&gt;
* [http://www.giraffo.de giraffo.de] has different hCards on every page (+ geo in &amp;quot;kontakt&amp;quot;)&lt;br /&gt;
* [http://www.enap.com ENAP, Inc.] lists the HR Contact in hCard format on the [http://www.enap.com/career.aspx Career Opportunities] page.&lt;br /&gt;
* [http://sxsw07.conferenceer.com/people Conferenceer] lists panelists and participants to the 2007 South by Southwest interactive conference in hCard format&lt;br /&gt;
* [http://news.stanford.edu Stanford News] (Redesign)  hCard in the footer on every page as well as markup for every staff member on the Staff page.&lt;br /&gt;
* [http://www.wikiservice.at/fractal/wikidev.cgi?FR/EveMoreau ValÃ©rie-Eve Moreau] has an hCard on her wiki-homepage.&lt;br /&gt;
* [http://en.wikipedia.org/wiki/St_George%27s_Minster%2C_Doncaster St George's Minster, Doncaster, on Wikipedia]&lt;br /&gt;
* AOL Journals publishes hCards for authors. [http://journals.aol.com/carowill/whats-happening Example]&lt;br /&gt;
* Ian McKellar's [http://ian.mckellar.org/ home page] is an hCard that's styled to look like a business card.&lt;br /&gt;
* [[Christophe Ducamp]]'s hCard based on    [http://www.wikiservice.at/fractal/wikidev.cgi?FR/MicroFormats/ChristopheDucamp wiki personal page] of a wiki-branch which could be dedicated to seed a french group to support microformats. Thanks to Laurent Lunati for the CSS. You can [http://www.wikiservice.at/fractal/wikidev.cgi?action=edit&amp;amp;id=FR/MicroFormats/ChristopheDucamp edit it]. Any suggestions welcome.&lt;br /&gt;
* [http://www.matthewwest.co.uk Matthew West] has an hCard on his [http://www.matthewwest.co.uk/email contact] page.&lt;br /&gt;
*[http://www.webmaster.waw.pl PaweÅ Wrzosek] Freelance webdeveloper`s portfolio&lt;br /&gt;
*[http://www.stanford.edu/ Stanford.edu] hCard markup is included in the footer of the homepage and all subsequent pages within the /home directory.&lt;br /&gt;
*[http://openid.ne.jp OpenID.ne.jp] First OpenID provider service in Japan(æ¥æ¬èª). Each personal  OpenID page (ex:[http://eouia.openid.ne.jp http://eouia.openid.ne.jp]) is marked up as his hCard. And there is a company hCard on every page, too.&lt;br /&gt;
* [http://www.qwertycars.co.uk/garages/mechanics-near-tadworth-kt20.aspx UK Car Garages] Address of car mechanics in the UK, in hCard format.&lt;br /&gt;
* [http://www.columbiaautomation.com/sub/contact.php Columbia Automation]'s About Us page every employee marked up as an hCard, as well as having a company hCard with geo information.&lt;br /&gt;
* [http://www.pointermix.com Pointermix Design] uses the hCard format.&lt;br /&gt;
* [http://eight6.com/contact/ eight6]'s contact page uses the hCard format.&lt;br /&gt;
* [http://www.raveaboutit.com.au Rave About It]'s business listings use the hCard format.&lt;br /&gt;
* [http://optics.org/cws/Contact/OurTeam.do optics.org]'s team page.&lt;br /&gt;
* [http://www.robcottingham.ca/contact Rob Cottingham]'s first foray into microformats is an hCard on the contact page of his personal blog. (He was inspired by Tantek Ãelik's presentation at Web Directions North 2007.)&lt;br /&gt;
* [http://redmonk.net/about-this-site Steve Ivy] - hcard about page, includes the usual suspects + XFN on 'url's, photo, amd geo.&lt;br /&gt;
* [http://seattleu.edu Seattle University] uses hCard on it's front page and most pages that share an official template. &lt;br /&gt;
* [http://www.josemarti.waw.pl Jose Marti XXII Secondary School in Warsaw] includes hCard on Contact and About Author sections&lt;br /&gt;
* [http://www.jaama.co.uk Jaama] have their company details as a vCard download on their [http://www.jaama.co.uk/Contact.aspx contact] page.&lt;br /&gt;
* [http://3amproductions.net 3AM Productions] has company details marked up as hCard all across the site and particularly for [http://3amproductions.net/jason.php Jason] and [http://3amproductions.net/gilbert.php Gilbert]&lt;br /&gt;
* [http://jc-development.co.uk/ JC's Development] has company contact details as hCard.&lt;br /&gt;
* [http://berlin.barwick.de/index.html Berlin Guide] is converting their address markup to hcard, e.g. [http://berlin.barwick.de/shopping/kadewe-kaufhaus-des-westens.html KaDeWe] &lt;br /&gt;
* [http://www.xlntads.com XLNTads] has their contact information marked up in hCard, as well as their development schedule/timeline in hCalendar&lt;br /&gt;
* [http://derrick.pallas.us Derrick Pallas] tells people to look for him here.&lt;br /&gt;
* [http://bluemonkcreative.com/contact/ Bill Turner] adds an hCard to the contact page of his freelance business' website.&lt;br /&gt;
* [http://www.oppenheim.com.au/ James Oppenheim's blog] includes an inline author hCard in the footer of each page and also on the contact page.&lt;br /&gt;
* [http://steinhardt.nyu.edu/ NYU Steinhardt] has [http://steinhardt.nyu.edu/faculty_bios/list/Faculty 240+ faculty bios marked up], e.g. [http://steinhardt.nyu.edu/faculty_bios/view/Susan_Murray].&lt;br /&gt;
* [http://www.boogdesign.com/aboutus.html boogdesign.com] has added hCard markup on the contact page.&lt;br /&gt;
* [http://www.gptg.org/ Great Places To Golf], hCards for golf clubs around the world, e.g. [http://www.gptg.org/club/12/]&lt;br /&gt;
*[http://www.travellerspoint.com/ The Travellerspoint Travel Community] has added hCards to all of their member profiles (e.g. [http://www.travellerspoint.com/member_profile.cfm?user=jax_07]). Details include name, photo, location, notes and url. &lt;br /&gt;
* The [http://www.westmidlandbirdclub.com/ West Midland Bird Club] in the English Midlands uses hCard on its [http://www.westmidlandbirdclub.com/ home page], [http://www.westmidlandbirdclub.com/diary/ events diary], [http://www.westmidlandbirdclub.com/club/contact.htm contact pages], [http://www.westmidlandbirdclub.com/site/links.htm links page], [http://www.westmidlandbirdclub.com/club/older.htm list of the world's oldest bird clubs] and in a page footer which is gradually being rolled out across the whole site. {{UpdateMarker}} Page-footer's hCard now has logo, using [[include-pattern]].&lt;br /&gt;
*[http://wizardishungry.com/blog/ wizardishungry/blog] has the author's hCard in the footer of every page with a link to X2V.&lt;br /&gt;
* [http://www.walkerfineart.com Walker Fine Art Gallery] Most pages contain an hCard in the footer.&lt;br /&gt;
* [http://www.brdatasystems.com.au/contact-us.html B&amp;amp;R Data Systems] is an organisation hCard. We have also used the technorati tool to download as a vCard, which I think is useful for a business.&lt;br /&gt;
* [http://chewbittel.com/contact.php Chew Bittel Assoc., Inc.] is an organization hCard. It's got abbr's in there, and a duplicate telephone field, and some hidden things. I'm really pushing things to the limit here. This should be a great test for your parser.&lt;br /&gt;
* [[User:Steve Ivy|Steve Ivy]]'s [http://redmonk.net/about-this-site/ about page] has his hcard, including a link to Technorati's contacts feed to let visitors download his contact information.&lt;br /&gt;
* Scott Allan Wallick's hCard is [[User:ScottWallick|his user page]] and on his blog, [http://www.plaintxt.org/about/2/ plaintxt.org]&lt;br /&gt;
* [[User:Bob_Jonkman|Bob Jonkman's hCard]] '''on this 'wiki'''' &lt;br /&gt;
* [http://thetenwordreview.com The Ten Word Review] simply contains ten word long reviews. All reviews are marked up as [[hreview|hReviews]], and user information is marked up as hCards.&lt;br /&gt;
*OffshoreAgile.com, a subsite of Starsoft Development Labs, uses hCard in the [http://www.offshoreagile.com/company/contact/ Starsoft Contacts] and Media Inquiries sections&lt;br /&gt;
*T-Mobile uses hCard for the [http://t-mobilepressoffice.co.uk/press/contact-details/ T-Mobile UK Press Contact Details page], as well as for some of the latest press releases&lt;br /&gt;
* Psychology Press and Routledge's Behavioral Sciences' publishing division have implemented hCard on their contact pages on 17 of their websites (example on the contact page on their [http://www.clinicalpsychologyarena.com/contact/ Clinical Psychology Arena])&lt;br /&gt;
*[http://72ppi.us 72ppi], uses hCard in the footer.&lt;br /&gt;
*[http://www.csarven.ca Sarven Capadisli] uses hCard throughout the site (including user comments in articles).&lt;br /&gt;
* [https://www.urbanbody.com/information/contact-us Urban Body Men's Clothing] uses hCard for business locations and hCalendar for business hours.&lt;br /&gt;
* [http://www.iqair.us/ IQAir North America], uses hCard for contact information.&lt;br /&gt;
* [http://www.infoiasi.ro/ The website of the Faculty of Computer Science], &amp;quot;A. I. Cuza&amp;quot; University Ia&amp;amp;#351;i, Romania uses hCard for each staff member.&lt;br /&gt;
* [http://www.finds.org.uk/ The Portable Antiquities Scheme at the British Museum] hCards added to footer of every page and to contacts section. Working on adding more and getting it right.&lt;br /&gt;
* In [http://www.ideasfornet.com/ IdeasForNet.com - the ideas repository] hCards were implemented partially in the footer of each page, and more comprehensively in the contact and about pages.&lt;br /&gt;
* The [http://www.cst.ed.ac.uk/ Centre of Canadian Studies] at the University of Edinburgh use hCards for contact information in the footer of their site.&lt;br /&gt;
* [http://www.theatrestudies.llc.ed.ac.uk/ Theatre Studies: European Theatre] at the University of Edinburgh use hCards for contact information on their home page&lt;br /&gt;
* [http://www.carolinemockett.com/design/about.aspx Caroline Mockett] has an hCard on her About Me page&lt;br /&gt;
* [http://wait-till-i.com Christian Heilmann] has a footer address using hCard&lt;br /&gt;
*[http://www.audience-response-rentals.com/ Audience Response System Rentals] uses hcard as a popup in the site accessibility area (lower right) for easy copy and paste of address by customers.&lt;br /&gt;
* [http://www.fischsolutions.com/ Fisch Internet Solutions] uses an embedded hCard and a vCard download to provide customers an easy way to contact them on their [http://fischsolutions.com/contactus.html Contact Us] section of the website.&lt;br /&gt;
* [http://www.micatholicconference.org/ Michigan Catholic Conference] uses hCard for contact information in the sidebar.&lt;br /&gt;
* [http://www.adambunn.co.uk/ Adam Bunn] provides contact details in the sidebar using hCard.&lt;br /&gt;
* [http://www.belkin.com/pressroom/releases/uploads/10_10_06NotebookExpansionDock.html Belkin Press Releases] are using hCards for PR contacts and corporate offices.&lt;br /&gt;
* [http://mybank.com myBank.com] uses hCard for its listings of every branch of every FDIC-insured bank in the United States.&lt;br /&gt;
* [http://leftlogic.com Left Logic] uses hCard for embedded contact information.&lt;br /&gt;
* [http://inga-art.co.uk/artist Inga Scholes] uses hCard for contact information in the sidebar.&lt;br /&gt;
* [http://www.lussumo.com/ Lussumo] uses hCards on user profile pages in its open-source [http://www.getvanilla.com/ Vanilla] Discussions Forum software.&lt;br /&gt;
* [http://www.creative-ways.nl/ Ron Kok] uses hCards to mark-up the names and URLs of commentors on his blog. He also uses hCards in combination with XFN in his blogposts to refer to friends, and has an hCard for himself on every page on his blog.&lt;br /&gt;
* [http://tagg.no Tagg Media] uses hCard for [http://heine.tagg.no/contact.php contact information] and provide link to vCard download in the contact section.&lt;br /&gt;
* The article about the fictitious Matrix character [http://en.wikipedia.org/wiki/Neo_%28The_Matrix%29 Thomas A Anderson in Wikipedia] is now marked up with hCard.&lt;br /&gt;
* [http://dconstruct06.madgex.com/ d.Construct 2006 Backnetwork] uses hCards for conference delegates (and provides the markup so that delegates can copy and paste cards into their own sites).&lt;br /&gt;
* [http://www.brown.edu Brown University] now uses hCard on the front page&lt;br /&gt;
* [http://www.wideblueyonderweb.co.uk Dunks at Wide Blue Yonder Web Design] has added hCard markup on his [http://www.wideblueyonderweb.co.uk/wbyw/pages/contact.htm contact page] and is looking to implement it on all past &amp;amp; future contact pages for clients.&lt;br /&gt;
* [http://southamptonrubberstamp.com Southampton Rubber Stamp Company] now has hCard markup with a vCard download link on every page.&lt;br /&gt;
* [http://barefoot-ceramics.com Barefoot Ceramics paint your own pottery studio] (in Newport, South Wales) has added hCard markup to its [http://barefoot-ceramics.com/find#address &amp;quot;Find&amp;quot;] page and other address instances. They hopes to implement hCalendar event lists as soon as an ics to hCalendar PHP class can be found or written.&lt;br /&gt;
* [http://dsingleton.co.uk/ David Singleton] has added a hCard to his blog.&lt;br /&gt;
* [http://www.thestreet.org.au The Street Theatre (Canberra, Australia)] has added hCard markup to its [http://www.thestreet.org.au/contact.htm Contact Us] page. hCalendar markup will soon be added for all of our performances.&lt;br /&gt;
* [http://www.informatik.uni-hamburg.de/SVS/personnel/henrich/index.php Henrich C. P&amp;amp;ouml;hls] has marked up his about page using hcard, including his PGP-Key that is stored in an abbr title, using class=key.&lt;br /&gt;
* [http://www.yalf.de Yalf Webentwicklung] has [http://www.yalf.de/kontakt contact information] available as hCard (and vCard).&lt;br /&gt;
* [http://www.zeldman.com/about/ Jeffrey Zeldman]. Jeffrey Zeldman has marked up his about page using hcard.&lt;br /&gt;
* [http://WhereAreYouCamping.com Where Are You Camping]. hCards for all members and camps, employing the include pattern as well. AFAIK this is the first Burning Man related microformats implementation, not to mention addresses in Black Rock City.&lt;br /&gt;
* [http://www.clacksweb.org.uk Clackmannanshire Council ]. hCard is implemented for all contact details across the site, and for specific individuals such as elected members (Councillors).&lt;br /&gt;
* [http://www.webdirections.org Web Directions]. hCard is used as contact information for the conference, while speakers are marked up with hCard.&lt;br /&gt;
* [http://www.markthisdate.com/contactform.html MarkThisDate.com]. An hCard is implemented on our contact form. For our calendars hCalendars will follow as soon as possible.&lt;br /&gt;
* [http://www.msiinet.com/contact/ MSI Systems Integrators] has its &amp;amp;quot;Contact MSI&amp;amp;quot; page encoded with hCards.&lt;br /&gt;
* [http://www.coolblue.nl/ Corporate website of Coolblue BV]. hCards were implemented in both the footer of each page, and in the &amp;quot;News&amp;quot; section for press contact information.&lt;br /&gt;
* [http://www.besancon.fr/index.php?p=32 Official site of BesanÃ§on (France)] uses hCard for each page concerning the small towns surrounding BesanÃ§on.&lt;br /&gt;
* [http://2006.dconstruct.org/speakers/ d.Construct 2006 conference speakers list] is implemented using hCards.&lt;br /&gt;
* [http://local.yahoo.com Yahoo Local] now supports hCards for business and places in the search results&lt;br /&gt;
* [http://learningtheworld.eu/imprint/ Learning the World] has hcard information on the imprint, alas we didn't succeed to mark-up the work phone and fax numbers properly.&lt;br /&gt;
* The [http://www.fuckparade.org Fâparade] website uses hCard, though I didn't find a type to distinguish mobile and landline phone numbers.&lt;br /&gt;
**Use &amp;lt;code&amp;gt;cell&amp;lt;/code&amp;gt; for mobiles.&lt;br /&gt;
* [http://www.miranet.nl/contact.htm Miranet Webdesign] have added a hcard to their [http://www.miranet.nl/contact.htm 'contact' page]&lt;br /&gt;
* [http://weblog.200ok.com.au/ Ben Buchanan] has added a vCard to the [http://weblog.200ok.com.au/about/ 'About' page on The 200ok Weblog]&lt;br /&gt;
* [http://www.radiantcore.com Radiant Core] has their contact information [http://www.radiantcore.com/contact/ available in hCard].&lt;br /&gt;
* [http://www.mikerumble.co.uk/ Mike Rumble] has [http://www.mikerumble.co.uk/contact.html uploaded his hCard].&lt;br /&gt;
* [http://www.saumag.edu/ Southern Arkansas University] has its contact footer encoded as hCard&lt;br /&gt;
* [http://main.uab.edu/ University of Alabama at Birmingham] has its contact footer encoded as hCard&lt;br /&gt;
* [http://www.capital.edu Capital University] has contact footer and bloggers' names encoded as hCard. Also, all page-specific contact information is encoded as hCards (see [http://www.capital.edu/Internet/Default.aspx?pid=67 Admissions] page for an example)&lt;br /&gt;
* [http://main.uab.edu/shrp/ UAB School of Health Professions] uses hCard in its contact footer&lt;br /&gt;
* [http://green.carisenda.com/ Stephen Stewart] has his hCard on the front page of his weblog ('You are here' section)&lt;br /&gt;
* [http://www.direction.es/ Direction] uses hCard for contact information.&lt;br /&gt;
* [http://audiobank.tryphon.org AudioBank] uses hCard to display member informations.&lt;br /&gt;
* [http://www.vivabit.com/atmedia2006/speakers/ @media speakers] are marked up with hCard (photos depend on BASE tag support which makes this a good test case)&lt;br /&gt;
* [http://www.dougransom.com Doug Ransom] uses hCard for his financial advisory practice. &lt;br /&gt;
* [http://rubyandrails.org/usergroups/newcastle/members.html ncl.rb] uses hCard for contact information.&lt;br /&gt;
* [http://www.snowinteractive.com/ Snow Interactive] uses hCard for contact information.&lt;br /&gt;
* [http://flickr.com Flickr] now supports [[hcard|hCard]] and [http://gmpg.org/xfn XFN] on profile pages.  See [http://flickr.com/photos/factoryjoe/113866484/ screenshot of Flickr UI in Flock browser using Flocktails extension - March 17th 2006].&lt;br /&gt;
* [http://www.ndiyo.org/contact Contact information for the Ndiyo project]&lt;br /&gt;
* [http://www.pixelenvy.co.uk/ Pixel Envy] uses hCard for contact information on every page&lt;br /&gt;
* [http://stilbuero.de/contact/ Klaus Hartl] uses hCard in the sidebar for contact information (maybe easier to parse through delivering xhtml as xml).&lt;br /&gt;
* [http://charlvn.virafrikaans.com/contact Charl van Niekerk's hCard]&lt;br /&gt;
* [http://billy-girlardo.com/WP/ BillyBLOGirlardo] uses hCard for contact information.&lt;br /&gt;
* [http://www.hicksdesign.co.uk/ Hicksdesign] uses hCard for contact information.&lt;br /&gt;
* http://www.gr0w.com/articles/press/growsearch_launched_press_release/ - hCard in a press release for the press contact info&lt;br /&gt;
* http://www.redmonk.com/cote/archives/2006/03/testing_out_mic.html - hCard with explanation&lt;br /&gt;
* [http://andy.ciordia.info/ it's my island], personal blog, hcard on the ''[http://andy.ciordia.info/pages/about_me About the Writer]'' page. [[User:Ciordia9|Andy Ciordia]]&lt;br /&gt;
* [http://www.windowonwoking.org.uk/ Window on Woking], a local community site in the UK, uses hCard in the homepage of each member organisation and local Councillor.&lt;br /&gt;
* [http://ChunkySoup.net/ ChunkySoup.net] has redesigned using hAtom 0.1 and hCards on the entire site -- by [[User:ChrisCasciano|Chris Casciano]]&lt;br /&gt;
* [http://www.30boxes.com/ 30 Boxes],a social calendar application and digital lifestyle aggregator, automatically creates an hcard for you with your account.  It is found under Settings &amp;gt; Syndication.&lt;br /&gt;
* [http://www.nearwhere.com/ Nearwhere.com] allow you to put an hcard on an interactive map.&lt;br /&gt;
* [http://www.brentozar.com/ Brent Ozar] added a [http://www.brentozar.com/contact.php contact] page hCard.&lt;br /&gt;
* [http://www.kerihenare.com/ Keri Henare] has rewritten his [http://www.kerihenare.com/contact/ contact] page hCard. Now using &amp;lt;code&amp;gt;&amp;lt;object&amp;gt;&amp;lt;/code&amp;gt; instead of &amp;lt;code&amp;gt;&amp;lt;img&amp;gt;&amp;lt;/code&amp;gt; for photo. (Thanks Brian Suda for updating the vCard converter)&lt;br /&gt;
* [http://michaelraichelson.com/contact/ Michael Raichelson] had an hCard on his contact page before SXSW, but never thought to add it here until Tantek requested it.&lt;br /&gt;
* [http://www.commoner.com/~lsimon/lindsey_simon_hcard.html Lindsey Simon] has added an hCard to his website as per Tantek's SXSW request for folks to try it &lt;br /&gt;
* [http://www.davidgagne.net/ David Gagne] has an hCard in his sidebar.&lt;br /&gt;
* [http://www.churchzip.com/map/ Churchzip.com/map] and [http://www.skiwhere.com/map/ Skiwhere.com/map], provide churches, hotels, and ski resorts on the same maps.  Locations are formatted as hCards.&lt;br /&gt;
* All [http://www.iqdir.com/ IQ Directory Solutions] Yellow Pages web portals use [[hcard|hCard]] markup on listings. For example [http://www.yellowpages-cambodia.com/ Cambodia Yellow Pages] and [http://www.superpages.com.my/ Malaysia Super Pages]&lt;br /&gt;
* Ning's cloneable Group app uses fuzzy matching to map custom fields to [[hcard|hCard]] markup on its [http://group.ning.com/index.php?controller=person&amp;amp;action=view&amp;amp;content=JonathanAquino profile] pages.&lt;br /&gt;
* [http://claimid.com/factoryjoe Chris Messina' ClaimID hCard]&lt;br /&gt;
* [http://factoryjoe.com/ Chris Messina' homepage]&lt;br /&gt;
* [http://flock.com/about Flock About]&lt;br /&gt;
* [http://tantek.com/microformats/2006/03-01-TechPlenAgenda.html Agenda: W3C Technical Plenary Day, March 1 2006] has [[hcard|hCard]] and [[hcalendar|hCalendar]] markup. ([http://www.w3.org/2006/03/01-TechPlenAgenda.html original here]).&lt;br /&gt;
* [http://www.gr0w.com/articles/press/growsearch_launched_press_release/ GrowSearch Launched (Press Release)] uses an hCard to provide Press Contact Point.&lt;br /&gt;
* The [http://www.arborday.org/ National Arbor Day Foundation] has started using hCards for their [http://arborday.org/programs/conferences/communityforestry/index.cfm upcoming] [http://arborday.org/programs/conferences/hazardtrees-treeplanting/ conferences].&lt;br /&gt;
* [http://www.multipack.co.uk The Multipack] has numerous hCards, especially on the [http://www.multipack.co.uk/members/ members page], as well as the next meeting information.&lt;br /&gt;
* [http://deadringrancor.livejournal.com/ Justin McDowell] used an hCard when [http://deadringrancor.livejournal.com/221332.html referring to a person in his blog post]&lt;br /&gt;
* [http://davecardwell.co.uk/cv/ Dave Cardwell] has included his hCard in his Curriculum Vitae.&lt;br /&gt;
* [http://blog.usweb.com/ Shaun Shull] has written a great post on [http://blog.usweb.com/archives/how-microformats-affect-search-engine-optimization-seo How Microformats Affect SEO], and has included his [[hcard|hCard]] as one of the examples.&lt;br /&gt;
* [http://www.thefutureoftheweb.com/ Jesse Skinner] has written a simple [http://www.thefutureoftheweb.com/blog/2006/1/hcard tutorial with examples]&lt;br /&gt;
* [http://www.w3.org/2005/12/allgroupoverview.html 2006 W3C Technical Plenary Week] has marked up the venue, contacts, and program committee members all with hCard.&lt;br /&gt;
* [http://www.avf-nexus.co.uk AVF-Nexus] have a hCard on their [http://www.avf-nexus.co.uk/contact/ contact page] - (by [http://creation.uk.com Creation&amp;quot;])&lt;br /&gt;
* [http://www.thefantasticos.com/andrew/ Andrew White] posted [http://www.thefantasticos.com/andrew/index.php/my-hcard/ his hCard] and [http://www.thefantasticos.com/andrew/index.php/62/microformats-the-should-have-been-obvious-web-dev-tool/ blogged about it].&lt;br /&gt;
* [http://www.2sheds.ru Oleg &amp;quot;2sheds&amp;quot; Kourapov] in his [http://www.2sheds.ru/blog/ blog] ([http://suda.co.uk/projects/X2V/get-vcard.php?uri=http://www.2sheds.ru/blog X2V]) has turned personal profile into hCard ([http://suda.co.uk/projects/X2V/get-vcard.php?uri=http://www.2sheds.ru/blog/hcard.html X2V]) and his blogroll - into combination XFN/hCards ([http://suda.co.uk/projects/X2V/get-vcard.php?uri=http://www.2sheds.ru/blog/friends.html X2V])&lt;br /&gt;
* [http://www.approveddesign.co.uk Approved Design Consultancy] have a hCard on their [http://www.approveddesign.co.uk/about/contact/ contact page] as well as on their [http://www.approveddesign.co.uk/about/people/ people section] - (by [http://creation.uk.com Creation&amp;quot;])&lt;br /&gt;
* [http://weblog.200ok.com.au/ Ben Buchanan] and [http://www.griffith.edu.au/cgi-bin/phone_search.pl?string=colin+morris&amp;amp;format=search Colin Morris] have [http://weblog.200ok.com.au/2006/01/griffith-phonebook-adds-hcard-and.html implemented hCards and vCards] for the [http://www.griffith.edu.au Griffith University] [http://www.griffith.edu.au/find/content_phonebook.html online phone book]. Eg. [http://www.griffith.edu.au/cgi-bin/phone_search.pl?string=ben+buchanan&amp;amp;format=search Ben's vCard] and [http://www.griffith.edu.au/cgi-bin/phone_search.pl?string=colin+morris&amp;amp;format=search Colin's vCard]&lt;br /&gt;
* WWF-Australia [http://wwf.org.au/about/contactdetails/ contact details page]&lt;br /&gt;
* [http://rasterweb.net/raster/ Pete Prodoehl] used the hCard format on his [http://rasterweb.net/raster/contact.html Contact page] and his [http://rasterweb.net/portfolio/ Portfolio]&lt;br /&gt;
* [http://amette.eu amette] uses the hCard format in a module of his TikiWiki powered blog and a more complete hCard on his [http://amette.eu/contact contact page]&lt;br /&gt;
* [http://staff.washington.edu/oren/weblog2/ Oren Sreebny] has an hcard on his blog main index template &lt;br /&gt;
* [http://www.cs.brandeis.edu/~zippy/ Patrick Tufts] has an hCard on his homepage.&lt;br /&gt;
* [http://ascii20.blogspot.com/ Mathias Kolehmainen and Jamie Taylor] have hCards on their weblog.&lt;br /&gt;
* [http://www.hoppsan.org/jamesb/blogger/ Barnaby James] has a hCard on his weblog.&lt;br /&gt;
* [http://esa-education.com/schools/map ESA Education] Uses hCards for their 100+ schools and each of the individual school sites.&lt;br /&gt;
* [http://www.thereisnocat.com/#vcard Ralph Brandi] has added an hCard to the sidebar of his weblog as a result of Tantek Ãelik's portion of the Microformats presentation at SXSW 2006.&lt;br /&gt;
* [http://www.pierce.ctc.edu/ephone/ Pierce College] -- community college directory uses hCard on all individual directory entries.&lt;br /&gt;
* [http://www.ukoln.ac.uk/web-focus/events/workshops/webmaster-2006/ the Institutional Web Management Workshop 2006] have marked up all their [http://www.ukoln.ac.uk/web-focus/events/workshops/webmaster-2006/committee/ speakers with hCard].&lt;br /&gt;
* http://wikitravel.org/en/Singapore/Sentosa. Wikitravel is experimenting with hcard on its travel guides. This guide uses hcard for all its business listings. More info on http://wikitravel.org/en/Wikitravel_talk:Listings.&lt;br /&gt;
* [http://www.musik-erber.de/ Musik-Erber] uses to present contact information at the sidebar&lt;br /&gt;
* [http://cdevroe.com/about/#contact Colin D. Devroe] uses hCard to display his contact information on his about page&lt;br /&gt;
* The ECS (Scool of Electronics and Computer Science  at the University of Southampton) [http://www.ecs.soton.ac.uk/people People Pages] use vCard. Contact cjg@ecs.soton.ac.uk if there's any bugs.&lt;br /&gt;
* [http://www.southwestern.edu/~ramseyp Pat Ramsey] has his contact information on his blog marked up with hCard. Contact [mailto:ramsey.pat@gmail.com ramsey.pat@gmail.com] if there are any bugs there.&lt;br /&gt;
* [http://www.vyre.com/company/contact-us/ VYRE] is a CMS development company with a &amp;quot;contact us&amp;quot; hCard&lt;br /&gt;
* [http://www.lefdal.cc/info.php Alf KÃ¥re Lefdal] uses hCard in the markup of his contact information&lt;br /&gt;
* [http://www.pignwhistle.com.au/ Pig N Whistle, a chain of pubs in Brisbane, Australia] is using hcard to mark up all the contact pages for its outlets and head office&lt;br /&gt;
* [http://kollitsch.de/ Patrick Kollitsch] has built his personal Profil as hCard&lt;br /&gt;
* [http://www.audiophile.pl/ Car Audio] uses the hCard in his contacts section.&lt;br /&gt;
* [http://www.hbs.edu/faculty/dspar/ Harvard Business School] has hCards on their faculty pages&lt;br /&gt;
* [http://openmikes.org/ openmikes.org] uses hCards for open mike venue addresses in its listing detail pages.&lt;br /&gt;
* [http://www.intertecnollc.com/ InterTecno, LCC] publishes an hCard on the home page and contact page.&lt;br /&gt;
* [http://canaltcm.com/ver/sobre-tcm Turner Classic Movies TCM Spanish website] has published contact details as a hCard&lt;br /&gt;
* [http://rejuvenation.com/ Rejuvenation] is now using hCard for contact information.&lt;br /&gt;
* [http://www.mattash.com/contact/ Matthew Ash] uses the hCard in his contacts section.&lt;br /&gt;
* [http://yarmouthguide.com/business.php Yarmouth Guide] uses hCard for each business details page.&lt;br /&gt;
* [http://www.merchantcircle.com MerchantCircle] has embedded an hCard in every one of their 15+ million US business listings.&lt;br /&gt;
* [http://citizenspace.us/citizens Citizen Space Citizens] is a list of tenants for a coworking space in San Francisco. The issue was raised that ''nicknames'' are usually located in the middle of ''fn'', which is not valid as per the [http://microformats.org/wiki/hcard-brainstorming#Implied_FN_from_N Implied_FN_from_N] rule. It seems that it should be possible, however, to include a ''nickname'' in the middle of an FN or even between a ''given-name'' and a ''family-name''.&lt;br /&gt;
&lt;br /&gt;
* [http://www.brownbook.net The Brownbook - the open yellow pages] The Brownbook is a peer-produced (like a wiki, but not a using a wiki engine) local business search website.  It Uses hCard to allow users to export local business contact details to Outlook or other desktop apps, plus for providing detailed maps from Google. &lt;br /&gt;
** Example of a search results page: [http://www.brownbook.net/business/search/?tag=hair+in+egham&amp;amp;x=21&amp;amp;y=4 Hairdressers in Egham]&lt;br /&gt;
*** '''suboptimal''': Adresses, e.g &amp;quot;2 Station Rd North, Egham, Surrey&amp;quot;, are marked up as &amp;lt;code&amp;gt;street-address&amp;lt;/code&amp;gt;&lt;br /&gt;
** Example of a single business's details [http://www.brownbook.net/business/view/122516 The Hair Emporium].&lt;br /&gt;
*** '''suboptimal''': Adresses, e.g &amp;quot;2 Station Rd North, Egham, Surrey&amp;quot;, are marked up as &amp;lt;code&amp;gt;street-address&amp;lt;/code&amp;gt;&lt;br /&gt;
* [http://www.Sylphen.com Sylphen] is a IT-solutions-provider and uses hCards on the [http://www.sylphen.com/content/kontakt/kontakt.htm Contact]&lt;br /&gt;
** '''invalid''' two of the three examples lack the required &amp;lt;code&amp;gt;fn&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;fn org&amp;lt;/code&amp;gt; property&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Category:Templates_generating_Geo Wikipedia templates generating Geo]&lt;br /&gt;
**'''hidden''' - for example [http://en.wikipedia.org/wiki/List_of_Minnesota_State_Parks List of Minnesota state parks]; [http://en.wikipedia.org/w/index.php?title=Alberta_Highway_60&amp;amp;diff=prev&amp;amp;oldid=157308650 Alberta Highway 60]&lt;br /&gt;
**NOte also removal of hCard properties, e.g. [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;
* [http://www.reefscape.net reefscape.net] Personal blog page that has a hidden hCard in the about section on every page. A vCard can be downloaded using the Technorati service.&lt;br /&gt;
**Hidden.&lt;br /&gt;
* [http://www.cosmotourist.com www.cosmotourist.com] and [http://www.cosmotourist.de www.cosmotourist.de] A new German and English portal around travel tips. Using hidden hCard for hotel listings, wherever address data is available. &lt;br /&gt;
**Hidden.&lt;br /&gt;
* [http://www.venncommunications.com/contact/ Venn] uses a hidden hCard on the contact page. &lt;br /&gt;
**Hidden.&lt;br /&gt;
* [http://www.last.fm Last FM] has hCards hidden on their profile pages e.g. [http://www.last.fm/user/Crok/?scrobbling=t1].&lt;br /&gt;
**Hidden.&lt;br /&gt;
* [http://krisswatt.co.uk/ Kriss Watt] has hidden an hCard his blog footer.&lt;br /&gt;
**Hidden.&lt;br /&gt;
* [http://www.fberriman.com/ Frances Berriman] has a hidden vCard in the footers of her website.&lt;br /&gt;
**Hidden.&lt;br /&gt;
* [http://www.candlescience.com/ CandleScience Candle Supply] added a hidden hcard sitewide.&lt;br /&gt;
**Hidden.&lt;br /&gt;
* [http://www.meryl.net/ Meryl K. Evans] has a hidden hCard on her homepage.&lt;br /&gt;
**Hidden.&lt;br /&gt;
* [http://www.highflyerscareers.com High Flyers Careers], India's first flight-crew placement agency uses microformats for their [http://www.highflyerscareers.com/corporate/ corporate information] page. Using standards couldn't be easier or better.&lt;br /&gt;
**Has honorific prefixes as part of &amp;quot;fn&amp;quot;, rather than marked up separatley.&lt;br /&gt;
* Spotstor.com eg - [http://spotstor.com/] uses hCard on profile pages (where user has elected to show contact information).&lt;br /&gt;
&lt;br /&gt;
* [http://www.naturalengland.org.uk/press/default.htm Natural England] (new UK government agency, formed 2006-10-01). &lt;br /&gt;
** No &amp;quot;fn&amp;quot; - which makes it invalid.&lt;br /&gt;
*[http://drop-off.co.uk G3:2] uses hCard with geo tags in the copyright and on the about me page&lt;br /&gt;
** Address data is hidden using CSS. &lt;br /&gt;
* [http://zdnet.co.uk/misc/contact/ ZDnet Contact Us Page] supports [[hcard|hCard]].&lt;br /&gt;
** by [http://www.subtleasafish.com/ James Myers] and [http://www.fromthefrontend.co.uk/2006/11/23/zdnet-uses-microformats/ David Long]&lt;br /&gt;
**Images and e-mail addresses are hidden; telephone numbers do not comply with [http://en.wikipedia.org/wiki/E.123 E.123]&lt;br /&gt;
* [http://gbraad.nl/ Gerard Braad] has published an example on his [http://gbraad.nl/site/?p=profile profile] page that is almost consistent with his original [http://gbraad.nl/files/gbraad.vcf vCard] file. Also progress is made for transforming his [http://files.gbraad.nl/foaf.rdf FoaF] file to a hCard encoded representation (also done for my spouse:[http://spouse.gbraad.nl/site/?p=profile Yong Yuan])&lt;br /&gt;
** (2005-09-27) PASSED, PASSED&lt;br /&gt;
** WARNINGS&lt;br /&gt;
*** uses 'n given-name' and 'n family-name' instead of nesting the given- and family- names inside the 'n'&lt;br /&gt;
*** has one 'tel' value with a bunch of values stuffed in&lt;br /&gt;
*** probably more problems --[[User:RyanKing|RyanKing]] 17:19, 5 Jan 2006 (PST)&lt;br /&gt;
* [http://kinrowan.net/ Cori Schlegel] [http://kinrowan.net/blog/wp/archives/2005/07/08/a-problem-with-the-structured-blogging-plug-in-for-wordpress/ discusses how he has updated] [http://kinrowan.net/blog/contact his contact page with hCard]&lt;br /&gt;
** INVALID - using 'prefix' instead of 'honorific-prefix' and type's in classnames (in both adr and tel) and has two photo's (the second could be 'logo') --[[User:RyanKing|RyanKing]] 15:15, 5 Jan 2006 (PST)&lt;br /&gt;
* [http://landsbank.fo/#hCard Landsbanki FÃ¸roya]&lt;br /&gt;
** INVALID - using embedded RDF/XML invalidly&lt;br /&gt;
&lt;br /&gt;
* [http://www.yellowpencil.com/contact/ Yellow Pencil] Using microformats to present company contact information&lt;br /&gt;
** First hcard has empty &amp;quot;fn&amp;quot; and no &amp;quot;n&amp;quot;. &amp;quot;fn&amp;quot; should be with &amp;quot;org&amp;quot; -- [[User: ScottReynen |ScottReynen]] 21:29, 19 Jun 2006 (CST)&lt;br /&gt;
&lt;br /&gt;
* [http://www.art-switch.com/ArtSwitch/contactUs.html Art-Switch Exchange Limited] uses hCard for their contact details on their contact page.&lt;br /&gt;
* [http://onyomo.com/ OnYoMo] uses hCard markup for all addresses listed in their local search results.&lt;br /&gt;
* [http://vcardplus.info/show.asp?uid=Z9959-06323 Greg Bays], the author of vCardPlus! has made his sites vCard display page hCard complaint.&lt;br /&gt;
* [http://www.rosenblittdentistry.com/contact.php Dr. Jon Rosenblitt] uses hCard icon with '''Add to Address Book''' link. &lt;br /&gt;
* [http://www.nfwebsolutions.com/ New Frontier Web Solutions] uses hCard on their front page along with a link pointing to Brian Suda's [http://suda.co.uk/projects/X2V/get-vcard?uri=http://www.nfwebsolutions.com/ X2V].&lt;br /&gt;
* [http://shiftingpixel.com/about/the-artist shifting pixel photoblog] has published an hCard.&lt;br /&gt;
* [http://thoughtport.blogspot.com/ Aiden Kenny] hasn't published his hCard yet, but he has [http://thoughtport.blogspot.com/2005/07/elemental-particles-of-web.html published his hCard icon]: http://photos1.blogger.com/blogger/4224/444/320/AK-Hcard-icon.gif&lt;br /&gt;
* [http://thedredge.org Andy Hume] uses hCards to mark-up the names and URLs of commentors on his blog, e.g. his [http://thedredge.org/2005/06/using-hcards-in-your-blog/ blog post on &amp;quot;Using hCards in your blog&amp;quot;]. &lt;br /&gt;
* [http://www.bidclix.com/ BidClix]'s [http://www.bidclix.com/AboutContact.html Contact BidClix] page has it's ''contact info'' marked up with an hCard.&lt;br /&gt;
* [http://suda.co.uk/ Brian Suda] has managed to embed a photo in [http://suda.co.uk/contact/ his hCard] through the [http://www.ietf.org/rfc/rfc2397.txt data URI scheme] by converting the image to BASE64 code. View the Source to see how this is accomplished. [http://suda.co.uk/projects/X2V/get-vcard.php?uri=http%3A//suda.co.uk/contact/ The X2V link] will extract the image and encode it for a vCard which will be displayed in some address book applications.&lt;br /&gt;
** Inspired by this I thought to try the same for SVG at [http://barefoot-ceramics.com/find Barefoot] ...&lt;br /&gt;
** &amp;amp;lt;img class=&amp;quot;photo&amp;quot; style=&amp;quot;display:none;&amp;quot; src=&amp;quot;data:image/svg+xml;text,&amp;amp;lt;?xml version='1.0' encoding='UTF-8' standalone='no'?&amp;amp;gt;&amp;amp;lt;svg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' version='1.0' width='50' height='80' id='svg3957'&amp;amp;gt;&amp;amp;lt;defs id='defs3959' /&amp;gt;&amp;amp;lt;path d='M 28.91433,...32.192802 z' style='fill:#cc4d00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.625;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1' id='path9551' /&amp;amp;gt;&amp;amp;lt;/svg&amp;amp;gt;&amp;quot; alt=&amp;quot;Barefoot&amp;quot;&amp;amp;gt;&lt;br /&gt;
** Does it work?? Well it parses OK. Some automated tools replace the &amp;amp;lt; with %3C (etc., e.g. Brian Suda's vCard form). Unfortunately Kontact (KDE contacts tool) doesn't handle SVG as a vCard photo or logo format - I don't know if this is a standard. It seems it could work and maybe even does somewhere. Maybe the text field needs to be Base64 encoded? ... see [http://slashdot.org/~pbhj/journal/142382 pbhj's slashdot journal] for a bit more on this.&lt;br /&gt;
* [http://cinematreasures.org Cinema Treasures] uses hCard to markup venue information for 10,000+ movie theaters.&lt;br /&gt;
* [http://www.w3.org/People/Connolly/events/ Dan Connolly's index of events and talks] has hCards for many of the people he has met at those events. In Mar 2006, he moved a bunch of hotel contact info from his PDA to this page; it's now up to 32 hCards.&lt;br /&gt;
* [http://doncrowley.blogspot.com/ Don Crowley] has published [http://www.crowley.nl/hcard.html his hCard] as well as a nifty hCard button: http://www.crowley.nl/images/hcard.png&lt;br /&gt;
* [http://loadaveragezero.com/hnav/contact.php Douglas W. Clifton] added all types of contact information&lt;br /&gt;
* [http://eventful.com Eventful] publishes all of its venue information pages with embedded hCards.&lt;br /&gt;
* [http://www.iowamilitaryveteransband.com/members/ Iowa Military Veterans Band Contacts] - 95 hCards [http://weblog.randomchaos.com/archive/2005/10/24/Microformats/ marked up by Scott Reynen]&lt;br /&gt;
* [http://JackWolfgang.blogspot.com Jack L. Wolfgang II] has [http://jack.randomata.com/resume/ converted the addresses in his resume to hCards].&lt;br /&gt;
* [http://www.efas.fupl.asso.fr/efas/_Mathieu-Drouet_.html Mathieu Drouet] and [http://www.efas.fupl.asso.fr/efas/_Annie-Leger_.html Annie Leger] both have hCards&lt;br /&gt;
* [http://www.oliverbrown.me.uk/ Oliver Brown] has published his hCard.&lt;br /&gt;
* [http://www.paradigmproductions.org/contact/ Paradigm Productions] published a vCard as a &amp;lt;code&amp;gt;ul&amp;lt;/code&amp;gt; (marked up by [http://www.linkingarts.com/ Peter Jacobson])&lt;br /&gt;
* [http://www.splintered.co.uk/ Patrick H. Lauke] has marked up [http://www.splintered.co.uk/about/ his contact info with hCard].&lt;br /&gt;
* [http://blah Paul Schreiber has published his hCard on [http://paulschreiber.com/about/?contact his about page].&lt;br /&gt;
* [http://paulschreiber.com/blog/ Paul Schreiber]'s [http://concerts.shrub.ca/ Sunnyvale House Concerts] site publishes hCards for upcoming artists, as well as an hCard for the page itself.  In addition the [http://concerts.shrub.ca/shows Past Shows] page contains hCards for all past artists.&lt;br /&gt;
* [http://www.paulmichaelsmith.com/blog/hcard.htm Paul Smith] has created an hCard page which is Human Readable, and a link to X2V passing the same hCard page to generate a vCard.&lt;br /&gt;
* [http://www.windley.com/archives/2005/07/hcards_trying_o.shtml Phil Windley has published] [http://phil.windley.org/hcard.html his hCard].&lt;br /&gt;
* [http://www.go-curiosity.com/about.htm Piercarlo Slavazza] has published an hCard.&lt;br /&gt;
* [http://zooibaai.nl/ Rob Mientjes] has published his hCard on [http://zooibaai.nl/about/ his about page].&lt;br /&gt;
* [http://rbach.priv.at/Contact Robert Bachmann] has published his hCard and [http://rbach.priv.at/Images/hcard a button].&lt;br /&gt;
* [http://blah Scott Reynen has published his hCard on [http://www.randomchaos.com/document.php?source=scott_reynen his profile page].&lt;br /&gt;
* [http://www.stackframe.com/ StackFrame, LLC] has published [http://www.stackframe.com/people/ employee] and [http://www.stackframe.com/contact/ general] contact information as hCards.&lt;br /&gt;
* [http://www.wolfsreign.com Steven Ametjan] has published his hCard on [http://www.wolfsreign.com/about/ his about page].&lt;br /&gt;
* [http://tantek.com/microformats/2005/syndicate/speakers-list.html Syndicate - Speaker List] as a set of hCards&lt;br /&gt;
* [http://tagcamp.org/index.cgi?ContactList TagCamp contact list]&lt;br /&gt;
* [http://www.deadringerart.com/ The Brothers McDowell] have hCards at their Contact page.&lt;br /&gt;
* [http://twinsparc.com/ Twinsparc] put an hCard in the header and footer of all their pages.&lt;br /&gt;
* [http://tantek.com/microformats/2005/web2/speakers.html Web 2.0 Conference speakers page marked up with hCard]&lt;br /&gt;
* [http://www.uoguelph.ca/directory/ The University of Guelph] includes hCard info in its directory.&lt;br /&gt;
* [http://www.echildcare.com.au/ The Australian Child Care Index] has over 3000 entries listing child care services across Australia - and every single one is marked up with an hCard!&lt;br /&gt;
* [http://www.cadforless.com/partners/ CADforless, Inc.] we listed our partners using hCard&lt;br /&gt;
* [http://avon.com/ Avon] - publishes all 40,000+ Avon representatives' contact info with hCard.&lt;br /&gt;
* [http://flock.com/about Flock About] page supports hCard microformat.&lt;br /&gt;
** by [[implementations#Flock|Flock]]&lt;br /&gt;
* [http://www.iowamilitaryveteransband.com/members/ Iowa Military Veterans Band]&lt;br /&gt;
* [http://www.nature.com/ Nature homepage], uses [[XOXO]].&lt;br /&gt;
** by [[implementations#Nature Publishing Group|Nature Publishing Group]]&lt;br /&gt;
* [http://concerts.shrub.ca/shows Sunnyvale House Concerts] supports hCard and [[hcalendar|hCalendar]].&lt;br /&gt;
* [http://www.bath.ac.uk/ University of Bath] [http://www.bath.ac.uk/contact/ Person Finder] supports hCard, e.g. see [http://www.bath.ac.uk/person/139897 Mr T Natt] page.&lt;br /&gt;
* [http://www.monster-prague.cz/ Monster Prague Openings] supports hCard, e.g. home page, contact list to come.&lt;br /&gt;
* [http://www.vogelelaw.com/contact.html Colette Vogele] has an hCard on her contact page with many types of name and contact information. (Marked up by [http://www.talkingtiger.net Naomi Raine]).&lt;br /&gt;
* [http://www.fixya.com/repair/cars/us/ca/san_francisco FixYa] (the troubleshooting site) has an hCard (vCard) in the repair directory displaying information about all kinds service providers.&lt;br /&gt;
&lt;br /&gt;
== examples by category ==&lt;br /&gt;
'''Want hCard?''' Get started with writing an [[hcard|hCard]] using the [http://microformats.org/code/hcard/creator hCard creator] to write up some contact information, [[validators#hCard|validate]] and publish it, or following the [[hcard-authoring|hCard authoring tips]] to add hCard markup to your current site.  Check out this section for similar examples of types of pages that benefit from hCard markup.&lt;br /&gt;
&lt;br /&gt;
This section organizes examples into several rough categories as follows. If an example fits in more than one cateogry, use the *last* matching category in this list that matches the specific hCard example(s) in the wild that you are trying to categorize.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Individuals|Individuals]]''' - one card per person, perhaps sort alphabetically by &amp;quot;family-name&amp;quot;.  People with their own hCards (typically) on their own site.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Organizations|Organizations]]''' - one card per organization, alphabetical by &amp;quot;fn&amp;quot;.  Organizations with their own hCard(s) (typically) on their own site.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Institutions|Institutions]]''' - which list more than one person, with a count estimating the # of hCards, e.g. 40k for Avon. Also indicate complexity of information supplied, eg. just name+number vs. complete details.  Alphabetically sorted by &amp;quot;org&amp;quot; with perhaps a few individuals listed in a single sub-bullet, comma delimited, sorted by &amp;quot;family-name&amp;quot;.&lt;br /&gt;
# '''[[hcard-supporting-user-profiles|Online Profiles]]''' - which host profiles for more than one person, with a count estimating the # of hCards, e.g. 10m+ for Flickr.com.  Alphabetically sorted by company / service name.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Online_Venues|Online Venues]]''' - which provide listings for businesses or organizations, with a count estimating the # of venues, e.g. ~10k for Upcoming.org. Alphabetically sorted by service/site name, with perhaps a few specific venues listed in a single sub-bullet, comma delimited, sorted by &amp;quot;fn&amp;quot;.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Speakers_Listings|Speakers Listings]]''' - event sites' speakers pages where the speakers are marked up with hCard.  Sort by date, sub-grouped by year.  Most recent first.  Perhaps a few individuals listed in a single sub-bullet each event, comma delimited, sorted by &amp;quot;family-name&amp;quot;.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Group_Blogs|Group Blogs]]''' - blogs with multiple authors marked up with hCard&lt;br /&gt;
# '''[[hcard-examples-in-wild#Authors|Authors]]''' - pages about some other thing, such as books, perhaps reviews etc., which have marked up their authors with hCard&lt;br /&gt;
# '''[[hcard-examples-in-wild#Search_Results|Search Results]]''' - results pages from search engines (either generic or for people/organizations) that return people marked up with hCards.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Listing_Contact|Listing Contact]]''' - contact information for a listing like a job posting, for sale offering, etc.&lt;br /&gt;
&lt;br /&gt;
In addition there is a separate &amp;quot;[[hcard-examples-in-wild#UTF8_Examples|UTF8 Examples]]&amp;quot; section that can be used to put another link to any hCard examples in the wild which exercise various non-ASCII7 / non-english characters for various property values.&lt;br /&gt;
&lt;br /&gt;
As each section itself become quite large (we might be there already, once we sort through the above &amp;quot;Reviewed Examples&amp;quot;), it will probably be moved to a separate page, leaving its heading here in place, and replacing its contents here with a link to the separate page and perhaps a stats summary.&lt;br /&gt;
&lt;br /&gt;
=== Individuals ===&lt;br /&gt;
Groupings alphabetically by &amp;quot;family-name&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Nicely styled:&lt;br /&gt;
* [http://www.jaredhanson.net/ Jared Hanson]'s home page has a beautiful hCard with numerous ways of contacting him, and live updating of his online status on various messaging networks (uses javascript).&lt;br /&gt;
* [http://rogieking.com/#contact Rogie King]'s contact info is marked up with hCard and very nicely styled.&lt;br /&gt;
* [http://timvandamme.com/ Tim Van Damme]'s home page is a beautiful hCard.&lt;br /&gt;
** needs a few minor fixes: http://tr.im/hctvd (links to hCard validator results)&lt;br /&gt;
&lt;br /&gt;
Simple web pages:&lt;br /&gt;
* [http://dbaron.org/ David Baron]'s home page is marked up with hCard.&lt;br /&gt;
* [http://abernier.name Antoine Bernier]'s UID hcard:&lt;br /&gt;
** Dynamic VCF download link (through [http://suda.co.uk/projects/microformats/hcard/get-contact.php?uri= hcard parser])&lt;br /&gt;
** Dynamic QRcode (through [http://microform.at/hcard2qrcode/ hcard2qrcode])&lt;br /&gt;
** Dynamic avatar (through [http://www.gravatar.com/ Gravatar])&lt;br /&gt;
** [http://wiki2008.openid.net/Delegation openID] ready&lt;br /&gt;
** [http://hcard.geekhood.net/?url=http%3A%2F%2Fabernier.name valid]&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik]'s home page includes an inline author hCard at the bottom of the page.&lt;br /&gt;
* [http://christophertcressman.com/ Christopher T. Cressman] put his contact details on [http://christophertcressman.com/ Who is Chris Cressman?] and marked them up with hCard.&lt;br /&gt;
&lt;br /&gt;
* [http://factoryjoe.com/hcard.html Chris Messina] has a page set aside with his contact details.&lt;br /&gt;
* [http://blog.roub.net/ Paul Roub] has an hCard for himself on his blog's home page.&lt;br /&gt;
* Patrick Trettenbrein is the operator of [http://skateboardspot.info/ skateboardspot.info] and uses hCard on its [http://skateboardspot.info/cat/about#operator &amp;quot;about&amp;quot; page] for his contact info.&lt;br /&gt;
* [http://blogs.msdn.com/cwilso/ Chris Wilson] has an hCard for himself on [http://blogs.msdn.com/cwilso/about.aspx his about page].&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Hidden! Invisible data is strongly discouraged, these examples have been grouped here in the hopes that the authors will someday make their hCards visible:&lt;br /&gt;
* [http://ajbrown.org/ A.J. Brown]'s home page includes a hidden hCard at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
Former. URLs that seem to have broken.&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;http://tomleo.com/about.html&amp;lt;/nowiki&amp;gt; Tom Leo's about page had an hCard. (missing as of 2009-08-23)&lt;br /&gt;
&lt;br /&gt;
=== Organizations ===&lt;br /&gt;
* [http://www.michrome.com Michrome Marketing Lists (UK)] use hCard on all their search result data.  For example, [http://michrome.com/free-leads/162-Bradford-BD9 Startup Companies in Bradford].&lt;br /&gt;
* [http://technorati.com Technorati] (3)&lt;br /&gt;
** [http://technorati.com/about/ about], [http://technorati.com/press/ press], and [http://technorati.com/about/contact.html contact] pages are marked up with hCard and have &amp;quot;Add to Address Book&amp;quot; links that use the [http://feed.technorati.com/contacts/ Technorati Contacts Feed service].&lt;br /&gt;
* [http://technorati.jp Technorati Japan] (1)&lt;br /&gt;
** [http://technorati.jp/about/contact.html contact] page is marked up with hCard.&lt;br /&gt;
* The imprint of [http://www.hsg-kl.de/impressum/index.php Hohenstaufen Gymnasium Kaiserslautern]&lt;br /&gt;
** '''suboptimal''': &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt; subproperties are not recognized due to lack of explicit &amp;quot;adr&amp;quot; property.&lt;br /&gt;
&lt;br /&gt;
=== Institutions ===&lt;br /&gt;
* [http://conferences.oreillynet.com/contacts.csp O'Reilly's Conferences Team page] has hCards for their team (~14) with a link to &amp;quot;Download the below contact info in vcf format&amp;quot; that uses the [http://feeds.technorati.com/contacts/ Technorati contacts feed service] to convert the hCards into vCards.&lt;br /&gt;
** '''suboptimal''': The &amp;quot;org&amp;quot; shouldn't be hidden with &amp;quot;display:none&amp;quot;. Instead, use the [[include-pattern]] to include the &amp;quot;org&amp;quot; from text elsewhere on the page (to avoid duplicating the text).&lt;br /&gt;
* [http://technorati.com/about/staff.html Technorati's Staff page] has hCards for its employees (~31)&lt;br /&gt;
** E.g. [http://technorati.com/about/staff.html?s=matthew_levine#matthew_levine Matthew Levine], [http://technorati.com/about/staff.html?s=ryan_king#ryan_king Ryan King], etc.&lt;br /&gt;
'''with some problems:'''&lt;br /&gt;
* The [http://www.ibm.com/contact/employees/ IBM Employee Directory] returns hCards in its query results&lt;br /&gt;
** E.g. [http://www.ibm.com/contact/employees/servlets/lookup?country=us&amp;amp;language=en&amp;amp;search_country=all&amp;amp;lastname=Kaply&amp;amp;firstname=Michael search for Michael Kaply], &lt;br /&gt;
** but with some problems: &lt;br /&gt;
*** '''invalid''': no &amp;quot;fn&amp;quot; (would be addressed by the [[hcard-brainstorming#Implied_FN_from_N|implied fn from n proposal]]) &lt;br /&gt;
*** '''suboptimal''': adr has no children and thus is not providing any data (may be addressed by the [[hcard-brainstorming#implied_adr_subproperties|implied adr subproperties proposal]])&lt;br /&gt;
* [http://www.boltonmuseums.org.uk Bolton Museum and Archive Service] uses hCard on its&lt;br /&gt;
**[http://www.boltonmuseums.org.uk/about/contact/ Contacts] page&lt;br /&gt;
***'''invalid''': Several have no &amp;quot;fn&amp;quot;&lt;br /&gt;
**and on each of its visitor attractions pages e.g. on the [http://www.boltonmuseums.org.uk/visiting/findhallthwood/ Hall i' th' Wood location page].&lt;br /&gt;
***'''suboptimal''': &amp;quot;email&amp;quot; and &amp;quot;tel&amp;quot; properties mistakenly include &amp;quot;Email:&amp;quot; and &amp;quot;Telephone:&amp;quot; labels.&lt;br /&gt;
* [http://soap.stanford.edu/ Stanford Online Accessibility Program] has implemented hCard on every page&lt;br /&gt;
** '''suboptimal''': positioned off screen via CSS&lt;br /&gt;
* [http://www.belkin.com/pressroom/releases/uploads/10_09_06SportCommand.html Belkin Press Release] - All Belkin  press releases since October 2006 use hCard and vCard for company contact info.&lt;br /&gt;
** '''invalid''': Example has 1 (out of 3) invalid hCard due to lack of &amp;quot;fn&amp;quot;.&lt;br /&gt;
* [http://www.alexa.com Alexa Internet] marked up its [http://www.alexa.com/site/company/managers managers' page] with hCard.&lt;br /&gt;
** '''suboptimal''': job &amp;quot;title&amp;quot; is included inside within &amp;quot;fn&amp;quot; property.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Online Profiles ===&lt;br /&gt;
* See [[hcard-supporting-profiles]].&lt;br /&gt;
&lt;br /&gt;
=== Online Venues ===&lt;br /&gt;
* [http://www.sydneydirectory.org/ Sydney Directory Wiki] supports hCard and geographical coordinates for locations, e.g. the [http://www.sydneydirectory.org/index.php/Opera_House Sydney Opera House].&lt;br /&gt;
* [http://www.airfix.com/stockists-and-distributors/ Airfix Stockists and Distributors], e.g. [http://www.airfix.com/stockists-and-distributors/?postcode=b1+1bb&amp;amp;root_rid=1&amp;amp;search.x=0&amp;amp;search.y=0&amp;amp;search=search]&lt;br /&gt;
**'''suboptimal''': &amp;lt;code&amp;gt;street-address&amp;lt;/code&amp;gt; contains street address, locality and region (e.g. &amp;quot;99 Hobs Moat Rd, Solihull, W. Midlands&amp;quot;)&lt;br /&gt;
**'''suboptimal''': &amp;lt;code&amp;gt;postal-code&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;country-name&amp;lt;/code&amp;gt; include preprended commas&lt;br /&gt;
**'''suboptimal''': &amp;lt;code&amp;gt;fn&amp;lt;/code&amp;gt; is used; should be &amp;lt;code&amp;gt;fn org&amp;lt;/code&amp;gt;&lt;br /&gt;
* [http://www.easthampshire.org/ easthampshire.org] - hCard on events and events map - e.g. http://easthampshire.org/eventdetail/wine_society_evening/1372606 and http://easthampshire.org/eventmap/wine_society_evening/1372606 built by [http://www.callendercreates.com Callender Creates]&lt;br /&gt;
&lt;br /&gt;
=== Speakers Listings ===&lt;br /&gt;
==== 2007 ====&lt;br /&gt;
[[to-do]]: check 2007 [[presentations]] as they likely contain links to conferences that marked up their speakers page(s) with hCard.&lt;br /&gt;
* 09: [http://2006.dconstruct.org/speakers/ d.Construct 2007 speakers]&lt;br /&gt;
==== 2006 ====&lt;br /&gt;
[[to-do]]: check 2006 [[presentations]] as they likely contain links to conferences that marked up their speakers page(s) with hCard.&lt;br /&gt;
* 09: [http://2006.dconstruct.org/speakers/ d.Construct 2006 speakers]&lt;br /&gt;
==== 2005 ====&lt;br /&gt;
[[to-do]]: check 2005 [[presentations]] as they likely contain links to conferences that marked up their speakers page(s) with hCard.&lt;br /&gt;
* 12: [http://tantek.com/microformats/2005/syndicate/speakers-list.html Syndicate - Speaker List] (hCarded version hosted at tantek.com)&lt;br /&gt;
* 10: [http://tantek.com/microformats/2005/web2/speakers.html Web 2.0 Conference 2005 -- Speakers] (hCarded version hosted at tantek.com)&lt;br /&gt;
* 09: [http://web.archive.org/web/20051102094339/we05.com/ Web Essentials 05] - [http://web.archive.org/web/20051102094339/we05.com/presenters.cfm The Presenters]  &amp;lt;nowiki&amp;gt;original URL: http://we05.com/presenters.cfm&amp;lt;/nowiki&amp;gt; (appears to have stopped working as of 2007-12-18, perhaps earlier). Web Essentials 2005 (we05) was the [http://tantek.com/log/2005/10.html#d06t1720 first conference to adopt hCard and hCalendar] on their website and marked up all their presenters with hCard.&lt;br /&gt;
&lt;br /&gt;
=== Group Blogs === &lt;br /&gt;
* The [http://www.ibm.com/shortcuts/ IBM Shortcuts Podcast] has authors marked up with hCard but has some problems:&lt;br /&gt;
** '''hidden''': The root hCard element as well as every property contained therein is made invisible through a style attribute containing &amp;quot;position:absolute; visibility:hidden&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Authors ===&lt;br /&gt;
* [http://lazylibrary.com LazyLibrary] uses author hCard's on every book page. Example: [http://lazylibrary.com/book/0751370576]&lt;br /&gt;
** '''suboptimal''' [http://lazylibrary.com/book/0751370576 Example] has an fn of &amp;quot;Dorling Kindersley, David West Reynolds&amp;quot; which should be split into two hCards! (site would also benefit from hReview).&lt;br /&gt;
&lt;br /&gt;
=== Search Results ===&lt;br /&gt;
* [http://www.bath.ac.uk/contact/ University of Bath] Person Finder results are encoded with hCards so you can easily create a vCard from any result. &lt;br /&gt;
** '''invalid''': attempt to use Implied-N optimization where that's not possible,&lt;br /&gt;
** '''suboptimal''': honorific-prefix could be explicitly marked up&lt;br /&gt;
*** Error appears for external users only. Won't be fixed any time soon. -- [[User:PhilWilson|PhilWilson]] 00:03, 28 Jan 2006 (GMT)&lt;br /&gt;
&lt;br /&gt;
=== Listing Contact ===&lt;br /&gt;
Contact information for listings, e.g. job postings, items for sale, etc.&lt;br /&gt;
&lt;br /&gt;
* [http://seogadget.co.uk/search-marketing-executive-upto-30k-portsmouth/ search marketing executive] published by [http://seogadget.co.uk/ SEOgadget].&lt;br /&gt;
** '''invalid url property''' - href of the url property element lacks &amp;lt;nowiki&amp;gt;http://&amp;lt;/nowiki&amp;gt;, thus being invalid and linking to a non-existent relative URL.&lt;br /&gt;
** '''invalid XHTML''' - W3C validator reports this page as [http://validator.w3.org/check?uri=http://seogadget.co.uk/search-marketing-executive-upto-30k-portsmouth/ XHTML 1.0 Transitional] (109 errors as of 2009-08-20).&lt;br /&gt;
&lt;br /&gt;
===UTF8 Examples===&lt;br /&gt;
These examples all contain one or more characters in UTF8 that are outside the ASCII7 range and make for excellent test cases to make sure you are handling UTF8 properly throughout your hCard parsing and transforming. And especially if you are generating vCards, these test cases will help you make sure you are generating UTF8 vCards in such a way that can be recognized by UTF8 supporting vCard applications. Sorted roughly alphabetically (per Unicode).&lt;br /&gt;
* [http://sphinx.net.ru/author/ Dmitry Dzhus] embedded his UTF8 encoded hCard with Russian characters in Â«AuthorÂ» page of his website.&lt;br /&gt;
* [http://tantek.com/ Tantek's Thoughts] encodes Ãelik as inline UTF8.&lt;br /&gt;
* [http://technorati.jp/about/contact.html Technorati Japan contact information] encodes Japanese as inline UTF8.&lt;br /&gt;
* [http://uk.wikipedia.org/wiki/%D0%93%D0%B5%D1%82%D1%8C%D0%BC%D0%B0%D0%BD_%D0%92%D0%B0%D0%B4%D0%B8%D0%BC_%D0%9F%D0%B5%D1%82%D1%80%D0%BE%D0%B2%D0%B8%D1%87 Vadym Hetman] (Wikipedia-UK (Ukranian))&lt;br /&gt;
==== nickname only ====&lt;br /&gt;
These UTF8 examples only have UTF8 for the &amp;quot;nickname&amp;quot; property and are thus are a bit easier for testing than the previous examples.&lt;br /&gt;
* Various Wikipedia-EN articles, e.g. the &amp;quot;nickname&amp;quot; in: [http://en.wikipedia.org/wiki/Noyabrsk Noyabrsk] (Russian), [http://en.wikipedia.org/wiki/Thessaloniki Thessaloniki] (Greek), [http://en.wikipedia.org/wiki/Kyoto Kyoto] (Japanese) and [http://en.wikipedia.org/wiki/Beijing Beijing] (Chinese)&lt;br /&gt;
&lt;br /&gt;
===non-HTML examples===&lt;br /&gt;
* [http://dannyayers.com/misc/microformats/hcard-svg Danny Ayers' SVG hCard demo]&lt;br /&gt;
&lt;br /&gt;
=== missing ===&lt;br /&gt;
Examples that used to have one or more hCards but now don't seem to have any. If you do find one, please include direct links to at least two (assuming there are two or more) pages at the referenced site that have one or more hCards.&lt;br /&gt;
* [http://mapquest.com Mapquest] now supports hCards for business and places in the search results (e.g. [http://www.mapquest.com/maps/map.adp?searchtype=address&amp;amp;country=US&amp;amp;searchtab=home&amp;amp;formtype=address&amp;amp;cat=Whole+Foods&amp;amp;city=san+francisco&amp;amp;state=ca search for Whole Foods in San Francisco])&lt;br /&gt;
** appears to be missing hCards as of 2008-09-07&lt;br /&gt;
&lt;br /&gt;
== related pages ==&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=to-do&amp;diff=40872</id>
		<title>to-do</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=to-do&amp;diff=40872"/>
		<updated>2009-09-30T18:06:09Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: Added Ketan as  User with To-Do&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;To Do&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
This page is for posting [[microformats]] related shared to do items.  If you want to use this page for your microformats related to-do items, create a section with your name on it.  The reason we are keeping these all on the same page is to make it easier to tell when people are working on similar things, and to make it more obvious when people help out with other people's tasks.  In theory this probably won't scale, but let's first see how it does in practice. :) - [http://tantek.com Tantek]&lt;br /&gt;
&lt;br /&gt;
== Lazyweb ==&lt;br /&gt;
&lt;br /&gt;
Just some nice things, feel free to do any of these.&lt;br /&gt;
&lt;br /&gt;
=== for all microformats ===&lt;br /&gt;
* We have added a new mailing list called microformats-new.  There may be some confusion surrounding this change, so it would be helpful to:&lt;br /&gt;
** Draft a message to be added to the confirm message sent when someone subscribes to any list including a welcome message, ground rules, topic for the subscribed list, and the topics for nearby lists.&lt;br /&gt;
** Add a faq entry somewhere on why the new list was created.&lt;br /&gt;
** Double check the wiki pages to make sure advice on mailing lists is accurate.&lt;br /&gt;
* quick and easy &amp;quot;how to&amp;quot; pages for each microformat. [[get-started]] is a good overall start.&lt;br /&gt;
* brief summary statements for each microformat that explain why it matters, what does it accomplish for the publisher.&lt;br /&gt;
* write up [http://microformats.org/discuss/ mailing-list] questions and answers in the appropriate [[faq]] pages.&lt;br /&gt;
* validators.  See the hReview section below as there has been a request for an hReview validator in particular. See [http://norman.walsh.name/2006/04/13/validatingMicroformats Norman Walsh's blog post &amp;quot;Validating microformats&amp;quot;] for some valuable analysis and validation pseudo-code (prose description), which are useful steps towards building microformat validators.&lt;br /&gt;
* Submit definitions of &amp;quot;microformat&amp;quot;, and individual examples, to the [http://foldoc.org Free On-line Dictionary of Computing], acording to [http://foldoc.org/editing.html the Free On-line Dictionary of Computing guidelines]&lt;br /&gt;
* it would be nice to replace the -in-the-wild pages with a form that accepted URL entries that would both register the site and look for valid microformatted content and for those pages with problems, would set them aside in a queue to be reviewed by the community. Having such an interface would likely be more efficient for implementors looking to have their work reviewed, and would also add to a ready-database of microformats in the wild -- which would be a great way to feed pingerati.com. [[User:Chris_Messina Chris Messina]] on 2007 Aug 31.&lt;br /&gt;
* check with the group and then, assuming this is accepted, remove mention of the profile=&amp;quot;&amp;quot; attribute from the wiki, since HTML5 removes the need for profiles to be declared&lt;br /&gt;
&lt;br /&gt;
=== hCard ===&lt;br /&gt;
* microformatted versions of conference pages&lt;br /&gt;
** Wait for confirmation from O'Reilly webmaster on revision of the [http://conferences.oreillynet.com/etel2006/ ETel] [http://conferences.oreillynet.com/pub/w/44/speakers.html speaker's page] with all the speakers marked up with [[hcard|hCard]] and links to &amp;quot;Add hCards to Address Book&amp;quot; etc., similar to the [http://tantek.com/microformats/2005/web2/speakers.html Web 2.0 speakers page which Tantek did a revision of last fall].&lt;br /&gt;
* vcard to hcard converter&lt;br /&gt;
** would be nice to have a web upload UI that would take one or more vCards from apple's address book and give them back to you as hCards&lt;br /&gt;
** [[User:RobertBachmann | RobertBachmann]] suggests starting points:&lt;br /&gt;
*** For Ruby: http://vpim.rubyforge.org/ &lt;br /&gt;
*** For C: http://freshmeat.net/projects/libvc/&lt;br /&gt;
*** For Python: http://www.nongnu.org/python-pdi/&lt;br /&gt;
*** For PHP: http://pear.php.net/package/Contact_Vcard_Parse/&lt;br /&gt;
** I (Andy Pemberton) started working on this at one point, but haven't touched it in a while: [http://www.andypemberton.com/sandbox/hcardconvert/ vCard-2-hCard]&lt;br /&gt;
* add export support for microformats to [http://www.turingart.com/abForWeb_lan__en.htm AB to Web]&lt;br /&gt;
* A mash-up with google maps that will take any url with a hcard (or hcard's) and map the location(s) on a map (similar to [http://austin.adactio.com/ austin.adactio.com])&lt;br /&gt;
* more test cases - add to [[hcard-examples]] to begin with, then hopefully create test cases for development to be checked in with mercurial to the repository&lt;br /&gt;
** include class=&amp;quot;type&amp;quot; without explicit value test cases, based on [[hcard#type_with_unspecified_value|hCard type with unspecified value]].&lt;br /&gt;
&lt;br /&gt;
=== hCalendar ===&lt;br /&gt;
==== Add support to open source calendar projects ====&lt;br /&gt;
These are open source projects that could be potentially enhanced to support hCalendar.&lt;br /&gt;
&lt;br /&gt;
* [http://www.k5n.us/webcalendar.php?topic=About WebCalendar]&lt;br /&gt;
* [http://phpicalendar.net/documentation/index.php?title=Main_Page PHP iCalendar]&lt;br /&gt;
* [http://www.vcalendar.org VCalendar]&lt;br /&gt;
* Investigation: [http://wiki.mozilla.org/Calendar_Talk:Lightning#hCalendar_publish_and_subscribe_support Mozilla Calendar / Lightning / Sunbird hCalendar support discussion]&lt;br /&gt;
&lt;br /&gt;
=== hReview ===&lt;br /&gt;
* [[hreview|hReview]] support in Ecto (hey Adriaan!), requested by Andy Smith&lt;br /&gt;
* an [[hreview|hReview]] validator.&lt;br /&gt;
* a semantic, clean css star rating picker (e.g. a UI widget to rate from 1-5 stars)&lt;br /&gt;
** both [http://komodomedia.com/blog/index.php/2005/08/24/creating-a-star-rater-using-css/ this] and [http://factorycity.net/demos/drupal/rating/default.html this] have some flaws. Ask [[User:RyanKing|Ryan King]] for an explanation.&lt;br /&gt;
&lt;br /&gt;
=== hCalendar/hCard/hReview editor ===&lt;br /&gt;
* onblur in the URL field (e.g. on hCalendar), goes out and tries to retrieve an object of same time (e.g. an hCalendar vevent) from that URL and uses it to autofill the form, same thing if the creator is loaded with that URL prefilled (e.g. due to a ?url=http://example.com/ in the URL that loads the creator).&lt;br /&gt;
&lt;br /&gt;
=== hAtom ===&lt;br /&gt;
* [[hatom-issues]] needs sections for closed issues, resolved issues, and open issues sorted by year, similar to [[hcard-issues]].&lt;br /&gt;
&lt;br /&gt;
=== WordPress patches for microformats ===&lt;br /&gt;
* submit patches for WordPress code/templates for microformats improvement&lt;br /&gt;
** &amp;amp;lt;address class=&amp;quot;vcard&amp;quot;&amp;amp;gt; improvement in post author publication (e.g. home page of http://microformats.org/ )&lt;br /&gt;
* Wordpress plugin for microformats, specifically hReview and hCalendar&lt;br /&gt;
** See [http://www.surfarama.com/index.php?p=227 lazyweb request]&lt;br /&gt;
&lt;br /&gt;
=== Yahoo Open Source Library Patches ===&lt;br /&gt;
Several of these could very much be improved with a little microformats markup.  Do we just make patches and submit them?  Contact Nate Koechley at Yahoo (see Tantek for contact info) to follow-up.&lt;br /&gt;
&lt;br /&gt;
* [http://developer.yahoo.net/yui/ Yahoo! User Interface Library]&lt;br /&gt;
* [http://developer.yahoo.net/ypatterns/ Yahoo! Design Patterns Library]&lt;br /&gt;
* [http://www.yuiblog.com Yahoo! User Interface Blog]&lt;br /&gt;
&lt;br /&gt;
=== Drupal patches for microformats ===&lt;br /&gt;
* [http://groups.drupal.org/microformats-in-drupal Microformat Module for Drupal] A group discussing ways to implement microformats in Drupal.  Currently looking to support hAtom, hCard and hCalendar to start with.  Contact digitalspaghetti at gmail dot com if you are interested in contributing to the project.&lt;br /&gt;
&lt;br /&gt;
=== Adding Microformats to Existing Pages ===&lt;br /&gt;
* See [[advocacy#Adding_Microformats_to_Existing_Sites|advocacy: Adding microformats to existing sites]].&lt;br /&gt;
&lt;br /&gt;
===rel-tagging on Wikipedia===&lt;br /&gt;
Somebody familiar with the &amp;quot;rel-tag&amp;quot; microformat might want to add details, and a link to the relevant page on this Wiki, to the [http://en.wikipedia.org/wiki/Tag_%28metadata%29 Wikipedia page on tagging]. [[User:AndyMabbett|Andy Mabbett]] 14:07, 3 Jan 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
===Glossary===&lt;br /&gt;
Add to the [[glossary]].&lt;br /&gt;
&lt;br /&gt;
===hAtom tutorial===&lt;br /&gt;
Finish the [[hatom-tutorial]].&lt;br /&gt;
 	&lt;br /&gt;
=== wiki gardening ===&lt;br /&gt;
* Find [[:Special:Lonelypages|orphaned]] pages, and add links to them.&lt;br /&gt;
* Use [[templates]] for boilerplate text and repeated lists of links&lt;br /&gt;
* Add keywords to the foot of pages (see [[vcard-suggestions]] for examples), so that they can be converted to tags, once this wiki allows the use of &amp;quot;rel&amp;quot; attributes. Keywords can also include synonyms to aid searching. &lt;br /&gt;
&lt;br /&gt;
====Spelling====&lt;br /&gt;
Per [[how-to-play]]: for English-language pages only: Find British spellings of common words and replace them with the US spellings per [[en-US]]. Mark such edits as &amp;quot;minor&amp;quot; with the comment: &amp;lt;nowiki&amp;gt;[[en-US]]&amp;lt;/nowiki&amp;gt;. Please be careful to use and maintain proper native spelling of proper nouns (see [[how-to-play]] for details).&lt;br /&gt;
&lt;br /&gt;
Here is a table of searches for some of the British-English spellings that have crept into English-language microformats wiki pages, along with their respective US-English spellings. If you find other British spellings, please feel free to add them to this table, with their US equivalent.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! [[en-GB]] !! [[en-US]] &lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=behaviour&amp;amp;go=Go behaviour] || behavior&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=behaviours&amp;amp;go=Go behaviours] || behaviors&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=centre&amp;amp;go=Go centre] || center&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=colour&amp;amp;go=Go colour] || color&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=colours&amp;amp;go=Go colours] || colors&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=favour&amp;amp;go=Go favour] || favor&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=flavour&amp;amp;go=Go flavour] || flavor&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=flavours&amp;amp;go=Go flavours] || flavors&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=flavoured&amp;amp;go=Go flavoured] || flavored&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=minimise&amp;amp;go=Go minimise] || minimize&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=minimises&amp;amp;go=Go minimises] || minimizes&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=recognise&amp;amp;go=Go recognise] || recognize&lt;br /&gt;
|-&lt;br /&gt;
| [http://microformats.org/wiki/Special:Search?search=recognised&amp;amp;go=Go recognised] || recognized&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/American_and_British_English_spelling_differences More American and British English spelling differences]&lt;br /&gt;
&lt;br /&gt;
== Admins ==&lt;br /&gt;
This section is for folks to suggest to-do items for [[admins]], in particular, having to do with suggestions for improvements to microformats.org infrastructure such as the wiki. If you do add an item to this list, please sign your username with four tildes: &amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Admins check this &amp;quot;inbox&amp;quot; periodically and process and move items to [[admin-to-do]].&lt;br /&gt;
&lt;br /&gt;
Please check [[admin-to-do]] to see if there is already an ongoing task item relating to your request. Otherwise add the item below.&lt;br /&gt;
&lt;br /&gt;
=== Website Improvements ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Wiki improvements ===&lt;br /&gt;
&lt;br /&gt;
* New link styles for links to mailing list archive&lt;br /&gt;
** Lacking a more concrete suggestion for how to improve such links, I'm inclined to park this in &amp;quot;won't do&amp;quot;. [[User:Tantek|Tantek]] 02:39, 10 September 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
* Add proper styling to phrase elements&lt;br /&gt;
** Lacking a more concrete suggestion for how to improve styling of phrase elements, I'm inclined to park this in &amp;quot;won't do&amp;quot;. [[User:Tantek|Tantek]] 02:39, 10 September 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
* Make email addresses editable [[User:Singpolyma|Singpolyma]] 02:47, 26 July 2009 (UTC)&lt;br /&gt;
** How would this work and what's the purpose? [[User:Tantek|Tantek]] 02:39, 10 September 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Tantek ==&lt;br /&gt;
I'm keeping a few microformats related to-do items here both for my own convenience, and for folks looking to help out with small tasks.  If so, just create a new section with your name, and and maybe copy the item there, and put your name next to the item in my list.  We'll figure this out as we go along.  Thanks,  [http://tantek.com Tantek].&lt;br /&gt;
&lt;br /&gt;
=== overall priority ordering ===&lt;br /&gt;
# Protect the community from threats (wiki damage, mailing list pain or noise), repair damage, add measures to reduce future damage&lt;br /&gt;
# Help publishers with established microformats: [[hcard|hCard]], [[xfn]], [[rel-tag]], [[hcalendar|hCalendar]], [[hreview|hReview]], [[xfolk|xFolk]]&lt;br /&gt;
# Help implementers with established microformats&lt;br /&gt;
# Iterate on existing established microformats, resolve issues/feedback etc.&lt;br /&gt;
# Wiki cleanup/gardening for existing established microformats&lt;br /&gt;
# Site usability of microformats.org top-down as an entry point&lt;br /&gt;
# Community dynamics, [[process]] and [[principles]] improvements to help guide new microformats developments&lt;br /&gt;
# Emerging in-demand microformats: [[hresume|hResume]], [[hlisting|hListing]], [[citation]], [[media-info]] using abovementioned process and principles improvements.&lt;br /&gt;
# New microformat requests&lt;br /&gt;
# Document microformats [[history]].&lt;br /&gt;
# Other&lt;br /&gt;
&lt;br /&gt;
=== protect the community ===&lt;br /&gt;
* Analyze [[Special:Recentchanges]] and [http://microformats.org/discuss mailing-lists] and:&lt;br /&gt;
** add to [[mailing-lists]] and [[how-to-play]] policies/guidelines accordingly.&lt;br /&gt;
** redirect and resolve threads accordingly per guidelines&lt;br /&gt;
** privately email violaters kindly asking them to improve their behavior&lt;br /&gt;
** work with admins on next steps for individuals negatively impacting the community&lt;br /&gt;
** recognize noisy/distracting threads on the email list, document responses/answers to such subjects on the appropriate page(s) on the wiki, and reply to those threads with the URLs to the documentation on the wiki. Putting the responses/answers on the wiki helps by hopefully providing preemptive answers to some who might reraise the subjects on the list in the future, and helps the community quickly terminate such threads by using the answers on the wiki.&lt;br /&gt;
** move exploratory discussions which are failing to follow the process to a separate page from that&lt;br /&gt;
** repair damage done to the wiki&lt;br /&gt;
*** identify damage done to the wiki - often in forms as simple as content changes that hurt usability (and thus accessibility)&lt;br /&gt;
*** document additional [[how-to-play]] guidelines to discourage and hopefully reduce such wiki damaging behavior in the future&lt;br /&gt;
*** repair/undo/reorganize page section division that hurt usability (and thus accessibility)&lt;br /&gt;
**** [[hcalendar-examples-in-wild]]&lt;br /&gt;
***** afterwards add some of the excellent conference schedule calendars that [[User:Adactio]] has been creating like:&lt;br /&gt;
****** http://adactio.com/extras/schedules/barcampbrighton3/&lt;br /&gt;
*** repair/undo/reorganize page splitting that hurt usability (and thus accessibility)&lt;br /&gt;
**** [[to-do]]&lt;br /&gt;
&lt;br /&gt;
=== help publishers ===&lt;br /&gt;
==== solve problems blocking publishers ====&lt;br /&gt;
* [[value-class-pattern]]&lt;br /&gt;
&lt;br /&gt;
===== minor update current specifications =====&lt;br /&gt;
* think about solving enumerated type issue (in [[hcard-issues]]) &lt;br /&gt;
* draft hCard 1.0.1: [[hcard|hCard spec]] '''next-actions''': &lt;br /&gt;
** &amp;lt;del&amp;gt;resolve remaining [[hcard-issues|hCard issues]]&amp;lt;/del&amp;gt;&lt;br /&gt;
** draft [[hcard-1-0-1]] by starting with [[hcard-1-0]] and incrementally incorporating [[hcard-issues-resolved|hCard issue resolutions]], moving them to [[hcard-issues-closed]] accordingly.&lt;br /&gt;
** incorporate [[hcard-feedback]]&lt;br /&gt;
** continue updating the spec per the inline comment about property references&lt;br /&gt;
** add a brief descriptive sentence for each property, similar to what [[hreview|hReview]] has. just enough so that the casual reader can avoid having to reference and read the respective sections in [[RFC2426]]. add any non-trivial information about each property similar to what [[hreview|hReview]] has.&lt;br /&gt;
** iterate [[hcard-parsing]] with [[value-class-pattern]] as a required feature&lt;br /&gt;
** iterate [[hcard-parsing]] with sufficient table element special handling to do people equivalent of [http://microformats.org/wiki/hcalendar- brainstorming#Tabular_event_calendars]&lt;br /&gt;
** [[hcard-brainstorming]] '''next-actions''': determine which brainstorms proposals to resolve for minor revision, and which later&lt;br /&gt;
** Update [[semantic-xhtml]] with lists of semantic [http://www.w3.org/TR/html401/index/elements.html elements] and [http://www.w3.org/TR/html401/index/attributes.html attributes].&lt;br /&gt;
** Update [[hcard-brainstorming]] on element specific parsing rules&lt;br /&gt;
** Update X2V, hKit, Operator accordingly&lt;br /&gt;
** Write test cases accordingly&lt;br /&gt;
** Update [[hcard-parsing]] accordingly&lt;br /&gt;
* draft hCalendar 1.0.1: [[hcalendar|hCalendar spec]] '''next-actions''':&lt;br /&gt;
** resolve all outstanding [[hcalendar-issues]] into [[hcalendar-issues-resolved]]&lt;br /&gt;
** draft [[hcalendar-1-0-1]] by starting with [[hcalendar-1-0]] and incrementally incorporating [[hcalendar-issues-resolved|hCalendar issue resolutions]], moving them to [[hcalendar-issues-closed]] accordingly.&lt;br /&gt;
** incorporate [[hcalendar-feedback]]&lt;br /&gt;
** itemize a complete property list similar to the [[hcard#Property_List|hCard property list]], drawing upon hCalendar experience, iCal-BASIC draft(s), ietf-calsify mailing list and other sources to derive the precise list.  Separate common properties up front.&lt;br /&gt;
** add a brief descriptive sentence for each property, similar to what [[hreview|hReview]] has. just enough so that the casual reader can avoid having to reference and read the respective sections in [[RFC2445]]. add any non-trivial information about each property similar to what [[hreview|hReview]] has.&lt;br /&gt;
** significantly update and thoroughly specify [[hcalendar-parsing]] with [[value-class-pattern]] as a required feature&lt;br /&gt;
** formally document [http://microformats.org/wiki/hcalendar- brainstorming#Tabular_event_calendars]&lt;br /&gt;
** [[hcalendar-examples]]&lt;br /&gt;
*** make sure all hCalendar examples that reference whole days use best international/accessible date format of YYYY-MM-DD&lt;br /&gt;
*** add explicit explanation and examples for LOCATION [[hcard|hCards]] and ATTENDEE [[hcard|hCards]], perhaps on a separate [[hcalendar-examples]] page.&lt;br /&gt;
** Write [[compound-parsing]] by abstracting commonalities between [[hcard-parsing]] and [[hcalendar-parsing]].&lt;br /&gt;
* draft hReview 0.4&lt;br /&gt;
* resolve hAtom issues&lt;br /&gt;
* co-edit hAtom per permission from David Janes&lt;br /&gt;
* draft [[hAtom]] 0.2&lt;br /&gt;
** Clarify that &amp;quot;published&amp;quot; property values may omit seconds, and that converters to Atom are expected to imply &amp;quot;:00&amp;quot; seconds.&lt;br /&gt;
* add sections for comments/opinion from community as well as issues subsection&lt;br /&gt;
* solicit feedback&lt;br /&gt;
* when sufficient consensus and issue resolution achieved, archive previous versions of specs, and update spec pages accordingly.&lt;br /&gt;
&lt;br /&gt;
==== social network portability ====&lt;br /&gt;
Iterate on:&lt;br /&gt;
* [[social-network-portability]]&lt;br /&gt;
* [[hcard-supporting-user-profiles]]&lt;br /&gt;
* [[hcard-xfn-supporting-friends-lists]]&lt;br /&gt;
&lt;br /&gt;
Brainstorm updates to the [[pocket-cheat-sheet]] to better enable [[social-network-portability]], or perhaps design a new '''social network portability pocket cheat sheet''' that specifically documents:&lt;br /&gt;
* how to author/publish hCard user profiles - write this up in [[hcard-authoring]] first (see below) and then use that content.&lt;br /&gt;
* how to author/publish hCard+XFN friends lists - write this up in [[hcard-xfn-authoring]] (see below) and then use that content.&lt;br /&gt;
* how to parse/subscribe to hCard user profiles - write this up by updating: [[hcard-parsing]], and writing [[hcard-supporting-user-profile-parsing]] (collect this into parsing/developers tasks below)&lt;br /&gt;
* how to parse/subscribe to hCard+XFN friends lists - write this up by writing: [[xfn-parsing]], [[hcard-xfn-supporting-friends-list-parsing]] (collect these into parsing/developers tasks below)&lt;br /&gt;
** notes/thoughts on hCard+XFN supporting friends list parsing captured here for now:&lt;br /&gt;
*** do a full rel=&amp;quot;me&amp;quot; bidirectional crawling within the domain - some sites' hCard supporting user profiles simply link to their hCard+XFN supporting friends lists with rel=&amp;quot;me&amp;quot;, and thus you will discover more pages with friends lists.&lt;br /&gt;
**** E.g. Flickr's /people/username pages have hCard for the user and link to their /people/username/contacts page with rel=&amp;quot;me&amp;quot; (on the &amp;quot;More...&amp;quot; link, though they could also add rel=&amp;quot;me&amp;quot; to the number inside &amp;quot;Your contacts (592)&amp;quot;). Need to get them to support hCard+XFN on the contacts themselves.&lt;br /&gt;
*** consider parsing within a friends list page, any links that are rel=&amp;quot;next&amp;quot; and rel=&amp;quot;prev&amp;quot; to iterate over the whole list.&lt;br /&gt;
&lt;br /&gt;
==== foldup cheatsheet ====&lt;br /&gt;
'''next actions''': &lt;br /&gt;
* gather feedback on current foldup [[pocket-cheat-sheet|pocket cheatsheet]]&lt;br /&gt;
* document the [[pocket-cheat-sheet-feedback|feedback on the pocket cheatsheet]]&lt;br /&gt;
* provide printing recommendations for anyone to download and print their own &lt;br /&gt;
** Perhaps [http://www.visibone.com/ Visibone] can be of some use? I can recommend their current products. --[[User:Gazza|Gazza]] 06:41, 7 Apr 2007 (PDT)&lt;br /&gt;
* update cheatsheet to include new [[value-class-pattern]] uses&lt;br /&gt;
* give feedback to Erin or ask for volunteers to create a new cheatsheet, iterate, print more to have on hand, fold, distribute.&lt;br /&gt;
* discuss with [[User:Adactio]] and Hannah how to best create a UK/A4 version of the pocket cheatsheet&lt;br /&gt;
** preferably well in advance of dConstruct 2008 so that local cheatsheets can be printed.&lt;br /&gt;
&lt;br /&gt;
==== *-authoring microformats wiki pages ====&lt;br /&gt;
* [[hcard-authoring]] - '''next-actions''': add tips/instructions noted below. &lt;br /&gt;
** instructions for each property that is in [http://microformats.org/code/hcard/creator hCard creator] to begin with&lt;br /&gt;
** instructions for all other hCard properties&lt;br /&gt;
** a tutorial on creating an hCard for your site&lt;br /&gt;
*** specific instructions for common blogging platforms&lt;br /&gt;
** reference [[hcard-examples]] for more specific uses, and add to them accordingly&lt;br /&gt;
*** add an extended example to [[hcard-examples#Authors_of_Pages_and_Posts|contact info for a page]] with postal address, phone numbers, email address.&lt;br /&gt;
* [[hcard-xfn-authoring]] - '''next-action''': draft by starting from hCard+XFN instructions in [[hcard-examples]].&lt;br /&gt;
* [[hreview-authoring]] - '''next-action''': create a first draft minimal tutorial on how to author hReviews (e.g. at least for common properties) to blog reviews so that they'll be aggregated.&lt;br /&gt;
* [[hcalendar-authoring]] - '''next-action''': add tips/instructions for each property that is in [http://microformats.org/code/hcalendar/creator hCalendar creator].&lt;br /&gt;
* *-authoring for other reasonably well established microformats: &lt;br /&gt;
** [[xfolk-authoring]], [[hatom-authoring]]&lt;br /&gt;
&lt;br /&gt;
==== help with microformat examples in the wild ====&lt;br /&gt;
Using the above updated [[authoring]] pages, get the community to help go over all &amp;quot;common&amp;quot; pages (both logged out and logged in states) of the following sites which have some microformats already, and verify each page is as microformatted as it can be with high fidelity [[hcalendar|hCalendar]] and [[hcard|hCard]] etc.  Document full support of each implementation's microformats on the implementations page (perhaps create a separate page for each implementation, e.g. [[flickr]], [[upcoming]], [[eventful]] etc.) Document any exceptions as needed.  In no particular order:&lt;br /&gt;
* Flickr.com (3.5m hCards)&lt;br /&gt;
* Upcoming.org (100k hCalendar events, 100k hCard venues)&lt;br /&gt;
** home page&lt;br /&gt;
* Eventful.com (100k hCalendar events, 100k hCard venues)&lt;br /&gt;
* Yahoo! Tech (300k products with hReviews)&lt;br /&gt;
* JudysBook.com (???k hReviews)&lt;br /&gt;
* ... lots more, get from &amp;quot;Implementations&amp;quot; and &amp;quot;Examples in the Wild&amp;quot; sections of specs.&lt;br /&gt;
&lt;br /&gt;
==== advocacy for obvious sites ====&lt;br /&gt;
* [[advocacy]] - add pages/sites that obviously (no pun intended) could use microformats, update them with sample markup, find contacts for those pages to get them updated, and send requests to update their sites with microformats including sample markup. '''next-actions''': markup both twitter.com sample pages and dodgeball.com sample pages, post the changes publicly, and see which one is able to update first ;)&lt;br /&gt;
** dodgeball.com (hCard + XFN + hAtom for profiles, hCard + hReview for venues)&lt;br /&gt;
** write essay on [[open-data-more-important-than-open-source]] - and a shorthand URL too.&lt;br /&gt;
*** obviously doing both is ideal, however, open data is a higher priority and given limited resources, open data should be implemented before open source.&lt;br /&gt;
*** open data &amp;amp;gt; open source&lt;br /&gt;
*** &amp;quot;open information&amp;quot; vs &amp;quot;open source&amp;quot; &lt;br /&gt;
*** i.e. please focus first on open data rather than open source, e.g. start with [[hcard|hCards]] for all organizations returned from http://wiserearth.org/organization&lt;br /&gt;
*** if the data is open you can always export it and consume it in any number of open source systems&lt;br /&gt;
*** that's why open data is MUCH more important than open source&lt;br /&gt;
*** adding open data (e.g. microformats) can be done by any HTML author (yes, you), whereas open sourcing requires programming expertise, resouces, support. do the simpler easier thing first (open data thru microformats) that will benefit more people sooner.&lt;br /&gt;
*** if the data was open, anyone could rebuild an accessible version &lt;br /&gt;
*** faqs / misconceptions:&lt;br /&gt;
**** eschipul: @tantek - creating microformats is easier. consuming microformats is unfortunately not easier.&lt;br /&gt;
***** A: If you think consuming microformats is not easier or hard etc., it may just be that you don't know how to do so easily, don't assume that you are an expert in something that you think is hard.  Rather, if you think something is hard, then assume others may know easier methods, and ''ask''  the community how one can do it more easily.  parsing in particular is something which is becoming easier and easier thanks to open source libraries like [[hkit|hKit]].&lt;br /&gt;
** write essay on [[open-data-more-important-than-open-apis]] - and a shorthand URL too&lt;br /&gt;
*** obviously doing both is ideal, however, open data is a higher priority and given limited resources, open data should be implemented before open APIs.&lt;br /&gt;
*** publishing/providing open data (e.g. microformats) can be done by any HTML author (yes, you), whereas providing/publishing open APIs requires programming expertise, resouces, and support. do the simpler easier thing first (open data thru microformats) that will benefit more people sooner.&lt;br /&gt;
&lt;br /&gt;
=== help implementers ===&lt;br /&gt;
* wordpress improvements&lt;br /&gt;
** WP admin for new profiles&lt;br /&gt;
*** should simply read blog URL - '''next-action''': make sure a bug/feature request is filed with wordpress.org&lt;br /&gt;
*** look for hCards and parse them&lt;br /&gt;
&lt;br /&gt;
* [http://gmpg.org/xfn/creator XFN Creator] localizations&lt;br /&gt;
** Get someone to verify the [http://gmpg.org/xfn/creator-ru XFN Creator Russian localization].&lt;br /&gt;
** Add it to the [http://gmpg.org/xfn/tools XFN Tools] page.&lt;br /&gt;
** Add rel=&amp;quot;alternate&amp;quot; href=&amp;quot;creator-ru&amp;quot; &amp;amp;lt;link&amp;amp;gt;s to the other XFN Creators.&lt;br /&gt;
&lt;br /&gt;
* Conference Schedule Creator&lt;br /&gt;
** '''next-actions''': Review Dmitry Baranovskiy's [http://dmitry.baranovskiy.com/work/csc/ Conference Schedule Creator] and give him feedback per how well it:&lt;br /&gt;
*** Makes it *trivial* for conference organizers to build/edit/publish an [[hcalendar|hCalendar]] schedule for their conference, including auto-generated &amp;quot;Subscribe...&amp;quot; link which produces the proper &amp;quot;webcal:...&amp;quot; link with X2V.  Note: see the &amp;quot;axis&amp;quot; and &amp;quot;header&amp;quot; attributes in HTML4, specifically in the section on Tables.&lt;br /&gt;
&lt;br /&gt;
=== iterate on current microformats ===&lt;br /&gt;
==== in general ====&lt;br /&gt;
===== plain language intros =====&lt;br /&gt;
For [[hcard|hCard]], [[hcalendar|hCalendar]], [[hreview|hReview]], [[xoxo|XOXO]] to start with, write up:&lt;br /&gt;
* brief plain-language intro at the top (say for example, something that a non-technical person like a member of the general media/press could read and understand), similar to or better than plain language intros on W3C specs.&lt;br /&gt;
* followed by links to more plain-language resources, e.g. *-intro pages.&lt;br /&gt;
In particular for [[xoxo|XOXO]], Angus McIntyre suggested:&lt;br /&gt;
* As well as a syntactic example, examples of use would be useful. &lt;br /&gt;
* when I might want to use XOXO. &lt;br /&gt;
* Some simple examples right upfront would probably do a lot to help users figure out whether a particular microformat is for them or not.&lt;br /&gt;
These suggestions could be incorporated into the other specs as well.&lt;br /&gt;
===== exploratory discussions =====&lt;br /&gt;
* update [[exploratory-discussions]] with critical microformats as &amp;quot;active&amp;quot;&lt;br /&gt;
===== CSS enhancements for =====&lt;br /&gt;
Analyze existing microformats for opportunities to enhance CSS and propose to W3C.&lt;br /&gt;
* e.g. CSS datetime presentation (need to add links to my earlier work in CSS working group)&lt;br /&gt;
* brainstorm additional possibilities for better presentation of content using existing microformats.&lt;br /&gt;
===== update affiliations =====&lt;br /&gt;
* Start a minimal draft/spec style guide using outline of most readable/accessible spec so far&lt;br /&gt;
* Reference http://www.w3.org/2001/06/manual/#Editors for how to manage affiliations&lt;br /&gt;
* Update affiliations on [[hcard]], [[hcalendar]], [[hreview]], etc. per http://www.w3.org/2001/06/manual/#Editors&lt;br /&gt;
===== profile URLs =====&lt;br /&gt;
* write-up and document [[profile-uris|profile URLs]] for all established microformats and perhaps for some drafts as well&lt;br /&gt;
&lt;br /&gt;
==== [[hcard|hCard]] ====&lt;br /&gt;
Combined next-actions for iteration on [[hcard|hCard]], and derived/subsetted microformats [[adr]] and [[geo]]&lt;br /&gt;
* [[hcard-profile]] '''next-actions''':&lt;br /&gt;
** update property definitions with more detail using semantics from [[RFC2426]]&lt;br /&gt;
** link from brief sentence descriptions for each property in [[hCard]] to the respective more detailed definition in the [[hcard-profile]].&lt;br /&gt;
** link from definitions in the [[hcard-profile]] to the specific sections in the vCard spec&lt;br /&gt;
* [[hcard-examples]] '''next-actions''': update with examples described below&lt;br /&gt;
** add examples of [[hcard|hCard]]s with work telephone, mailing address etc.&lt;br /&gt;
** add examples of marking up an organization vs. a person, then link to it from [http://microformats.org/wiki/hcard#Organization_Contact_Info hCard spec section on Organization Contact Info].&lt;br /&gt;
** add example of organization-name and organization-unit usage.&lt;br /&gt;
* [[hcard-brainstorming]] '''next-actions''': explore brainstorms proposals for a 1.1 revision, e.g.&lt;br /&gt;
** need property for gender (see [[hcard-faq#How_is_gender_represented|proposal in hCard FAQ]] and discussion in [[hcard-issues]]) - use tags for now, add to hCard creator&lt;br /&gt;
** solve [[hcard-brainstorming#Auto-Discovery|autodiscovery]] of more canonical/thorough hCard&lt;br /&gt;
* [[hcard-examples-in-wild]]&lt;br /&gt;
** help dglazkov markup: http://glazkov.com/blog/archive/2003/12/17/147.aspx&lt;br /&gt;
&lt;br /&gt;
* analyze [[hcard-cheatsheet]], [[adr-cheatsheet]], [[geo-cheatsheet]] for any assertions above and beyond what the specification itself says, take into account [[hcard-brainstorming]] along similar lines, and incorporate into the spec or remove as necessary and sync-up as a result.  add clarification on the cheatsheets that they are '''informative''' and reference the specification for normative requirements.&lt;br /&gt;
&lt;br /&gt;
==== [[hcalendar|hCalendar]] ====&lt;br /&gt;
'''Next-actions''':&lt;br /&gt;
* update [[hcalendar-examples]]&lt;br /&gt;
** add examples like [[hcard-examples]]&lt;br /&gt;
** flesh out and do a once over on markup/presentation of what RFC2445 examples would look like&lt;br /&gt;
** update all hcalendar-examples to use value-title from [[value-class-pattern]] where abbr doesn't make sense. e.g.&lt;br /&gt;
*** rrule&lt;br /&gt;
*** duration&lt;br /&gt;
*** ... etc.&lt;br /&gt;
* need spec details and then [[hcalendar-examples]] of multi-instance [[hcalendar|hCalendar]] events&lt;br /&gt;
* need spec details and then [[hcalendar-examples]] of repeating events&lt;br /&gt;
* create [[hcalendar-profile]] and have folks verify it. Note that it will likely need reconciliation with the [[hcard-profile]], especially since [[hcalendar|hCalendar]] normatively depends on [[hcard|hCard]].  Probably makes sense to have a combined profile which hCalendar would use.&lt;br /&gt;
* analyze [[hcalendar-cheatsheet]] for any assertions above and beyond what the specification itself says, take into account [[hcalendar-brainstorming]] along similar lines, and incorporate into the spec or remove as necessary and sync-up as a result.  add clarification on the cheatsheets that they are '''informative''' and reference the specification for normative requirements.&lt;br /&gt;
&lt;br /&gt;
==== [[hreview|hReview]] ====&lt;br /&gt;
'''Next-actions''':&lt;br /&gt;
* Write hReview 0.3 XMDP profile, and reconcile with [[hcalendar-profile]] and [[hcard-profile]].  Makes sense to have a combined profile of all three for hReview, since hReview normatively depends on hCard and hCalendar.&lt;br /&gt;
* Resolve all outstanding [[hreview-issues]] and [[hreview-feedback]] to-do items.&lt;br /&gt;
&lt;br /&gt;
==== [[rel-tag]] ====&lt;br /&gt;
'''Next-actions''':&lt;br /&gt;
* Write [[rel-tag]] XMDP profile ([[rel-tag-profile]]) and send to [http://dbaron.org/ David Baron].&lt;br /&gt;
* Resolve all outstanding [[rel-tag-issues]] and [[rel-tag-feedback]] to-do items.&lt;br /&gt;
&lt;br /&gt;
==== [[rel-me]] ====&lt;br /&gt;
'''Next-actions''':&lt;br /&gt;
* move XFN and XMDP FAQs, tutorial, descriptions, spec etc. from gmpg.org to microformats.org&lt;br /&gt;
** and put redirects in place, notes about contribution&lt;br /&gt;
* update rel-me examples and document with examples the rel-me implict subdir rule&lt;br /&gt;
&lt;br /&gt;
==== [[hatom|hAtom]] ====&lt;br /&gt;
'''Next-actions''':&lt;br /&gt;
&lt;br /&gt;
==== summary Examples in the Wild page ====&lt;br /&gt;
* need to create a summary / overall [[examples-in-the-wild]] page &lt;br /&gt;
** parallel the summary/overall [[implementations]] page.&lt;br /&gt;
** use newly reorganized content from the above &amp;quot;reoganizing Examples in the Wild&amp;quot; task&lt;br /&gt;
&lt;br /&gt;
==== parsing ====&lt;br /&gt;
'''Next-actions''':&lt;br /&gt;
* Draft *-parsing for all reasonably well adopted microformats: [[hreview-parsing]], [[xfolk-parsing]], [[hatom-parsing]]&lt;br /&gt;
&lt;br /&gt;
=== wiki cleanup ===&lt;br /&gt;
==== for all microformat specs ====&lt;br /&gt;
'''Next-actions''':&lt;br /&gt;
* modularize any specs which are &amp;gt; 30K in order to avoid loss/corruption like [http://microformats.org/wiki?title=Special:Contributions&amp;amp;target=Evan Evan's 14 June edits] to [[hcard|hCard]], [[rel-tag]], and [[xoxo|XOXO]].&lt;br /&gt;
** [[hcard|hCard]] -&lt;br /&gt;
*** [[hcard-examples-in-the-wild]] group/sort by individuals,  organizations, and hosting sites. Consider moving largest subsection to its own page as well.&lt;br /&gt;
** [[rel-tag]]&lt;br /&gt;
** [[xoxo]]&lt;br /&gt;
&lt;br /&gt;
==== update specification section organization ====&lt;br /&gt;
'''Goal''': greater approachability/readability of microformats specs by a broader audience.&lt;br /&gt;
&lt;br /&gt;
Reference:&lt;br /&gt;
* [[hresume|hResume]] has an experimental abbreviated intro/headers section, and links to more details further below, based on some ideas that Ryan King and I had for improving the readability of the microformats specifications. &lt;br /&gt;
* [[hreview|hReview]] has some similar improvements, but different.&lt;br /&gt;
* [[hcard|hCard]] has numerous improvements as well, again different from either hResume or hReview&lt;br /&gt;
&lt;br /&gt;
'''Next-actions''':&lt;br /&gt;
# contact microformats community members who are content/tutorial authors, and/or have written (or are writing) technical books, and those who have made concrete helpful suggestions for reorganizing the information architecture / content-order / layout of specs.&lt;br /&gt;
# figure out if the new intro/headers etc. structure/order in [[hcard|hCard]], [[hreview|hReview]], and [[hresume|hResume]]  is an improvement, and if it could be better.  Document reasoning/requirements for intro/header and other sections.&lt;br /&gt;
#* Shorter tends to be better&lt;br /&gt;
#* Must be comprehensive enough to &amp;quot;print and read&amp;quot;&lt;br /&gt;
#* Must detail authorship/editorship&lt;br /&gt;
#* Must detail copyright/patent statements&lt;br /&gt;
# Design an iterative update to spec organization, in particular, the introduction/boilerplate/headers.&lt;br /&gt;
# Write up a template - make it self-documenting per the requirements&lt;br /&gt;
# Update existing specifications with the new intro/headers structure.&lt;br /&gt;
## [[hcard|hCard]]&lt;br /&gt;
## [[hcalendar|hCalendar]]&lt;br /&gt;
## [[hreview|hReview]]&lt;br /&gt;
# Write up methodology behind the section organization and note editors lessons learned into an [[editors-guide]] page (what other variants were done before, in which specs, and note problems/complaints with other variants).&lt;br /&gt;
&lt;br /&gt;
==== reorganizing Implementations sections ====&lt;br /&gt;
* sort implementations by authoring/creating/publishing, browsing/viewing, converting/importing, indexing/searching.&lt;br /&gt;
&lt;br /&gt;
Hmmm... I like: '''A'''uthoring, '''B'''rowsing, '''C'''onverting, '''I'''ndexing, '''L'''ibraries (for developers), and '''P'''otential (for open source projects we want to add support to).  Anybody have alternative suggestions for this vocabulary?  I don't have a particularly strong preference so I'm going to go with these four until I find examples that don't fit, or someone suggests something better.&lt;br /&gt;
&lt;br /&gt;
See: [http://microformats.org/wiki/hcalendar#Implementations hCalendar Implementations] for a first attempt at this.  Assuming folks like that, we can go ahead with categorizing the implementations sections of other microformats specifications.&lt;br /&gt;
&lt;br /&gt;
'''Next-actions''':&lt;br /&gt;
* [[hcard-implementations]] - re-organize by same subsections as [[hcalendar-implementations]].&lt;br /&gt;
* [[hreview-implementations]] - re-organize by same subsections as [[hcalendar-implementations]].&lt;br /&gt;
* [[hatom-implementations]] - re-organize by same subsections as [[hcalendar-implementations]].&lt;br /&gt;
* [[xfolk-implementations]] - re-organize by same subsections as [[hcalendar-implementations]].&lt;br /&gt;
&lt;br /&gt;
==== reorg Examples in the Wild sections ====&lt;br /&gt;
Work with community to:&lt;br /&gt;
* include more *key* details per example, e.g. precise or estimates of counts for services&lt;br /&gt;
* collate/sort examples in the wild by &lt;br /&gt;
** hosting services - where users/people actively contribute to the growth (e.g. Flickr profile hCards)&lt;br /&gt;
** publishing services - where lots of data is published from some datasource/database (e.g. Yahoo! Local)&lt;br /&gt;
** companies/groups/organizations member pages (and their own) - pages for a group's site where they list members or employees (e.g. Technorati staff page)&lt;br /&gt;
** individiual companies/organizations contact info pages&lt;br /&gt;
** individual people's contact info pages&lt;br /&gt;
* of course at some point this won't scale, but that will be a very good problem to have, and by then I'm sure we'll have services to point to that provide queries and search results for all this data.&lt;br /&gt;
&lt;br /&gt;
=== site usability ===&lt;br /&gt;
* figure out how to get wordpress to autopost blog posts to the microformats-announce list&lt;br /&gt;
** ideally use the from address of the author of the blog post&lt;br /&gt;
** maybe photomatt knows how to do this.&lt;br /&gt;
&lt;br /&gt;
=== introduction / community ===&lt;br /&gt;
* microformats-discuss *&lt;br /&gt;
** introductory email template for new subscribers needs to direct people to [[process]] and [[how-to-play]]&lt;br /&gt;
* Need to add more to the [[naming-principles]], to cover in particular:&lt;br /&gt;
** avoid using the same name to mean two things&lt;br /&gt;
** avoid using two names to mean the same thing&lt;br /&gt;
** seek to keep the microformats vocabulary minimal, memorable, and usable.&lt;br /&gt;
* update and add details/simplifications to [[process]] given the past several months of experience. in particular:&lt;br /&gt;
** clarify requirement (MUST rather than SHOULD) of *-examples, *-formats, before any *-brainstorming.  &lt;br /&gt;
** Add details of encouragement to experiment with simple semantic class names from *-brainstorming proposals to gain real world experience with real world content.&lt;br /&gt;
** note SHOULD prerequisite of use of all relevant microformats on real world web pages, along with documenting such use in respective &amp;quot;Examples in the Wild&amp;quot; sections, before proposing any new microformats.&lt;br /&gt;
&lt;br /&gt;
==== posh improvement ====&lt;br /&gt;
* Create a page to answer the question &amp;quot;[[how-should-i-markup]]&amp;quot;&lt;br /&gt;
* consider creating a process/encouragement for collecting individual [[posh]] practices and examples, like a folksonomy of semantic HTML and semantic class names.&lt;br /&gt;
&lt;br /&gt;
==== principles and process ====&lt;br /&gt;
Create the following pages and document/fill them with content from other pages, email lists, and [[presentations]].&lt;br /&gt;
* [[principles]] - mostly [[microformats#the_microformats_principles|documented in the microformats]] page.&lt;br /&gt;
* clearer statement of both copyright and patents both in specific specs and in general&lt;br /&gt;
* resolve [[process-issues]]&lt;br /&gt;
&lt;br /&gt;
==== profiles ====&lt;br /&gt;
* update [[XMDP]] with new required features:&lt;br /&gt;
** ability for one profile to include/import another (rel=&amp;quot;import&amp;quot; ?)&lt;br /&gt;
** ability to reference an XMDP via rel=&amp;quot;profile&amp;quot; (similar to XHTML2 rel value by same name)&lt;br /&gt;
*** add rel=&amp;quot;profile&amp;quot; to the [[xmdp-profile]].&lt;br /&gt;
** ability/suggestion to reference an XMDP using &amp;amp;lt;a href&amp;amp;gt; in addition to &amp;amp;lt;link&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== community mark ====&lt;br /&gt;
* Can we make &amp;quot;microformat&amp;quot; and &amp;quot;microformats&amp;quot; into [http://factoryjoe.com/blog/2006/01/14/the-case-for-community-marks/ Community Marks]?&lt;br /&gt;
&lt;br /&gt;
==== document issue resolutions ====&lt;br /&gt;
* Prefixing has already been considered and rejected for microformats in general.  Note [[naming-conventions]], limited vocabulary, and exceptions made for [[hatom|hAtom]] and how we went about doing so.&lt;br /&gt;
&lt;br /&gt;
=== emerging microformats ===&lt;br /&gt;
* [[directions]]&lt;br /&gt;
* [[citation]]&lt;br /&gt;
* [[hlisting|hListing]]&lt;br /&gt;
* [[media-info]]&lt;br /&gt;
* [[licensing]]&lt;br /&gt;
'''Next-actions''' for each emerging microformat (one at a time)&lt;br /&gt;
* review all microformats-email on the new microformat&lt;br /&gt;
* determine where new microformats is &amp;quot;stuck&amp;quot; in the process&lt;br /&gt;
* brainstorm about how to improve process (or documentation thereof) to get the effort unstuck&lt;br /&gt;
* work with community to move the microformat forward through the process, iterating/clarifying the [[process]] as necessary&lt;br /&gt;
&lt;br /&gt;
=== new microformat requests ===&lt;br /&gt;
* expense reports (really just a list of &amp;quot;expense&amp;quot; items), [http://flickr.com/photos/edyson/56774178/ requested by ED], should look at UBL as a pre-existing format&lt;br /&gt;
* photo-notes microformat&lt;br /&gt;
** clean up Subethaedit notes from working session with Greg Elin, Ryan King, Kevin Marks, Suw Charman and email to folks and figure out next steps&lt;br /&gt;
** iterate on [[photo-note-examples]] and start [[photo-note-formats]] and [[photo-note-brainstorming]].&lt;br /&gt;
&lt;br /&gt;
=== document microformats history ===&lt;br /&gt;
Document microformats [[history]], including:&lt;br /&gt;
* dates and origins of microformats, names, terms&lt;br /&gt;
* examples and formats for established microformats like [[hcard|hCard]], [[hcalendar|hCalendar]], [[xfn]], [[rel-license]], [[xoxo]]&lt;br /&gt;
&lt;br /&gt;
=== other ===&lt;br /&gt;
* Add XPath equivalents where appropriate in [[hcard-parsing]]&lt;br /&gt;
&lt;br /&gt;
==Ryan==&lt;br /&gt;
=== wiki cleanup ===&lt;br /&gt;
* &amp;lt;s&amp;gt;possibly move dead proposals off of homepage?&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== hCalendar/hCard/hReview creator improvements ===&lt;br /&gt;
* get all creators working in IE/Win, IE/Mac, Safari/OSX.3&lt;br /&gt;
&lt;br /&gt;
=== other ===&lt;br /&gt;
* add an example of how to use DURATION in hcalendar see http://www.policyawareweb.org/2005/ftf2/paw-mtg#item15) -&amp;gt; verify http://svn.lifelint.com/hcalendar_tests/calendar-todo-multiple-attendees-and-alarm.xml&lt;br /&gt;
&lt;br /&gt;
=== rel-payment ===&lt;br /&gt;
* update rel-payment to reference the IANA registry [http://www1.ietf.org/mail-archive/web/ietf-announce/current/msg02055.html]&lt;br /&gt;
&lt;br /&gt;
=== hcalendar ===&lt;br /&gt;
* make sure we explicitly disallow 'vjournal'&lt;br /&gt;
&lt;br /&gt;
== Dimitri Glazkov ==&lt;br /&gt;
&lt;br /&gt;
* Figure out REST/Microformats thing&lt;br /&gt;
* Work on result set idea&lt;br /&gt;
* Implement h-creators using Web Forms 2.0&lt;br /&gt;
&lt;br /&gt;
== Chris Messina ==&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
&lt;br /&gt;
* Work on a microformat for play-lists (is it just a XOXO ordererd list of play-items?)&lt;br /&gt;
* Work on a microformat for play-item (take a look at [[media-info-examples]])&lt;br /&gt;
* Work on microformats tutorial for designers&lt;br /&gt;
* Add support for OpenID to micformats wiki&lt;br /&gt;
* &amp;lt;strike&amp;gt;Add support for [http://verselogic.net/projects/wordpress/wordpress-openid-plugin/ OpenID] to the microformats blog&amp;lt;/strike&amp;gt;.&lt;br /&gt;
* &amp;lt;strike&amp;gt;Read GTD (at least the first two chapters)&amp;lt;/strike&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strike&amp;gt;Get Blogger to support hAtom and hCard&amp;lt;/strike&amp;gt;&lt;br /&gt;
* &amp;lt;strike&amp;gt;Get LinkedIn to support hCard, hResume, hCalendar&amp;lt;/strike&amp;gt; and XFN&lt;br /&gt;
* Get XING to support &amp;lt;strike&amp;gt;hCard&amp;lt;/strike&amp;gt;, hCalendar, hResume and XFN&lt;br /&gt;
* Get &amp;lt;strike&amp;gt;Digg to support microformats&amp;lt;/strike&amp;gt; (still need XFN).&lt;br /&gt;
&lt;br /&gt;
=== Wishlist ===&lt;br /&gt;
&lt;br /&gt;
* Microformat for &amp;quot;buyable items&amp;quot; (see [[listing-examples]] and related documents)&lt;br /&gt;
* Location MF -- right click &amp;quot;map this&amp;quot; (see [[geo]] and [[adr]])&lt;br /&gt;
* Better hCard support in the browser -- right click &amp;quot;IM this person...&amp;quot;, &amp;quot;Add to contacts&amp;quot; (see [http://factoryjoe.com/blog/2006/03/20/flocktails-for-flock/  Flocktails])&lt;br /&gt;
* Better hCal support -- support many views of same hCal data on one page using XSLT&lt;br /&gt;
* We need something that a designer/web programmer can come to and leave w/ 2 examples of each microformat that they can apply right away... a &amp;quot;microformats styleguide for designers&amp;quot;, if you will.&lt;br /&gt;
* invoicing microformat&lt;br /&gt;
* better microformats wiki theme&lt;br /&gt;
* Define flow for OpenID + XFN + hcard (see [http://diso-project.org DiSo Project])&lt;br /&gt;
&lt;br /&gt;
Hey Chris.&lt;br /&gt;
Congrats on Microsyntax&lt;br /&gt;
([http://factoryjoe.com/blog/2009/05/26/stowe-boyd-launches-microsyntax-org/ &amp;quot;Stowe Boyd launches Microsyntax.org&amp;quot;]).&lt;br /&gt;
So ... do we need a page on this Microformats wiki describing the connection between microformats and microsyntax?&lt;br /&gt;
When the Microsyntax wiki goes online, please add a link to it on the Microformats [[WikiNode]] page.&lt;br /&gt;
--[[User:DavidCary|DavidCary]] 08:34, 4 June 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Robert Bachmann ==&lt;br /&gt;
[[User:RobertBachmann|Robert Bachmann]]&lt;br /&gt;
&lt;br /&gt;
=== XSLTs ===&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;strong&amp;gt;Test scripts&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;Do some refactoring, split Perl code into smaller modules&amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;Provide test results as HTML pages (similar to http://www.w3.org/2003/08/owl-systems/test-results-out)&amp;lt;/li&amp;gt;&lt;br /&gt;
 &amp;lt;li&amp;gt;Provide some documentation for using the test scripts&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;strong&amp;gt;hAtom2Atom&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Join all hfeed's inside a page (or a fragment thereof) into one feed using [http://greenbytes.de/tech/webdav/rfc4287.html#element.source atom:source] semantics.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Extraction of &amp;lt;code&amp;gt;atom:content&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;atom:summary&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;atom:title&amp;lt;/code&amp;gt;:&lt;br /&gt;
* &amp;lt;code&amp;gt;atom:content&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;atom:summary&amp;lt;/code&amp;gt; as HTML &lt;br /&gt;
* &amp;lt;code&amp;gt;atom:content&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;atom:summary&amp;lt;/code&amp;gt; as plain-text&lt;br /&gt;
* &amp;lt;code&amp;gt;atom:title&amp;lt;/code&amp;gt; as XHTML&lt;br /&gt;
* &amp;lt;code&amp;gt;atom:title&amp;lt;/code&amp;gt; as HTML&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Support for other XSLT engines:&lt;br /&gt;
* .Net System.Xml&lt;br /&gt;
* hAtom2Atom written using XSL 2.0?&lt;br /&gt;
** Do you think this would be useful? I have created a barebones version, doesn't yet take in all the parsing rules yet, but I'd be happy to share.  Moving to XSL 2.0 does make things a bit cleaner and more efficient. - Matt Dertinger.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Support for other output formats: (hAtom2&amp;lt;i&amp;gt;xyz&amp;lt;/i&amp;gt;.xsl)&lt;br /&gt;
* RSS 2.0 (meanwhile use hAtom2Atom.xsl and [http://atom.geekhood.net/ atom2rss.xsl]) -- &amp;lt;i&amp;gt;+1 Matt Dertinger&amp;lt;/i&amp;gt;&lt;br /&gt;
* RSS 1.0 (meanwhile use hAtom2Atom.xsl and [http://cvs.4suite.org/viewcvs/uogbuji/atom2rss.xslt atom2rss.xslt]) -- &amp;lt;i&amp;gt;+1 Matt Dertinger&amp;lt;/i&amp;gt;&lt;br /&gt;
** My opinion at the moment, I neither want to produce nor to consume RSS. Atom is nicer (and should be supported by most good feed readers available today), RSS should fade away. -- Robert Bachmann&lt;br /&gt;
* AtomOWL (meanwhile use hAtom2Atom.xsl and [http://dannyayers.com/2005/11/22/atomowl-xslt-progress/ atom2rdfxml.xsl])-- &amp;lt;i&amp;gt;+1 Matt Dertinger&amp;lt;/i&amp;gt;&lt;br /&gt;
** Having the possibility of GRDDL-ing hAtom to AtomOWL seems definitly interessting. I realy should implement this some day. - Robert Bachmann&lt;br /&gt;
* JSON?&lt;br /&gt;
** Does it make sense to consider a canonical representation of microformats (either case by case, or in general) in JSON?  E.g. so that a JSON API that returned contact information could return an hCard-equivalent chunk of JSON. - Tantek.&lt;br /&gt;
*** This could enable some nice JavaScript hacks. I should give hAtom2JSON a try. - Robert Bachmann&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
([[User:Singpolyma|singpolyma]] 01:02, 9 May 2006 (PDT) -- Not XSLT, but see http://xoxotools.ning.com/hatom2rss.php for hatom to RSS2.0 conversion)&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Brian Suda ==&lt;br /&gt;
=== Citation Microformats ===&lt;br /&gt;
* Add all my notes to the Wiki&lt;br /&gt;
* Start the process of naming the properties using existing names&lt;br /&gt;
&lt;br /&gt;
=== X2V ===&lt;br /&gt;
Make changes and update site (almost stable)&lt;br /&gt;
Get ATTENDEE and other strange attributes working&lt;br /&gt;
==== WARNINGS and ERROR ====&lt;br /&gt;
work on the warnings and error output for the pre-check in X2V&lt;br /&gt;
&lt;br /&gt;
=== FAQ ===&lt;br /&gt;
* clean-up the MF FAQs&lt;br /&gt;
* clean-up FAQs from the major microformats&lt;br /&gt;
* pull Questions from the mailing list and document them to the FAQs and example&lt;br /&gt;
&lt;br /&gt;
=== Microformats History ===&lt;br /&gt;
* get early work from developer.technorati site&lt;br /&gt;
** issues with MoinMoin full history: http://moinmoin.wikiwikiweb.de/MoinMoinQuestions/UsingTheWiki#head-9d1b1d6beedde40b92cc6c13962b5a6f5b289d10&lt;br /&gt;
&lt;br /&gt;
=== additions to the wiki ===&lt;br /&gt;
&lt;br /&gt;
* better explain why NOT infinitely scaling is a good thing&lt;br /&gt;
* better explain why microformats do NOT use namespacing&lt;br /&gt;
&lt;br /&gt;
== Mark Rickerby ==&lt;br /&gt;
&lt;br /&gt;
=== Current Tasks ===&lt;br /&gt;
&lt;br /&gt;
* Follow up on usability review&lt;br /&gt;
** Edits to homepage feature box text &lt;br /&gt;
** Draft of [[getting-started]] page&lt;br /&gt;
* Review content for new pages - [[start-simple]], [[modularity]], [[reuse]], [[humans-first]]&lt;br /&gt;
* xoxo datatype examples&lt;br /&gt;
** test case lists&lt;br /&gt;
** transmitting key/value lists&lt;br /&gt;
* practical feedback on hresume&lt;br /&gt;
&lt;br /&gt;
=== Wishlist ===&lt;br /&gt;
&lt;br /&gt;
* hmmm&lt;br /&gt;
&lt;br /&gt;
== Ernest Prabhakar ==&lt;br /&gt;
=== Wiki-Thon Proposal ===&lt;br /&gt;
Set aside several hours (probably a Friday night US PST) for focused work on the Wiki, including both physical (e.g., a room in the Bay Area) and virtual (IRC/iChat) participants.&lt;br /&gt;
&lt;br /&gt;
==== Goals ====&lt;br /&gt;
# Improve understanding of what needs to be done for Wiki&lt;br /&gt;
#* IMHO - this should be done here, in [[to-do]] incrementally. -Tantek&lt;br /&gt;
# Tackle larger projects (~1-2 hours) than people usually have time for&lt;br /&gt;
#* I'd like to see these projects *documented* first on [[to-do]] before we spend 1-2 hours of a bunch of folk's collective time to go through them. -Tantek&lt;br /&gt;
# Motivate community to have fun with otherwise tedious &amp;quot;housecleaning&amp;quot; chores&lt;br /&gt;
&lt;br /&gt;
==== Agenda (Wishlist) ====&lt;br /&gt;
In parallel:&lt;br /&gt;
* Coalesce/prioritize existing To-Do items (above)&lt;br /&gt;
* Review/revise desired pathways for:&lt;br /&gt;
** New users learning about microformats&lt;br /&gt;
*** e.g., intro, about, explore, tutorials, etc.&lt;br /&gt;
*** cf. [http://www.rubyonrails.com/ Rails] front page&lt;br /&gt;
****Get Excited (Why, background, motivation)&lt;br /&gt;
****Get Started (What, downloads, getting started)&lt;br /&gt;
****Get Better (How, tutorials, )&lt;br /&gt;
****Get Involved (Who)&lt;br /&gt;
** Microformat lifecycle&lt;br /&gt;
*** e.g., research-&amp;gt;brainstorm-&amp;gt;proposal-&amp;gt;spec-&amp;gt;maintain&lt;br /&gt;
*** see http://theryanking.com/microformats/method.txt --[[User:RyanKing|RyanKing]] 15:35, 22 Feb 2006 (PST)&lt;br /&gt;
*** ensure information easy to find, follow, and up-to-date&lt;br /&gt;
* Review existing specs for completeness and consistency&lt;br /&gt;
* Identify areas of 'bitrot' or 'hole-filling'&lt;br /&gt;
* Do it!&lt;br /&gt;
&lt;br /&gt;
== Dan Connolly ==&lt;br /&gt;
&lt;br /&gt;
[[User:DanC|DanC]] hopes to sync up on these tasks in [[irc]] roughly&lt;br /&gt;
weekly, during Wednesday afternoon (Chicago time) &amp;quot;office hours&amp;quot;. See also my [http://esw.w3.org/topic/DanConnolly esw todo list and someday pile].&lt;br /&gt;
&lt;br /&gt;
* from SxSW in Austin&lt;br /&gt;
** build a combined hcalendar/hcard profile; resolve issues in [[profile-uris]].&lt;br /&gt;
*** with XSLT transformation to RDF&lt;br /&gt;
** finish [[hcard-tests]]&lt;br /&gt;
*** figure out [[include-pattern]] boundaries&lt;br /&gt;
&lt;br /&gt;
* Medium term&lt;br /&gt;
** sync [[hcalendar-tests]] and [http://www.w3.org/2002/12/cal/ RDF calendar] tests and CALSIFY&lt;br /&gt;
*** reconsider RDF calendar naming conventions&lt;br /&gt;
** update my CV/resume using [[hResume]] and [[citation-formats]]&lt;br /&gt;
*** get an answer from the CALSIFY WG re [http://lists.w3.org/Archives/Public/www-rdf-calendar/2006Apr/0006.html dtstart and date vs datetime ] 21 Apr 2006&lt;br /&gt;
*** refine [[hatom]] so that it's suitable for the workflow around the W3C homepage.&lt;br /&gt;
&lt;br /&gt;
* from WWW2006&lt;br /&gt;
** follow up on GRDDL as escape valve for microformats proposals, much like CSS was an escape valve for HTML tag proposals.&lt;br /&gt;
&lt;br /&gt;
* Someday pile&lt;br /&gt;
** set up a timezone registry based on wikipedia and semantic mediawiki. As discussed in [[datetime-design-pattern]], iCalendar's by-value timezone passing is broken. see [http://lists.w3.org/Archives/Public/www-rdf-calendar/2006Apr/0002.html reconsidering timezones in light of hCalendar and CALSIFY] and [http://dig.csail.mit.edu/breadcrumbs/node/91 Toward Semantic Web data from Wikipedia]&lt;br /&gt;
** noodle on a playlist format and some of the media RSS stuff like [[media-info-brainstorming]],  [[media-metadata-examples]] (re playlists: XSPF, SMIL, RDF, and microformats 9 Sep 2005)&lt;br /&gt;
** check out that hReview bug stuff...&lt;br /&gt;
** noodle on [[meeting-minutes-brainstorming]] and [http://esw.w3.org/topic/MeetingRecords MeetingRecords in the esw wiki].&lt;br /&gt;
** noodle on clipboard scenarios, esp how RDFa works in the general case but isn't as author-friendly as domain-specific syntaxes.&lt;br /&gt;
&lt;br /&gt;
[[User:DanC|DanC]] 15:39, 31 May 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Chris Casciano ==&lt;br /&gt;
&lt;br /&gt;
[[User:ChrisCasciano|ChrisCasciano]] &lt;br /&gt;
&lt;br /&gt;
* get around to updating [[hatom-issues]] with some multi feed rules/exceptions.&lt;br /&gt;
* &amp;lt;del&amp;gt;Update textpattern plugin with simple hreview support and get a new release out&amp;lt;/del&amp;gt;&lt;br /&gt;
* Redesign placenamehere.com and include hatom&lt;br /&gt;
* Follow up with technorati folks on pingerati reviews getting lost (note: this will require publishing more reviews and theen watching them through the update process)&lt;br /&gt;
* &amp;lt;del&amp;gt;prototype a NetNewsWire microformat extractor (CSS+AppleScript)&amp;lt;/del&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Drew McLellan ==&lt;br /&gt;
&lt;br /&gt;
[[User:DrewMcLellan|DrewMcLellan]] &lt;br /&gt;
&lt;br /&gt;
* Build an hReview profile for [http://allinthehead.com/hkit/ hKit] and test&lt;br /&gt;
* Update the [http://www.webstandards.org/action/dwtf/microformats/ Dreamweaver extensions] to mirror recent changes in the online builders&lt;br /&gt;
* &amp;lt;del&amp;gt;Publish an hCard to JSON service on [http://tools.microformatic.com/ tools.microformatic.com] using hKit.&amp;lt;/del&amp;gt;&lt;br /&gt;
* Further develop blog comment form hCard collection ideas.&lt;br /&gt;
* Version of hReview creator using hKit to import business details from an hCard&lt;br /&gt;
&lt;br /&gt;
== Christophe Ducamp (french localization) ==&lt;br /&gt;
&lt;br /&gt;
[[Christophe Ducamp]]&lt;br /&gt;
* seed &amp;quot;microformateurs group&amp;quot; and invite them to update http://microformateurs.org &lt;br /&gt;
** write a process for newbies in order to make them write [[posh-fr|CHIC]] posts on a public blog-governed-by-wiki ([http://socialsynergyweb.net/cgi-bin/wiki/MicroFormateurs/Blog]) before publication.&lt;br /&gt;
** find experts for peer-reviewing&lt;br /&gt;
** find french CSS gurus to setup a nice Sandbox-CSS template on Wordpress&lt;br /&gt;
* translating the wiki&lt;br /&gt;
** translate red links on [[Main_Page-fr]] and synchronize&lt;br /&gt;
** find out microformateurs at ease on &amp;quot;the-wiki-way-translation&amp;quot;, and ready to help on semi-anonymous-synchro&lt;br /&gt;
* community-marketing -&amp;gt; pinko-marketing&lt;br /&gt;
** public-relations towards french journalists and complete [[advocacy-fr|advocacy]] (especially [[hcard-advocacy-fr]] towards organizations.&lt;br /&gt;
** help to build events, workshops like barcamps and explorcamps&lt;br /&gt;
** update [http://fr.wikipedia.org/wiki/Microformats French-wikipedia:Microformats] and subpages via cowriting [http://fr.wikipedia.org/wiki/Discuter:Microformats on discussion page] (directly originated from the english article) + french examples to be found + local resources.&lt;br /&gt;
** open discussion with french wikipediens about implementing some of the english existing templates &lt;br /&gt;
** small gifts: accessories and free gifts ? t-shirts, localized cheat-sheet, id-hcard-openid-providing, etc.&lt;br /&gt;
*** create hCard, hCalendar... and all red link pages on french wikipedia&lt;br /&gt;
* localize [[species-fr]] and related pages&lt;br /&gt;
* move all contents remaining on elanceur.org -&amp;gt; microformateurs.org&lt;br /&gt;
* wiki and uf: &lt;br /&gt;
** write and talk with &amp;quot;aboutus.org&amp;quot; to invite them to make experiences with uf -&amp;gt; talk with Mark Dilley&lt;br /&gt;
** maintain/update http://www.communitywiki.org/MicroFormats and talk with LionKimbro&lt;br /&gt;
** XWiki : awaiting beta-test of new platform &lt;br /&gt;
*** Follow-up LudovicDubost et LaurentLunati&lt;br /&gt;
* setup real-life links with european [[governance-fr|governance]] members ;) may be joining dconstruct-microformats-workshop  - find solution (registering fees and travel expenses -&amp;gt; talk with Arnaud Fontaine or search french sponsors)&lt;br /&gt;
&lt;br /&gt;
== Frances Berriman ==&lt;br /&gt;
&lt;br /&gt;
[[User:Phae|Frances Berriman]]&lt;br /&gt;
&lt;br /&gt;
* Work on styles for [[zen-garden]] project.&lt;br /&gt;
* Style HTML cheatsheet to match Brian Suda's PDF.&lt;br /&gt;
* Write simplified help/implementation documents (how tos) for all finalised Microformats.&lt;br /&gt;
* Re-organise general FAQ and simplify&lt;br /&gt;
** (Feel free to add suggested tasks to my list below:)&lt;br /&gt;
*** Help converge on organization efforts ~bewest :-)&lt;br /&gt;
&lt;br /&gt;
== Ben West (bewest) ==&lt;br /&gt;
&lt;br /&gt;
[[User:BenWest|bewest]]&lt;br /&gt;
* fight spam&lt;br /&gt;
* help tend wiki&lt;br /&gt;
* documentation of semantic authoring techniques&lt;br /&gt;
* researching the social problems relating to authorship and publishing on the web&lt;br /&gt;
* development of new microformats in response to failing to meet the needs of the second with the first.&lt;br /&gt;
&lt;br /&gt;
=== Expore Microformat Deployment Issues ===&lt;br /&gt;
How does who determine the status of work going through some stage of the process?  When does a format move from draft to &amp;quot;full spec&amp;quot;?  Who decides?  What are the qualitative and quantitative features that characterize work in different stages, especially as a spec nears deployment as &amp;quot;full spec&amp;quot;.  What makes this pronouncement more than a mythical blessing?  What quantitative analyses can be provided to validate deployment?  Today, we have powerful agents capable of processing huge amounts of information on the web.  Should we be using these to measure published marketshare?  What role should tools and test suites play in deploying microformats?&lt;br /&gt;
&lt;br /&gt;
=== Vocabulary ===&lt;br /&gt;
A lot of knowledge work is about maintaining sets of vocabulary. Now that the vocabulary is emerging, it may be time start making sure everyone is &amp;quot;on the same page,&amp;quot; especially since some of the language is highly symbolic.&lt;br /&gt;
Terms:&lt;br /&gt;
* &amp;quot;boil the ocean&amp;quot; A huge task.  &amp;quot;A phrase used in the industry to describe an attempt at something that is way too ambitious. For example, &amp;quot;They're trying to get their site launched by COMDEX. They could easier boil the ocean.&amp;quot; from &amp;lt;http://www.netlingo.com/right.cfm?term=boil%20the%20ocean&amp;gt;&lt;br /&gt;
* microformats: more than one microformat&lt;br /&gt;
* microformat: see my definition on http://microformats.org/wiki/what-are-microformats#BenWest&lt;br /&gt;
* data fidelity: the extent to which a data format might be considered lossy. eg HTML is often seen as a lossy format because the information parsed out of a resource may not fully match the information orginally encoded. Non-lossy formats have a very high data fidelity, while lossy formats have low data fidelity. Microformats seek to increase data fidelity of html.&lt;br /&gt;
* market: the locus of economic forces&lt;br /&gt;
&lt;br /&gt;
: See [[glossary]]. [[User:AndyMabbett|Andy Mabbett]] 13:57, 7 Dec 2006 (PST)&lt;br /&gt;
&lt;br /&gt;
=== Creators ===&lt;br /&gt;
_Concession_: my plans involve reuse of code, which would involve non-compatible changes with the current inline model.  This is a nice feature, so maybe I should be branching instead.&lt;br /&gt;
* &amp;lt;strike&amp;gt;Start hatom creator.&amp;lt;/strike&amp;gt; http://dichotomize.com/uf/hatom/creator.html&lt;br /&gt;
* Code Reuse. These creators are downright handy, and I’ve reimplemented the vcard one on my own site. Instead, let’s make these widgetized. Let’s decide on a more or less canonical html structure and create some javascript that will create the desired microformat. Something as easy to use as new Microformat.hCard($('mycontainer')); would be awesome. Right now, if someone makes an improvement to the hCard creator, the other creators don’t get the benefit. Spec this out!&lt;br /&gt;
* About Section. Is there an official creator page? If so, let’s point to that. The about paragraph is getting longer and longer with phrases like “which is based on…” repeated over and over.&lt;br /&gt;
* Default all dates to “right now”. Provide an easy to use calendar type widget to change dates.&lt;br /&gt;
* hAtom creator: Add multiple. It’d be nice to add an arbitrary number of entries.&lt;br /&gt;
* hAtom creator: Optional feed enclosure. Check box to wrap the entry/entries in an hfeed.&lt;br /&gt;
* Edit URI: Allow someone to enter a URI and edit whatever microformat is found on the page.&lt;br /&gt;
* Optionals. If the format requires, say, a vcard, the creator can defer to an external URI or can trust the user to fill it in later.&lt;br /&gt;
* Common stylesheet. I suppose this goes with the reuseable code idea… we have many great coders, we should be reusing eachothers’ work.&lt;br /&gt;
* Use Amazon's ECS to pull in information about products when there is an ASIN in the item URI.&lt;br /&gt;
&lt;br /&gt;
=== Information Architecture ===&lt;br /&gt;
'''Help Welcomed! Please leave your name'''&lt;br /&gt;
Add complaints to [[wiki-feedback]]!&lt;br /&gt;
Helping to make the wiki easier to use.  I'd like to see the main page more towards a format like http://simile.mit.edu/solvent/ with the big questions right out front:&lt;br /&gt;
* What Is This?&lt;br /&gt;
* What can I do here?&lt;br /&gt;
* Is there a demo?&lt;br /&gt;
* Where can I learn more?&lt;br /&gt;
I'd like to change the front page to this kind of design.&lt;br /&gt;
==== Support Pages ====&lt;br /&gt;
There are several categories of things in the wiki.  Can we enumerate them?&lt;br /&gt;
* About the Community&lt;br /&gt;
** Where to find information.&lt;br /&gt;
** Who are the stake holders?&lt;br /&gt;
** FAQs&lt;br /&gt;
* Web/Architectural Philosophy&lt;br /&gt;
** Community Principles&lt;br /&gt;
** Why are we doing this?&lt;br /&gt;
** XML and Namespaces&lt;br /&gt;
** Semantic XHTML&lt;br /&gt;
** Common Misconceptions&lt;br /&gt;
** Concession and Disposition of Criticism&lt;br /&gt;
** FAQs&lt;br /&gt;
* Specs&lt;br /&gt;
** Examples&lt;br /&gt;
** Discussion&lt;br /&gt;
** Exploration&lt;br /&gt;
** Use Cases&lt;br /&gt;
** Implementations&lt;br /&gt;
** The spec itself.&lt;br /&gt;
&lt;br /&gt;
* Tips and Tricks for Authoring ([[User:BenWest|BenWest]] 15:00, 9 Dec 2006 (PST))&lt;br /&gt;
** how to author semantic html&lt;br /&gt;
** choosing class names&lt;br /&gt;
** using HTML's general extension mechanisms&lt;br /&gt;
** advocating use&lt;br /&gt;
** collaborating/reusing HTML&lt;br /&gt;
** debugging HTML: use pastebin, separate out the relevant bits.&lt;br /&gt;
** getting help from the community&lt;br /&gt;
** applying Microformats.&lt;br /&gt;
&lt;br /&gt;
Can others agree and or refine this list?  Should I take it to the -discuss list?  How do we create consensus on how the wiki should be organized in order to make it more usable? And how can we turn that consensus into actionable changes?&lt;br /&gt;
&lt;br /&gt;
The wiki should also capture wisdom that stems from discussions that don't produce microformats.  For example, Chris Messina suggests a &amp;quot;Best Of&amp;quot; page suitable for capturing this kind of wisdom.  I think we can think of a given microformat as being at a place in a spectrum that ranges from &amp;quot;not yet thought of&amp;quot;, to &amp;quot;interesting but needs work,&amp;quot; or even &amp;quot;rejected&amp;quot;, and of course including all the stages familiar to the microformats processes (eg examples, brainstorming, etc...).&lt;br /&gt;
If there were such a page would it:&lt;br /&gt;
* Belong to a microformat? (eg hcard-bestof)&lt;br /&gt;
* or to the global namespace? (eg /wiki/wisdom/foobar-format)&lt;br /&gt;
(I think Chris Messina suggests that it belongs to a given microformat, but then how do we collect wisdom from non-microformats?)&lt;br /&gt;
&lt;br /&gt;
Considering that the wiki page named with the microformat (i.e. /wiki/hcard) is the one that people will mostly likely look to first for learning about a particular format, I'd think it'd make more sense and create a more welcoming feel to convert these pages to an intro page introducing the format for the beginner and linking to resources like tutorials and creators. Spec pages would then be relocated to wiki/*-spec -- [[User:Cgriego|Cgriego]] 13:25, 16 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
====Mike Schinkel's Comments====&lt;br /&gt;
&lt;br /&gt;
My suggestion on the list was for us to use a convention that the entry page (i.e.&lt;br /&gt;
http://microformats.org/wiki/hcard) would be an index into a list of&lt;br /&gt;
(psuedo) standardized sub pages so that it would be very people to &lt;br /&gt;
find what is important to them. For example, is a list of potential sub pages:&lt;br /&gt;
&lt;br /&gt;
* Microformat&lt;br /&gt;
** Specification&lt;br /&gt;
** Tutorial&lt;br /&gt;
** Examples&lt;br /&gt;
** Use cases&lt;br /&gt;
** Reference&lt;br /&gt;
** Discussion&lt;br /&gt;
** Brainstorming (might be combined w/Discussion)&lt;br /&gt;
** Implementations&lt;br /&gt;
** Related Pages&lt;br /&gt;
** Further Reading&lt;br /&gt;
** All (Uses Mediawiki's &amp;quot;includes&amp;quot; to create a page including all sub pages; very useful for printing &amp;amp; reading offline)&lt;br /&gt;
&lt;br /&gt;
These pages would be located respectively at&lt;br /&gt;
&lt;br /&gt;
* http://microformats.org/wiki/hcard/&lt;br /&gt;
** http://microformats.org/wiki/hcard/Specification&lt;br /&gt;
** http://microformats.org/wiki/hcard/Tutorial&lt;br /&gt;
** http://microformats.org/wiki/hcard/Examples&lt;br /&gt;
** http://microformats.org/wiki/hcard/Use_cases&lt;br /&gt;
** http://microformats.org/wiki/hcard/Reference&lt;br /&gt;
** http://microformats.org/wiki/hcard/Discussion&lt;br /&gt;
** http://microformats.org/wiki/hcard/Brainstorming&lt;br /&gt;
** http://microformats.org/wiki/hcard/Implementations&lt;br /&gt;
** http://microformats.org/wiki/hcard/Related_Pages&lt;br /&gt;
** http://microformats.org/wiki/hcard/Further_Reading&lt;br /&gt;
** http://microformats.org/wiki/hcard/All&lt;br /&gt;
&lt;br /&gt;
Please note I am suggesting an architecture not a specific list of sub pages. The list of sub pages should be defined by both reviewing existing information during site reorganization, and then via discussion on the list in an attempt to discover and extract which sub pages are needed for most/all microformats.&lt;br /&gt;
&lt;br /&gt;
'''NOTE''': This differs from above in that the spec if not viewed as a top level structure but instead the microformat itself and the spec would be under the microformat.  In this context &amp;quot;microformat&amp;quot; is a more abstract concept and &amp;quot;spec&amp;quot; is a more concrete thing. Another way to think about it would be that each microformat would have it's own mini home page and then things like &amp;quot;spec&amp;quot; are the pages listed on its home page.&lt;br /&gt;
&lt;br /&gt;
== Matt Dertinger (Thewhoo) ==&lt;br /&gt;
&lt;br /&gt;
[[User:Thewhoo]]&lt;br /&gt;
&lt;br /&gt;
=== hAtom2Atom ===&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Support for other XSLT engines:&lt;br /&gt;
* hAtom2Atom written using XSL 2.0&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Support for other output formats: (hAtom2&amp;lt;i&amp;gt;xyz&amp;lt;/i&amp;gt;.xsl)&lt;br /&gt;
* RSS 2.0 (meanwhile use hAtom2Atom.xsl and [http://atom.geekhood.net/ atom2rss.xsl])&lt;br /&gt;
* RSS 1.0 (meanwhile use hAtom2Atom.xsl and [http://cvs.4suite.org/viewcvs/uogbuji/atom2rss.xslt atom2rss.xslt])&lt;br /&gt;
* AtomOWL (meanwhile use hAtom2Atom.xsl and [http://dannyayers.com/2005/11/22/atomowl-xslt-progress/ atom2rdfxml.xsl])&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Microformats Proposals ===&lt;br /&gt;
&lt;br /&gt;
* rel=&amp;quot;disclaimer&amp;quot;:&lt;br /&gt;
** Purpose: to create a semantic linkage (relationship) between a foot-note or end-note marker and the actual location of the text that the marker refers to.&lt;br /&gt;
* rel=&amp;quot;external&amp;quot;:&lt;br /&gt;
** Purpose: to formalize what is already in existence in the wild. The use of rel=&amp;quot;external&amp;quot; to refer to a document that is external or outside of the current domain.&lt;br /&gt;
&lt;br /&gt;
== Henri Bergius ==&lt;br /&gt;
&lt;br /&gt;
[[User:HenriBergius|Henri Bergius]]&lt;br /&gt;
&lt;br /&gt;
* Add hKit support for automatically populating contact details into [http://www.openpsa.org/version2/openpsa/contacts.html OpenPsa Contacts] CRM&lt;br /&gt;
* Implement Tail scripts for adding things into Midgard&lt;br /&gt;
&lt;br /&gt;
== Justin Thorp ==&lt;br /&gt;
* Start researching examples for a To-do microformat&lt;br /&gt;
&lt;br /&gt;
== [[User:MarkLentczner|Mark Lentczner]] ==&lt;br /&gt;
&lt;br /&gt;
* Get Second Life's event web pages to have proper event microformats data&lt;br /&gt;
** Add [[hcard|hCard]] to profile pages&lt;br /&gt;
** Add [[hcalendar|hCalendar]] to events listings&lt;br /&gt;
* Start pinging pingerati.net/ping/$url when pages are updated&lt;br /&gt;
* Collaborate on designing how to integrate microformats, metadata and objects in [http://secondlife.com/ Second Life].&lt;br /&gt;
&lt;br /&gt;
== [[User:DerrickPallas|Derrick Pallas]] ==&lt;br /&gt;
=== microformat proposal: dependancy ===&lt;br /&gt;
* looking for examples of directed graphs on the web&lt;br /&gt;
* applications in&lt;br /&gt;
** software engineering&lt;br /&gt;
*** automatically build library dependency trees&lt;br /&gt;
*** distribute security alerts to people that link to your code&lt;br /&gt;
** any directed, acyclic graph&lt;br /&gt;
*** getting dressed in the morning&lt;br /&gt;
*** cooking&lt;br /&gt;
* orthogonal to xfn&lt;br /&gt;
** people don't have versions&lt;br /&gt;
*** libfoo requires libbar-2.0 or later&lt;br /&gt;
** people don't have optional relationships&lt;br /&gt;
*** ex: at build time, compile in SSL support if present&lt;br /&gt;
** people don't have exclusive-or relationships&lt;br /&gt;
*** ex: in Gentoo, syslog, syslog-ng, and metalog satisfy virtual/syslog&lt;br /&gt;
*** ex: the Ruby library RMagick requires ImageMagick xor GraphicsMagick&lt;br /&gt;
&lt;br /&gt;
== [[User:PaulDowney|Paul Downey]] ==&lt;br /&gt;
* building a generic Javascript parser &lt;br /&gt;
* bundling parser as a [http://tiddlywiki.org TidlyWiki] plugin for hCards&lt;br /&gt;
* documenting how best to microformat TiddlyWiki pages&lt;br /&gt;
&lt;br /&gt;
== [[User:RobManson | Rob Manson]] ==&lt;br /&gt;
* chase the admins to get some creation template extensions installed for wiki (see: http://meta.wikimedia.org/wiki/Inputbox or http://www.mediawiki.org/wiki/Extension:CreateBox or http://www.mediawiki.org/wiki/Extension:CreateArticle)&lt;br /&gt;
&lt;br /&gt;
== [[User:ClayNewton | Clay Newton]] ==&lt;br /&gt;
* Work on getting others involved in [[trade-examples]]&lt;br /&gt;
** Need examples from major online banking sites&lt;br /&gt;
** Need examples from major ecommerce sites&lt;br /&gt;
* Continue working on: [[trade-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
== [[User:BenWard | Ben Ward]] ==&lt;br /&gt;
&lt;br /&gt;
=== Recurring ===&lt;br /&gt;
&lt;br /&gt;
* Delete Wiki Spam&lt;br /&gt;
&lt;br /&gt;
=== Currently ===&lt;br /&gt;
&lt;br /&gt;
* Gardening/updating key wiki pages.&lt;br /&gt;
** [[how-to-play]]&lt;br /&gt;
** XHTML Design Principals&lt;br /&gt;
* embed brainstorming&lt;br /&gt;
* Considering new welcome banner of µf.org to link to various µf resources, rather than being dominated by the infrequently updated blog.&lt;br /&gt;
&lt;br /&gt;
=== Next Actions ===&lt;br /&gt;
&lt;br /&gt;
* Conclude new hCalendar proposals from Yahoo TV Listings experience&lt;br /&gt;
* Resume work on hListing microformat&lt;br /&gt;
* Re-org the Microformats.org front-page content&lt;br /&gt;
** Work with [[User:Phae]] on refreshing the microformats frontpage content&lt;br /&gt;
** Build new events module for the blog using Upcoming.org, rather than hard coded event data (Matt Harris may have done this…)&lt;br /&gt;
** Build new wiki edits module for the blog&lt;br /&gt;
** Combine ‘list of microformats’ into the intro text? Make intro text more friendly.&lt;br /&gt;
* Build a microformats activity stream&lt;br /&gt;
** Replace front page blog with activity flow&lt;br /&gt;
*** Wiki Edits/New Pages&lt;br /&gt;
*** New Mailing List Threads&lt;br /&gt;
*** Interesting µf links&lt;br /&gt;
*** Blog posts&lt;br /&gt;
*** Upcoming events/event reminders&lt;br /&gt;
* Improve µf.org/blog OpenID support, find a good workflow for login/comment (current plug-in has an abysmal user experience)&lt;br /&gt;
&lt;br /&gt;
== [[User:Spiritquest|Ketan Majmudar]] ==&lt;br /&gt;
=== Activites ===&lt;br /&gt;
* Work on developing the [[hlisting-brainstorming|hListing]] proposal&lt;br /&gt;
** Provide real world examples and apply this to the proposed specifications&lt;br /&gt;
* refine and keep up to date with [[hcard|hCard]] formats as used on existing sites [[http://www.ethical-junction.org| Ethical Junction CIC]]&lt;br /&gt;
* Understand / follow and evangalise existing patterns, especially the new [[value-class-pattern]]&lt;br /&gt;
* see where I can help the community&lt;br /&gt;
* look at using x2v or writing php parser classes for hcard -&amp;gt; vcard&lt;br /&gt;
* open source hCard class (php)  used to format db fields&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=ecolabel-brainstorming&amp;diff=40025</id>
		<title>ecolabel-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=ecolabel-brainstorming&amp;diff=40025"/>
		<updated>2009-07-27T23:57:05Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: moved content brainstorm page for research&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== rel=&amp;quot;ecolabel&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
Rel-Ecolabel is a simple, open, format for indicating ecolabelled items which is embedable in HTML or XHTML, Atom, RSS, and arbitrary XML. &lt;br /&gt;
Specification 2008-05-12&lt;br /&gt;
&lt;br /&gt;
=== Author ===&lt;br /&gt;
Jacob Malthouse (http://bigroom.ca), formerly of ICANN (http://icann.org/)&lt;br /&gt;
&lt;br /&gt;
=== Abstract ===&lt;br /&gt;
By adding rel=&amp;quot;ecolabel&amp;quot; to a hyperlink, a page indicates that the destination of that hyperlink is the ecolabel for an ecolabelled item listed on the current page. E.g. with the following hyperlink:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
NOTE: in the highlighted portion - is this where we would put an ecolabel code or readable URL for ecolabelling.org entry? &lt;br /&gt;
&lt;br /&gt;
the author indicates that the product, company, or services has obtained an &amp;quot;ecologo&amp;quot; certification.&lt;br /&gt;
&lt;br /&gt;
--[[User:Spiritquest|Spiritquest]] 23:06, 27 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
It seems that it might work well with being linked to an hproduct / hCard - to identify a manufacturer - I've yet to explore hproduct in detail.&lt;br /&gt;
&lt;br /&gt;
I don't know that pointing the URL of the ecolabel directly to www.ecolabelling.com would work.&lt;br /&gt;
&lt;br /&gt;
If I ran a product site with ecolabelled products, I would want to point to either a source of information on the label internally within the site, or have it point to a list of all data tagged with similar ecolables.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://myproductsite.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;license&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The destination would then show all '''ecologo''' tagged products within the catalogue of myproductsite.org&lt;br /&gt;
&lt;br /&gt;
maybe microformat parsing tools could be created to send users or pull information from www.ecolabelling.org site as a source of authoritative  info and background on the label.&lt;br /&gt;
&lt;br /&gt;
rel-tag as an example can point to an internal site structure using a taxonomy but can also use microformat tools to extend data searches to sites like technorati.&lt;br /&gt;
&lt;br /&gt;
=== Multiple Licenses ===&lt;br /&gt;
&lt;br /&gt;
Multiple such rel=&amp;quot;ecolabel&amp;quot; hyperlinks indicate that multiple items on the page are available under any of the referred licenses. E.g. the following hyperlinks could be used to declare that a page is available under either an ecologo or a certified carbon free ecolabel:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XMDP profile ===&lt;br /&gt;
unknown/in development &lt;br /&gt;
&lt;br /&gt;
=== Implementations ===&lt;br /&gt;
none&lt;br /&gt;
&lt;br /&gt;
=== List of Ecolabels ===&lt;br /&gt;
http://ecolabelling.org/ecolabel/&lt;br /&gt;
see also: about ecolabelling.org: http://ecolabelling.org/about/&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
See Also&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-ecolabel&amp;diff=40024</id>
		<title>rel-ecolabel</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-ecolabel&amp;diff=40024"/>
		<updated>2009-07-27T23:55:59Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: /* Brainstorming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''This page was prematurely created and does not follow the microformats [[process]]. If you are the creator of this page, please join the discussion on the microformats [[irc]] channel, and ask for help with the microformats process. You may also request help on the microformats-new [http://microformats.org/discuss discussion list].'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
&lt;br /&gt;
It's difficult to authenticate eco-friendly goods and services online.&lt;br /&gt;
&lt;br /&gt;
* The proposed solution below is not a solution to the above problem. The proposed solution offers a mechanism by which a service can ''claim'' an eco-friendly label, but no way of ''authenticating'' that claim.&lt;br /&gt;
&lt;br /&gt;
== Proposed Solution ==&lt;br /&gt;
&lt;br /&gt;
'''It is premature to propose any brainstormed solution without first at a minimum per the process creating pages to research and collect [[ecolabel-examples]] and [[ecolabel-formats]]. Only then should proposals be drafted on a [[ecolabel-brainstroming]] page.'''&lt;br /&gt;
&lt;br /&gt;
We are interested in establishing &amp;quot;rel-ecolabel&amp;quot; as a way of identifying ecolabelled (and thus eco-friendly) items (where item = ecolabel certified unit including products, services, companies, land, or any other thing that can be certified eco-friendly) on the World Wide Web.&lt;br /&gt;
&lt;br /&gt;
Definition of an ecolabel: http://ecolabelling.org/eco-labels/&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
'''This section should be moved to a separate page like [[ecolabel-examples]].'''&lt;br /&gt;
&lt;br /&gt;
== previous formats ==&lt;br /&gt;
'''This section should be moved to a separate page like [[ecolabel-formats]].'''&lt;br /&gt;
&lt;br /&gt;
== Brainstorming ==&lt;br /&gt;
'''This section should be moved to a separate page like [[ecolabel-brainstorming]].'''&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=ecolabel-formats&amp;diff=40023</id>
		<title>ecolabel-formats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=ecolabel-formats&amp;diff=40023"/>
		<updated>2009-07-27T23:55:12Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: mving content out&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== previous formats ==&lt;br /&gt;
&lt;br /&gt;
=== Similar Microformats ===&lt;br /&gt;
&lt;br /&gt;
* [[rel-license]]&lt;br /&gt;
&lt;br /&gt;
indicates a &amp;quot;that the destination of that hyperlink is a license for the current page.&amp;quot; whereas rel-ecolabel would indicate that the destination of that hyperlink is an ecolabel for a product, company or service listed on the page.&lt;br /&gt;
&lt;br /&gt;
In this case I am uncertain if rel-license defines an authoritative source for license information. The difference with rel-ecolabel is that we would define an authoritative source at www.ecolabelling.org. We'd do this because there are many ecolabels 300+ and very few display their information in a standardised way. That being said, we're not beholden to this approach. &lt;br /&gt;
&lt;br /&gt;
* [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
This would need to have the option / ability to point to the issuing labels site as well. Or if www.ecolabelling.org want to become the source, it should have a simple an quick method of adding labels into the system that aren't listed .. eg. a lot of UK based certified labels are currently not on the site. Would there be a conflict if I wanted to point the URL at the label associations website instead of www.ecolabelling.org (asked for discussion purposes)&lt;br /&gt;
&lt;br /&gt;
Label example: Vegan Society Trademark: http://www.vegansociety.com/business/trademark/&lt;br /&gt;
&lt;br /&gt;
=== Ecolabel Schema ===&lt;br /&gt;
&lt;br /&gt;
ecolabel entry @ ecolabelling.org&lt;br /&gt;
eg: http://ecolabelling.org/ecolabel/energy-star/&lt;br /&gt;
&lt;br /&gt;
ecolabel entry @ greenerchoices.org&lt;br /&gt;
eg: http://greenerchoices.org/eco-labels/label.cfm?LabelID=15&amp;amp;searchType=Label%20index&amp;amp;searchValue=&amp;amp;refpage=labelIndex&amp;amp;refqstr=&lt;br /&gt;
&lt;br /&gt;
ecolabel ISO types&lt;br /&gt;
eg: http://www.gen.gr.jp/eco.html&lt;br /&gt;
&lt;br /&gt;
=== conformsTo ===&lt;br /&gt;
The  [http://dublincore.org/documents/dcmi-terms/#terms-conformsTo Dublin Core conformsTo] term appears to already solve a more general problem of indicating conforming to any external label etc, not just ecolabels.&lt;br /&gt;
&lt;br /&gt;
Re-using conformsTo is also better than minting a new rel term. conformsTo can be used in a wider set of situations that &amp;quot;ecolabel&amp;quot; in that it can be used to indicate non-ecological conformance to standards too. e.g. a web page can conform to HTML 4.01 Strict, or software could conform to &amp;quot;Certified for Windows Vista&amp;quot; or a toy could conform to a particular child safety standard.&lt;br /&gt;
&lt;br /&gt;
As a [[poshformat]] inside the product description, e.g. inside an [[hProduct]]:&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
 This product conforms to &amp;lt;a rel=&amp;quot;conformsTo&amp;quot;&lt;br /&gt;
 href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using [http://www.w3.org/TR/rdfa-syntax RDFa]:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 This product conforms to &amp;lt;a about=&amp;quot;#product&amp;quot;&lt;br /&gt;
 xmlns:dc=&amp;quot;http://purl.org/dc/terms/&amp;quot; rel=&amp;quot;dc:conformsTo&amp;quot;&lt;br /&gt;
 href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These claims could be verified by the authority being linked to (in the case above ecolabelling.org) by simply providing a link back from http://ecolabelling.org/ecolabel/certified-carbonfree/ to the product:&lt;br /&gt;
&lt;br /&gt;
as a poshformat on the certified-carbonfree page:&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
The &amp;lt;a href=&amp;quot;http://foo.example.com/product&amp;quot; rev=&amp;quot;conformsTo&amp;quot;&amp;gt;Foo product conforms to certified carbonfree.&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
as RDFa:&lt;br /&gt;
by linking to it using an about attribute, a namespace URL declaration, and labeling it with &amp;lt;tt&amp;gt;rev=&amp;quot;dc:conformsTo&amp;quot;&amp;lt;/tt&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-ecolabel&amp;diff=40022</id>
		<title>rel-ecolabel</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-ecolabel&amp;diff=40022"/>
		<updated>2009-07-27T23:54:17Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: /* previous formats */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''This page was prematurely created and does not follow the microformats [[process]]. If you are the creator of this page, please join the discussion on the microformats [[irc]] channel, and ask for help with the microformats process. You may also request help on the microformats-new [http://microformats.org/discuss discussion list].'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
&lt;br /&gt;
It's difficult to authenticate eco-friendly goods and services online.&lt;br /&gt;
&lt;br /&gt;
* The proposed solution below is not a solution to the above problem. The proposed solution offers a mechanism by which a service can ''claim'' an eco-friendly label, but no way of ''authenticating'' that claim.&lt;br /&gt;
&lt;br /&gt;
== Proposed Solution ==&lt;br /&gt;
&lt;br /&gt;
'''It is premature to propose any brainstormed solution without first at a minimum per the process creating pages to research and collect [[ecolabel-examples]] and [[ecolabel-formats]]. Only then should proposals be drafted on a [[ecolabel-brainstroming]] page.'''&lt;br /&gt;
&lt;br /&gt;
We are interested in establishing &amp;quot;rel-ecolabel&amp;quot; as a way of identifying ecolabelled (and thus eco-friendly) items (where item = ecolabel certified unit including products, services, companies, land, or any other thing that can be certified eco-friendly) on the World Wide Web.&lt;br /&gt;
&lt;br /&gt;
Definition of an ecolabel: http://ecolabelling.org/eco-labels/&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
'''This section should be moved to a separate page like [[ecolabel-examples]].'''&lt;br /&gt;
&lt;br /&gt;
== previous formats ==&lt;br /&gt;
'''This section should be moved to a separate page like [[ecolabel-formats]].'''&lt;br /&gt;
&lt;br /&gt;
== Brainstorming ==&lt;br /&gt;
'''This section should be moved to a separate page like [[ecolabel-brainstorming]].'''&lt;br /&gt;
&lt;br /&gt;
=== rel=&amp;quot;ecolabel&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
Rel-Ecolabel is a simple, open, format for indicating ecolabelled items which is embedable in HTML or XHTML, Atom, RSS, and arbitrary XML. &lt;br /&gt;
Specification 2008-05-12&lt;br /&gt;
&lt;br /&gt;
=== Author ===&lt;br /&gt;
Jacob Malthouse (http://bigroom.ca), formerly of ICANN (http://icann.org/)&lt;br /&gt;
&lt;br /&gt;
=== Abstract ===&lt;br /&gt;
By adding rel=&amp;quot;ecolabel&amp;quot; to a hyperlink, a page indicates that the destination of that hyperlink is the ecolabel for an ecolabelled item listed on the current page. E.g. with the following hyperlink:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
NOTE: in the highlighted portion - is this where we would put an ecolabel code or readable URL for ecolabelling.org entry? &lt;br /&gt;
&lt;br /&gt;
the author indicates that the product, company, or services has obtained an &amp;quot;ecologo&amp;quot; certification.&lt;br /&gt;
&lt;br /&gt;
--[[User:Spiritquest|Spiritquest]] 23:06, 27 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
It seems that it might work well with being linked to an hproduct / hCard - to identify a manufacturer - I've yet to explore hproduct in detail.&lt;br /&gt;
&lt;br /&gt;
I don't know that pointing the URL of the ecolabel directly to www.ecolabelling.com would work.&lt;br /&gt;
&lt;br /&gt;
If I ran a product site with ecolabelled products, I would want to point to either a source of information on the label internally within the site, or have it point to a list of all data tagged with similar ecolables.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://myproductsite.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;license&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The destination would then show all '''ecologo''' tagged products within the catalogue of myproductsite.org&lt;br /&gt;
&lt;br /&gt;
maybe microformat parsing tools could be created to send users or pull information from www.ecolabelling.org site as a source of authoritative  info and background on the label.&lt;br /&gt;
&lt;br /&gt;
rel-tag as an example can point to an internal site structure using a taxonomy but can also use microformat tools to extend data searches to sites like technorati.&lt;br /&gt;
&lt;br /&gt;
=== Multiple Licenses ===&lt;br /&gt;
&lt;br /&gt;
Multiple such rel=&amp;quot;ecolabel&amp;quot; hyperlinks indicate that multiple items on the page are available under any of the referred licenses. E.g. the following hyperlinks could be used to declare that a page is available under either an ecologo or a certified carbon free ecolabel:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XMDP profile ===&lt;br /&gt;
unknown/in development &lt;br /&gt;
&lt;br /&gt;
=== Implementations ===&lt;br /&gt;
none&lt;br /&gt;
&lt;br /&gt;
=== List of Ecolabels ===&lt;br /&gt;
http://ecolabelling.org/ecolabel/&lt;br /&gt;
see also: about ecolabelling.org: http://ecolabelling.org/about/&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
See Also&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=ecolabel-examples&amp;diff=40021</id>
		<title>ecolabel-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=ecolabel-examples&amp;diff=40021"/>
		<updated>2009-07-27T23:51:56Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: New page: Ecolabelled products appear on retailer and producer sites all over the web. There is currently no way of identifying them. Several examples are presented below:  URL: http://www.amazon.co...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ecolabelled products appear on retailer and producer sites all over the web. There is currently no way of identifying them. Several examples are presented below:&lt;br /&gt;
&lt;br /&gt;
URL: http://www.amazon.com/Newmans-Own-Organics-California-15-Ounce/dp/B000FNJNO6/ref=tag_stp_st_edpp_url&lt;br /&gt;
SCHEMA: Oregon Tilth&lt;br /&gt;
ecolabel: http://ecolabelling.org/ecolabel/oregon-tilth/&lt;br /&gt;
&lt;br /&gt;
URL: http://www.environmentalbychoice.com/prestigious_papers/enviro100ecofibre.php&lt;br /&gt;
SCHEMA: FSC&lt;br /&gt;
ecolabel: http://ecolabelling.org/ecolabel/fsc-forest-management-certification/&lt;br /&gt;
&lt;br /&gt;
URL: http://www.bestbuy.com/site/olspage.jsp?skuId=7838995&amp;amp;type=product&amp;amp;productCategoryId=pcmcat108700050027&amp;amp;id=1142297396649&lt;br /&gt;
SCHEMA: Energy star&lt;br /&gt;
ecolabel: http://ecolabelling.org/ecolabel/energy-star/&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-ecolabel&amp;diff=40020</id>
		<title>rel-ecolabel</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-ecolabel&amp;diff=40020"/>
		<updated>2009-07-27T23:51:29Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''This page was prematurely created and does not follow the microformats [[process]]. If you are the creator of this page, please join the discussion on the microformats [[irc]] channel, and ask for help with the microformats process. You may also request help on the microformats-new [http://microformats.org/discuss discussion list].'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
&lt;br /&gt;
It's difficult to authenticate eco-friendly goods and services online.&lt;br /&gt;
&lt;br /&gt;
* The proposed solution below is not a solution to the above problem. The proposed solution offers a mechanism by which a service can ''claim'' an eco-friendly label, but no way of ''authenticating'' that claim.&lt;br /&gt;
&lt;br /&gt;
== Proposed Solution ==&lt;br /&gt;
&lt;br /&gt;
'''It is premature to propose any brainstormed solution without first at a minimum per the process creating pages to research and collect [[ecolabel-examples]] and [[ecolabel-formats]]. Only then should proposals be drafted on a [[ecolabel-brainstroming]] page.'''&lt;br /&gt;
&lt;br /&gt;
We are interested in establishing &amp;quot;rel-ecolabel&amp;quot; as a way of identifying ecolabelled (and thus eco-friendly) items (where item = ecolabel certified unit including products, services, companies, land, or any other thing that can be certified eco-friendly) on the World Wide Web.&lt;br /&gt;
&lt;br /&gt;
Definition of an ecolabel: http://ecolabelling.org/eco-labels/&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
'''This section should be moved to a separate page like [[ecolabel-examples]].'''&lt;br /&gt;
&lt;br /&gt;
== previous formats ==&lt;br /&gt;
'''This section should be moved to a separate page like [[ecolabel-formats]].'''&lt;br /&gt;
&lt;br /&gt;
=== Similar Microformats ===&lt;br /&gt;
&lt;br /&gt;
* [[rel-license]]&lt;br /&gt;
&lt;br /&gt;
indicates a &amp;quot;that the destination of that hyperlink is a license for the current page.&amp;quot; whereas rel-ecolabel would indicate that the destination of that hyperlink is an ecolabel for a product, company or service listed on the page.&lt;br /&gt;
&lt;br /&gt;
In this case I am uncertain if rel-license defines an authoritative source for license information. The difference with rel-ecolabel is that we would define an authoritative source at www.ecolabelling.org. We'd do this because there are many ecolabels 300+ and very few display their information in a standardised way. That being said, we're not beholden to this approach. &lt;br /&gt;
&lt;br /&gt;
* [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
This would need to have the option / ability to point to the issuing labels site as well. Or if www.ecolabelling.org want to become the source, it should have a simple an quick method of adding labels into the system that aren't listed .. eg. a lot of UK based certified labels are currently not on the site. Would there be a conflict if I wanted to point the URL at the label associations website instead of www.ecolabelling.org (asked for discussion purposes)&lt;br /&gt;
&lt;br /&gt;
Label example: Vegan Society Trademark: http://www.vegansociety.com/business/trademark/&lt;br /&gt;
&lt;br /&gt;
=== Ecolabel Schema ===&lt;br /&gt;
&lt;br /&gt;
ecolabel entry @ ecolabelling.org&lt;br /&gt;
eg: http://ecolabelling.org/ecolabel/energy-star/&lt;br /&gt;
&lt;br /&gt;
ecolabel entry @ greenerchoices.org&lt;br /&gt;
eg: http://greenerchoices.org/eco-labels/label.cfm?LabelID=15&amp;amp;searchType=Label%20index&amp;amp;searchValue=&amp;amp;refpage=labelIndex&amp;amp;refqstr=&lt;br /&gt;
&lt;br /&gt;
ecolabel ISO types&lt;br /&gt;
eg: http://www.gen.gr.jp/eco.html&lt;br /&gt;
&lt;br /&gt;
=== conformsTo ===&lt;br /&gt;
The  [http://dublincore.org/documents/dcmi-terms/#terms-conformsTo Dublin Core conformsTo] term appears to already solve a more general problem of indicating conforming to any external label etc, not just ecolabels.&lt;br /&gt;
&lt;br /&gt;
Re-using conformsTo is also better than minting a new rel term. conformsTo can be used in a wider set of situations that &amp;quot;ecolabel&amp;quot; in that it can be used to indicate non-ecological conformance to standards too. e.g. a web page can conform to HTML 4.01 Strict, or software could conform to &amp;quot;Certified for Windows Vista&amp;quot; or a toy could conform to a particular child safety standard.&lt;br /&gt;
&lt;br /&gt;
As a [[poshformat]] inside the product description, e.g. inside an [[hProduct]]:&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
 This product conforms to &amp;lt;a rel=&amp;quot;conformsTo&amp;quot;&lt;br /&gt;
 href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using [http://www.w3.org/TR/rdfa-syntax RDFa]:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 This product conforms to &amp;lt;a about=&amp;quot;#product&amp;quot;&lt;br /&gt;
 xmlns:dc=&amp;quot;http://purl.org/dc/terms/&amp;quot; rel=&amp;quot;dc:conformsTo&amp;quot;&lt;br /&gt;
 href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These claims could be verified by the authority being linked to (in the case above ecolabelling.org) by simply providing a link back from http://ecolabelling.org/ecolabel/certified-carbonfree/ to the product:&lt;br /&gt;
&lt;br /&gt;
as a poshformat on the certified-carbonfree page:&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
The &amp;lt;a href=&amp;quot;http://foo.example.com/product&amp;quot; rev=&amp;quot;conformsTo&amp;quot;&amp;gt;Foo product conforms to certified carbonfree.&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
as RDFa:&lt;br /&gt;
by linking to it using an about attribute, a namespace URL declaration, and labeling it with &amp;lt;tt&amp;gt;rev=&amp;quot;dc:conformsTo&amp;quot;&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Brainstorming ==&lt;br /&gt;
'''This section should be moved to a separate page like [[ecolabel-brainstorming]].'''&lt;br /&gt;
&lt;br /&gt;
=== rel=&amp;quot;ecolabel&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
Rel-Ecolabel is a simple, open, format for indicating ecolabelled items which is embedable in HTML or XHTML, Atom, RSS, and arbitrary XML. &lt;br /&gt;
Specification 2008-05-12&lt;br /&gt;
&lt;br /&gt;
=== Author ===&lt;br /&gt;
Jacob Malthouse (http://bigroom.ca), formerly of ICANN (http://icann.org/)&lt;br /&gt;
&lt;br /&gt;
=== Abstract ===&lt;br /&gt;
By adding rel=&amp;quot;ecolabel&amp;quot; to a hyperlink, a page indicates that the destination of that hyperlink is the ecolabel for an ecolabelled item listed on the current page. E.g. with the following hyperlink:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
NOTE: in the highlighted portion - is this where we would put an ecolabel code or readable URL for ecolabelling.org entry? &lt;br /&gt;
&lt;br /&gt;
the author indicates that the product, company, or services has obtained an &amp;quot;ecologo&amp;quot; certification.&lt;br /&gt;
&lt;br /&gt;
--[[User:Spiritquest|Spiritquest]] 23:06, 27 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
It seems that it might work well with being linked to an hproduct / hCard - to identify a manufacturer - I've yet to explore hproduct in detail.&lt;br /&gt;
&lt;br /&gt;
I don't know that pointing the URL of the ecolabel directly to www.ecolabelling.com would work.&lt;br /&gt;
&lt;br /&gt;
If I ran a product site with ecolabelled products, I would want to point to either a source of information on the label internally within the site, or have it point to a list of all data tagged with similar ecolables.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://myproductsite.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;license&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The destination would then show all '''ecologo''' tagged products within the catalogue of myproductsite.org&lt;br /&gt;
&lt;br /&gt;
maybe microformat parsing tools could be created to send users or pull information from www.ecolabelling.org site as a source of authoritative  info and background on the label.&lt;br /&gt;
&lt;br /&gt;
rel-tag as an example can point to an internal site structure using a taxonomy but can also use microformat tools to extend data searches to sites like technorati.&lt;br /&gt;
&lt;br /&gt;
=== Multiple Licenses ===&lt;br /&gt;
&lt;br /&gt;
Multiple such rel=&amp;quot;ecolabel&amp;quot; hyperlinks indicate that multiple items on the page are available under any of the referred licenses. E.g. the following hyperlinks could be used to declare that a page is available under either an ecologo or a certified carbon free ecolabel:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XMDP profile ===&lt;br /&gt;
unknown/in development &lt;br /&gt;
&lt;br /&gt;
=== Implementations ===&lt;br /&gt;
none&lt;br /&gt;
&lt;br /&gt;
=== List of Ecolabels ===&lt;br /&gt;
http://ecolabelling.org/ecolabel/&lt;br /&gt;
see also: about ecolabelling.org: http://ecolabelling.org/about/&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
See Also&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-ecolabel&amp;diff=40018</id>
		<title>rel-ecolabel</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-ecolabel&amp;diff=40018"/>
		<updated>2009-07-27T23:06:55Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: /* Abstract */  - ideas on where the URL should point.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Problem =&lt;br /&gt;
&lt;br /&gt;
It's difficult to authenticate eco-friendly goods and services online.&lt;br /&gt;
&lt;br /&gt;
* The proposed solution below is not a solution to the above problem. The proposed solution offers a mechanism by which a service can ''claim'' an eco-friendly label, but no way of ''authenticating'' that claim.&lt;br /&gt;
&lt;br /&gt;
= Proposed Solution =&lt;br /&gt;
&lt;br /&gt;
We are interested in establishing &amp;quot;rel-ecolabel&amp;quot; as a way of identifying ecolabelled (and thus eco-friendly) items (where item = ecolabel certified unit including products, services, companies, land, or any other thing that can be certified eco-friendly) on the World Wide Web.&lt;br /&gt;
&lt;br /&gt;
Definition of an ecolabel: http://ecolabelling.org/eco-labels/&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
Ecolabelled products appear on retailer and producer sites all over the web. There is currently no way of identifying them. Several examples are presented below:&lt;br /&gt;
&lt;br /&gt;
URL: http://www.amazon.com/Newmans-Own-Organics-California-15-Ounce/dp/B000FNJNO6/ref=tag_stp_st_edpp_url&lt;br /&gt;
SCHEMA: Oregon Tilth&lt;br /&gt;
ecolabel: http://ecolabelling.org/ecolabel/oregon-tilth/&lt;br /&gt;
&lt;br /&gt;
URL: http://www.environmentalbychoice.com/prestigious_papers/enviro100ecofibre.php&lt;br /&gt;
SCHEMA: FSC&lt;br /&gt;
ecolabel: http://ecolabelling.org/ecolabel/fsc-forest-management-certification/&lt;br /&gt;
&lt;br /&gt;
URL: http://www.bestbuy.com/site/olspage.jsp?skuId=7838995&amp;amp;type=product&amp;amp;productCategoryId=pcmcat108700050027&amp;amp;id=1142297396649&lt;br /&gt;
SCHEMA: Energy star&lt;br /&gt;
ecolabel: http://ecolabelling.org/ecolabel/energy-star/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Similar Microformats ==&lt;br /&gt;
&lt;br /&gt;
rel-license: http://microformats.org/wiki/rel-license&lt;br /&gt;
indicates a &amp;quot;that the destination of that hyperlink is a license for the current page.&amp;quot; whereas rel-ecolabel would indicate that the destination of that hyperlink is an ecolabel for a product, company or service listed on the page.&lt;br /&gt;
&lt;br /&gt;
In this case I am uncertain if rel-license defines an authoritative source for license information. The difference with rel-ecolabel is that we would define an authoritative source at www.ecolabelling.org. We'd do this because there are many ecolabels 300+ and very few display their information in a standardised way. That being said, we're not beholden to this approach. &lt;br /&gt;
&lt;br /&gt;
rel-tag: http://microformats.org/wiki/rel-tag&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This would need to have the option / ability to point to the issuing labels site as well. Or if www.ecolabelling.org want to become the source, it should have a simple an quick method of adding labels into the system that aren't listed .. eg. a lot of UK based certified labels are currently not on the site. Would there be a conflict if I wanted to point the URL at the label associations website instead of www.ecolabelling.org (asked for discussion purposes)&lt;br /&gt;
&lt;br /&gt;
Label example: Vegan Society Trademark: http://www.vegansociety.com/business/trademark/&lt;br /&gt;
&lt;br /&gt;
== Ecolabel Schema ==&lt;br /&gt;
&lt;br /&gt;
ecolabel entry @ ecolabelling.org&lt;br /&gt;
eg: http://ecolabelling.org/ecolabel/energy-star/&lt;br /&gt;
&lt;br /&gt;
ecolabel entry @ greenerchoices.org&lt;br /&gt;
eg: http://greenerchoices.org/eco-labels/label.cfm?LabelID=15&amp;amp;searchType=Label%20index&amp;amp;searchValue=&amp;amp;refpage=labelIndex&amp;amp;refqstr=&lt;br /&gt;
&lt;br /&gt;
ecolabel ISO types&lt;br /&gt;
eg: http://www.gen.gr.jp/eco.html&lt;br /&gt;
&lt;br /&gt;
= Brainstorming =&lt;br /&gt;
&lt;br /&gt;
== rel=&amp;quot;ecolabel&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
Rel-Ecolabel is a simple, open, format for indicating ecolabelled items which is embedable in HTML or XHTML, Atom, RSS, and arbitrary XML. Rel-Ecolabel is one of several microformat open standards.&lt;br /&gt;
Specification 2008-05-12&lt;br /&gt;
&lt;br /&gt;
=== Author ===&lt;br /&gt;
Jacob Malthouse (http://bigroom.ca), formerly of ICANN (http://icann.org/)&lt;br /&gt;
&lt;br /&gt;
=== Abstract ===&lt;br /&gt;
Rel-Ecolabel is one of several MicroFormats. By adding rel=&amp;quot;ecolabel&amp;quot; to a hyperlink, a page indicates that the destination of that hyperlink is the ecolabel for an ecolabelled item listed on the current page. E.g. with the following hyperlink:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;license&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
NOTE: in the highlighted portion - is this where we would put an ecolabel code or readable URL for ecolabelling.org entry? &lt;br /&gt;
&lt;br /&gt;
the author indicates that the product, company, or services has obtained an &amp;quot;ecologo&amp;quot; certification.&lt;br /&gt;
&lt;br /&gt;
--[[User:Spiritquest|Spiritquest]] 23:06, 27 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
It seems that it might work well with being linked to an hproduct / hCard - to identify a manufacturer - I've yet to explore hproduct in detail.&lt;br /&gt;
&lt;br /&gt;
I don't know that pointing the URL of the ecolabel directly to www.ecolabelling.com would work.&lt;br /&gt;
&lt;br /&gt;
If I ran a product site with ecolabelled products, I would want to point to either a source of information on the label internally within the site, or have it point to a list of all data tagged with similar ecolables.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://myproductsite.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;license&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The destination would then show all '''ecologo''' tagged products within the catalogue of myproductsite.org&lt;br /&gt;
&lt;br /&gt;
maybe microformat parsing tools could be created to send users or pull information from www.ecolabelling.org site as a source of authoritative  info and background on the label.&lt;br /&gt;
&lt;br /&gt;
rel-tag as an example can point to an internal site structure using a taxonomy but can also use microformat tools to extend data searches to sites like technorati.&lt;br /&gt;
&lt;br /&gt;
=== Multiple Licenses ===&lt;br /&gt;
&lt;br /&gt;
Multiple such rel=&amp;quot;ecolabel&amp;quot; hyperlinks indicate that multiple items on the page are available under any of the referred licenses. E.g. the following hyperlinks could be used to declare that a page is available under either an ecologo or a certified carbon free ecolabel:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XMDP profile ===&lt;br /&gt;
unknown/in development &lt;br /&gt;
&lt;br /&gt;
=== Implementations ===&lt;br /&gt;
none&lt;br /&gt;
&lt;br /&gt;
=== List of Ecolabels ===&lt;br /&gt;
http://ecolabelling.org/ecolabel/&lt;br /&gt;
see also: about ecolabelling.org: http://ecolabelling.org/about/&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
See Also&lt;br /&gt;
&lt;br /&gt;
== RDFa ==&lt;br /&gt;
&lt;br /&gt;
For contrast, the above rel=ecolabel proposal can already be implemented in [http://www.w3.org/TR/rdfa-syntax RDFa] using [http://dublincore.org/documents/dcmi-terms/ Dublin Core] very easily:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 This product conforms to &amp;lt;a about=&amp;quot;#product&amp;quot;&lt;br /&gt;
 xmlns:dc=&amp;quot;http://purl.org/dc/terms/&amp;quot; rel=&amp;quot;dc:conformsTo&amp;quot;&lt;br /&gt;
 href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RDFa also allows these claims to be verified by the authority being linked to (in the case above ecolabelling.org) by simply providing an RDFa link back from http://ecolabelling.org/ecolabel/certified-carbonfree/ to our product page and labelling it with &amp;lt;tt&amp;gt;rev=&amp;quot;dc:conformsTo&amp;quot;&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Re-using dc:conformsTo is also better than minting a new rel term. dc:conformsTo can be used in a wider set of situations that &amp;quot;ecolabel&amp;quot; in that it can be used to indicate non-ecological conformance to standards too. e.g. a web page can conform to HTML 4.01 Strict, or software could conform to &amp;quot;Certified for Windows Vista&amp;quot; or a toy could conform to a particular child safety standard.&lt;br /&gt;
&lt;br /&gt;
{{cc-public-domain-release}}&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-ecolabel&amp;diff=40017</id>
		<title>rel-ecolabel</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-ecolabel&amp;diff=40017"/>
		<updated>2009-07-27T22:45:18Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: /* Similar Microformats */  alternatives pointing to source of label&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Problem =&lt;br /&gt;
&lt;br /&gt;
It's difficult to authenticate eco-friendly goods and services online.&lt;br /&gt;
&lt;br /&gt;
* The proposed solution below is not a solution to the above problem. The proposed solution offers a mechanism by which a service can ''claim'' an eco-friendly label, but no way of ''authenticating'' that claim.&lt;br /&gt;
&lt;br /&gt;
= Proposed Solution =&lt;br /&gt;
&lt;br /&gt;
We are interested in establishing &amp;quot;rel-ecolabel&amp;quot; as a way of identifying ecolabelled (and thus eco-friendly) items (where item = ecolabel certified unit including products, services, companies, land, or any other thing that can be certified eco-friendly) on the World Wide Web.&lt;br /&gt;
&lt;br /&gt;
Definition of an ecolabel: http://ecolabelling.org/eco-labels/&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
Ecolabelled products appear on retailer and producer sites all over the web. There is currently no way of identifying them. Several examples are presented below:&lt;br /&gt;
&lt;br /&gt;
URL: http://www.amazon.com/Newmans-Own-Organics-California-15-Ounce/dp/B000FNJNO6/ref=tag_stp_st_edpp_url&lt;br /&gt;
SCHEMA: Oregon Tilth&lt;br /&gt;
ecolabel: http://ecolabelling.org/ecolabel/oregon-tilth/&lt;br /&gt;
&lt;br /&gt;
URL: http://www.environmentalbychoice.com/prestigious_papers/enviro100ecofibre.php&lt;br /&gt;
SCHEMA: FSC&lt;br /&gt;
ecolabel: http://ecolabelling.org/ecolabel/fsc-forest-management-certification/&lt;br /&gt;
&lt;br /&gt;
URL: http://www.bestbuy.com/site/olspage.jsp?skuId=7838995&amp;amp;type=product&amp;amp;productCategoryId=pcmcat108700050027&amp;amp;id=1142297396649&lt;br /&gt;
SCHEMA: Energy star&lt;br /&gt;
ecolabel: http://ecolabelling.org/ecolabel/energy-star/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Similar Microformats ==&lt;br /&gt;
&lt;br /&gt;
rel-license: http://microformats.org/wiki/rel-license&lt;br /&gt;
indicates a &amp;quot;that the destination of that hyperlink is a license for the current page.&amp;quot; whereas rel-ecolabel would indicate that the destination of that hyperlink is an ecolabel for a product, company or service listed on the page.&lt;br /&gt;
&lt;br /&gt;
In this case I am uncertain if rel-license defines an authoritative source for license information. The difference with rel-ecolabel is that we would define an authoritative source at www.ecolabelling.org. We'd do this because there are many ecolabels 300+ and very few display their information in a standardised way. That being said, we're not beholden to this approach. &lt;br /&gt;
&lt;br /&gt;
rel-tag: http://microformats.org/wiki/rel-tag&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This would need to have the option / ability to point to the issuing labels site as well. Or if www.ecolabelling.org want to become the source, it should have a simple an quick method of adding labels into the system that aren't listed .. eg. a lot of UK based certified labels are currently not on the site. Would there be a conflict if I wanted to point the URL at the label associations website instead of www.ecolabelling.org (asked for discussion purposes)&lt;br /&gt;
&lt;br /&gt;
Label example: Vegan Society Trademark: http://www.vegansociety.com/business/trademark/&lt;br /&gt;
&lt;br /&gt;
== Ecolabel Schema ==&lt;br /&gt;
&lt;br /&gt;
ecolabel entry @ ecolabelling.org&lt;br /&gt;
eg: http://ecolabelling.org/ecolabel/energy-star/&lt;br /&gt;
&lt;br /&gt;
ecolabel entry @ greenerchoices.org&lt;br /&gt;
eg: http://greenerchoices.org/eco-labels/label.cfm?LabelID=15&amp;amp;searchType=Label%20index&amp;amp;searchValue=&amp;amp;refpage=labelIndex&amp;amp;refqstr=&lt;br /&gt;
&lt;br /&gt;
ecolabel ISO types&lt;br /&gt;
eg: http://www.gen.gr.jp/eco.html&lt;br /&gt;
&lt;br /&gt;
= Brainstorming =&lt;br /&gt;
&lt;br /&gt;
== rel=&amp;quot;ecolabel&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
Rel-Ecolabel is a simple, open, format for indicating ecolabelled items which is embedable in HTML or XHTML, Atom, RSS, and arbitrary XML. Rel-Ecolabel is one of several microformat open standards.&lt;br /&gt;
Specification 2008-05-12&lt;br /&gt;
&lt;br /&gt;
=== Author ===&lt;br /&gt;
Jacob Malthouse (http://bigroom.ca), formerly of ICANN (http://icann.org/)&lt;br /&gt;
&lt;br /&gt;
=== Abstract ===&lt;br /&gt;
Rel-Ecolabel is one of several MicroFormats. By adding rel=&amp;quot;ecolabel&amp;quot; to a hyperlink, a page indicates that the destination of that hyperlink is the ecolabel for an ecolabelled item listed on the current page. E.g. with the following hyperlink:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;license&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
NOTE: in the highlighted portion - is this where we would put an ecolabel code or readable URL for ecolabelling.org entry? &lt;br /&gt;
&lt;br /&gt;
the author indicates that the product, company, or services has obtained an &amp;quot;ecologo&amp;quot; certification.&lt;br /&gt;
&lt;br /&gt;
=== Multiple Licenses ===&lt;br /&gt;
&lt;br /&gt;
Multiple such rel=&amp;quot;ecolabel&amp;quot; hyperlinks indicate that multiple items on the page are available under any of the referred licenses. E.g. the following hyperlinks could be used to declare that a page is available under either an ecologo or a certified carbon free ecolabel:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/ecologo/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;ecologo&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot; rel=&amp;quot;ecolabel&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XMDP profile ===&lt;br /&gt;
unknown/in development &lt;br /&gt;
&lt;br /&gt;
=== Implementations ===&lt;br /&gt;
none&lt;br /&gt;
&lt;br /&gt;
=== List of Ecolabels ===&lt;br /&gt;
http://ecolabelling.org/ecolabel/&lt;br /&gt;
see also: about ecolabelling.org: http://ecolabelling.org/about/&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
See Also&lt;br /&gt;
&lt;br /&gt;
== RDFa ==&lt;br /&gt;
&lt;br /&gt;
For contrast, the above rel=ecolabel proposal can already be implemented in [http://www.w3.org/TR/rdfa-syntax RDFa] using [http://dublincore.org/documents/dcmi-terms/ Dublin Core] very easily:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 This product conforms to &amp;lt;a about=&amp;quot;#product&amp;quot;&lt;br /&gt;
 xmlns:dc=&amp;quot;http://purl.org/dc/terms/&amp;quot; rel=&amp;quot;dc:conformsTo&amp;quot;&lt;br /&gt;
 href=&amp;quot;http://ecolabelling.org/ecolabel/certified-carbonfree/&amp;quot;&amp;gt;certified-carbon-free&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
RDFa also allows these claims to be verified by the authority being linked to (in the case above ecolabelling.org) by simply providing an RDFa link back from http://ecolabelling.org/ecolabel/certified-carbonfree/ to our product page and labelling it with &amp;lt;tt&amp;gt;rev=&amp;quot;dc:conformsTo&amp;quot;&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Re-using dc:conformsTo is also better than minting a new rel term. dc:conformsTo can be used in a wider set of situations that &amp;quot;ecolabel&amp;quot; in that it can be used to indicate non-ecological conformance to standards too. e.g. a web page can conform to HTML 4.01 Strict, or software could conform to &amp;quot;Certified for Windows Vista&amp;quot; or a toy could conform to a particular child safety standard.&lt;br /&gt;
&lt;br /&gt;
{{cc-public-domain-release}}&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Spiritquest&amp;diff=40007</id>
		<title>User:Spiritquest</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Spiritquest&amp;diff=40007"/>
		<updated>2009-07-27T10:51:17Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: Expanded Profile&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ketan Majmudar&lt;br /&gt;
Developer, Designer &amp;amp; Semantic Web Lover&lt;br /&gt;
* Developing [[http://www.ethical-junction.org |Ethical Junction CIC]] - all profiles use hCard&lt;br /&gt;
* Try to incorporate microformats as widely as possible&lt;br /&gt;
* Interested in exploring possibilities in using microformats in other areas&lt;br /&gt;
* hCard or alternative to capture social site usernames and share in an address card type of format&lt;br /&gt;
* eco labels&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=meetup&amp;diff=40006</id>
		<title>meetup</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=meetup&amp;diff=40006"/>
		<updated>2009-07-27T10:44:55Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: /* London */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Weekly Meetups &amp;amp; Dinners&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
{{TOC-right}}&amp;lt;div&amp;gt;http://farm4.static.flickr.com/3216/2836380076_9251390ded_m.jpg&amp;lt;/div&amp;gt; A regular source of microformats [[events]].&lt;br /&gt;
== Weekly Meetup ==&lt;br /&gt;
The community and adoption have grown considerably over the last year, and news of adoptions (and once in a while challenges) come up frequently enough ([http://news.google.com/news?q=microformats&amp;amp;ie=UTF-8&amp;amp;scoring=n at least once a week]) that there are no shortage of new topics to discuss on a weekly basis. See [[weekly-meetup#purpose|purpose]] for more.&lt;br /&gt;
&lt;br /&gt;
[[weekly-meetup#Organize_a_weekly_meetup|Organize a weekly meetup]]!&lt;br /&gt;
&lt;br /&gt;
By making this a regular (every Tuesday) event, people know it is happening regularly and can thus come whichever ones are convenient for them, and not worry about missing any one in particular.&lt;br /&gt;
&lt;br /&gt;
Cities where weekly meetup events are held, sorted alphabetically:&lt;br /&gt;
&lt;br /&gt;
== London ==&lt;br /&gt;
In London, Tuesdays at 7:30pm worked well.&lt;br /&gt;
&lt;br /&gt;
Interested in general for London:&lt;br /&gt;
* [[User:Phae|Frances]]&lt;br /&gt;
* [[User:GeorgeBrock|George Brocklehurst]]&lt;br /&gt;
* [http://twitter.com/ptg/statuses/906735728 Patrick Griffiths]&lt;br /&gt;
* [[User:Spiritquest|Ketan Majmudar ]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Possible locations:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Past London venues:&lt;br /&gt;
* [http://www.squaremeal.co.uk/restaurants/london/view/81375/Wagamama Wagamama at New Oxford St. &amp;amp; Bloomsbury St.]: [[events/2008-09-02-london-meetup-dinner|2008-09-02]]&lt;br /&gt;
* [http://upcoming.yahoo.com/venue/213236/ The Princess at 76 Paul St.]: [[events/2008-09-09-london-meetup-dinner|2008-09-09]]&lt;br /&gt;
&lt;br /&gt;
== San Francisco ==&lt;br /&gt;
From having informally asked a few folks in the SF area and on IRC it seems Tuesdays at 6:30pm work best, with a rotating venue to keep it interesting.&lt;br /&gt;
&lt;br /&gt;
Additional suggested SF venues (suggester). Add your opinions and more suggestions:&lt;br /&gt;
* Osha Thai on 2nd st.&lt;br /&gt;
* Thirsty Bear&lt;br /&gt;
** +0 ok food, often too crowded for a group to actually get seating, though we did hold a [[events/2007-04-18-web-2-expo-dinner|microformats dinner there last year]] somehow. I think John Allsopp sweet talked the hostess. - [[User:Tantek|Tantek]]&lt;br /&gt;
* Mel's Diner&lt;br /&gt;
** +0 hard to order healthy here, but the food mostly tastes good, and can probably get seating for a decent crowd at 6:30pm - [[User:Tantek|Tantek]]&lt;br /&gt;
* Sugar Cafe&lt;br /&gt;
* Axis Cafe&lt;br /&gt;
* Naan &amp;amp; Curry on O'Farrell &amp;amp; Mason&lt;br /&gt;
* [http://www.yelp.com/biz/a-la-turca-restaurant-san-francisco A La Turca Restaurant]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== past SF venues ===&lt;br /&gt;
Past SF venues. We'll reuse these at some point I'm sure.&lt;br /&gt;
&lt;br /&gt;
'''This section needs updating with dinners that have occurred since 2008-10-28.'''&lt;br /&gt;
&lt;br /&gt;
Please update the following list by looking at [[events-2008]] and more recent [[events]], and add links (even just one more would help!) to dinners starting from the &amp;quot;since&amp;quot; date above, and update that date accordingly so that other contributors know where to continue updating from. Thanks!&lt;br /&gt;
&lt;br /&gt;
* Chaat Cafe: [[events/2008-06-24-weekly-meetup-dinner|2008-06-24]], [[events/2008-07-22-weekly-meetup-dinner|2008-07-22]]&lt;br /&gt;
* Crepes on Cole: [[events/2008-07-01-weekly-meetup-dinner|2008-07-01]]&lt;br /&gt;
* Westfield Food Court: [[events/2008-07-08-weekly-meetup-dinner|2008-07-08]], [[events/2008-08-19-weekly-meetup-dinner|2008-08-19]]&lt;br /&gt;
* South Park (lunch) : [[events/2008-07-15-weekly-meetup-lunch|2008-07-15]], [[events/2008-09-23-sf-weekly-meetup-lunch|2008-09-23]]&lt;br /&gt;
* Chevy's SOMA: [[events/2008-07-29-weekly-meetup-dinner|2008-07-29]]&lt;br /&gt;
* Brickhouse Cafe: [[events/2008-08-05-weekly-meetup-dinner|2008-08-05]]&lt;br /&gt;
* Pancho Villa: [[events/2008-08-12-weekly-meetup-dinner|2008-08-12]]&lt;br /&gt;
* 21st Amendment: [[events/2008-08-26-weekly-meetup-dinner|2008-08-26]],  [[events/2008-09-16-sf-weekly-meetup-dinner|2008-09-16]], [[events/2008-10-28-sf-weekly-meetup-dinner|2008-10-28]]&lt;br /&gt;
* Blondie's Pizza on Powell st: [[events/2008-09-02-weekly-meetup-dinner|2008-09-02]]&lt;br /&gt;
* Metreon Food Court: [[events/2008-09-09-weekly-meetup-dinner|2008-09-09]]&lt;br /&gt;
* Naan &amp;amp; Chutney on Haight st.: [[events/2008-09-30-sf-weekly-meetup-dinner|2008-09-30]]&lt;br /&gt;
* Taylor's Automatic Refresher: [[events/2008-10-14-sf-weekly-meetup-dinner|2008-10-14]]&lt;br /&gt;
* Mehfil: [[events/2008-10-21-sf-weekly-meetup-dinner|2008-10-21]]&lt;br /&gt;
* 3rd Street Grill&lt;br /&gt;
* California Pizza Kitchen on 3rd&lt;br /&gt;
* Crepevine on Church&lt;br /&gt;
&lt;br /&gt;
== Other Cities ==&lt;br /&gt;
Want a microformats meetup in your city? Organize one! Add your city and name to this list. Contact others from your city and [[weekly-meetup#Organize_a_weekly_meetup|organize a meetup]]. Once you do one, add another section for your city above this &amp;quot;Other Cities&amp;quot; section, and list suggested venues, past venues with links to meetup event pages etc.&lt;br /&gt;
&lt;br /&gt;
There has been some interest expressed in organizing dinners in the following cities. Add yourself and/or contact the people listed and make it happen!&lt;br /&gt;
* Austin - [[irc]] Atamido&lt;br /&gt;
* Kansas City - [http://twitter.com/dckc/statuses/1116151301 Dan Connolly]&lt;br /&gt;
* Montreal - [[User:Csarven|Sarven Capadisli]]&lt;br /&gt;
* San Diego - [[User:EdwardOConnor]]&lt;br /&gt;
* San Jose (South Bay) - [[User:Kevin_Marks|Kevin Marks]], Rohit Khare&lt;br /&gt;
* Seattle, WA - [[User:jandrick|Jeremiah Andrick]], Colin Henry, Andy Woods&lt;br /&gt;
&lt;br /&gt;
== Organize a weekly meetup ==&lt;br /&gt;
Anyone can organize a microformats weekly meetup or dinner!&lt;br /&gt;
&lt;br /&gt;
At a minimum, all you need is:&lt;br /&gt;
# '''At least one other person''' that commits to go (so at least you know you'll have a good conversation about microformats with at least one person).&lt;br /&gt;
# '''A location'''&lt;br /&gt;
&lt;br /&gt;
And organizing a weekly meetup requires you to at a minimum:&lt;br /&gt;
# '''Pick a location'''&lt;br /&gt;
# '''Announce it''' (location at 18:30, Tuesday) on various event sites and notification services like Twitter etc.&lt;br /&gt;
&lt;br /&gt;
That's it. If you prefer a step-by-step list of instructions and details, to remove nearly all doubt, here you go:&lt;br /&gt;
# Pick a location&lt;br /&gt;
#* Ask folks on [[IRC]] if they have any suggested locations.&lt;br /&gt;
#* Consider locations that are easy for a variety of people to transit to.&lt;br /&gt;
#* Consider a new location to keep it interesting.&lt;br /&gt;
# Create the Events Pages&lt;br /&gt;
## Create specific event page on microformats.org wiki, follow the form &amp;lt;code&amp;gt;YYYY-MM-DD-weekly-dinner-CITYCODE&amp;lt;/code&amp;gt; — e.g. &amp;lt;samp&amp;gt;2009-01-06-weekly-dinner-sf&amp;lt;/samp&amp;gt; in San Francisco, or &amp;lt;samp&amp;gt;2009-01-06-weekly-dinner-ldn&amp;lt;/samp&amp;gt; in London.&lt;br /&gt;
##* Copy the Weekly Dinner template code ([[weekly-meetup#Event_Template|below]]), and make the following edits: &lt;br /&gt;
##** Update dates and locations in the infobox at the top. &lt;br /&gt;
##** Update the tags list, adding the event specific tag for this event.&lt;br /&gt;
##** Update the URLs for Upcoming, Technorati, Google Blog Search and Flickr. These search on the event tag itself, so need to date portion updated.&lt;br /&gt;
##** Add yourself as an attendee&lt;br /&gt;
##** (For SF weekly meetup dinners, [[MatthewLevine|Matthew Levine]] has created a script to automatically generate wiki page source by parsing the [[hCalendar]] from the related [http://upcoming.org upcoming] event. To use this script, create an upcoming event '''first''', then visit &amp;lt;kbd&amp;gt;http://www.phusikos.com/event.php?upcoming_id=$upcoming_id&amp;lt;/kbd&amp;gt;, e.g. [http://www.phusikos.com/event.php?upcoming_id=2656901 sample conversion link].)&lt;br /&gt;
## Create an [http://upcoming.org upcoming] event, summarizing the event and linking to the new wiki page you just created.&lt;br /&gt;
##* Just after creating the event, Upcoming gives you the option to &amp;quot;upload an official photo or image&amp;quot;, click that link and upload &amp;lt;nowiki&amp;gt;http://farm4.static.flickr.com/3216/2836380076_9251390ded.jpg&amp;lt;/nowiki&amp;gt;, making it the official photo for the event. Thanks to [http://www.flickr.com/photos/cindyli/2836380076 Cindy Li for the cool microformats meetup graphic!].&lt;br /&gt;
##* Add the event to the Microformats, Web2.0, Bay Area Web Geeks, Web Developers, Geek Dinners and Social Network Portability groups.&lt;br /&gt;
##* Update the wiki events page with Upcoming.org event tag (&amp;lt;samp&amp;gt;upcoming:event=00000000&amp;lt;/samp&amp;gt;) you just created. You can copy and paste the previous meetup/dinner summary and change the relevant detail.&lt;br /&gt;
# '''Announce it'''&lt;br /&gt;
#* [http://twitter.com/ Tweet] the upcoming event&lt;br /&gt;
#* On the day of the event, post a reminder in the morning (to Twitter etc.), and again an hour before the event.&lt;br /&gt;
# At the event, take a photo and post it to BrightKite, Flickr etc.&lt;br /&gt;
# Afterwards&lt;br /&gt;
#* Post a thank you note thanking those that attended, invite them to add their content to the wiki.&lt;br /&gt;
#* Update the wiki event page with details of discussions, photographs, blog links and so forth.&lt;br /&gt;
&lt;br /&gt;
===Event Template===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&amp;lt;entry-title&amp;gt;Microformats Weekly Dinner, San Francisco&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
One of several microformats [[weekly-meetup]] [[events]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
== Details ==&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-MM-DDT18:30-0800&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;2009-MM-DDT20:30-0800&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;TBA&amp;lt;/span&amp;gt;&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Microformats Weekly Meetup Dinner, San Francisco&amp;lt;/span&amp;gt;&lt;br /&gt;
;Web&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/00000000/&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''[http://feeds.technorati.com/events/referer Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== Weekly Meetup ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;The microformats community has grown and stablized over the past few years, news of adoptions, new ideas and challenges come up frequently enough that there are no shortage of new topics to discuss on a weekly basis.&lt;br /&gt;
&lt;br /&gt;
Come along, meet up with the microformats community in San Francisco &lt;br /&gt;
&lt;br /&gt;
In another city? Check out [[weekly-meetup#Other_Cities|Weekly Meetup: Other Cities]] and help organize one in your own city!&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Tags ==&lt;br /&gt;
Use the following tags on related content (blog posts, photos, [http://twitter.com tweets]):&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
Event author: &lt;br /&gt;
* replace &amp;quot;EVENTSPECIFICTAG&amp;quot; in the below text with a tag unique to the event, i.e. short name of event + (optional location) + (full-year or sequence number), e.g. BarCampBlock2007, FooCampLondon2007, SHDH22, SXSW2008, microformats-dinner-2009-MM-DD - update MM and DD to the Gregorian month and day of the month accordingly).&lt;br /&gt;
* replace &amp;quot;san-francisco&amp;quot; with the city where the event is taking place&lt;br /&gt;
* update the Upcoming.org event machine tag, too.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
tags:&lt;br /&gt;
&amp;lt;kbd class=&amp;quot;tags&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;'''microformats-dinner'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats-meetup&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformats&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;san-francisco&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;''microformats-dinner-2009-MM-DD''&amp;lt;/span&amp;gt; &amp;lt;!-- This is your event-date-specific tag, update MM and DD to the Gregorian month and day of the month accordingly --&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;''upcoming:event=00000000''&amp;lt;/span&amp;gt; &amp;lt;!-- Add/update this tag when you create the respective upcoming.org event --&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you use Twitter, mention ''@microformats dinner''' in tweets about the event, and track them on [http://search.twitter.com/search?q=microformats+dinner Twitter Search].&lt;br /&gt;
&lt;br /&gt;
== Attendees ==&lt;br /&gt;
Add yourself alphabetically sorted by family name if you plan on attending or attended this event.&lt;br /&gt;
&lt;br /&gt;
* [[User:YourName|You]]&lt;br /&gt;
* …&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
Topics Discussed:&lt;br /&gt;
&lt;br /&gt;
* …&lt;br /&gt;
&lt;br /&gt;
== Photographs ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Event Author: Update the following URL to use this event's tag --&amp;gt;&lt;br /&gt;
* Search for photographs from this event on Flickr: [http://flickr.com/photos/tags/microformats-dinner-2009-MM-DD Photographs tagged microformats-dinner-2009-MM-DD] or for [http://flickr.com/photos/tags/microformats-dinner all photographs from microformats dinners].&lt;br /&gt;
&lt;br /&gt;
''Add a photograph from this event here''.&lt;br /&gt;
&lt;br /&gt;
== Articles and Blog Posts ==&lt;br /&gt;
Articles and blog posts following up on the meetup. Add a link to your post in the list below:&lt;br /&gt;
&lt;br /&gt;
* …&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Event Author: Update the following URL to use this event's tag --&amp;gt;&lt;br /&gt;
Also, find posts on this meetup on [http://blogsearch.google.co.uk/blogsearch?q=microformats-dinner-2009-MM-DD Google Blog Search] or [http://technorati.com/search/microformats-dinner-2009-MM-DD Technorati].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt; &amp;lt;!-- End of @vevent --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Related Pages==&lt;br /&gt;
{{events-related-pages}}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== purpose ==&lt;br /&gt;
In addition to providing a convenient forum for community members to get together once in a while and talk about the [http://news.google.com/news?q=microformats&amp;amp;ie=UTF-8&amp;amp;scoring=n latest news about microformats], the weekly meetups serve many good ends.&lt;br /&gt;
&lt;br /&gt;
Perhaps most importantly, weekly meetups really help communication and community. People that have met in person usually treat each other nicer online, thus very much help encourage everyone to [[mailing-list#Be_nice|be nice]] in IRC, mailing lists etc.&lt;br /&gt;
&lt;br /&gt;
== FAQ ==&lt;br /&gt;
Perhaps move to [[weekly-meetup-faq]] if this section gets too big.&lt;br /&gt;
&lt;br /&gt;
=== general talk ===&lt;br /&gt;
* Q: Do you just talk in general about microformats?&lt;br /&gt;
* A: As there's been new people at every microformat meetup, there's almost always at least some general talk about microformats.&lt;br /&gt;
&lt;br /&gt;
=== newcomers vs detail ===&lt;br /&gt;
* Q: How do you handle newcomers and at the same time get into detailed stuff? &lt;br /&gt;
* A: Usually there are multiple conversations going, so there's almost always a good conversation to participate in. Also, it helps everyone to talk with newcomers and get fresh perspectives, as well as practiced at effectively communicating [[what-are-microformats|what microformats are]], [[benefits]], [[get-started|how to use]] etc.&lt;br /&gt;
&lt;br /&gt;
=== existing issues ===&lt;br /&gt;
* Q: Do you try to solve some existing issues?&lt;br /&gt;
* A: We have discussed existing issues in some past meetups. Often divisive or controversial topics are much easier to discuss and understand multiple perspectives on in person.  For example, [[User:BenWard|Ben Ward]] and [[User:Tantek|Tantek]] have made some good progress on understanding various perspectives on [[value-excerption-brainstorming]] and are optimistic about making progress on related issues.&lt;br /&gt;
&lt;br /&gt;
=== notes ===&lt;br /&gt;
* Q: Do you take notes?&lt;br /&gt;
* A: Everyone is encouraged to take notes and contribute aspects of conversations, topics etc. on the wiki page for the meetup.&lt;br /&gt;
&lt;br /&gt;
== related ==&lt;br /&gt;
* [[weekly-meetup-brainstorming]] to capture how to make the meet-up more exciting and give more practical use-cases&lt;br /&gt;
* [[events]]&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Spiritquest&amp;diff=39971</id>
		<title>User:Spiritquest</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Spiritquest&amp;diff=39971"/>
		<updated>2009-07-26T19:27:34Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: New page: Developer, Designer &amp;amp; Semantic Web Lover&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Developer, Designer &amp;amp; Semantic Web Lover&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Ket_Majmudar&amp;diff=39870</id>
		<title>User:Ket Majmudar</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Ket_Majmudar&amp;diff=39870"/>
		<updated>2009-07-25T21:57:23Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My IRC username is ethicaljunction (atm)&lt;br /&gt;
&lt;br /&gt;
I'm a web author, designer &amp;amp;  developer&lt;br /&gt;
&lt;br /&gt;
I've integrated hCard into [http://www.ethical-junction.org] - all the members profiles now have hCard markup and pars through technorati to download as vCard.&lt;br /&gt;
&lt;br /&gt;
Interested in getting products and reviews into the site, also interested in the proposal of eco-labels microformat proposal.&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Ket_Majmudar&amp;diff=39861</id>
		<title>User:Ket Majmudar</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Ket_Majmudar&amp;diff=39861"/>
		<updated>2009-07-25T19:12:41Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: New page: My IRC username is ethicaljunction (atm)  Interested and using microformats in my web development, interested in how it can help my organisation.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My IRC username is ethicaljunction (atm)&lt;br /&gt;
&lt;br /&gt;
Interested and using microformats in my web development, interested in how it can help my organisation.&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=irc-people&amp;diff=39860</id>
		<title>irc-people</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=irc-people&amp;diff=39860"/>
		<updated>2009-07-25T19:11:23Z</updated>

		<summary type="html">&lt;p&gt;Spiritquest: &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|Amodal1| amodal1|-0500/-0600}}&lt;br /&gt;
* {{irc user|Adam Ballai|AdamBallai|-700/-700}}&lt;br /&gt;
* {{irc user|Adam Craven|AdamCraven|+0000}}&lt;br /&gt;
* {{irc user|Alenonimo|Alenonimo|-0300}}&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|Andr3|andr3|+0000}}&lt;br /&gt;
* {{irc user|Ajaswa|Andrew Jaswa|-0500}}&lt;br /&gt;
* {{irc user|AndrewDisley|AndrewDisley|+0000}}&lt;br /&gt;
* {{irc user|Andrii Ponomarov|Andrii|+0300}}&lt;br /&gt;
* {{irc user|AnselHalliburton|anselxyz|-0800/-0700}}&lt;br /&gt;
* {{irc user|Ashe Dryden|Ashe|-600}}&lt;br /&gt;
* {{irc user|Atamido|Atamido|-0600/-0500}}&lt;br /&gt;
* {{irc user|Barce|Barce|-0800/-0700}}&lt;br /&gt;
* {{irc user|Azathoth|Florian Beer|+1000}}&lt;br /&gt;
* {{irc user|Tyler Roehmholdt|Baristo|-0800/-0700}}&lt;br /&gt;
* {{irc user|Belling|Belling|-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|-0800/-0700}}&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|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|TimT|bringo|-0800/-0700}}&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|Cognizance|Cognizance|-0800/-0700}}&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|Chris_Cressman|Chris Cressman|-0500/-0400}}&lt;br /&gt;
* {{irc user|ChristopherStJohn|cks|-0600/-0500}}&lt;br /&gt;
* {{irc user|JeremyBoggs|clioweb|-5000/-4000}}&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|DanielJohnLewis|danieljohnlewis|0000}}&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|DavidRussell|davidrussell|-0600/-0500}}&lt;br /&gt;
* {{irc user|DBounds|Darren Bounds|-0500}}&lt;br /&gt;
* {{irc user|Ddonat|David Gratton|-0800/-700}}&lt;br /&gt;
* {{irc user|DenisDefreyne|ddfreyne|+0100/+0200}}&lt;br /&gt;
* {{irc user|DeanEro|deanero|-0800/-0700}}&lt;br /&gt;
* {{irc user|DeepText|Deep Text|-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|DKerzman|DKerzman|-0600}}&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|Evan|e_s_p|-0500}}&lt;br /&gt;
* {{irc user|Ket Majmudar|ethicaljunction|+0100}}&lt;br /&gt;
* {{irc user|EdwardWelker|ewelker|-0500}}&lt;br /&gt;
* {{irc user|ChrisMessina|factoryjoe|-0800/-0700}}&lt;br /&gt;
* {{irc user|Fil|Fil|+0200}}&lt;br /&gt;
* {{irc user|CFinke|Finke|-0700/-0600}}&lt;br /&gt;
* {{irc user|MarkoMrdjenovic|friedcell|+0100/+0200}}&lt;br /&gt;
* {{irc user|GarethR|garethr|+0000/+0100}}&lt;br /&gt;
* {{irc user|GeorgeBrock|georgebrock|+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|Guillaume Lebleu|glebleu|-0800}}&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|Jabz|Jabz|+0000}}&lt;br /&gt;
* {{irc user|JamieKnight|JamieKnight|+1000/0000}}&lt;br /&gt;
* {{irc user|JayMyers|jaymyers|-0600/-0500}}&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|jrodgers|JesseRodgers|-0500}}&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;
* {{irc user|KevBurnsJr|kevburnsjr|-0800}}&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|Levitation|levitation[A]|+0200/+0300}}&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|Maddiin|Martin Czura|+0100}}&lt;br /&gt;
* {{irc user|MattBowen|Matt Bowen|-0500/-0400}}&lt;br /&gt;
* {{irc user|Groningen|Matthias Kluth|+0100}}&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|MWTE|mwte|+0000/+0100}}&lt;br /&gt;
* {{irc user|RobManson|nambor|+1000}}&lt;br /&gt;
* {{irc user|Nelix|nelix|+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|Pawlik|pawlik|+0100/+0200}}&lt;br /&gt;
* {{irc user|Andy Pemberton|pembertona|-0500/-0400}}&lt;br /&gt;
* {{irc user|Phae|Phae|+0000/+0100}}&lt;br /&gt;
* {{irc user|pius|Pius Uzamere|+0500}}&lt;br /&gt;
* {{irc user|PriitLaes|plaes|+0200/+0300}}&lt;br /&gt;
* {{irc user|ChrisCasciano|pnhChris|-0500/-0400}}&lt;br /&gt;
* {{irc user|Hugopeixoto|Politoed|+0000/+0100}}&lt;br /&gt;
* {{irc user|PetarPopov|popov|-0800/-0700}}&lt;br /&gt;
* {{irc user|Pfefferle|pfefferle|+0100/+0200}}&lt;br /&gt;
* {{irc user|Lauren Scime|pseudowish|-0800/-700}}&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|ZachCarter|riah|-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|RobLinton|RobLinton|-0800/-0700}}&lt;br /&gt;
* {{irc user|Ronnos|Ron Kok|+0000}}&lt;br /&gt;
* {{irc user|SamJohnston|samj|+0100/+0200}}&lt;br /&gt;
* {{irc user|SarahWorsham|sazbean|-0500/-0400}}&lt;br /&gt;
* {{irc user|ScottNelle|snelle|-0500/-0400}}&lt;br /&gt;
* {{irc user|ScottRozic|gravitas|-0500/+0100}}&lt;br /&gt;
* {{irc user|Dana Benson|Snowden|-0800/-0700}}&lt;br /&gt;
* {{irc user|SinDoc|SinDoc|+0100/+0200}}&lt;br /&gt;
* {{irc user|Savell Martin|Savell|+0000/+0000}}&lt;br /&gt;
* {{irc user|Smackman|Steve Farrell|-0800/-0700}}&lt;br /&gt;
* {{irc user|SpikeUK|SpikeUK|+0000/+0100}}&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;
* {{irc user|SyedSRahman|syedsrahman|+0530}}&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;&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|Wojciech|theanxy|+0100/+0200}}&lt;br /&gt;
* {{irc user|TheJbf|thejbf|+0100/+0200}}&lt;br /&gt;
* {{irc user|TobyInk|tobyink|+0000/+0100}}&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|Ianloic|yakk|-0800/-0700}}&lt;br /&gt;
* {{irc user|LarsStrojny|mastaYoda|+0100}}&lt;br /&gt;
* {{irc user|ZimbaTm|zimbatm|+0100}}&lt;br /&gt;
* {{irc user|FoundAtion|Foundation|-0800}}&lt;br /&gt;
* {{irc user|PJKix|pjkix|-0800/-700}}&lt;br /&gt;
* {{irc user| ChrisBroadfoot|broady|+1000}}&lt;br /&gt;
* {{irc user|Natalie Downe|NatBat|+0000}}&lt;br /&gt;
* {{irc user|Dotjay|dotjay|+0000}}&lt;br /&gt;
* {{irc user|PeterHellberg|zil|+0100}}&lt;br /&gt;
* {{irc user|Kiryl Zhybul|zkv|+0400}}&lt;br /&gt;
* {{irc user|ScottThorpe|Salve|-0800/-0700}}&lt;br /&gt;
* {{irc user|Dane|imdane|-0600/-0500}}&lt;br /&gt;
* {{irc user|ThomasLoertsch|tl|+0100/+0200}}&lt;br /&gt;
* {{irc user|Francisco Bernardo|frantic0|+0100/+0200}}&lt;br /&gt;
* {{irc user|Steven Osborn|steve918|-0700/-0800}}&lt;br /&gt;
* {{irc user|Trodrigues|trodrigues|+0000}}&lt;/div&gt;</summary>
		<author><name>Spiritquest</name></author>
	</entry>
</feed>