<?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=Chris+Messina</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=Chris+Messina"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/Special:Contributions/Chris_Messina"/>
	<updated>2026-05-10T11:18:03Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=datetime-design-pattern&amp;diff=40728</id>
		<title>datetime-design-pattern</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=datetime-design-pattern&amp;diff=40728"/>
		<updated>2009-09-07T17:51:09Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added note to review value-class-pattern&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt; Datetime Design Pattern &amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;usermessage&amp;quot;&amp;gt;Please review the [[value-class-pattern]] page for a better understanding of the current thinking on this problem, especially with regards to [[#accessibility_issues | accessibility issues]].&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
* Use the [[datetime-design-pattern]] to make dates and datetimes that are human readable also formally machine readable.&lt;br /&gt;
* Use the [[value-class-pattern]] for datetimes for better accessibility.&lt;br /&gt;
&lt;br /&gt;
== Practical Need ==&lt;br /&gt;
* This design pattern arose as a result of solving the practical need for human readable dates and times for [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
== How to use it ==&lt;br /&gt;
* enclose the human-friendly datetime that you want to make machine readable with &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;gt;&amp;lt;/code&amp;gt; &lt;br /&gt;
* as per the [[class-design-pattern]], add the appropriate &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; attribute to the &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt; element&lt;br /&gt;
* add a &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute to the &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt; element with the machine readable [[iso-8601|ISO8601]] datetime or date as the value&lt;br /&gt;
&lt;br /&gt;
For ISO8601 datetimes, use the [[value-class-pattern]] instead for better accessibility.&lt;br /&gt;
&lt;br /&gt;
==Current uses==&lt;br /&gt;
The pattern, which is now available as part of [[hAtom]], [[hcalendar|hCalendar]], [[hcard|hCard]] and [[hreview|hReview]], is:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;pre&amp;gt;&amp;amp;lt;abbr class=&amp;quot;foo&amp;quot; title=&amp;quot;YYYY-MM-DDTHH:MM:SS+ZZ:ZZ&amp;quot;&amp;amp;gt;Date Time&amp;amp;lt;/abbr&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;quot;foo&amp;quot; is the semantic classname which is being applied to this date/time, the title of the &amp;amp;lt;abbr&amp;amp;gt; is an ISO 8601 date/time, with an appropriate level of specificity, and &amp;quot;Date Time&amp;quot; is a human-friendly representation of the same date/time.&lt;br /&gt;
&lt;br /&gt;
An alternative, if you are using UTC-based timestamps, would be:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;pre&amp;gt;&amp;amp;lt;abbr class=&amp;quot;foo&amp;quot; title=&amp;quot;YYYY-MM-DDTHH:MM:SSZ&amp;quot;&amp;amp;gt;Date Time&amp;amp;lt;/abbr&amp;amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with a single &amp;quot;Z&amp;quot; as per [[iso-8601|ISO 8601]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Note:&amp;lt;/strong&amp;gt; title strings of the form &amp;quot;YYYY-MM-DDTHH:MM:SSZ&amp;quot; may be challenging for humans to read and or understand, thus, use the [[value-class-pattern]] for datetimes.&lt;br /&gt;
&lt;br /&gt;
=== Ruby ===&lt;br /&gt;
Ruby: An easy way to get this format from a DateTime is this:&lt;br /&gt;
:&amp;lt;pre&amp;gt;DateTime.now.to_s&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or alternately, if you're working with Time objects:&lt;br /&gt;
&amp;lt;pre&amp;gt;require 'time'&lt;br /&gt;
Time.now.iso8601&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Profile of ISO8601 ==&lt;br /&gt;
Any [[microformat]] using the date-time-design pattern {{should}} use a profile of [[iso-8601|ISO8601]]. There are currently two widely used profiles which {{should}} be reused.&lt;br /&gt;
&lt;br /&gt;
* RFC 3339&lt;br /&gt;
* [http://www.w3.org/TR/NOTE-datetime W3C Note on Datetimes]&lt;br /&gt;
&lt;br /&gt;
== accessibility issues==&lt;br /&gt;
Note: Some [[accessibility-issues]] have been raised with Datetime Design Pattern, that have been addressed with the completion of the [[value-class-pattern]].&lt;br /&gt;
&lt;br /&gt;
Note also that the accessibility concerns are considerably lessened, even eliminated when using the [[date-design-pattern]], a subset of the [[datetime-design-pattern]].&lt;br /&gt;
&lt;br /&gt;
== Discussion ==&lt;br /&gt;
&amp;lt;strong&amp;gt;This section need significant gardening, and perhaps archiving of discussions which are primarily historic, as the [[value-class-pattern]] serves to solve much of the issues raised here. [[User:Tantek|Tantek]] &amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This pattern is likely to be highly resuable.&lt;br /&gt;
&lt;br /&gt;
--[[User:RyanKing]]&lt;br /&gt;
&lt;br /&gt;
Can this not be viewed as a microformat in itself?&lt;br /&gt;
&lt;br /&gt;
--[[User:DimitriGlazkov]]&lt;br /&gt;
&lt;br /&gt;
It could, but inventing a microformat for the sake of inventing a microformat is against the microformat principles.&lt;br /&gt;
If there is a specific real world problem (and uses cases) that such an elemental microformat would solve, then it would be worth considering.&lt;br /&gt;
&lt;br /&gt;
Until then it is best to keep the &amp;amp;lt;abbr&amp;amp;gt; datetime concept merely as a microformat design pattern, to be used in _actual_ microformats that have a demonstrated practical need.&lt;br /&gt;
&lt;br /&gt;
-- [http://tantek.com/log/ Tantek]&lt;br /&gt;
&lt;br /&gt;
Excerpt from #microformats Aug 18th. Please edit!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Aug 18 15:16:14 &amp;lt;Tantek&amp;gt;	DanC, what do you think of RFC3339?&lt;br /&gt;
Aug 18 15:17:14 &amp;lt;Tantek&amp;gt;	ISO8601 subset&lt;br /&gt;
Aug 18 15:17:19 &amp;lt;DanC&amp;gt;	        Date and Time on the Internet: Timestamps http://www.ietf.org/rfc/rfc3339.txt&lt;br /&gt;
Aug 18 15:17:30 &amp;lt;DanC&amp;gt;	        Klyne is a good guy. I wonder if I talked with him about this.&lt;br /&gt;
Aug 18 15:17:32 &amp;lt;Tantek&amp;gt;	compat with W3C-NOTE-DATETIME&lt;br /&gt;
Aug 18 15:17:50 &amp;lt;Tantek&amp;gt;	compat with xsd:dateTime&lt;br /&gt;
Aug 18 15:17:57 &amp;lt;Tantek&amp;gt;	it's a strict intersection subset&lt;br /&gt;
Aug 18 15:17:59 &amp;lt;DanC&amp;gt;	        I consider W3C-NOTE-DATETIME obsoleted by XML Schema datatype-- yeah.. xsd:dateTime&lt;br /&gt;
Aug 18 15:18:32 &amp;lt;Tantek&amp;gt;	compare/contrast normatively using xsd:dateTime vs. RFC3339&lt;br /&gt;
Aug 18 15:18:41 &amp;lt;Tantek&amp;gt;	note: Atom 1.0 chose RFC3339&lt;br /&gt;
Aug 18 15:18:50 &amp;lt;Tantek&amp;gt;	i would like input from the microformats community on this&lt;br /&gt;
Aug 18 15:19:27 &amp;lt;DanC&amp;gt;	        in what context are you evaluating RFC 3339?&lt;br /&gt;
Aug 18 15:19:28 &amp;lt;jcgregorio&amp;gt;	http://bitworking.org/news/Date_Constructs_in_the_Atom_Syndication_Format&lt;br /&gt;
Aug 18 15:21:24 &amp;lt;DanC&amp;gt;	        which microformat is the question coming from, Tantek ?&lt;br /&gt;
Aug 18 15:23:31 &amp;lt;DanC&amp;gt;	        &amp;quot;   The grammar element time-second may have the value &amp;quot;60&amp;quot; at the end of&lt;br /&gt;
Aug 18 15:23:31 &amp;lt;DanC&amp;gt;	        months in which a leap second occurs&amp;quot; The XML Schema WG is in the 27th level of&lt;br /&gt;
                                leap-second-hell for the past few months, I gather.&lt;br /&gt;
Aug 18 15:24:21 &amp;lt;DanC&amp;gt;	        yeah... here's the scary bit: &amp;quot;   Leap seconds cannot be predicted far into the&lt;br /&gt;
                                future.  The&lt;br /&gt;
Aug 18 15:24:21 &amp;lt;DanC&amp;gt;	        International Earth Rotation Service publishes bulletins [IERS] that&lt;br /&gt;
Aug 18 15:24:21 &amp;lt;DanC&amp;gt;	        announce leap seconds with a few weeks' warning.&amp;quot;&lt;br /&gt;
Aug 18 15:26:03 &amp;lt;Tantek&amp;gt;	DanC, which microformats? any/all that use datetime fields.&lt;br /&gt;
Aug 18 15:26:36 &amp;lt;DanC&amp;gt;	        hard to give useful advice, then.&lt;br /&gt;
Aug 18 15:26:58 &amp;lt;DanC&amp;gt;	        I expect they'll use datetime fields for different things that have different&lt;br /&gt;
                                cost/benefit trade-offs&lt;br /&gt;
Aug 18 15:27:26 &amp;lt;DanC&amp;gt;	        do you know of any particular differences that matter to anybody?&lt;br /&gt;
Aug 18 15:56:43 &amp;lt;KragenSitaker&amp;gt;	RFC3339 suggests -07:00, which seems like an improvement over -0700 anyway&lt;br /&gt;
Aug 18 15:56:49 &amp;lt;Tantek&amp;gt;	Kragen, agreed&lt;br /&gt;
Aug 18 15:57:01 &amp;lt;Tantek&amp;gt;	RFC3339 is certainly preferable to the ISO8601 subset in iCalendar&lt;br /&gt;
Aug 18 16:05:57 &amp;lt;DanC&amp;gt;	        Tantek's right, Kragen; iCalendar looks like it solves the local timezone&lt;br /&gt;
                                problem but doesn't.&lt;br /&gt;
Aug 18 16:06:14 &amp;lt;DanC&amp;gt;	        and it's true that there's no standard solution to the local timezone problem&lt;br /&gt;
Aug 18 16:06:39 &amp;lt;Tantek&amp;gt;	so instead of appearing to solve the problem but not solving it, we chose to&lt;br /&gt;
                                provide the ability to *approximate* the local timezone using e.g. &amp;quot;-07:00&amp;quot;&lt;br /&gt;
Aug 18 16:06:49 &amp;lt;DanC&amp;gt;	        the simplest thing is to have people use Z time in hCalendar. But I gather&lt;br /&gt;
                                that's unacceptably unusable?&lt;br /&gt;
Aug 18 16:07:35 &amp;lt;Tantek&amp;gt;	DanC, yes, the simplest thing is to have everyone use UTC Z&lt;br /&gt;
Aug 18 16:07:38 &amp;lt;Tantek&amp;gt;	However&lt;br /&gt;
Aug 18 16:07:50 &amp;lt;Tantek&amp;gt;	it is not *nearly* as usuable/verifiable&lt;br /&gt;
Aug 18 16:07:55 &amp;lt;Tantek&amp;gt;	as -07:00 etc.&lt;br /&gt;
Aug 18 16:08:02 &amp;lt;Tantek&amp;gt;	hence the decision to go with the latter&lt;br /&gt;
Aug 18 16:08:12 &amp;lt;Tantek&amp;gt;	some degree of human verifiability is important here&lt;br /&gt;
Aug 18 16:14:21 &amp;lt;Tantek&amp;gt;	DanC, my perception is that RFC3339 is a subset&lt;br /&gt;
Aug 18 16:17:00 &amp;lt;DanC&amp;gt;	        time-numoffset  = (&amp;quot;+&amp;quot; / &amp;quot;-&amp;quot;) time-hour &amp;quot;:&amp;quot; time-minute&lt;br /&gt;
Aug 18 16:17:34 &amp;lt;DanC&amp;gt;	        ok, then I can't see any differences. (modulo recent leap seconds issues that&lt;br /&gt;
                                may affect xsd:dateTime )&lt;br /&gt;
Aug 18 16:18:07 &amp;lt;Tantek&amp;gt;	would be interesting to know why Atom 1.0 chose RFC3339 over xsd:dateTime&lt;br /&gt;
Aug 18 16:18:21 &amp;lt;Tantek&amp;gt;	if there was a &amp;quot;real&amp;quot; reason or if it was arbitrary / coin-flip.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here's an exhaustive [http://www.imc.org/atom-syntax/mail-archive/msg13103.html comparison] from ndw. I think xsd:dateTime also allows unqualified local times, while RFC3339 allows only UTC with no known timezone (-00:00). In the end, Atompub followed the advice of [http://www.imc.org/atom-syntax/mail-archive/msg13244.html Sam Ruby] and [http://www.imc.org/atom-syntax/mail-archive/msg13248.html Scott Hollenbeck], our area director. Atom dates make some additional restrictions on RFC3339, such as uppercase T and Z characters for compatibility with xsd:dateTime, RFC3339, W3C-DTF, and ISO8601. --[http://franklinmint.fm Robert Sayre]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Aug 18 16:18:43 &amp;lt;KragenSitaker&amp;gt;	rfc3339 is pretty short.&lt;br /&gt;
Aug 18 16:19:36 &amp;lt;Tantek&amp;gt;	DanC, BTW, which came first? REC for xsd:dateTime or RFC3339?&lt;br /&gt;
Aug 18 16:19:50 &amp;lt;DanC&amp;gt;	        RFC3339 is dated July 2002 ...&lt;br /&gt;
Aug 18 16:19:54 &amp;lt;KragenSitaker&amp;gt;	Right --- and you might be able to understand xsd:dateTime without&lt;br /&gt;
                                reading all of xml schema, you wouldn't be confident of it&lt;br /&gt;
Aug 18 16:20:25 &amp;lt;DanC&amp;gt;	        W3C Recommendation 28 October 2004 ... but that's 2nd ed...&lt;br /&gt;
Aug 18 16:20:47 &amp;lt;DanC&amp;gt;	        W3C Recommendation 02 May 2001&lt;br /&gt;
Aug 18 16:22:10 &amp;lt;DanC&amp;gt;	        I don't see a BNF in http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/#dateTime ...&lt;br /&gt;
Aug 18 16:22:43 &amp;lt;KragenSitaker&amp;gt;	yeah, appendix D of the current xml schema datatypes document seems&lt;br /&gt;
                                a little scanty, actually&lt;br /&gt;
Aug 18 16:23:28 &amp;lt;DanC&amp;gt;	        ah... 2nd ed of http://www.w3.org/TR/xmlschema-2/#date is much more&lt;br /&gt;
                                explicit about syntax.&lt;br /&gt;
Aug 18 16:23:30 &amp;lt;KragenSitaker&amp;gt;	it's 1100 words but still doesn't give any examples&lt;br /&gt;
Aug 18 16:23:35 &amp;lt;DanC&amp;gt;	        still, it's given in prose and not BNF&lt;br /&gt;
Aug 18 16:24:17 &amp;lt;KragenSitaker&amp;gt;	sections 3.2.9 through 3.2.14 seem to be the relevant ones around #date&lt;br /&gt;
Aug 18 16:24:29 &amp;lt;KragenSitaker&amp;gt;	which is another 2200 words&lt;br /&gt;
Aug 18 16:24:42 &amp;lt;DanC&amp;gt;	        wow... they changed the canonical form of date from always-Z to&lt;br /&gt;
                                timezone-allowed between 1st edition and 2nd edition&lt;br /&gt;
Aug 18 16:25:01 &amp;lt;Tantek&amp;gt;	Kragen, DanC, these are very good analyses&lt;br /&gt;
Aug 18 16:25:21 &amp;lt;Tantek&amp;gt;	could I ask you to summarize the pros/cons for each in a new section at&lt;br /&gt;
                                end of http://microformats.org/wiki/datetime-design-pattern&lt;br /&gt;
Aug 18 16:25:22 &amp;lt;Tantek&amp;gt;	?&lt;br /&gt;
Aug 18 16:25:58 &amp;lt;KragenSitaker&amp;gt;	rfc 3339 is 4000 words, excluding the last two pages of boilerplate.&lt;br /&gt;
Aug 18 16:26:31 &amp;lt;KragenSitaker&amp;gt;	so it's actually longer than the datetime-relevant parts of XSD but it&lt;br /&gt;
                                seems much more rigorous and clear&lt;br /&gt;
Aug 18 16:28:37 &amp;lt;DanC&amp;gt;	        my advice is: normatively cite both, and claim they specify the same&lt;br /&gt;
                                syntax, and let anybody who discovers otherwise send you a bug report&lt;br /&gt;
                                with a test case&lt;br /&gt;
Aug 18 16:29:12 &amp;lt;KragenSitaker&amp;gt;	danc: nice hack&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The RFC3339 has a mandatory TIME portion of the DATE-TIME. Some vCard/iCalendar DATE-TIME stamps can omit the TIME. For instance, DTSTART, if that is a full day event, then you can omit the time. BDAY in vCard can be respresented by only a DATE. I like the idea of restricting the possible date formats, but i think that TIME should be optional, which it isn't in RFC3339. - [http://suda.co.uk/ brian suda]&lt;br /&gt;
&lt;br /&gt;
RFC 3339 allows lowercase 't' and 'z' while XSD doesn't. Specifying RFC 3339 plus 'T' and 'Z' MUST be caps will make them the same. - [http://bitworking.org Joe Gregorio]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
A few questions: asked by [[User:CharlesBelov|CharlesBelov]] 16:57, 24 Apr 2007 (PDT), answered by [[User:JamesCraig|JamesCraig]] on 15:58, 5 Jul 2007 (PDT).&lt;br /&gt;
&lt;br /&gt;
# Would it make more sense for documenting the alternative codings pitting the abbr tag vs. other tags to be on this page? ''Answer: That documentation should go on the [[assistive-technology-abbr-results]] page.''&lt;br /&gt;
# Would using the title attribute of the abbr tag to encode the machine-readable date in fact cause a failure of WCAG 2.0 Accessibility? What about USA Section 508?  It does appear to violate Technique for WCAG 2.0 [http://www.w3.org/TR/WCAG20-TECHS/#H28 H28: Providing definitions for abbreviations by using the abbr and acronym elements], although that is a supporting document and does not have the force of a guideline. ''Answer: Yes, it appears that is in violation of WCAG, 508, et al, so alternatives are being discussed on the  [[assistive-technology-abbr-results]] page.''&lt;br /&gt;
# In order to maintain accessibility, would it make sense to enclose the machine-readable date in a span with a style of &amp;quot;display:none&amp;quot; instead of using the abbr tag? ''Answer: please refer to and add any suggestions to [[assistive-technology-abbr-results]].''&lt;br /&gt;
# For that matter, wouldn't you want to style such an abbr tag with text-decoration:none to hide that an abbr tag was used?  Otherwise, visitors might cursor over the  time, see the machine time, and be annoyed that their time was wasted or else be confused.  And I don't think you can suppress the title from coming up if the human-readable time was inadvertently hovered. ''Answer: Microformats should not rely on CSS in order to work properly, but again, that discussion can be found here: [[assistive-technology-abbr-results]].''&lt;br /&gt;
&lt;br /&gt;
== Code ==&lt;br /&gt;
The following regular expression (parsed VERBOSE) should break apart a datetime and cover many lightly broken cases seen in the wild. This has been tested under Python.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 ^&lt;br /&gt;
 (?P&amp;lt;year&amp;gt;\d\d\d\d)&lt;br /&gt;
 ([-])?(?P&amp;lt;month&amp;gt;\d\d)&lt;br /&gt;
 ([-])?(?P&amp;lt;day&amp;gt;\d\d)&lt;br /&gt;
 (&lt;br /&gt;
  (T|\s+)&lt;br /&gt;
  (?P&amp;lt;hour&amp;gt;\d\d)&lt;br /&gt;
  (&lt;br /&gt;
   ([:])?(?P&amp;lt;minute&amp;gt;\d\d)&lt;br /&gt;
   (&lt;br /&gt;
    ([:])?(?P&amp;lt;second&amp;gt;\d\d)&lt;br /&gt;
    (&lt;br /&gt;
     ([.])?(?P&amp;lt;fraction&amp;gt;\d+)&lt;br /&gt;
    )?&lt;br /&gt;
   )?&lt;br /&gt;
  )?&lt;br /&gt;
 )?&lt;br /&gt;
 (&lt;br /&gt;
  (?P&amp;lt;tzzulu&amp;gt;Z)&lt;br /&gt;
  |&lt;br /&gt;
  (?P&amp;lt;tzoffset&amp;gt;[-+])&lt;br /&gt;
  (?P&amp;lt;tzhour&amp;gt;\d\d)&lt;br /&gt;
  ([:])?(?P&amp;lt;tzminute&amp;gt;\d\d)&lt;br /&gt;
 )?&lt;br /&gt;
 $&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Other Proposals ==&lt;br /&gt;
'''This section needs a lot of clean-up. Proposals that have been relatively rejected need to be move to another section (or perhaps page), along with succinct summaries as to why they are untenable/infeasible/undesirable.&lt;br /&gt;
&lt;br /&gt;
Remaining proposals probably need to be moved to proper brainstorming pages where they can be considered in a broader context.&lt;br /&gt;
&lt;br /&gt;
Links to all proposals (whether relatively rejected or tentatively being considered) should be kept in this page for comparison purposes for this use case. &lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]] 04:50, 4 Sep 2008 (PDT)'''&lt;br /&gt;
&lt;br /&gt;
=== strtime instructions as class names ===&lt;br /&gt;
Proposal by DavidLaban (alsuren on freenode) on 8 Jun 2008&lt;br /&gt;
It might be possible to have a slightly more readable/extensible/elegant format:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;strtime format:_%d_%B_%Y_&amp;quot; &amp;gt; 16 March 1987 &amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Notes: &lt;br /&gt;
# Underscores are used to replace whitespace, because otherwise the the formatting string will be split into an unordered set of class attributes by many parsers (thanks go to bogdanlazarsb and gsnedders on irc for explaining this to me). &lt;br /&gt;
# Some subset of the placeholders should be chosen from those which are supported by both python http://docs.python.org/lib/module-time.html and php http://uk3.php.net/manual/en/function.strftime.php&lt;br /&gt;
# A name for the class should be decided upon. strtime might not be the best name.&lt;br /&gt;
# Measures should be taken to avoid the format string accidentally conflicting with other valid classes (In the above example, I have prefixed it with the string &amp;quot;format:&amp;quot;)&lt;br /&gt;
# It might be sensible (when parsing) to strip excess whitespace from the format string and contents. This is not done in this example.&lt;br /&gt;
# Example python code follows. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
date = (1987,03,16,0,0,0,0,0,0)&lt;br /&gt;
format = &amp;quot; %d %B %Y &amp;quot;&lt;br /&gt;
# To encode:&lt;br /&gt;
classes = [&amp;quot;strtime&amp;quot;]&lt;br /&gt;
encoded_format = &amp;quot;format:&amp;quot; + format.replace(' ', '_')&lt;br /&gt;
classes.append(encoded_format)&lt;br /&gt;
content = time.strftime(format, birthday)&lt;br /&gt;
# ... dump classes and content into your document however you want&lt;br /&gt;
&lt;br /&gt;
# To decode (assuming that you have managed to extract class and format from the document already):&lt;br /&gt;
if &amp;quot;strtime&amp;quot; in classes:&lt;br /&gt;
    possible_formats = [ item for item in classes if item.startswith('format:') ]&lt;br /&gt;
    assert len(possible_formats) == 1&lt;br /&gt;
    format = possible_formats[0].strip('format:').replace('_', ' ')&lt;br /&gt;
    date = time.strptime(content, format)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== problems with strtime proposal ====&lt;br /&gt;
&lt;br /&gt;
# Possible abuse of the class attribute. microformats limit the use of the class attribute to marking up additional semantics about the data, not for (potentially) arbitrary processing/programming instructions&lt;br /&gt;
#* HTML 4.01 Recommendation [http://www.w3.org/TR/REC-html40/struct/global.html#adef-class defines] the &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; attribute as being &amp;quot;for general purpose processing by user agents&amp;quot;. [[User:TobyInk|TobyInk]] 13:21, 8 Jun 2008 (PDT)&lt;br /&gt;
# Requires authors to think like programmers. The larger problem is that the proposal asks web authors to think like programmers, which severely limits the number of web authors which will be able to use the technique, since the vast majority of web authors are ''not'' programmers and have never heard of &amp;quot;strtime&amp;quot;, whereas most authors (even people) on the web have seen dates like 2005-06-20 and easily understand what they mean.&lt;br /&gt;
&lt;br /&gt;
In general, any publishing method that requires the author to think like a programmer is a non-starter. It is a much more of a barrier than simply using ISO8601/RFC3339, and that barrier is a far worse tradeoff than the duplication / DRY violation compromise.&lt;br /&gt;
[[User:Tantek|Tantek]] 09:52, 8 Jun 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
* Another problem: if %A/%a/%B/%b are allowed, this raises potential problems with internationalisation. Will parsers be required to understand the names and abbreviations for days and months in potentially hundreds of different languages?  [[User:TobyInk|TobyInk]] 14:09, 8 Jun 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
=== Machine-data in class===&lt;br /&gt;
The BBC ([http://microformats.org/discuss/mail/microformats-dev/2008-June/000552.html uf-dev archive, 20/06/08, &amp;quot;Using class for non-human data&amp;quot;]) has proposed as an alternative to the empty span and title solution to use the class name in the following way:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;dtstart data-20051010T10:10:10-0100&amp;quot;&amp;gt;10 o'clock on the 10th&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Pros:&lt;br /&gt;
* Allows data to be represented in a &amp;quot;non-harmful&amp;quot; way. Will not be read aloud by screenreaders or seen as tooltips.&lt;br /&gt;
* Minimizes mark-up used.&lt;br /&gt;
* Arguably more semantic than use of &amp;quot;title&amp;quot; attribute for non-human data.&lt;br /&gt;
&lt;br /&gt;
Cons:&lt;br /&gt;
* data in the class attribute has already been discussed numerous times in the mailing list over the years and rejected and documented as an [[anti-pattern]] - captured [http://microformats.org/wiki?title=anti-patterns&amp;amp;diff=24271&amp;amp;oldid=24270 on the wiki this past January 2008].&lt;br /&gt;
* Possible misuse of class attribute, although as noted previously, the HTML spec states &amp;quot;for general purpose processing by user agents&amp;quot;.&lt;br /&gt;
* The class attribute has been adopted by the broader web design community to &amp;quot;subclass&amp;quot; element semantics, and to layer additional semantics. To date, microformats has followed this existing practice developed by modern web designers (&amp;quot;paving the cow-paths&amp;quot;). This use of class for data is outside all current practices.&lt;br /&gt;
&lt;br /&gt;
Discussion:&lt;br /&gt;
* This proposal smells icky, but I can't quite put my finger on why. Considered objectively, it does seem to be the least harmful solution proposed so far. [[User:TobyInk|TobyInk]] 06:06, 21 Jun 2008 (PDT)&lt;br /&gt;
* I really like it, especially given the HTML4 spec gives this as an IMO perfectly valid use (on both id and class, with the following examples given in the id section: &amp;quot;identifying fields when extracting data from HTML pages into a database, translating HTML documents into other formats, etc.&amp;quot;). Clean and simple. [[User:Dracos|Dracos]] 03:53, 23 Jun 2008 (PDT)&lt;br /&gt;
* I suggest dropping the redundant 'data-' prefix, unless someone can suggest a feasible case with two time-stamps requiring different prefixes.  The proposal then becomes [http://www.robertnyman.com/2008/04/28/do-we-really-need-microformats/#comment-263408 one I've made before] [[User:AshSearle|AshSearle]]&lt;br /&gt;
** Valid class names cannot begin with a number, so a date needs some sort of letter prefix.  It's sensible to make this prefix meaningful and reusable in some way. [[User:Phae|Phae]]&lt;br /&gt;
*** They can't in CSS, but they can in (X)HTML. http://examples.tobyinkster.co.uk/numeric-classes.html [[User:TobyInk|TobyInk]] 06:53, 24 Jun 2008 (PDT)&lt;br /&gt;
**** Creating classes in HTML that can't be referenced in CSS is a bad thing.  Using colons and starting with numbers fall into that category.  http://www.w3.org/TR/CSS21/syndata.html#characters  Also, replacing whitespace with underscores breaks the ISO compatibility, which sorta defeats the whole point of using existing standards.  Finally the class names are unordered, so trying to use them in a series is a bad idea. --[[User:Atamido|Atamido]] 11:43, 30 Jul 2008 (PDT)&lt;br /&gt;
***** They can be referenced in CSS, just not using the &amp;quot;dot notation&amp;quot;. They can be referenced using attribute selectors, which are supported in all modern browsers (but not IE6). [[User:TobyInk|TobyInk]] 13:21, 30 Jul 2008 (PDT)&lt;br /&gt;
****** They could also be referenced by escaping the characters, but that still excludes &amp;gt;99% of current use cases.  I'd wager that most authors don't even know about the limitations and would run into issues in implementation. --[[User:Atamido|Atamido]] 13:47, 30 Jul 2008 (PDT)&lt;br /&gt;
***** I don't think the proposal relies on classes being in any particular order. Even if it did, I don't know of any DOM implementations which do not provide the contents of the class attribute in their original order. [[User:TobyInk|TobyInk]] 13:21, 30 Jul 2008 (PDT)&lt;br /&gt;
** Not to advocate too strongly for designing for parsers (generally a bad idea), *but* having a 'data-' prefix on a class name would make identifying data orders of magnitude easier for parsing. Otherwise, how do we know what's data and what's just another class name for some other purpose? [[User:DrewMcLellan|Drew]]&lt;br /&gt;
** A 'data-' prefix would help authors tasked with maintaining or reviewing a page to understand the purpose of a class name that may have been applied by another author. The data prefix communicates very simply that the class name is precisely that, data. Therefore the value is less likely to be accidentally removed or changed, making for a more robust design. [[User:DrewMcLellan|Drew]]&lt;br /&gt;
*** I concede -  regardless of whether it's valid (X)HTML / CSS - a prefix is needed to distinguish data values from genuine content.  ISO 8601 allows date-time to be as simple as &amp;quot;2004&amp;quot;, which could easily be misinterpreted.  e.g. if a CMS outputs product model numbers into the class attribute for some other purpose. --[[User:AshSearle|AshSearle]] 01:42, 25 Jun 2008 (PDT)&lt;br /&gt;
*** Using &amp;lt;code&amp;gt;data-&amp;lt;/code&amp;gt; as the prefix here is undesirable, as it now conflicts with HTML5's proposed &amp;lt;code&amp;gt;-data&amp;lt;/code&amp;gt; prefix on attributes. It's undesirable to set ourselves up for future confusion with our own conflicting specification of ‘a data prefix’. A different prefix should be considered. See: [http://www.w3.org/html/wg/html5/#custom HTML5 Editors Draft: Embedding Custom Non-Visible Data] —[[User:BenWard|BenWard]] 07:34, 16 Jul 2008 (PDT)&lt;br /&gt;
* -1 [[User:Tantek|Tantek]]. I'm vehemently opposed to putting data in the class attribute. We ''must'' find better alternatives. We must not go down the path of invisible (dark) (meta)data - IMHO that [[principle]] is inviolable for microformats.&lt;br /&gt;
** [[User:JakeArchibald|JakeArchibald]] If you're so opposed, it'd be useful to see some justification.&lt;br /&gt;
*** See above cons. Already discussed/rejected many times in the history of microformats discussions. In short, quit wasting time on old ground. Abuses class attribute, or if you prefer, introduces a *new* use of the class attribute, unlike microformats to-date which have simply made use of a well established semantic of the class attribute.  And worst of all, completely violates the visible data [[principle]]. Rejectable on that alone.&lt;br /&gt;
**** The fact that something has been discussed and rejected before is not sufficient grounds for dismissing it out of hand once additional research and thinking has taken place. The &amp;amp;lt;abbr&amp;gt; datetime pattern arguably abused the title attribute and introduced a new use of the title attribute. In the example given (&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;dtstart data-20051010T10:10:10-0100&amp;quot;&amp;gt;10 o'clock on the 10th&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;), the data is presented as &amp;quot;10 o'clock on the 10th&amp;quot; - very visible. Yes, of course, it's possible to abuse this proposed pattern, and hide the data, but the same can be said of the abbr pattern or even the class pattern given CSS's display:none property. Experience shows that in most cases, people ''won't'' abuse the pattern to hide data, as they actually ''want'' to show the data on their pages. [[User:TobyInk|TobyInk]] 13:52, 24 Jun 2008 (PDT)&lt;br /&gt;
***** There has been no new &amp;quot;additional research and thinking&amp;quot; shown yet for data in the class attribute since it was originally proposed years ago, thus, it should be dismissed until that burden of reintroduction is met. [[User:Tantek|Tantek]] 22:05, 24 February 2009 (UTC)&lt;br /&gt;
**** It's not an abuse of the class attribute according to the HTML spec. as I read it. Whereas using title for non-human data is (the spec says audio agents may read it aloud, for example). If it's a new use, it's one the writers of HTML4 considered, so it wasn't new to them. [[User:Dracos|Dracos]] 03:38, 25 Jun 2008 (PDT)&lt;br /&gt;
** Relevant principles are 'humans first, machines second', and 'visible data is ''better'''.  These are ''preferences'', not inviolable principles.  Besides, the existing datetime spec doesn't adhere to these principles anyway: prioritising humans first, &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;let's discuss this at the next meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; should be marked up as &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;let's discuss this at the &amp;lt;abbr title=&amp;quot;28th June 2008 at 3:15pm&amp;quot;&amp;gt;next meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.  There's a conflict between human- and machine-readable dates.  It makes more sense to 'hide' the machine-readable data in the only attribute available to us: &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt;.  --[[User:AshSearle|AshSearle]] 03:02, 25 Jun 2008 (PDT)&lt;br /&gt;
*** Indeed - by their nature, ''principles'' are ''generalisations'', and while broadly useful, usually have exceptions. After experience, the microformats community is beginning to see some of these. Human vs machine dates is the one gathering the most interest at the moment, largely thanks to &amp;lt;abbr class=&amp;quot;help&amp;quot; style=&amp;quot;border-bottom:1px dotted&amp;quot; title=&amp;quot;the Web Standards Project&amp;quot;&amp;gt;WaSP&amp;lt;/abbr&amp;gt; and &amp;lt;span class=&amp;quot;help&amp;quot; style=&amp;quot;border-bottom:1px dotted&amp;quot; title=&amp;quot;the BBC&amp;quot;&amp;gt;auntie&amp;lt;/span&amp;gt;, but I think other properties which will probably emerge as exceptions to the general microformats principles are hReview's &amp;lt;code&amp;gt;type&amp;lt;/code&amp;gt; property, and the its namesake subproperty for hCard's &amp;lt;code&amp;gt;tel&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;email&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt; (and &amp;lt;code&amp;gt;label&amp;lt;/code&amp;gt;?) properties. [[User:TobyInk|TobyInk]] 12:51, 25 Jun 2008 (PDT)&lt;br /&gt;
**** Unless you can provide better principles, it is not reasonable to violate the principles. When principles are in conflict, then one must make reasoned cases for the various possibilities (that uphold one principle but perhaps violate another). [[User:Tantek|Tantek]] 22:05, 24 February 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
==== Experimental Parser Support ====&lt;br /&gt;
&lt;br /&gt;
[http://buzzword.org.uk/cognition/ Cognition 0.1 alpha 10] will include experimental support for this pattern, and the [http://srv.buzzword.org.uk Cognition web service] already does. Notes:&lt;br /&gt;
* Support is ''opt-in''. Publishers must explicitly request support for the pattern, by including a [[profile-uris|profile URI]] of &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://purl.org/uF/pattern-data-class/1&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; in their document head.&lt;br /&gt;
* Support is not limited to date-time properties, but any microformat properties.&lt;br /&gt;
* data-X classes must use percent-encoding to encode spaces and other characters not allowed in class names.&lt;br /&gt;
* The data-X class must be found on the same element as the microformat property class. That is, you cannot use: &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;data-20051010T10:10:10-0100&amp;quot;&amp;gt;10 o'clock&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Multiple data-X classes may occur on the same element. When these are found, the longest string is used. This allows for: &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;dtstart data-2005 data-200510 data-20051010&amp;quot;&amp;gt;The 10th&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt; which may be useful for styling or other non-microformat purposes.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Can be combined with value excerpting. e.g. &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;dtstart&amp;quot;&amp;gt;&lt;br /&gt;
  The concert will be held on&lt;br /&gt;
  &amp;lt;span class=&amp;quot;value data-20080804&amp;quot;&amp;gt;the 4th of August&amp;lt;/span&amp;gt;&lt;br /&gt;
  starting at&lt;br /&gt;
  &amp;lt;span class=&amp;quot;value data-T193000&amp;quot;&amp;gt;7:30pm precisely&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== date and time separation using value excerption ===&lt;br /&gt;
Moved to [[value-excerption-pattern-brainstorming#date_and_time_separation|value excerption pattern brainstorming]] which is a better way of thinking about this.&lt;br /&gt;
&lt;br /&gt;
=== HTML 5 &amp;lt;code&amp;gt;&amp;amp;lt;time&amp;gt;&amp;lt;/code&amp;gt; Element ===&lt;br /&gt;
[http://microformats.org/wiki/hcalendar-issues#html5-time-element See hCalendar issues]&lt;br /&gt;
&lt;br /&gt;
=== Plain Old English alternative to ISO date ===&lt;br /&gt;
Example (in English):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;abbr title=&amp;quot;January 25th, 2008&amp;quot; class=&amp;quot;dstart&amp;quot; lang=&amp;quot;en-us&amp;quot;&amp;gt;1/25&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;dstart&amp;quot;&amp;gt;January 25th, 2008&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;code&amp;gt;lang=&amp;quot;en-us&amp;quot;&amp;lt;/code&amp;gt;, the format of the date used in the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute must conform to [http://www.ego4u.com/en/cram-up/vocabulary/date/written dates writing rules in American English].&lt;br /&gt;
&lt;br /&gt;
Example (in French):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;abbr title=&amp;quot;25 Janvier 2008&amp;quot; class=&amp;quot;dstart&amp;quot; lang=&amp;quot;fr&amp;quot;&amp;gt;25/1&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;code&amp;gt;lang=&amp;quot;fr&amp;quot;&amp;lt;/code&amp;gt;, the format of the date used in the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute must conform to date writing rules in French.&lt;br /&gt;
&lt;br /&gt;
====Benefits====&lt;br /&gt;
&lt;br /&gt;
* Human-hearable: should work nicely with screen readers (to be tested).&lt;br /&gt;
* Human-readable&lt;br /&gt;
* Compliance with semantics of abbr.&lt;br /&gt;
* Very easy to use by HTML human authors.&lt;br /&gt;
* DRY compliant if HTML human authors are willing to write in correct English&lt;br /&gt;
&lt;br /&gt;
==== Disadvantages ====&lt;br /&gt;
Most extracted from discussion below.&lt;br /&gt;
* huge requirement of knowledge of locale-specific information in implementations&lt;br /&gt;
* very high complexity of implementation , perhaps even impossible, due to the knowledge required&lt;br /&gt;
* unreliability in general: &amp;quot;Getting it wrong would be worse than not getting it at all! &amp;quot;&lt;br /&gt;
* unreliability in mixed locale content&lt;br /&gt;
* unreliable according to implementation experience to date (see discussion below)&lt;br /&gt;
* authoring drift, NLP arms race. because proposal looks like natural language, authors will try any natural language format.&lt;br /&gt;
* widespread implementer objection to NLP based solutions&lt;br /&gt;
&lt;br /&gt;
====Discussion====&lt;br /&gt;
* Locale-specific parsing logic.&lt;br /&gt;
* Not all cultures use the same calendar — Dan Brickley&lt;br /&gt;
* There are situations where markup clues used for localisation might be misleading, such as people using microformats in a post on a site they do not themselves run that may even be in a different country. (a shared blogging site that allows html tags in posts would be a good example here) — Michael MD&lt;br /&gt;
** Couldn't the person or tool adding the microformat annotation also add a lang attribute at the same time? — Benjamin Hawkes-Lewis&lt;br /&gt;
* Cognition already supports this as a last ditch attempt at parsing dates - but I wouldn't recommend it get adopted widely. It's too unreliable; too much work to deal with internationalisation; too much work full-stop in languages that don't provide a handy library that takes care of most of the work. — [[User:TobyInk]]&lt;br /&gt;
** I don't think we need to support all locales at once. I don't know in how many written languages BBC publishes in, but it might be that supporting en-uk and en-us might be enough for a start. Also, one can imagine that Microformats tools could focus on the most common written languages and then expose hooks for others to implement support for other locales. — Guillaume Lebleu&lt;br /&gt;
** What are our priorities? Making programmers' life easier or making content authors and content readers' life easier? — Guillaume Lebleu&lt;br /&gt;
*** In Australia  dd/mm/yyyy is commonly used, but a significant minority of sites in Australia use US-style mm/dd/yyyy because it is the default setting in their CMS. How would a parser be able to tell which part is the day and which is the month? Getting it wrong would be worse than not getting it at all! Until the use of ambiguous formats can be ''wiped out'' we ''will'' need a version for machines! — Michael MD&lt;br /&gt;
***  problem which hasn't been raised with regards to this proposal is that even though you are proposing a fixed date format, because it *looks* like natural language, authors will assume that it *is* natural language, and simply start including dates in whatever format they like. Then you get an NLP &amp;quot;arms race&amp;quot; between publishers and parsers. If you don't believe that that will happen, take a look at what happened with RFC 822 dates, which are simply a mess. — [[User:TobyInk]]&lt;br /&gt;
**** Very true the more you make the date look like natural language, the less it looks like a fixed format. I really don't want us to get involved in any form of NLP, it just would not work. I think it was Mike who said that dates have to be parsed correctly, no level of error is acceptable. I don't want to travel to an event on the wrong day because a parser got the date wrong — Glenn Jones&lt;br /&gt;
&lt;br /&gt;
====Notes====&lt;br /&gt;
* Could work alongside with the existing [[datetime-design-pattern]]: if ISO date parsing fails, try parsing the title as a human-readable plain old English/French/... date according to the locale.&lt;br /&gt;
&lt;br /&gt;
===&amp;lt;code&amp;gt;&amp;amp;lt;object&amp;gt;&amp;lt;/code&amp;gt; element to represent dates===&lt;br /&gt;
* Re-raised by George Brocklehurst on June 25th 2008.&lt;br /&gt;
&lt;br /&gt;
The idea was to do something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;&amp;amp;lt;object data=&amp;quot;20050125&amp;quot;&amp;gt;January 25&amp;amp;lt;/object&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* From what Tantek [http://tantek.com/log/2005/01.html said on his blog] , the main reason for not using objects was that they were not well supported in Safari. However, Safari's object support is now much improved: fallbacks are supported and display:inline and intrinsic sizing will work correctly. Safari 2.0.2, which came out in November 2005, was the first version to [http://webkit.org/blog/32/webkit-fixes-in-safari-202-mac-os-x-1043/ contain these improvements]. — George Brocklehurst&lt;br /&gt;
* The following appears to be well behaved inline in Safari 2.04 and 3.1.1, Firefox 1, 1.5, 2 and 3, and Opera 7, 8 and 9: &amp;lt;code&amp;gt;&amp;amp;lt;object class=&amp;quot;dtstart&amp;quot; data=&amp;quot;data://20080712&amp;quot;&amp;gt;&amp;amp;lt;/object&amp;gt;&amp;lt;/code&amp;gt;. Test case: http://pastie.org/224023 — Ben Ward&lt;br /&gt;
** IE 6, 7 and the beta version of IE 8 all visibly render the object element as a small box, similar to the way they would render a missing image: http://georgebrock.com/misc/object-in-ie.png — George Brocklehurst&lt;br /&gt;
** Absolute URIs can't start with a number, but relative ones can - and the data attribute is permitted to contain relative URIs. [Don't need to use data:// URI) — Toby A Inkster&lt;br /&gt;
* Could also look at &amp;lt;code&amp;gt;&amp;amp;lt;object class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;amp;lt;param name=&amp;quot;value&amp;quot; value=&amp;quot;20050125&amp;quot; /&amp;gt;January 25&amp;amp;lt;/object&amp;gt;&amp;lt;/code&amp;gt; — Scott Reynen&lt;br /&gt;
&lt;br /&gt;
==== issues ====&lt;br /&gt;
Open issues related to this proposal. Some may require additional information to be acted upon / resolved.&lt;br /&gt;
&lt;br /&gt;
* Not providing OBJECT WIDTH and HEIGHT causes the displaying page to flicker;  --[[User:Yecril71pl|Yecril71pl]] 21:56, 24 February 2009 (UTC)&lt;br /&gt;
** Please provide specific implementation (maker, name, version number, platform) that cause the displaying page to flickr.&lt;br /&gt;
&lt;br /&gt;
* OBJECT boundaries are impermeable to CSS.  --[[User:Yecril71pl|Yecril71pl]] 21:56, 24 February 2009 (UTC)&lt;br /&gt;
** Please provide a URL to an example use of OBJECT that demonstrates problems with applying CSS to the contents of the OBJECT (i.e. beyond its boundaries).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== resolved issues ====&lt;br /&gt;
Issues raised and resolved related to this proposal. Issues that are misconceptions (e.g. easily refuted by citing the HTML4 specification) are resolved by moving to the separate misconceptions section below with explanation/citation for why they are misconceptions.&lt;br /&gt;
&lt;br /&gt;
* The purpose of the &amp;amp;lt;object&amp;gt; element is to allow the browser to run an external application for a non-native data type (e.g., Java applet). See:  http://www.w3.org/TR/REC-html40/struct/objects.html#h-13.3. Object is not the right way to go in this case. — Sarven Capadisli&lt;br /&gt;
** &amp;quot;datetime&amp;quot; *is* a non-native data type, and its common presentation is essentially a lowest common denominator (what's supported) plain text fallback. Better would be for code to recognize and present date and time information to the user in a format they can understand (perhaps adjusting the presentation for the user's locale settings). Object makes sense semantically for representing date and time information, as it is a semantic for embedding arbitrary data. [[User:Tantek|Tantek]] 21:39, 24 February 2009 (UTC)&lt;br /&gt;
** note the mention of &amp;quot;external application&amp;quot; may sometimes cause the misconception (i.e. see below) that object MUST be used to run an external application. This is false. Authors may specify the &amp;quot;classid&amp;quot;, which implies an implementation, or they may specify the &amp;quot;type&amp;quot; and &amp;quot;data&amp;quot; attributes which the browser may then display natively or use the &amp;quot;type&amp;quot; attribute to find external code to display the data. [[User:Tantek|Tantek]] 21:39, 24 February 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
* Providing OBJECT WIDTH and HEIGHT will break the typographical consistency of running text.  --[[User:Yecril71pl|Yecril71pl]] 21:56, 24 February 2009 (UTC)&lt;br /&gt;
** This is a [http://tr.im/strawman Strawman] issue. This proposal never advocated using WIDTH and HEIGHT. &lt;br /&gt;
&lt;br /&gt;
* Specifying a DATA attribute causes an unnecessary round-trip to the server.  And what if it succeeds?  --[[User:Yecril71pl|Yecril71pl]] 21:59, 24 February 2009 (UTC)&lt;br /&gt;
** This is a [http://tr.im/strawman Strawman] issue. This proposal lacks any examples which use &amp;quot;http:&amp;quot; in the DATA attribute or any other URI scheme which will cause a round-trip to the server.&lt;br /&gt;
&lt;br /&gt;
==== misconceptions ====&lt;br /&gt;
===== external application only =====&lt;br /&gt;
* ''The purpose of the &amp;amp;lt;object&amp;gt; element is to allow the browser to run an external application...'' — Sarven Capadisli&lt;br /&gt;
* ''OBJECT elements are for external content, not for arbitrary data;'''  --[[User:Yecril71pl|Yecril71pl]] 21:56, 24 February 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
This is false. From the [http://www.w3.org/TR/html401/struct/objects.html#h-13.3 HTML4.01 section on OBJECT]: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Still others [other objects] may not require additional implementation information, i.e., the user agent itself may already know how to render that type of data (e.g., GIF images).&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thus browsers may render OBJECTs themselves, like images, and external applications are not necessarily required. For example IE5/Mac supported native rendering of PNG images even as objects, while other browsers at the time (2000) which supported OBJECT, only rendered PNG images via external plugins.&lt;br /&gt;
&lt;br /&gt;
===== need width and height =====&lt;br /&gt;
* ''OBJECT elements need WIDTH and HEIGHT''  --[[User:Yecril71pl|Yecril71pl]] 21:56, 24 February 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
This is false. Per the [http://www.w3.org/TR/html401/struct/objects.html#h-13.3 HTML4.01 section on OBJECT], the width and height attributes are &amp;quot;#IMPLIED&amp;quot; not &amp;quot;#REQUIRED&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Individual markup of each date/time component===&lt;br /&gt;
'''A variant of this idea has been documented into a [[value-excerption-pattern-brainstorming#details_for_handling_specific_property_types|specific proposal]] and is [[value-excerption-dt-separation-test|being tested]]. Please see the [[value-excerption-pattern-brainstorming#details_for_handling_specific_property_types|value excerption pattern brainstorming: date and type separation]] and [[value-excerption-dt-separation-test]] page for updated details. [[User:Tantek|Tantek]] 22:05, 24 February 2009 (UTC)'''&lt;br /&gt;
&lt;br /&gt;
A combination of suggestions that originated from this [http://www.mail-archive.com/microformats-discuss@microformats.org/msg10218.html post]&lt;br /&gt;
&lt;br /&gt;
This is suggested as a complementary alternative to datetime-design-pattern, when the use of the pattern is not possible due to accessibility reasons.&lt;br /&gt;
&lt;br /&gt;
suggested class names:&lt;br /&gt;
* &amp;lt;code&amp;gt;date&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;time&amp;lt;/code&amp;gt;&lt;br /&gt;
* or maybe &amp;lt;code&amp;gt;datetime&amp;lt;/code&amp;gt; ?&lt;br /&gt;
* &amp;lt;code&amp;gt;s&amp;lt;/code&amp;gt; for seconds&lt;br /&gt;
* &amp;lt;code&amp;gt;min&amp;lt;/code&amp;gt; for minutes&lt;br /&gt;
* &amp;lt;code&amp;gt;hr&amp;lt;/code&amp;gt; for hours&lt;br /&gt;
* &amp;lt;code&amp;gt;ampm&amp;lt;/code&amp;gt; for AM/PM&lt;br /&gt;
* &amp;lt;code&amp;gt;tz&amp;lt;/code&amp;gt; for timezone. (ex. &amp;lt;code&amp;gt;GMT&amp;lt;/code&amp;gt;)&lt;br /&gt;
* &amp;lt;code&amp;gt;tzo&amp;lt;/code&amp;gt; for timezone offset (ex. &amp;lt;code&amp;gt;-7&amp;lt;/code&amp;gt;)&lt;br /&gt;
* &amp;lt;code&amp;gt;day&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;mo&amp;lt;/code&amp;gt; for months&lt;br /&gt;
* &amp;lt;code&amp;gt;yr&amp;lt;/code&amp;gt; for year&lt;br /&gt;
&lt;br /&gt;
For a complete datetime:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;dstart&amp;quot; lang=&amp;quot;en-us&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;date&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;mo&amp;quot;&amp;gt;October&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;day&amp;quot;&amp;gt;5&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;yr&amp;quot;&amp;gt;2004&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span&amp;gt; at &lt;br /&gt;
&amp;lt;span class=&amp;quot;time&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;hr&amp;quot;&amp;gt;6&amp;lt;/span&amp;gt;&amp;lt;span class=&amp;quot;&amp;quot;&amp;gt;PM&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;date&amp;lt;/code&amp;gt; maybe not required since &amp;lt;code&amp;gt;dstart&amp;lt;/code&amp;gt; IS a &amp;lt;code&amp;gt;date&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For a duration:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;duration&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;h&amp;quot;&amp;gt;1&amp;lt;/span&amp;gt;:&lt;br /&gt;
    &amp;lt;span class=&amp;quot;min&amp;quot;&amp;gt;3&amp;lt;/span&amp;gt;:&lt;br /&gt;
    &amp;lt;span class=&amp;quot;s&amp;quot;&amp;gt;42&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* An example of this is also documented on [[ISO-31-1]]&lt;br /&gt;
&lt;br /&gt;
'''Issues'''&lt;br /&gt;
* the internationalization issue is not addressed, but it is limited to the month of the year.&lt;br /&gt;
* Tonnes and tonnes of nested elements to mark up something that's essentially very simple. Microformats are &amp;quot;for humans first, machines second&amp;quot;, but this suggestion appears to be friendly to neither! [[User:TobyInk|TobyInk]] 02:21, 12 Aug 2008 (PDT)&lt;br /&gt;
** Also worth pointing out that the complexity issue applies less to durations. With durations, most people will probably only want to use a combination of 1 to 3 time components (e.g. d+h, h+min+s, h+min, min+s, d only, h only, min only, s only) But with datetimes, they're likely to want to specify at least five components (y+m+d+h+min) and often also the timezone (seconds, and fractions thereof, are not especially useful for the majority of use cases). So marking up the time components might be OK for durations, but becomes onerous for datetimes.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[Main_Page#Design_Patterns|All microformat design patterns]]&lt;br /&gt;
* [[abbr-design-pattern]] is used by [[datetime-design-pattern]]&lt;br /&gt;
* [[date-design-pattern]] is a subset of [[datetime-design-pattern]]&lt;br /&gt;
* HTML 4.01 definition of &amp;lt;code&amp;gt;&amp;amp;lt;[http://www.w3.org/TR/REC-html40/struct/text.html#edef-ABBR abbr]&amp;gt;&amp;lt;/code&amp;gt; element&lt;br /&gt;
* RFC [http://www.faqs.org/rfcs/rfc3339.html 3339]: Date and Time on the Internet: Timestamps&lt;br /&gt;
* W3C: [http://www.w3.org/TR/NOTE-datetime Note on Datetimes] &lt;br /&gt;
* W3C: [http://www.w3.org/QA/Tips/iso-date Use international date format (ISO) - Quality Web Tips]&lt;br /&gt;
* Markus Kuhn: [http://www.cl.cam.ac.uk/~mgk25/iso-time.html A summary of the international standard date and time notation]&lt;br /&gt;
* Wikipedia: [http://en.wikipedia.org/wiki/ISO_8601 ISO 8601]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=icons&amp;diff=40384</id>
		<title>icons</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=icons&amp;diff=40384"/>
		<updated>2009-08-27T00:44:57Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: changing source of mf icons&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Icons &amp;lt;/h1&amp;gt;&lt;br /&gt;
These icons can be used to depict various microformats in webpages or on the desktop.&lt;br /&gt;
&lt;br /&gt;
== Creators ==&lt;br /&gt;
* [http://factoryjoe.com/blog Chris Messina]&lt;br /&gt;
* [http://dmitry.baranovskiy.com Dmitry Baranovskiy]&lt;br /&gt;
* [http://bartleme.at Wolfgang Bartelme]&lt;br /&gt;
&lt;br /&gt;
==Accessibility==&lt;br /&gt;
Publishers are advised to ensure that these icons are used in an accessible fashion, by including suitable &amp;quot;alt&amp;quot; attributes.&lt;br /&gt;
&lt;br /&gt;
Icon designers are reminded that inability to distinguish between red and green is the commonest form of color-blindness .&lt;br /&gt;
&lt;br /&gt;
=== Copyright ===&lt;br /&gt;
Unless otherwise noted, these icons are licensed under the [http://creativecommons.org/licenses/by-sa/2.5/ Creative Commons Attribution-ShareAlike 2.5 license].&lt;br /&gt;
&lt;br /&gt;
== Icons ==&lt;br /&gt;
&lt;br /&gt;
=== Web ===&lt;br /&gt;
&lt;br /&gt;
A [http://factorycity.net/projects/microformats-icons/ first effort] has been completed by Wolfgang Bartelme and Chris Messina to create a series of web-friendly icons and buttons for microformats.&lt;br /&gt;
&lt;br /&gt;
==== General ====&lt;br /&gt;
&lt;br /&gt;
* http://img.skitch.com/20090827-qa9y941qxn6haf1y2e31fydt7.png hAtom &lt;br /&gt;
* http://img.skitch.com/20090827-qg4y5k6ayapuc3fm36a8hada6b.png hCalendar &lt;br /&gt;
* http://img.skitch.com/20090827-f3qdiebfdr665y1ag1byy31du2.png hCard Add &lt;br /&gt;
* http://img.skitch.com/20090827-fnq86wtfttf2tah18q4j69wbka.png hCard Download &lt;br /&gt;
* http://img.skitch.com/20090827-pc154xc2xw6ainsajxbncmxqyg.png hResume (button) &lt;br /&gt;
* http://img.skitch.com/20090827-twehb4b77egeieidept1cg7q6t.png rel-tag (button) &lt;br /&gt;
* http://img.skitch.com/20090827-p1rkxqnrhwyuta8wghi6xe3bbw.png XFN (button) &lt;br /&gt;
&lt;br /&gt;
'''Based on the General Icon DevKit:'''&lt;br /&gt;
* http://farm1.static.flickr.com/247/515868619_ed9cda470a_o.png hCalendar Download&lt;br /&gt;
* http://farm1.static.flickr.com/217/515843744_57bd70fdf5_o.png hCalendar Add&lt;br /&gt;
* http://farm1.static.flickr.com/235/515843768_98956242a7_o.png hCard&lt;br /&gt;
* http://farm3.static.flickr.com/2178/2528693942_1a58d71d27_o.png [http://notizblog.org/projects/haudio-icons/ hAudio Icons]&lt;br /&gt;
&lt;br /&gt;
'''Comments:'''&lt;br /&gt;
&lt;br /&gt;
* Hober pointed out that bright green seems to be a common color for [eventful.com/images/skin/ical.gif ical chicklets]&lt;br /&gt;
* Tantek wonders if the rel-tag button is useful&lt;br /&gt;
* ChrisMessina suggest a need for a small 10x10 tag icon&lt;br /&gt;
** http://archgfx.net/aspnet_client/tag-ltblue.gif square tag&lt;br /&gt;
** [[User:SunBurntKamel|Adam]] suggests 10x10 is a little small, but square is nice&lt;br /&gt;
*** [[User:PatHawks|PatHawks]] thinks smaller is better, if the icon is going to sit next to every tag&lt;br /&gt;
** [[User:Pfefferle|Pfefferle]] suggests the [http://www.famfamfam.com/lab/icons/silk/ FamFamFam] tag-icon: http://notizblog.org/wp-content/uploads/2007/05/tag_blue.png&lt;br /&gt;
* Tantek wonders whether we need an hCard Download icon -- since it focuses too much on the &amp;quot;pipes&amp;quot;&lt;br /&gt;
* Ron thinks it's ok to use icons, cause it's a nice way of promoting the &amp;quot;Microformat idea&amp;quot;. Maybe it's a good idea to use a downward aimed arrow to indicate the possibility to &amp;quot;download&amp;quot; something (like an hCard or hResume).&lt;br /&gt;
* Adam wonders if a multiple-license, including GPL, might be helpful in increasing adoption among wordpress themes.&lt;br /&gt;
* [[User:Pfefferle|Pfefferle]] suggests to change the color of the XFN-button into blue, because it uses the rel-attribute like &amp;quot;rel-tag&amp;quot; http://farm1.static.flickr.com/195/515824030_3c0dd42493_o.png.&lt;br /&gt;
* [[User:SvenDowideit|SvenDowideit]] wonders what font is used above, and why there are no open source friendly source files - ie svg (Dmitry's site is offline so i don't know if those are what I'm looking for)&lt;br /&gt;
&lt;br /&gt;
==== XFN ====&lt;br /&gt;
&lt;br /&gt;
* http://img.skitch.com/20090827-r6ksuun131mk1rupdittkh987b.png rel-me &lt;br /&gt;
* http://img.skitch.com/20090827-f6y8qp5q5b3ejtyphw931698uw.png rel-friend &lt;br /&gt;
** http://img.skitch.com/20090827-kwbt1kty45ynp8nxf3wbyyderx.png met &lt;br /&gt;
* http://img.skitch.com/20090827-tmm7p8pkw149hfdku8jfc2greu.png rel-sweetheart &lt;br /&gt;
** http://img.skitch.com/20090827-t3btra8dyxnp5fshqg58ywjhc.png met &lt;br /&gt;
* http://img.skitch.com/20090827-miwd8ux7kf35fntsqriicrrjsw.png rel-colleague &lt;br /&gt;
** http://img.skitch.com/20090827-pjeiakssxjyr54k7htr3qjxgmu.png met &lt;br /&gt;
&lt;br /&gt;
'''Comments:'''&lt;br /&gt;
&lt;br /&gt;
* Tantek: wonders if a rel-me icon is necessary or appropriate; perhaps something indicating &amp;quot;facets&amp;quot;?&lt;br /&gt;
* ChrisMesssina: rel-me is useful in blog posts where you link to other posts that you've written&lt;br /&gt;
* [[User:WizardIsHungry|Jon Williams]] 13:40, 5 Jan 2007 (PST): I thought &amp;quot;Flickr buddy&amp;quot; when I first saw these due to the color. Also the pink/blue may annoy people with some gender issues. Maybe we should use green for the sweetheart?&lt;br /&gt;
* [[User:PatHawks|Pat Hawks]] 12:58, 11 Apr 2008 (CST): Should &amp;quot;crush&amp;quot; and &amp;quot;sweetheart&amp;quot; use the same icon? Should &amp;quot;colleague&amp;quot; and &amp;quot;co-worker&amp;quot; use the same? Do we need one for &amp;quot;contact&amp;quot; or &amp;quot;acquaintance&amp;quot; as well?&lt;br /&gt;
&lt;br /&gt;
==== VoteLinks ====&lt;br /&gt;
&lt;br /&gt;
[http://microformats.org/wiki/vote-links VoteLinks]&lt;br /&gt;
&lt;br /&gt;
* http://deliciouslymeta.com/projects/vote-links/vote-for.gif vote-for&lt;br /&gt;
* http://deliciouslymeta.com/projects/vote-links/vote-against.gif vote-against&lt;br /&gt;
* http://factorycity.net/projects/microformats%2Dicons/images/vote-links.png (download the [http://factorycity.net/projects/microformats%2Dicons/files/vote-links.zip kit])&lt;br /&gt;
 &lt;br /&gt;
'''Comments:'''&lt;br /&gt;
* [[User:SteveIvy|Steve Ivy]]: I don't have a good icon for vote-abstain. Recommendations welcome. These are also a tad large to site next to links, perhaps?&lt;br /&gt;
** [[User:AndyMabbett|Andy Mabbett]]: Is +1/-1 a common way of representing voting? Would ticks and crosses be better, or thumbs up/ down (or horizontal for abstain)?&lt;br /&gt;
*** [[User:SteveIvy|Steve Ivy]]: I rather like the icons used by [http://digg.com digg] for voting on comments, but cannot use them for obvious reasons. I'm no iconographer to be honest, but if someone were to create thumbs-up/thumbs-down icons I'd use them instead of these.&lt;br /&gt;
&lt;br /&gt;
==== Geo ====&lt;br /&gt;
&lt;br /&gt;
Can be used in the ''background-image'' CSS property, next to a geo microformat. It could also indicate that a map opens in a new window:&lt;br /&gt;
&lt;br /&gt;
* http://users.hol.gr/~dzach/microformats/openmap.gif&lt;br /&gt;
&lt;br /&gt;
* http://www.geotagicons.com/img/geotag-16px.png (taken from [http://www.geotagicons.com/ Geotag Icon Project])&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Mac ===&lt;br /&gt;
[http://factoryjoe.com/blog/wp-content/uploads/2006/08/mf-icons.zip http://factoryjoe.com/blog/wp-content/uploads/2006/08/mf-icons-preview.png]&lt;br /&gt;
&lt;br /&gt;
These [http://factoryjoe.com/blog/wp-content/uploads/2006/08/mf-icons.zip icons] can be used for folders or files on your Mac. You can use a tool like [http://iconfactory.com/software/pixadex Pixadex] for managing and applying them.&lt;br /&gt;
&lt;br /&gt;
Created by [http://factoryjoe.com/blog Chris Messina]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== PDF &amp;amp; SVG ===&lt;br /&gt;
&lt;br /&gt;
[http://dmitry.baranovskiy.com/res/mf-logo.pdf http://dmitry.baranovskiy.com/i/pdffile.png] [http://dmitry.baranovskiy.com/res/mf-logo.svg http://dmitry.baranovskiy.com/i/svgfile.png]&lt;br /&gt;
&lt;br /&gt;
This logo looks pretty much as first icon of Chris’ set. You could open it in any bitmap or vector editing tools, such as Adobe Photoshop or Adobe Illustrator.&lt;br /&gt;
&lt;br /&gt;
Created by [http://dmitry.baranovskiy.com Dmitry Baranovskiy]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{branding-see-also}}&lt;br /&gt;
&lt;br /&gt;
== Examples in the Wild ==&lt;br /&gt;
&lt;br /&gt;
* [http://zeroseis.com.br ZeroSeis] uses hCard download icon.&lt;br /&gt;
* [http://www.bayofislands.net/ Bay of Islands] uses hCard geo icon eg. in [http://www.bayofislands.net/accommodation/backpackers/mousetrap/ Moustrap Backpackers] page&lt;br /&gt;
* [http://www.nextbbs.com nextBBS] uses vote-links icons.&lt;br /&gt;
* [http://www.revolucao.etc.br Revolução Etc] uses hCard download icon and tag icon.&lt;br /&gt;
* There are various microformat logos on [http://www.westmidlandbirdclub.com/site/ the West Midland Bird Club's &amp;quot;about this site&amp;quot; page] and on its [http://www.westmidlandbirdclub.com/club/executive.htm contacts] and [http://www.westmidlandbirdclub.com/diary/2007/10.htm events] pages&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events&amp;diff=40247</id>
		<title>events</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events&amp;diff=40247"/>
		<updated>2009-08-18T17:40:50Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added new meetup&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Microformats related events&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
Please add microformats events (including events which have sessions on microformats) below.&lt;br /&gt;
&lt;br /&gt;
Use the [[events-template|events template]] to create events pages, and list URLs, details, attendees, recommended tags, link to photos afterwards, etc.  Add links to slides and other media to the [[presentations]], [[podcasts]] pages respectively.&lt;br /&gt;
&lt;br /&gt;
Encourage the use of microformats on event sites' pages themselves, e.g. [[hCalendar]] and [[hCard]] for the schedule, sessions, speakers, and venues.&lt;br /&gt;
&lt;br /&gt;
== Add events to your calendar ==&lt;br /&gt;
Track current and future microformats events by subscribing to &amp;lt;kbd style=&amp;quot;display:block;margin:1em 0&amp;quot;&amp;gt;'''webcal://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http%3A//microformats.org/wiki/events'''&amp;lt;/kbd&amp;gt; Select and copy the entire above &amp;quot;webcal:&amp;quot; URL, then choose &amp;quot;Subscribe...&amp;quot; in your calendar application (e.g. in MacOSX iCal, the first item in the '''Calendar''' menu) and paste. Set it to update (i.e. &amp;lt;nowiki&amp;gt;[x]&amp;lt;/nowiki&amp;gt; Refresh) every day and new events will appear automatically.&lt;br /&gt;
&lt;br /&gt;
You may also download  [http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events events on this page as a standalone iCalendar file].&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== regular ==&lt;br /&gt;
* [[weekly-meetup]] - weekly community meetups. details inside.&lt;br /&gt;
&lt;br /&gt;
== upcoming ==&lt;br /&gt;
&amp;lt;!-- Please try to keep to neutral tense (e.g &amp;quot;Bill Smith on microformats&amp;quot;). Include as many details about the event as possible, including precise start end times, room number, etc. Move details to the (events/..) wiki page for the event itself. Include the information here to start with with hCalendar markup. Thank you. &lt;br /&gt;
&lt;br /&gt;
templates:&lt;br /&gt;
&lt;br /&gt;
one day event:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;event-location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit.&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
multiple day event (note dtend &amp;quot;title&amp;quot; value must be 1 day after inline text value, per iCalendar dtend handling).&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;YYYY-MM-EE+1&amp;quot;&amp;gt;EE&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;event-location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Lorem ipsum dolor sit amet.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Soonest first.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-08-18&amp;lt;/span&amp;gt; at &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;18:00&amp;quot;&amp;gt;6pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-08-18-sf-meetup|Diso + microformats + activity streams meetup]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;We'll be having an informal Diso + microformats + activity streams meetup/dinner. At 8pm, those who are interested will head to Citizen Space to get some work done reviewing the activity streams implementors draft spec:&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/4234949/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== recent ==&lt;br /&gt;
&amp;lt;!-- Please change to past tense, and reverse the date-order, when moving events to the Recent section. Most recent first. --&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== August 2009 ===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-08-12&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-08-12-nyc-workshop|New York City microformats workshop]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;New York City, NY&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Taught by [http://tantek.com Tantek Çelik], the workshop covered just about everything you need to know to get started with microformats.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.eventbrite.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== July 2009 ===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt;..&amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;value&amp;quot; title=&amp;quot;2009-07-26&amp;quot;&amp;gt;26&amp;lt;/abbr&amp;gt; til &amp;lt;abbr class=&amp;quot;value&amp;quot; title=&amp;quot;17:00&amp;quot;&amp;gt;5pm&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-07-25-dev-camp|microformatsDevCamp]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2888376&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-09&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;10:30&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-07-09-scibarcamp-open-data|SciBarCamp session: open science open data on today's web]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Room 1, 2nd floor, IFTF offices, Palo Alto, CA&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-07&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-07-07-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Andalu&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;3198 16th st.&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/3068255&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== June 2009 ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-27&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;18:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-27-microformats-vevent-london|London Microformats vEvent]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;TBC&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;London&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-26-microformats-4th-bday|microformats 4th birthday party]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;[http://www.yelp.com/biz/b-restaurant-and-bar-san-francisco B Restaurant and Bar]&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;720 Howard Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;Yerba Buena Upper Terrace&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94103&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;USA&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/3010807&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-23&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:30&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-23-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Pancho Villa Taqueria&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2988905/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-18&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;13:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;-18:00 and &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-19&amp;lt;/span&amp;gt; from 9:00-&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;18:00&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;VoCamp&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Yahoo&amp;lt;/span&amp;gt;'s &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Sunnyvale&amp;lt;/span&amp;gt; campus&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-17&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;15:45&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[http://www.semantic-conference.com/session/2144/ Semantics at Google: RDFa, Microformats, and more]&amp;lt;/span&amp;gt; at the &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Fairmont Hotel, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Jose&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;[http://www.semantic-conference.com/2009/travel/ 2009 Semantic Technology Conference]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-16&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-16-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Mercury Lounge&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;1582 Folsom Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94103&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;USA&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2922429/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-09&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;18:30&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-09-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Pizza Zone &amp;amp;amp; Grill&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2852506/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-06-08&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-08-london-web-standards|London Web Standards June: microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;join http://www.meetup.com/londonwebstandards/ to see the location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.meetup.com/londonwebstandards/calendar/10387218/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-06-02&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-06-02-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;21st Amendment&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2801069/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== May 2009 ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-05-20&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;20:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-05-20-adr-geo-where20|geo/adr microformats BOF session at Where 2.0]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;Gold Room, 2nd floor, &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Fairmont San Jose&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;170 South Market Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Jose&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;95113&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Join us to discuss the all the recent buzz around [[geo]], [[adr]], and [[hCard]] microformats, support by [[google-search|Google in rich snippets]], and by [[yahoo-search|Yahoo in YQL and Y! Placemaker]]&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2718033&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-05-19&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-05-19-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Banana House&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2656903&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-05-15&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;11:30&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Twiist.be conference: Microformats and Transient Semantics&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://twiist.be/speakers/briansuda&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-05-12&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;19:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-05-12-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crepevine&amp;lt;/span&amp;gt; on &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;Church st.&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2656901&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-05-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-05-05-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Chevy's&amp;lt;/span&amp;gt; on &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;3rd street&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2568451&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== April 2009 ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-04-07&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-04-07-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crepes on Cole&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2376470&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-04-14&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-04-14-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Pancho Villa Taqueria&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2376478&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-04-20&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[http://www.w3qc.org/communiques/archives/invitation-a-la-soiree-conference-du-20-avril-2009/ Microformats presentation]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Laika&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Montéral&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;Québec&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2423142/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-04-21&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-04-21-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Taylor's Automatic Refresher&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2376483&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-04-28&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-04-28-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Third Street Grill&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2376485&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== March 2009 ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-03-31&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-03-31-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Metreon Food Court&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2295743&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-03-24&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-03-24-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Naan N' Chutney&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/2171301&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-03-14&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-03-14-sxsw-revolution|Microformats: A Quiet Revolution]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;Room 10, &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Austin Convention Center&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Austin&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;TX&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1825864/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-03-03&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-03-03-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Flippers&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1918295/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== February 2009 ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-02-24&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-02-24-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;21st Amendment&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1900098/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-02-17&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-02-17-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Naan N' Chutney&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1840841/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-02-10&amp;lt;/span&amp;gt; at 7pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-02-10-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;California Pizza Kitchen&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1765705/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-02-03&amp;lt;/span&amp;gt; at 7pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-02-03-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Taqueria Pancho Villa&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1519710/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== January 2009 ===&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-01-27&amp;lt;/span&amp;gt; at 7pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-01-27-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crepes on Cole&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1519151/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-01-20&amp;lt;/span&amp;gt; at 8pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-01-20-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;21st Amendment&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;2nd Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-01-13&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-01-13-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;21st Amendment&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;2nd Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; · &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1489360/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2009-01-06&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2009-01-06-weekly-dinner-sf|Microformats Dinner San Francisco]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Westfield Shopping Centre Food Court&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;818 Mission Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; · &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1467444/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Previous events ==&lt;br /&gt;
Previous years' events can be found at the following:&lt;br /&gt;
* [[events-2008]]&lt;br /&gt;
* [[events-2007]]&lt;br /&gt;
* [[events-2006]]&lt;br /&gt;
&lt;br /&gt;
== Other languages ==&lt;br /&gt;
* &amp;lt;span lang=&amp;quot;fr&amp;quot;&amp;gt;[[current_events-fr|événements en cours]] (fr)&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Quicktime Broadcaster Notes ==&lt;br /&gt;
&lt;br /&gt;
See [[quicktime]]&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
{{events-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39595</id>
		<title>events/2009-07-25-dev-camp</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2009-07-25-dev-camp&amp;diff=39595"/>
		<updated>2009-07-16T18:20:54Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: changed my role and the logo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformatsDevCamp&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
http://farm3.static.flickr.com/2648/3726597247_58a8782773.jpg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;event-page vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-25&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;12:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2009-07-26&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;17:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;org fn&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;Pier 38, The Embarcadero between Brannan and Townsend&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span style=&amp;quot;display:block&amp;quot; class=&amp;quot;geo&amp;quot;&amp;gt;[http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;view=map&amp;amp;q=%2BAutomattic,+The+Embarcadero,+San+Francisco,+CA+94107&amp;amp;sll=37.752736,-122.402826&amp;amp;sspn=0.13844,0.217667&amp;amp;gl=us&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=37.782877,-122.388062&amp;amp;panoid=kB1DhzPP5DYl5pgHBRxdPg&amp;amp;cbp=12,123.84,,0,2.44&amp;amp;ll=37.783053,-122.388044&amp;amp;spn=0,359.996599&amp;amp;z=18 View location at latitude:&amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.782769&amp;lt;/span&amp;gt;, longitude:&amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.387837&amp;lt;/span&amp;gt;]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
:'''MUNI''': [http://playfoursquare.com/venue/72202 Brannan] (N,T)&lt;br /&gt;
:'''BART''': Embarcadero station, then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__IB3&amp;amp;s=6992&amp;amp;ts=4506 take MUNI N-Judah inbound] or T-Third inbound to Brannan stop.&lt;br /&gt;
:'''Caltrain''': 4th &amp;amp; King st., then [http://www.nextmuni.com/predictor/prediction.shtml?a=sf-muni&amp;amp;r=N&amp;amp;d=N__OB2&amp;amp;s=5240&amp;amp;ts=7145 take MUNI N-Judah outbound] or T-Third outbound to Brannan stop.&lt;br /&gt;
;What&lt;br /&gt;
:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformatsDevCamp!&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The first ever microformatsDevCamp, for authors, designers, publishers, developers, engineers building pages, sites, and tools with microformats.&amp;lt;/span&amp;gt;&lt;br /&gt;
;URLs&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2009-07-25-dev-camp&amp;lt;/span&amp;gt;&lt;br /&gt;
:http://upcoming.yahoo.com/event/2888376/&lt;br /&gt;
;short URL&lt;br /&gt;
:http://tr.im/ufdevcamp&lt;br /&gt;
&lt;br /&gt;
'''[http://suda.co.uk/projects/microformats/hcalendar/get-cal.php?uri=http://microformats.org/wiki/events/2009-07-25-dev-camp Add this event to your calendar]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
microformatsDevCamp, like any BarCamp, needs you! &lt;br /&gt;
&lt;br /&gt;
Sign up to volunteer, attend, design, code, and build with microformats!&lt;br /&gt;
&lt;br /&gt;
=== planners ===&lt;br /&gt;
Want to help organize and plan the first microformatsDevCamp? Sign up and be sure to pick up a planner role (see below).&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;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''organizing, venue acquisition'''&amp;lt;/span&amp;gt; -- run the introductory session and help start the microformatsDevCamp with traditional BarCamp intros/3tags and explanation of the BarCamp format. &amp;lt;/span&amp;gt;&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;[[User:Rohit|Rohit Khare]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''venue acquisition'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&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;[[User:EdwardOConnor |Edward O'Connor]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Ted&amp;lt;/span&amp;gt;) - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''volunteer coordinator, cleanup'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&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;[[User:Pseudowish|Lauren Scime]]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&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;[[User:Chris Messina|Chris Messina]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;'''connector and advisor'''&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Planners: please see and keep up with the [[#planner_to_do]] section!&lt;br /&gt;
&lt;br /&gt;
=== volunteers ===&lt;br /&gt;
Like all [http://barcamp.org BarCamps], this event is what it is because of what everyone puts into it. Volunteer to help setup, check people in, get them setup with a name badge, clean up, and help people in general have a good time and get things done.&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;Cindy Li&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;designer&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;helping with microformatsDevCamp logo design&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. done!&lt;br /&gt;
** full resolution logo: &amp;lt;span class=&amp;quot;attach&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;http://farm3.static.flickr.com/2460/3726302070_7b834b9443_o.jpg&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
** on Flickr: http://www.flickr.com/photos/cindyli/3726302070/&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;[[User:BeauLebens|Beau Lebens]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;developer&amp;lt;/span&amp;gt;, Automattic, [[http://dentedreality.com.au/ Dented Reality]]. &amp;lt;span class=&lt;br /&gt;
note&amp;quot;&amp;gt;I know my way around the venue, so can help sort out power strips, projectors etc&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== participants ===&lt;br /&gt;
Not sure what is going on but want to design interfaces or build stuff with microformats and want help doing it? Sign up! Add yourself alphabetically sorted by family name. Note your site (with [[hCard]] if you have it), interests/projects, and tag yourself as a web '''author''', '''designer''', '''publisher''', '''developer''', or several.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
==venue==&lt;br /&gt;
Automattic has very graciously agreed to host microformatsDevCamp. The venue has:&lt;br /&gt;
* wifi&lt;br /&gt;
* power. power outlets, extension cords, power strips&lt;br /&gt;
* 4-5 rooms/meeting areas. &lt;br /&gt;
* 3 projectors&lt;br /&gt;
* 1 whiteboard.&lt;br /&gt;
* sink, water.&lt;br /&gt;
&lt;br /&gt;
As Automattic is donating the venue, as participants it is our responsibility to take excellent care of the venue, leaving it as good or better than we found it.&lt;br /&gt;
&lt;br /&gt;
Some amount of camping overnight at the venue will be possible.&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use the following tags when tagging related content (blog posts, photos, videos):&lt;br /&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;'''#ufdevcamp'''&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;ufdevcampsf&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;microformatsDevCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;microformatsDevCampSF&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;BarCamp&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;BarCamp2009&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;Automattic&amp;lt;/span&amp;gt; &lt;br /&gt;
&amp;lt;span class=&amp;quot;category&amp;quot;&amp;gt;The-Embarcadero&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;upcoming:event=2888376&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/kbd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Track:&lt;br /&gt;
* [http://search.twitter.com/search?q=ufdevcamp #ufdevcamp on Twitter Search].&lt;br /&gt;
* [http://identi.ca/tag/ufdevcamp #ufdevcamp] tagspace on identi.ca.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;group&amp;quot;&amp;gt;Groups&amp;lt;/span&amp;gt;:&lt;br /&gt;
* [http://identi.ca/group/microformats !microformats Identi.ca group] (aliases: !mf and !uf). Join and address the whole group. Notices to this group can also be tracked from [http://identi.ca/tag/microformats #microformats]&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
topics discussed:&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== session ideas ==&lt;br /&gt;
Have an idea for a session? Please read &amp;lt;cite&amp;gt;[http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ What is a DevCamp?]&amp;lt;/cite&amp;gt; and then suggest something or add a &amp;quot;+1&amp;quot; to existing suggestions, and sign your suggestion or opinion with your Username with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* '''microformats and user sign-up user interface''' - how can importing and subscribing to hCards help make user sign-up easier and thus get more users signed up quicker? [[User:Tantek|Tantek]]&lt;br /&gt;
* '''using hCard to build a self-updating address book''' - in the search for an address book/contact list that actually stays up to date, hCard may be the key. [[User:Beaulebens|Beau Lebens]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== sessions ==&lt;br /&gt;
Please create a wiki page for any session you lead or attend and link to it from here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== blog posts ==&lt;br /&gt;
Blog posts about the meetup. Newest first.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/07/13/what-is-a-devcamp/ Chris Messina: What is a DevCamp?]&lt;br /&gt;
* ...&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;
microformatsDevCamp is one of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
{{events-related-pages}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== planner to-do ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* I'm free most weekends through till the end of August. --[[User:Pseudowish|Lauren Scime]] 17:20, 10 July 2009 (UTC-7)&lt;br /&gt;
** Please see [[#planner_roles|planner roles]] section and grab 1-2 roles that you want to help out with and add them next to your name in the planners list as Rohit, Chris, Ted, and I have done. --[[User:Tantek|Tantek]] 17:36, 14 July 2009 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== planner roles ===&lt;br /&gt;
We need the following roles and responsibilities to be picked up by planners!&lt;br /&gt;
* '''sponsors''' - for food, t-shirts&lt;br /&gt;
* '''t-shirts''' (get estimate, make sure to order in time for the event, I think Ben Ward may be working on this - check with him)&lt;br /&gt;
* '''food''' - coordinate / match up sponsors with meals and make sure the meals arrive and are setup for the attendees&lt;br /&gt;
* '''setup''' - be in charge of setup the day of, coordinate with venue on setup plenty of time *before* the start of the camp! setup: power cords, power strips, calendar grid for sessions, tables and chairs in rooms/meeting areas, projectors&lt;br /&gt;
* '''volunteer coordinator''' - recruit and organize volunteers the day of the event to help out with food, setup&lt;br /&gt;
* '''cleanup''' - enlist help of volunteers and all devCamp participants to help with cleanup&lt;br /&gt;
&lt;br /&gt;
If you're a planner, please pick up and move one or more of these roles/responsibilities to your name above. Thanks!&lt;br /&gt;
&lt;br /&gt;
===T-shirts===&lt;br /&gt;
* Make design&lt;br /&gt;
* Print&lt;br /&gt;
&lt;br /&gt;
===Sponsors===&lt;br /&gt;
* collecting some donations for microformatsDevCamp at [[events/2009-06-26-microformats-4th-bday]]&lt;br /&gt;
* Figure out rough budget&lt;br /&gt;
* Find sponsors for each item&lt;br /&gt;
&lt;br /&gt;
===Food and drink===&lt;br /&gt;
* Lunch Saturday - sponsored by ____________&lt;br /&gt;
* Dinner Saturday - sponsored by ____________&lt;br /&gt;
* Social Event (Sat. night)? - sponsored by __________&lt;br /&gt;
* Breakfast Sunday - sponsored by __________&lt;br /&gt;
* Lunch Sunday - sponsored by ___________&lt;br /&gt;
* ...&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=spread-microformats&amp;diff=39581</id>
		<title>spread-microformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=spread-microformats&amp;diff=39581"/>
		<updated>2009-07-15T20:39:17Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: Updated logo graphic, added typeface note&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Spread Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Inspired by [http://spreadfirefox.com/ Spread Firefox], this page is for sharing community resources for marketing microformats such as [[buttons]], banners, wallpaper / desktop screens, logo graphics, [[stickers]], t-shirts etc.&lt;br /&gt;
&lt;br /&gt;
== Email ==&lt;br /&gt;
* See [[advocacy-email-samples]] for some sample emails you can copy/customize and send to site owners to encourage them adopt microformats.&lt;br /&gt;
&lt;br /&gt;
== Wallpaper ==&lt;br /&gt;
=== Wallpaper and desktop screens. ===&lt;br /&gt;
* A [http://remiprevost.com/images/wallpapers/microformats/ wallpaper] by [[User:Remi|Rémi Prévost]]&lt;br /&gt;
&lt;br /&gt;
== Logo ==&lt;br /&gt;
&lt;br /&gt;
=== logo text ===&lt;br /&gt;
[http://microformats.org/img/logo.gif http://img.skitch.com/20090715-c3xmikadkj8udt4sq6aqfkqtac.png]&lt;br /&gt;
&lt;br /&gt;
* High-resolution [http://simplebits.com/bits/microformats/microformats-logo.eps EPS] and  [http://simplebits.com/bits/microformats/microformats-logo.png transparent PNG] versions of the microformats logo text by [[User:DanCederholm|Dan Cederholm]].&lt;br /&gt;
* the microformats typeface is [http://new.myfonts.com/fonts/emigre/solex/medium/ Solex] by Emigre.&lt;br /&gt;
&lt;br /&gt;
=== logo mark ===&lt;br /&gt;
* A [http://remiprevost.com/images/wallpapers/microformats/mf-vector.svg SVG] and [http://remiprevost.com/images/wallpapers/microformats/mf-vector.png PNG] (for Fireworks) version of the microformats logo, by [[User:Remi|Rémi Prévost]]&lt;br /&gt;
&lt;br /&gt;
== POSH ==&lt;br /&gt;
* [[posh|POSH]] logos and buttons&lt;br /&gt;
&lt;br /&gt;
== stickers ==&lt;br /&gt;
See the [[stickers]] page to easily order a set of moo microformats stickers!&lt;br /&gt;
&lt;br /&gt;
== T-Shirts ==&lt;br /&gt;
* See [http://flickr.com/photos/tags/microformatstshirt photos of microformats tshirts on Flickr] (the [http://flickr.com/photos/tags/microformatstshirt/clusters/ clusters] are especially fun)&lt;br /&gt;
** Note also [http://pixelsebi.com/2006-10-26/microformats-t-shirt-in-second-life/ microformats t-shirt in Second Life]&lt;br /&gt;
=== do it yourself tshirts ===&lt;br /&gt;
[[User:TheJbf|Burcu Dogan]] has made her own microformats t-shirt:&lt;br /&gt;
&lt;br /&gt;
http://i44.tinypic.com/2s01i1j.jpg&lt;br /&gt;
&lt;br /&gt;
For those who are not able to find a microformats t-shirt, it is possible to make one at home less than an hour. The requirements for such a pressing process are listed below:&lt;br /&gt;
* A high quality microformats logo (which can be found below the '''Logo headline''' on this page)&lt;br /&gt;
* A black t-shirt&lt;br /&gt;
* An iron-on transfer paper for '''dark t-shirts''' (note that printers doesn't print white, so there're special papers to print white on dark)&lt;br /&gt;
* An iron an a hard surface. (Ironing press with a large surface is highly recommended.)&lt;br /&gt;
* A laser printer&lt;br /&gt;
* Sharp and sensitive scissors&lt;br /&gt;
* Non-metalic heat resisting papers&lt;br /&gt;
&lt;br /&gt;
('''Warning:''' Take the instructions on the transfer paper you bought as the first reference, we're not responsible for unsuccessful attempts. Tips about pressing can change from paper to paper.)&lt;br /&gt;
&lt;br /&gt;
Firstly, you need to print the logo on the transfer paper. Transfer papers for dark t-shirts are sticky backed white papers which vary in size. You need to decide which size you want to press on your t-shirt. A4 and A3 are suitable for microformats t-shirts.&lt;br /&gt;
&lt;br /&gt;
Print the logo with a black background. The result of the paper printed should look like this: &lt;br /&gt;
&lt;br /&gt;
http://i40.tinypic.com/2ylqqmb.jpg&lt;br /&gt;
&lt;br /&gt;
(You can, of course decrease, the amount of background area to save ink)&lt;br /&gt;
&lt;br /&gt;
Now it is time to separate logo from the background. Carefully clip the edges and get the logo all alone. White borders should stay with the green layers, don't make a mistake by clipping them out.&lt;br /&gt;
&lt;br /&gt;
Prepare the iron press, you will need the highest temperature with no stream to transfer successfully. Give your press at least 10 minutes to heat fully. While the iron is heating, decide which position your logo should appear. Use a ruler to check if the logo is positioned symmetrically.&lt;br /&gt;
&lt;br /&gt;
http://i41.tinypic.com/2v334pc.png&lt;br /&gt;
&lt;br /&gt;
If your iron press is heated, gently peel the tiny paper on the back of the transfer paper to make it sticky. Place it on the t-shirt and put 1 or 2 non-metalic heat resisting paper of any kind on the logo. Be sure that transfer paper doesn't overlap.&lt;br /&gt;
&lt;br /&gt;
http://i40.tinypic.com/kcl7gk.png&lt;br /&gt;
&lt;br /&gt;
Press the iron for 10-15 seconds. This actually depends on the paper you are using, so it is best to follow the instructions on the iron-on transfer paper you purchased. If necessary repress the iron on the whole surface for 5-10 seconds again. &lt;br /&gt;
&lt;br /&gt;
And, you made a new microformats t-shirt! Don't forget to take a picture and share.&lt;br /&gt;
&lt;br /&gt;
Note that you should hand wash your t-shirt and iron it from back carefully. Don't forget that it is also possible to use another fabrics such as bags to print microformats logos. We're waiting for your creations.&lt;br /&gt;
&lt;br /&gt;
== External online community resources ==&lt;br /&gt;
&lt;br /&gt;
=== Video ===&lt;br /&gt;
* See [http://www.youtube.com/results?search_query=microformats videos of microformats on YouTube] or [http://vimeo.com/groups/microformats Vimeo], in particular, a [http://www.youtube.com/watch?v=UAV4SGpPuQI video of a microformats tshirt] ([http://www.flickr.com/photos/fumi/372068162/ photo]).&lt;br /&gt;
&lt;br /&gt;
===Social networking===&lt;br /&gt;
Groups for fans and advocates of microformats to join or follow:&amp;lt;!--listed alphabetically--&amp;gt;&lt;br /&gt;
* [http://www.facebook.com/group.php?gid=2374732285 Facebook microformats group]&lt;br /&gt;
* [http://flickr.com/groups/microformats/ Flickr microformats group]&lt;br /&gt;
* [http://getsatisfaction.com/microformats microformats on Satisfaction]&lt;br /&gt;
* [http://twitter.com/microformats microformats on Twitter].&lt;br /&gt;
&lt;br /&gt;
=== wiki-communities ===&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats Wikipedia: Project Microformats]&lt;br /&gt;
**[http://ko.wikipedia.org/wiki/%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:%EC%9C%84%ED%82%A4%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8_%EB%A7%88%EC%9D%B4%ED%81%AC%EB%A1%9C%ED%8F%AC%EB%A7%B7 -&amp;quot; - in Korean]&lt;br /&gt;
**[http://zh.wikipedia.org/wiki/Wikipedia:%E5%B0%88%E9%A1%8C/%E5%BE%AE%E6%A0%BC%E5%BC%8F -&amp;quot; - in Chinese]&lt;br /&gt;
* [http://www.usemod.com/cgi-bin/mb.pl?MicroFormats meatball:microformats] -- a first page (stub to be reviewed) dedicated to have any review/opinion from the meatballers especially on the wiki-formats.&lt;br /&gt;
* [http://communitywiki.org/fr/MicroFormats communitywiki:microformats] -- an old multilingual page with a blockcodemachine proposal.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[advocacy]]&lt;br /&gt;
* [[buttons]]&lt;br /&gt;
* [[notable-users|notable users]].&lt;br /&gt;
* [[podcasts]]&lt;br /&gt;
* [[presentations]]&lt;br /&gt;
* [[press]]&lt;br /&gt;
* [[2d_barcodes]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=wiki2&amp;diff=34922</id>
		<title>wiki2</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=wiki2&amp;diff=34922"/>
		<updated>2008-12-02T21:15:44Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: redirect to wiki-2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#redirect:[[wiki-2]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events&amp;diff=34921</id>
		<title>events</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events&amp;diff=34921"/>
		<updated>2008-12-02T19:00:22Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: updated description and URL of weekly meetup&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;entry-title&amp;gt;Microformats related events&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
Please add any microformats events (including events which have sessions on microformats) to this page.&lt;br /&gt;
&lt;br /&gt;
Create a page for each event using the [[events-template|events template]], and list URLs for the event, details, attendees, recommended tags, link to photos afterwards, etc.  Add links to slides and other media to the [[presentations]], [[podcasts]] pages respectively.&lt;br /&gt;
&lt;br /&gt;
Use and encourage the use of microformats on the event sites web pages themselves, e.g. [[hCalendar]] and [[hCard]] for the schedule, speakers, and venues.&lt;br /&gt;
&lt;br /&gt;
== subscribe to or add events to your calendar ==&lt;br /&gt;
&amp;lt;!-- isn't this text redundant? &amp;quot;Subscribe to or add microformats related events to your [[calendar program]]:&amp;quot; --&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Subscribe to '''&amp;lt;nowiki&amp;gt;webcal://feeds.technorati.com/events/microformats.org&amp;lt;/nowiki&amp;gt;''' || '''[http://technorati.com/events/microformats.org/ Add home page events]'''&lt;br /&gt;
|-&lt;br /&gt;
| Subscribe to '''&amp;lt;nowiki&amp;gt;webcal://feeds.technorati.com/events/microformats.org/wiki/events&amp;lt;/nowiki&amp;gt;''' || '''[http://feeds.technorati.com/events/microformats.org/wiki/events Add events page events]'''&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- uncomment to use. keep commented out when not in use to not waste above fold space on page --&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==Current==&lt;br /&gt;
Events in progress:&lt;br /&gt;
* none.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Upcoming ==&lt;br /&gt;
&amp;lt;!-- Please try to keep to neutral tense (e.g &amp;quot;Bill Smith on microformats&amp;quot;). Include as many details about the event as possible, including precise start end times, room number, etc. Move details to the (events/..) wiki page for the event itself. Include the information here to start with with hCalendar markup. Thank you. &lt;br /&gt;
&lt;br /&gt;
templates:&lt;br /&gt;
&lt;br /&gt;
one day event:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;event-location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit.&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
multiple day event (note dtend &amp;quot;title&amp;quot; value must be 1 day after inline text value, per iCalendar dtend handling).&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;YYYY-MM-DD&amp;quot;&amp;gt;DD&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;event-location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Lorem ipsum dolor sit amet.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Please change to past tense, and reverse the date-order, when moving events to the Recent section.--&amp;gt; &lt;br /&gt;
Soonest first:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-12-02&amp;lt;/span&amp;gt; at 6:00pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-12-02-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Axis Cafe, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Small meetup prior to the [http://upcoming.yahoo.com/event/1388934/ Cog Sci Happy Hour] to discuss microformats and follow up on prior conversations about activity streams, verbs and the like.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1405273&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Recent ==&lt;br /&gt;
Most recent first:&amp;lt;!-- Please change to past tense, and reverse the date-order, when moving events to the Recent section.--&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== November ===&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-25&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-11-25-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/4308252/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-25&amp;lt;/span&amp;gt; at 7:00pm: &amp;lt;span class=&amp;quot;summary url&amp;quot;&amp;gt;[http://upcoming.yahoo.com/event/1292635/ Experiments in Data Portability].&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt; Will cover portable social networks and building API's with microformats and OAuth,&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt; Lighthouse, Brighton, UK &amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-18&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-11-18-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Pancho Villa in the Mission, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/4219544/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-12&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformats panel at InterLab conference&amp;lt;/span&amp;gt; with [[User:RyanKing|Ryan King]] and [[User:BenWard|Ben Ward]]. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.sandia.gov/interlab/2008/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-18&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformats: What are they and why should you use them? presentation at [http://refreshaugusta.com/ RefreshAugusta]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;PowerServe, Augusta, Georgia&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1337777&amp;lt;/span&amp;gt; , &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://cdharrison.com/presentations/microformats/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-11&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-11-11-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Crepevine in Churma, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/4144593/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== October ===&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-29&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-29-pdc| Microsoft Professional Developers Conference; Session on Oomph: A Microformats Toolkit]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;LA Convention Center&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-28&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-28-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3967322/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-21&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-21-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Mehfil, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3897133/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-21&amp;lt;/span&amp;gt; at 4pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-21-activity-streams-meetup|Activity Streams Meetup]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Citizen Space, 425 2nd St, Suite 300, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Meeting to discuss further developing the DISo Action/Activity Stream project.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://wiki.diso-project.org/2008-10-21-activity-streams-meetup&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-20&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-20-sfmusictech| San Francisco MusicTech Summit - OpenAPI/microformats panel ]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Hotel Kabuki, San Francisco&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-14&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-14-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Taylor's Automatic Refresher, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/BenWard/notes/3815026/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== September ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-30&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-30-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Naan &amp;amp; Chutney&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;Haight Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt; &amp;lt;abbr class=&amp;quot;region&amp;quot; title=&amp;quot;California&amp;quot;&amp;gt;CA&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/BenWard/notes/3641220/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-23&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-23-sf-weekly-meetup-lunch| San Francisco microformats weekly meetup lunch]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;South Park, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3558467/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-16&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-16-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3490625/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-09&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-09-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Metreon Food Court, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-09&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-09-london-meetup-dinner| London microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;The Princess, 76 Paul Street, London&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3402832/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-06&amp;lt;/span&amp;gt;...&amp;lt;abbr class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-09-08&amp;quot;&amp;gt;07&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-06-barcampbrighton3|BarCampBrighton3]]&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Brighton, England&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/827424/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-05-dconstruct-social-network-portability|dConstruct 2008: Social Network Portability]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.dconstruct.org/schedule/TantekCelik.php#talk&amp;lt;/span&amp;gt;) at [http://2008.dconstruct.org/ dConstruct 2008] in &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Brighton, England&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-02&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-02-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Blondie's Pizza (downstairs), 63 Powell St, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-02&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-02-london-meetup-dinner| London microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Wagamama, 4 Streatham Street WC1A 1JB, London, England&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3321021/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== August ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-26&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-26-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3246636/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-19&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-19-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Westfield Food Court, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3158268/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-19&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-19-better-user-experience|An Event Apart San Francisco - Better User Experience Through Microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;The Palace Hotel, San Francisco&amp;lt;/span&amp;gt;.&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-16&amp;lt;span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-16-wordcamp|WordCamp 2008: WordPress and Microformats: Past, Present, Future]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Mission Bay Conference Center at UCSF&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.sf.wordcamp.org/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-12&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-12-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Pancho Villa, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3093392/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-05-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Brickhouse Cafe, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3020919/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== July ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-29&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-29-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Chevy's, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2939127/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-22&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-22-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Chaat Cafe, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2872631/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-15&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-15-weekly-meetup-lunch| microformats weekly meetup lunch]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;South Park, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2716633/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-08&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-08-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Westfield Food Court, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2707066/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-05-opentech-publishing-with-microformats| Publishing With Microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Open Tech 2008, London, UK&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-01&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-01-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Crepes on Cole, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2627529/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== June ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-24&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-06-24-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Chaat Cafe, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2558970/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-20&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-06-20-3rd-bday-dinner-sf| microformats happy 3rd bday dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Westfield Food Court, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2533568/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-17&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Supernova 2008 [http://www.socialtext.net/openflow/ Open Flow track]&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;San Francisco, CA&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-17&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-06-17-LinkedData-Planet| LinkedData Planet Spring 2008]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Roosevelt Hotel, New York City, United States&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;&amp;quot;Web of Data&amp;quot; keynote presentation by W3C Director '''Sir Tim Berners-Lee'''&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.linkeddataplanet.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== May ===&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-27&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-london-microformats-vevent|London Microformats vEvent]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;The Yorkshire Grey&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;part of London Web Week&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-13&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-05-13-webstock-workshop| Webstock Microformats Workshop in Christchurch]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Millenium Hotel, Christchurch, New Zealand&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a workshop with Tantek Çelik&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/603905&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-09&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-05-09-webstock-workshop| Webstock Microformats Workshop in Wellington]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Wellington Town Hall, Wellington, New Zealand&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a workshop with Tantek Çelik&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/603769&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-08&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-05-08-xtech|Creating portable social networks with microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;XTech 2008 in Dublin&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a presentation by Jeremy Keith&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== April ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-04-18&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-04-18-fowd|Microformats — Building blocks 'for a beautiful web']]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;FOWD 2008 in London&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a workshop by Andy Clarke&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-04-14&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-04-14-openweb|Microformats with Ryan King et al]]&amp;lt;/span&amp;gt;  at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Open Web Vancouver 2008 in Canada&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;incl. (Open)Social(Web)Camp (Un)conference&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-04-01&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-04-01-san-diego-web-standards-group|Microformwhats?]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;San Diego Web Standards Group&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;A couple of 20-30 minute presentations, time to connect with fellow tag warriors and perhaps some good beer.&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.sdwebstandards.com/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== March ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-28&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-28-san-diego-dinner|San Diego microformats dinner meetup]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;TBD, San Diego, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Tantek and Jeremy were in San Diego and met local microformatters for dinner.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.com/wiki/events/2008-03-28-san-diego-dinner&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-07&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-03-12&amp;quot;&amp;gt;11&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-07-sxsw-interactive|SXSW Interactive]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Austin, TX&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.sxsw.com/interactive&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-10&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-10-sxsw-building-blocks|SXSW Interactive - Microformats Building Blocks]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Austin, TX&amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-10&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-10-sxsw-portability-panel|Building Portable Social Networks]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;South By Southwest Interactive 2008&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Thoughts, techniques and technologies that will allow your identity and your contacts to flow freely between social networking sites&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/450703/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-10&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-10-sxsw-admins-meetup|SXSW microformats admins meetup]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Las Manitas, Congress Ave., Austin, TX&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-03&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-03-05&amp;quot;&amp;gt;04&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-03-Blogtalk-2008-cork|Mashups, Microformats and the Mobile Web]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Cork, Ireland&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Invited panel discussion at Blogtalk 2008, Cork, Ireland.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.blogtalk.net/invitedspeakers&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== February ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-29&amp;lt;/span&amp;gt; 11:15-11:55am: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-02-29-fowa-miami-social-networks|FOWA Miami Future of Social Networks]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Knight Concert Hall, Carnival Center, Miami, Florida&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The Future of Social Networks session&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.futureofwebapps.com/2008/miami/schedule.php#hcalendar-Presentation-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-28&amp;lt;/span&amp;gt; 9am-12:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-02-28-fowa-miami-workshop|FOWA Miami Microformats Workshop]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Knight Concert Hall, Carnival Center, Miami, Florida&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Introduction to Microformats workshop&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.futureofwebapps.com/2008/miami/workshops.php#jumper01&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-16&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-02-18&amp;quot;&amp;gt;17&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary url&amp;quot;&amp;gt;[[events/2008-02-16-semanticcamplondon|SemanticCampLondon]]&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;London, England&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;A BarCamp specifically addressing Semantic Web related technologies.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;[http://semanticcamp.tommorris.org/ SemanticCampLondon]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-01&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-02-04&amp;quot;&amp;gt;03&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-02-01-sgfoocamp|sgfoocamp08]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Sebastopol, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;A FooCamp focusing on [[social network portability]].&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://sgfoocamp08.pbwiki.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== January ===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-31&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-30-geekdinner|microformats geek dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;An impromptu gathering of geeks.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/1276197/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-15T13:00:00-0500&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-15-hresume-webinar|hResume Webinar]]&amp;lt;/span&amp;gt; on-line at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;gotowebinar.com&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;[http://theryanking.com/ Ryan King] on [[hResume]], with the HR-XML crowd.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2008-01-15-hresume-webinar&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-15&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-15-barcamp-psi|'BarCamp' on the Power of Information Review Recommendation 8]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;London, England&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;&amp;quot;To improve [UK] government's responsiveness to demand for public sector information, by July 2008 OPSI should create a web-based channel to gather and assess requests for publication of public sector information.&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-05&amp;lt;/span&amp;gt;&amp;amp;ndash;2008-01-06: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-05-codefest2008-microformats|CodeFest on Microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Montréal, Canada&amp;lt;/span&amp;gt; and online at &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://wiki.facil.qc.ca/CodeFest2008&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Adding microformats to several open source projects&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==2007==&lt;br /&gt;
See [[events-2007]]&lt;br /&gt;
&lt;br /&gt;
==2006==&lt;br /&gt;
See  [[events-2006]]&lt;br /&gt;
&lt;br /&gt;
== Other languages ==&lt;br /&gt;
* &amp;lt;span lang=&amp;quot;fr&amp;quot;&amp;gt;[[current_events-fr|événements en cours]] (fr)&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Quicktime Broadcaster Notes ==&lt;br /&gt;
&lt;br /&gt;
See [[quicktime]]&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
{{events-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=meetup&amp;diff=34920</id>
		<title>meetup</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=meetup&amp;diff=34920"/>
		<updated>2008-12-02T18:58:43Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added axis and sugar cafes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&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;
* ...&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;
* ...&lt;br /&gt;
&lt;br /&gt;
Past SF venues. We'll reuse these at some point I'm sure.&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;
&lt;br /&gt;
== Other Cities ==&lt;br /&gt;
I encourage folks to organize meetup dinners wherever there is sufficient local critical mass.  Once you start 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;
* San Diego - [[User:EdwardOConnor]]&lt;br /&gt;
* San Jose (South Bay) - [[User:Kevin_Marks]], Rohit Khare&lt;br /&gt;
* Montreal - [[User:Csarven]]&lt;br /&gt;
&lt;br /&gt;
== Organize a weekly meetup ==&lt;br /&gt;
Anyone can organize a microformats weekly meetup!&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 event pages&lt;br /&gt;
#* Create specific event page on microformats.org wiki.&lt;br /&gt;
#** Edit the [[events]] page and copy/paste the previous week's weekly meetup event, updating the date and location and commenting out the URLs.&lt;br /&gt;
#** Click on the previous weekly meetup event link, edit, select all, copy all the source, go back back.&lt;br /&gt;
#** Click on the (currently red) new weekly meetup event link, paste, and make the following edits:&lt;br /&gt;
#*** update all the URLs &lt;br /&gt;
#*** update all the dates&lt;br /&gt;
#*** comment out the ;Web section in details section&lt;br /&gt;
#*** clear out past attendees, photos, notes&lt;br /&gt;
#*** update the location specific tags, remove the previous upcoming event tag &lt;br /&gt;
#* Copy that specific event page URL and&lt;br /&gt;
#* Create a public [http://pownce.com Pownce] event with that wiki URL&lt;br /&gt;
#** what's happening?  microformats weekly meetup dinner!&lt;br /&gt;
#** where? that location you chose&lt;br /&gt;
#** 6:30 PM on ....&lt;br /&gt;
#* Create an [http://upcoming.org upcoming] event with wiki + Pownce URLs&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;
#* RSVP to the public Pownce event with &amp;quot;attending&amp;quot; and add the upcoming URL.&lt;br /&gt;
#* Update the microformats wiki event page with Pownce and upcoming URLs, and upcoming: event specific tag&lt;br /&gt;
#* Update the microformats wiki [[events]] page with the Pownce URL&lt;br /&gt;
# Announce it&lt;br /&gt;
#* [http://twitter.com/ Tweet] the Pownce event&lt;br /&gt;
#* Add the upcoming event to various groups, add tags to it.&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;
#* Afterwards post a thank you note thanking those that attended.&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>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events&amp;diff=34901</id>
		<title>events</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events&amp;diff=34901"/>
		<updated>2008-12-02T03:01:43Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added SF weekly meetup; moved older events&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;entry-title&amp;gt;Microformats related events&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
Please add any microformats events (including events which have sessions on microformats) to this page.&lt;br /&gt;
&lt;br /&gt;
Create a page for each event using the [[events-template|events template]], and list URLs for the event, details, attendees, recommended tags, link to photos afterwards, etc.  Add links to slides and other media to the [[presentations]], [[podcasts]] pages respectively.&lt;br /&gt;
&lt;br /&gt;
Use and encourage the use of microformats on the event sites web pages themselves, e.g. [[hCalendar]] and [[hCard]] for the schedule, speakers, and venues.&lt;br /&gt;
&lt;br /&gt;
== subscribe to or add events to your calendar ==&lt;br /&gt;
&amp;lt;!-- isn't this text redundant? &amp;quot;Subscribe to or add microformats related events to your [[calendar program]]:&amp;quot; --&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Subscribe to '''&amp;lt;nowiki&amp;gt;webcal://feeds.technorati.com/events/microformats.org&amp;lt;/nowiki&amp;gt;''' || '''[http://technorati.com/events/microformats.org/ Add home page events]'''&lt;br /&gt;
|-&lt;br /&gt;
| Subscribe to '''&amp;lt;nowiki&amp;gt;webcal://feeds.technorati.com/events/microformats.org/wiki/events&amp;lt;/nowiki&amp;gt;''' || '''[http://feeds.technorati.com/events/microformats.org/wiki/events Add events page events]'''&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- uncomment to use. keep commented out when not in use to not waste above fold space on page --&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==Current==&lt;br /&gt;
Events in progress:&lt;br /&gt;
* none.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Upcoming ==&lt;br /&gt;
&amp;lt;!-- Please try to keep to neutral tense (e.g &amp;quot;Bill Smith on microformats&amp;quot;). Include as many details about the event as possible, including precise start end times, room number, etc. Move details to the (events/..) wiki page for the event itself. Include the information here to start with with hCalendar markup. Thank you. &lt;br /&gt;
&lt;br /&gt;
templates:&lt;br /&gt;
&lt;br /&gt;
one day event:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;event-location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit.&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
multiple day event (note dtend &amp;quot;title&amp;quot; value must be 1 day after inline text value, per iCalendar dtend handling).&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;YYYY-MM-DD&amp;quot;&amp;gt;DD&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;event-location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Lorem ipsum dolor sit amet.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Please change to past tense, and reverse the date-order, when moving events to the Recent section.--&amp;gt; &lt;br /&gt;
Soonest first:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-12-02&amp;lt;/span&amp;gt; at 6:00pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-12-02-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Axis Cafe, San Francisco&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Recent ==&lt;br /&gt;
Most recent first:&amp;lt;!-- Please change to past tense, and reverse the date-order, when moving events to the Recent section.--&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== November ===&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-25&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-11-25-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/4308252/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-25&amp;lt;/span&amp;gt; at 7:00pm: &amp;lt;span class=&amp;quot;summary url&amp;quot;&amp;gt;[http://upcoming.yahoo.com/event/1292635/ Experiments in Data Portability].&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt; Will cover portable social networks and building API's with microformats and OAuth,&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt; Lighthouse, Brighton, UK &amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-18&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-11-18-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Pancho Villa in the Mission, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/4219544/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-12&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformats panel at InterLab conference&amp;lt;/span&amp;gt; with [[User:RyanKing|Ryan King]] and [[User:BenWard|Ben Ward]]. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.sandia.gov/interlab/2008/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-18&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;microformats: What are they and why should you use them? presentation at [http://refreshaugusta.com/ RefreshAugusta]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;PowerServe, Augusta, Georgia&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/1337777&amp;lt;/span&amp;gt; , &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://cdharrison.com/presentations/microformats/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-11-11&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-11-11-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Crepevine in Churma, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/4144593/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== October ===&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-29&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-29-pdc| Microsoft Professional Developers Conference; Session on Oomph: A Microformats Toolkit]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;LA Convention Center&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-28&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-28-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3967322/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-21&amp;lt;/span&amp;gt; at 6:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-21-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Mehfil, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3897133/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-21&amp;lt;/span&amp;gt; at 4pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-21-activity-streams-meetup|Activity Streams Meetup]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Citizen Space, 425 2nd St, Suite 300, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Meeting to discuss further developing the DISo Action/Activity Stream project.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://wiki.diso-project.org/2008-10-21-activity-streams-meetup&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-20&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-20-sfmusictech| San Francisco MusicTech Summit - OpenAPI/microformats panel ]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Hotel Kabuki, San Francisco&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-14&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-14-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Taylor's Automatic Refresher, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/BenWard/notes/3815026/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== September ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-30&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-30-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Naan &amp;amp; Chutney&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;Haight Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt; &amp;lt;abbr class=&amp;quot;region&amp;quot; title=&amp;quot;California&amp;quot;&amp;gt;CA&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/BenWard/notes/3641220/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-23&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-23-sf-weekly-meetup-lunch| San Francisco microformats weekly meetup lunch]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;South Park, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3558467/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-16&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-16-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3490625/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-09&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-09-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Metreon Food Court, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-09&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-09-london-meetup-dinner| London microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;The Princess, 76 Paul Street, London&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3402832/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-06&amp;lt;/span&amp;gt;...&amp;lt;abbr class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-09-08&amp;quot;&amp;gt;07&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-06-barcampbrighton3|BarCampBrighton3]]&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Brighton, England&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/827424/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-05-dconstruct-social-network-portability|dConstruct 2008: Social Network Portability]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.dconstruct.org/schedule/TantekCelik.php#talk&amp;lt;/span&amp;gt;) at [http://2008.dconstruct.org/ dConstruct 2008] in &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Brighton, England&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-02&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-02-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Blondie's Pizza (downstairs), 63 Powell St, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-02&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-02-london-meetup-dinner| London microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Wagamama, 4 Streatham Street WC1A 1JB, London, England&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3321021/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== August ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-26&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-26-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3246636/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-19&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-19-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Westfield Food Court, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3158268/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-19&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-19-better-user-experience|An Event Apart San Francisco - Better User Experience Through Microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;The Palace Hotel, San Francisco&amp;lt;/span&amp;gt;.&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-16&amp;lt;span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-16-wordcamp|WordCamp 2008: WordPress and Microformats: Past, Present, Future]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Mission Bay Conference Center at UCSF&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.sf.wordcamp.org/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-12&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-12-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Pancho Villa, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3093392/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-05-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Brickhouse Cafe, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3020919/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== July ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-29&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-29-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Chevy's, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2939127/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-22&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-22-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Chaat Cafe, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2872631/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-15&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-15-weekly-meetup-lunch| microformats weekly meetup lunch]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;South Park, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2716633/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-08&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-08-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Westfield Food Court, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2707066/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-05-opentech-publishing-with-microformats| Publishing With Microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Open Tech 2008, London, UK&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-01&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-01-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Crepes on Cole, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2627529/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== June ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-24&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-06-24-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Chaat Cafe, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2558970/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-20&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-06-20-3rd-bday-dinner-sf| microformats happy 3rd bday dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Westfield Food Court, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2533568/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-17&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Supernova 2008 [http://www.socialtext.net/openflow/ Open Flow track]&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;San Francisco, CA&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-17&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-06-17-LinkedData-Planet| LinkedData Planet Spring 2008]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Roosevelt Hotel, New York City, United States&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;&amp;quot;Web of Data&amp;quot; keynote presentation by W3C Director '''Sir Tim Berners-Lee'''&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.linkeddataplanet.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== May ===&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-27&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-london-microformats-vevent|London Microformats vEvent]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;The Yorkshire Grey&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;part of London Web Week&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-13&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-05-13-webstock-workshop| Webstock Microformats Workshop in Christchurch]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Millenium Hotel, Christchurch, New Zealand&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a workshop with Tantek Çelik&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/603905&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-09&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-05-09-webstock-workshop| Webstock Microformats Workshop in Wellington]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Wellington Town Hall, Wellington, New Zealand&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a workshop with Tantek Çelik&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/603769&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-08&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-05-08-xtech|Creating portable social networks with microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;XTech 2008 in Dublin&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a presentation by Jeremy Keith&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== April ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-04-18&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-04-18-fowd|Microformats — Building blocks 'for a beautiful web']]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;FOWD 2008 in London&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a workshop by Andy Clarke&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-04-14&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-04-14-openweb|Microformats with Ryan King et al]]&amp;lt;/span&amp;gt;  at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Open Web Vancouver 2008 in Canada&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;incl. (Open)Social(Web)Camp (Un)conference&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-04-01&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-04-01-san-diego-web-standards-group|Microformwhats?]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;San Diego Web Standards Group&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;A couple of 20-30 minute presentations, time to connect with fellow tag warriors and perhaps some good beer.&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.sdwebstandards.com/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== March ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-28&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-28-san-diego-dinner|San Diego microformats dinner meetup]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;TBD, San Diego, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Tantek and Jeremy were in San Diego and met local microformatters for dinner.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.com/wiki/events/2008-03-28-san-diego-dinner&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-07&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-03-12&amp;quot;&amp;gt;11&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-07-sxsw-interactive|SXSW Interactive]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Austin, TX&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.sxsw.com/interactive&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-10&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-10-sxsw-building-blocks|SXSW Interactive - Microformats Building Blocks]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Austin, TX&amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-10&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-10-sxsw-portability-panel|Building Portable Social Networks]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;South By Southwest Interactive 2008&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Thoughts, techniques and technologies that will allow your identity and your contacts to flow freely between social networking sites&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/450703/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-10&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-10-sxsw-admins-meetup|SXSW microformats admins meetup]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Las Manitas, Congress Ave., Austin, TX&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-03&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-03-05&amp;quot;&amp;gt;04&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-03-Blogtalk-2008-cork|Mashups, Microformats and the Mobile Web]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Cork, Ireland&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Invited panel discussion at Blogtalk 2008, Cork, Ireland.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.blogtalk.net/invitedspeakers&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== February ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-29&amp;lt;/span&amp;gt; 11:15-11:55am: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-02-29-fowa-miami-social-networks|FOWA Miami Future of Social Networks]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Knight Concert Hall, Carnival Center, Miami, Florida&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The Future of Social Networks session&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.futureofwebapps.com/2008/miami/schedule.php#hcalendar-Presentation-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-28&amp;lt;/span&amp;gt; 9am-12:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-02-28-fowa-miami-workshop|FOWA Miami Microformats Workshop]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Knight Concert Hall, Carnival Center, Miami, Florida&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Introduction to Microformats workshop&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.futureofwebapps.com/2008/miami/workshops.php#jumper01&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-16&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-02-18&amp;quot;&amp;gt;17&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary url&amp;quot;&amp;gt;[[events/2008-02-16-semanticcamplondon|SemanticCampLondon]]&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;London, England&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;A BarCamp specifically addressing Semantic Web related technologies.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;[http://semanticcamp.tommorris.org/ SemanticCampLondon]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-01&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-02-04&amp;quot;&amp;gt;03&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-02-01-sgfoocamp|sgfoocamp08]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Sebastopol, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;A FooCamp focusing on [[social network portability]].&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://sgfoocamp08.pbwiki.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== January ===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-31&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-30-geekdinner|microformats geek dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;An impromptu gathering of geeks.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/1276197/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-15T13:00:00-0500&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-15-hresume-webinar|hResume Webinar]]&amp;lt;/span&amp;gt; on-line at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;gotowebinar.com&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;[http://theryanking.com/ Ryan King] on [[hResume]], with the HR-XML crowd.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2008-01-15-hresume-webinar&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-15&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-15-barcamp-psi|'BarCamp' on the Power of Information Review Recommendation 8]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;London, England&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;&amp;quot;To improve [UK] government's responsiveness to demand for public sector information, by July 2008 OPSI should create a web-based channel to gather and assess requests for publication of public sector information.&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-05&amp;lt;/span&amp;gt;&amp;amp;ndash;2008-01-06: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-05-codefest2008-microformats|CodeFest on Microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Montréal, Canada&amp;lt;/span&amp;gt; and online at &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://wiki.facil.qc.ca/CodeFest2008&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Adding microformats to several open source projects&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==2007==&lt;br /&gt;
See [[events-2007]]&lt;br /&gt;
&lt;br /&gt;
==2006==&lt;br /&gt;
See  [[events-2006]]&lt;br /&gt;
&lt;br /&gt;
== Other languages ==&lt;br /&gt;
* &amp;lt;span lang=&amp;quot;fr&amp;quot;&amp;gt;[[current_events-fr|événements en cours]] (fr)&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Quicktime Broadcaster Notes ==&lt;br /&gt;
&lt;br /&gt;
See [[quicktime]]&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
{{events-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events&amp;diff=29841</id>
		<title>events</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events&amp;diff=29841"/>
		<updated>2008-10-20T18:05:11Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: add activity streams meetup&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;h1&amp;gt;Microformats related events&amp;lt;/h1&amp;gt;&lt;br /&gt;
Please add any microformats events (including events which have sessions on microformats) to this page.&lt;br /&gt;
&lt;br /&gt;
Create a page for each event using the [[events-template|events template]], and list URLs for the event, details, attendees, recommended tags, link to photos afterwards, etc.  Add links to slides and other media to the [[presentations]], [[podcasts]] pages respectively.&lt;br /&gt;
&lt;br /&gt;
Use and encourage the use of microformats on the event sites web pages themselves, e.g. [[hCalendar]] and [[hCard]] for the schedule, speakers, and venues.&lt;br /&gt;
&lt;br /&gt;
== subscribe to or add events to your calendar ==&lt;br /&gt;
&amp;lt;!-- isn't this text redundant? &amp;quot;Subscribe to or add microformats related events to your [[calendar program]]:&amp;quot; --&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Subscribe to '''&amp;lt;nowiki&amp;gt;webcal://feeds.technorati.com/events/microformats.org&amp;lt;/nowiki&amp;gt;''' || '''[http://technorati.com/events/microformats.org/ Add home page events]'''&lt;br /&gt;
|-&lt;br /&gt;
| Subscribe to '''&amp;lt;nowiki&amp;gt;webcal://feeds.technorati.com/events/microformats.org/wiki/events&amp;lt;/nowiki&amp;gt;''' || '''[http://feeds.technorati.com/events/microformats.org/wiki/events Add events page events]'''&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- uncomment to use. keep commented out when not in use to not waste above fold space on page --&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==Current==&lt;br /&gt;
Events in progress:&lt;br /&gt;
* none.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== Upcoming ==&lt;br /&gt;
&amp;lt;!-- Please try to keep to neutral tense (e.g &amp;quot;Bill Smith on microformats&amp;quot;). Include as many details about the event as possible, including precise start end times, room number, etc. Move details to the (events/..) wiki page for the event itself. Include the information here to start with with hCalendar markup. Thank you. &lt;br /&gt;
&lt;br /&gt;
templates:&lt;br /&gt;
&lt;br /&gt;
one day event:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;event-location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit.&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
multiple day event (note dtend &amp;quot;title&amp;quot; value must be 1 day after inline text value, per iCalendar dtend handling).&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;YYYY-MM-DD&amp;quot;&amp;gt;DD&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/YYYY-MM-DD-event-session-title|Event Session Title]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;event-location&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Lorem ipsum dolor sit amet.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://example.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Please change to past tense, and reverse the date-order, when moving events to the Recent section.--&amp;gt; &lt;br /&gt;
Soonest first:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-21&amp;lt;/span&amp;gt; at 4pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-21-activity-streams-meetup|Activity Streams Meetup]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Citizen Space, 425 2nd St, Suite 300, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Meeting to discuss further developing the DISo Action/Activity Stream project.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://wiki.diso-project.org/2008-10-21-activity-streams-meetup&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* [http://semanticcamp.wordpress.com Vancouver Semantic(Web)Camp 2008], British Columbia (B.C.), Canada - Fall 2008 - Free One Day Unconference about Microformats et al&lt;br /&gt;
&lt;br /&gt;
== Recent ==&lt;br /&gt;
Most recent first:&amp;lt;!-- Please change to past tense, and reverse the date-order, when moving events to the Recent section.--&amp;gt; &lt;br /&gt;
&lt;br /&gt;
=== October ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-10-14&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-10-14-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Chow on Church, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/BenWard/notes/3814449/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== September ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-30&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-30-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Naan &amp;amp; Chutney&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;Haight Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt; &amp;lt;abbr class=&amp;quot;region&amp;quot; title=&amp;quot;California&amp;quot;&amp;gt;CA&amp;lt;/abbr&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/BenWard/notes/3641220/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-23&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-23-sf-weekly-meetup-lunch| San Francisco microformats weekly meetup lunch]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;South Park, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3558467/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-16&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-16-sf-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3490625/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-09&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-09-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Metreon Food Court, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-09&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-09-london-meetup-dinner| London microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;The Princess, 76 Paul Street, London&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3402832/&amp;lt;/span&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-06&amp;lt;/span&amp;gt;...&amp;lt;abbr class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-09-08&amp;quot;&amp;gt;07&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-06-barcampbrighton3|BarCampBrighton3]]&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Brighton, England&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/827424/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-05-dconstruct-social-network-portability|dConstruct 2008: Social Network Portability]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.dconstruct.org/schedule/TantekCelik.php#talk&amp;lt;/span&amp;gt;) at [http://2008.dconstruct.org/ dConstruct 2008] in &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Brighton, England&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-02&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-02-weekly-meetup-dinner| San Francisco microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Blondie's Pizza (downstairs), 63 Powell St, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-09-02&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-09-02-london-meetup-dinner| London microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Wagamama, 4 Streatham Street WC1A 1JB, London, England&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3321021/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== August ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-26&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-26-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;21st Amendment, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3246636/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-19&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-19-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Westfield Food Court, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3158268/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-19&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-19-better-user-experience|An Event Apart San Francisco - Better User Experience Through Microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;The Palace Hotel, San Francisco&amp;lt;/span&amp;gt;.&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-16&amp;lt;span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-16-wordcamp|WordCamp 2008: WordPress and Microformats: Past, Present, Future]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Mission Bay Conference Center at UCSF&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.sf.wordcamp.org/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-12&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-12-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Pancho Villa, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3093392/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-08-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-08-05-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Brickhouse Cafe, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/3020919/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== July ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-29&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-29-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Chevy's, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2939127/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-22&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-22-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Chaat Cafe, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2872631/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-15&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-15-weekly-meetup-lunch| microformats weekly meetup lunch]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;South Park, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2716633/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-08&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-08-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Westfield Food Court, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2707066/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-05-opentech-publishing-with-microformats| Publishing With Microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Open Tech 2008, London, UK&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-01&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-07-01-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Crepes on Cole, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2627529/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== June ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-24&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-06-24-weekly-meetup-dinner| microformats weekly meetup dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Chaat Cafe, San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2558970/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-20&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-06-20-3rd-bday-dinner-sf| microformats happy 3rd bday dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Westfield Food Court, San Francisco&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2533568/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-17&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Supernova 2008 [http://www.socialtext.net/openflow/ Open Flow track]&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;San Francisco, CA&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-06-17&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-06-17-LinkedData-Planet| LinkedData Planet Spring 2008]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Roosevelt Hotel, New York City, United States&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;&amp;quot;Web of Data&amp;quot; keynote presentation by W3C Director '''Sir Tim Berners-Lee'''&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.linkeddataplanet.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== May ===&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-27&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-london-microformats-vevent|London Microformats vEvent]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;The Yorkshire Grey&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;part of London Web Week&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-13&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-05-13-webstock-workshop| Webstock Microformats Workshop in Christchurch]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Millenium Hotel, Christchurch, New Zealand&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a workshop with Tantek Çelik&amp;lt;/span&amp;gt;.&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/603905&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-09&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-05-09-webstock-workshop| Webstock Microformats Workshop in Wellington]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Wellington Town Hall, Wellington, New Zealand&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a workshop with Tantek Çelik&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/603769&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-05-08&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-05-08-xtech|Creating portable social networks with microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;XTech 2008 in Dublin&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a presentation by Jeremy Keith&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== April ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-04-18&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-04-18-fowd|Microformats — Building blocks 'for a beautiful web']]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;FOWD 2008 in London&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a workshop by Andy Clarke&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-04-14&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-04-14-openweb|Microformats with Ryan King et al]]&amp;lt;/span&amp;gt;  at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Open Web Vancouver 2008 in Canada&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;incl. (Open)Social(Web)Camp (Un)conference&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-04-01&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-04-01-san-diego-web-standards-group|Microformwhats?]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;San Diego Web Standards Group&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;A couple of 20-30 minute presentations, time to connect with fellow tag warriors and perhaps some good beer.&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.sdwebstandards.com/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== March ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-28&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-28-san-diego-dinner|San Diego microformats dinner meetup]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;TBD, San Diego, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Tantek and Jeremy were in San Diego and met local microformatters for dinner.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.com/wiki/events/2008-03-28-san-diego-dinner&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-07&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-03-12&amp;quot;&amp;gt;11&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-07-sxsw-interactive|SXSW Interactive]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Austin, TX&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.sxsw.com/interactive&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-10&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-10-sxsw-building-blocks|SXSW Interactive - Microformats Building Blocks]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Austin, TX&amp;lt;/span&amp;gt;. &amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-10&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-10-sxsw-portability-panel|Building Portable Social Networks]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;South By Southwest Interactive 2008&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Thoughts, techniques and technologies that will allow your identity and your contacts to flow freely between social networking sites&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/450703/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
**&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-10&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-10-sxsw-admins-meetup|SXSW microformats admins meetup]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Las Manitas, Congress Ave., Austin, TX&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-03-03&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-03-05&amp;quot;&amp;gt;04&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-03-03-Blogtalk-2008-cork|Mashups, Microformats and the Mobile Web]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Cork, Ireland&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Invited panel discussion at Blogtalk 2008, Cork, Ireland.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2008.blogtalk.net/invitedspeakers&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== February ===&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-29&amp;lt;/span&amp;gt; 11:15-11:55am: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-02-29-fowa-miami-social-networks|FOWA Miami Future of Social Networks]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Knight Concert Hall, Carnival Centre, Miami, Florida&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The Future of Social Networks session&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.futureofwebapps.com/2008/miami/schedule.php#hcalendar-Presentation-3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-28&amp;lt;/span&amp;gt; 9am-12:30pm: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-02-28-fowa-miami-workshop|FOWA Miami Microformats Workshop]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Knight Concert Hall, Carnival Centre, Miami, Florida&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Introduction to Microformats workshop&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.futureofwebapps.com/2008/miami/workshops.php#jumper01&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-16&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-02-18&amp;quot;&amp;gt;17&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary url&amp;quot;&amp;gt;[[events/2008-02-16-semanticcamplondon|SemanticCampLondon]]&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;London, England&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;A BarCamp specifically addressing Semantic Web related technologies.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;[http://semanticcamp.tommorris.org/ SemanticCampLondon]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-01&amp;lt;/span&amp;gt;..&amp;lt;abbr style=&amp;quot;border:0&amp;quot; class=&amp;quot;dtend&amp;quot; title=&amp;quot;2008-02-04&amp;quot;&amp;gt;03&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-02-01-sgfoocamp|sgfoocamp08]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Sebastopol, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;A FooCamp focusing on [[social network portability]].&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://sgfoocamp08.pbwiki.com&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== January ===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-31&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-30-geekdinner|microformats geek dinner]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;San Francisco, CA&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;An impromptu gathering of geeks.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/1276197/&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-15T13:00:00-0500&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-15-hresume-webinar|hResume Webinar]]&amp;lt;/span&amp;gt; on-line at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;gotowebinar.com&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;[http://theryanking.com/ Ryan King] on [[hResume]], with the HR-XML crowd.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://microformats.org/wiki/events/2008-01-15-hresume-webinar&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-15&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-15-barcamp-psi|'BarCamp' on the Power of Information Review Recommendation 8]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;London, England&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;&amp;quot;To improve [UK] government's responsiveness to demand for public sector information, by July 2008 OPSI should create a web-based channel to gather and assess requests for publication of public sector information.&amp;quot;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-05&amp;lt;/span&amp;gt;&amp;amp;ndash;2008-01-06: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2008-01-05-codefest2008-microformats|CodeFest on Microformats]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Montréal, Canada&amp;lt;/span&amp;gt; and online at &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://wiki.facil.qc.ca/CodeFest2008&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Adding microformats to several open source projects&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==2007==&lt;br /&gt;
See [[events-2007]]&lt;br /&gt;
&lt;br /&gt;
==2006==&lt;br /&gt;
See  [[events-2006]]&lt;br /&gt;
&lt;br /&gt;
== Other languages ==&lt;br /&gt;
* &amp;lt;span lang=&amp;quot;fr&amp;quot;&amp;gt;[[current_events-fr|événements en cours]] (fr)&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Quicktime Broadcaster Notes ==&lt;br /&gt;
&lt;br /&gt;
See [[quicktime]]&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
{{events-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=xfn-issues&amp;diff=33120</id>
		<title>xfn-issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=xfn-issues&amp;diff=33120"/>
		<updated>2008-10-03T22:42:51Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;XFN Issues&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
&lt;br /&gt;
These are issues about XFN with broadly varying degrees of merit. Thus some issues are REJECTED for a number of obvious reasons (but still documented here in case they are re-raised), and others contain longer discussions. Some issues may be ACCEPTED and perhaps cause changes or improved explanations in the spec.&lt;br /&gt;
&lt;br /&gt;
IMPORTANT: Please read the [[xfn-faq]] before giving any feedback or raising any issues as your feedback/issues may already be resolved/answered.&lt;br /&gt;
Submitted issues may (and probably will) be edited and rewritten for better terseness, clarity, calmness, rationality, and as neutral a point of view as possible. Write your issues well. — Brian&lt;br /&gt;
&lt;br /&gt;
Please add new issues to the top of the list. Please follow-up to resolved/rejected issues with new information rather than resubmitting such issues. Duplicate issue additions will be reverted.&lt;br /&gt;
&lt;br /&gt;
== Closed Issues ==&lt;br /&gt;
Resolved issues that have no further actions to take.  These will likely be moved to a separate page like [[xfn-issues-closed]].&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Resolved Issues ==&lt;br /&gt;
Issues that are resolved but may have outstanding [[to-do]] items. As issues are resolved, they will be moved from the top of the [[xfn-issues#Issues|Issues list]] to the bottom of this section.&lt;br /&gt;
&lt;br /&gt;
=== 2007 ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
* {{AcceptedIssue}} &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2007-06-07&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://factoryjoe.com Chris Messina]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# A question came up about fragment identifiers on the OpenID list. Does the presence of a fragment identifier have any impact on an identity URL in XFN.&lt;br /&gt;
*#* &amp;lt;strong style=&amp;quot;text-transform:uppercase&amp;quot;&amp;gt;Resolved&amp;lt;/strong&amp;gt; FAQ. XFN doesn't define how to process a part of a page, only an entire page.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
* {{AcceptedIssue}} &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2007-06-08&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://suda.co.uk Brian Suda]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# Does the presence of a query string have any impact on an identity URL in XFN.&lt;br /&gt;
*#* &amp;lt;strong style=&amp;quot;text-transform:uppercase&amp;quot;&amp;gt;Resolved&amp;lt;/strong&amp;gt; FAQ. Well, if you want to follow web architecture, all urls are opaque, so it doesn't matter whether the URL has a query string or not, so no, the presence of a query string has no impact on an identity URL in XFN.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2008 ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-16&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:AndyMabbett|Andy Mabbett]]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# XFN values lack gender-specificity (e.g. &amp;quot;spouse&amp;quot; rather than &amp;quot;husband&amp;quot; or &amp;quot;wife&amp;quot;; &amp;quot;parent&amp;quot; rather than &amp;quot;father&amp;quot; or &amp;quot;mother&amp;quot;). This may limit their usefulness in, for example, [[genealogy]] (unless an alternative method of expressing gender is found).&lt;br /&gt;
*#* REJECTED BY DESIGN.  See http://gmpg.org/xfn/background#gender for explanation. Gender should be represented as part of a profile / person description, either as an extension to hCard or as a separate [[gender]] microformat.&lt;br /&gt;
*#** Per the [[process]], where is the evidence that people publish links using terms like &amp;quot;parent&amp;quot;, rather than &amp;quot;mother&amp;quot; or &amp;quot;father&amp;quot; ? [[User:AndyMabbett|Andy Mabbett]] 12:57, 2 Feb 2008 (PST)&lt;br /&gt;
*#*** Per the [[process]] and the [[principles]] any references to mother and/or father were simplified (see microformat principle as simple as possible) to simply &amp;quot;parent&amp;quot;, as well as removing the unnecessary binding of gender information which makes more sense to keep in one place (with the profile of the person) rather than duplicating across every link (and thus violating the DRY principle). [[User:Tantek|Tantek]] 12:37, 5 Feb 2008 (PST)&lt;br /&gt;
*#*** I'd like to second Tantek's argument. The object of the rel-value should maintain the current gender state (as a design principle, if the gender changes, the change should be reflected on the profile, not in the relationship; gender should have no bearing on the kin/parent relationship).  [[User:Chris_Messina|Chris Messina]] 3:42, 3 Oct 2008 (PST)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-30&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:AndyMabbett|Andy Mabbett]]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# XFN has no &amp;lt;code&amp;gt;rel=&amp;quot;guardian&amp;quot;&amp;lt;/code&amp;gt; property, for children who have no (biological or legal) parent. (See: http://www.google.co.uk/search?q=%22parent+or+guardian%22)&lt;br /&gt;
*#* ACCEPTED FAQ. The XFN meaning of parent includes guardian per http://gmpg.org/xfn/background#family . This should be better documented in an FAQ.&lt;br /&gt;
*#** XFN may intend that definition, but that is not the commonly-used definition; and such muddying will be offensive to some people - note [http://www.askoxford.com/concise_oed/guardian the distinction] and the [http://www.google.co.uk/search?q=%22parent+or+guardian%22 evidence of the many websites making such a distinction].  [[User:AndyMabbett|Andy Mabbett]] 11:40, 2 Feb 2008 (PST)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
=== 2007 ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
* {{AcceptedIssue}} &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2007-10-24&amp;lt;/span&amp;gt; [http://twitter.com/markng/statuses/359428672 raised] by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Mark Ng&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# How to express automatically generated user relationships in XFN (f.e those gleaned from the Facebook API) ?&lt;br /&gt;
*#* ACCEPTED. To-do - examine the Facebook API to see if it returns any information about the nature of the relationship and then choose respective XFN values accordingly.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2008 ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot; id=&amp;quot;relparentoverloaded&amp;quot;&amp;gt;&lt;br /&gt;
* {{OpenIssue}} &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-29&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# Apparently experience with XFN crawling tools has shown that there are non-trivial instances in the wild of rel=&amp;quot;parent&amp;quot; that don't mean the XFN definition (e.g. on http://Tv.com ).  We need a way to distinguish the XFN [[rel-parent]] from the non XFN uses. A few possibilities:&lt;br /&gt;
*#* If there is a reference to the XFN 1.0 or 1.1 [[XMDP]] profile in the &amp;lt;code&amp;gt;head&amp;lt;/code&amp;gt; element, then uses of rel=&amp;quot;parent&amp;quot; have the XFN meaning.&lt;br /&gt;
*#* Otherwise, require [[hCard]] at the from (where the hyperlink is, to make it clear that it is a link to a person) OR at the destination (thus making it clear that the destination is a person) for the XFN rel-parent relation.&lt;br /&gt;
*#**Alternatively, extend XFN to use rel=&amp;quot;mother&amp;quot; and rel=&amp;quot;father&amp;quot;. [[User:AndyMabbett|Andy Mabbett]] 00:07, 30 Jan 2008 (PST)&lt;br /&gt;
*#*** REJECTED DUPLICATE.  The proposal for &amp;quot;mother&amp;quot; and &amp;quot;father&amp;quot; has been made many times and rejected. Repeating it is simply wasting time/space. Please stop reproposing it. [[User:Tantek|Tantek]] 12:37, 5 Feb 2008 (PST)&lt;br /&gt;
*#**** &amp;lt;span style=&amp;quot;text-transform:uppercase;&amp;quot;&amp;gt;Reopened&amp;lt;/span&amp;gt;. Rejected by whom? When? On what grounds? This is not a duplicate, since the proposal is made in response to the newly-identified problem of the overloading of &amp;quot;parent&amp;quot;. [[User:AndyMabbett|Andy Mabbett]] 14:30, 5 Feb 2008 (PST)&lt;br /&gt;
*#* Probably because drafts of HTML 4.0 included rel=&amp;quot;parent&amp;quot;, rel=&amp;quot;child&amp;quot;, and rel=&amp;quot;sibling&amp;quot; to indicate relationships between documents. These were dropped from the final version, but do seem to be used here and there. These original meanings are supported by the [http://www.mozdev.org/source/browse/cdn/xul/linktoolbar/content/linktoolbar/linkToolbarHandler.js?rev=1.49;content-type=text%2Fx-cvsweb-markup LinkToolbar for Firefox].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;relmeinjection&amp;quot;&amp;gt;&lt;br /&gt;
* {{OpenIssue}} 2008-02-01 raised by [[User:Tantek|Tantek]]&lt;br /&gt;
*# rel-me injection.  If a site allows 3rd parties to enter markup into their pages, it may be possible for a 3rd party to enter a hyperlink, perhaps even a hyperlink with a rel attribute, which would enable errant rel-me links.  No such known example exists, but the issue has been raised as a possibility, since such sites (or web site software) might exist.  If any example is found, please add them to [[rel-me-injection-sites]].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot; id=&amp;quot;relcontactconflict&amp;quot;&amp;gt;&lt;br /&gt;
* {{OpenIssue}} &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-18&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:TobyInk|TobyInk]]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*# &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The XFN meaning of [[rel-contact|rel=&amp;quot;contact&amp;quot;]] conflicts with the HTML5 definition: &amp;quot;Gives a link to contact information for the current document.&amp;quot;&amp;lt;/span&amp;gt;&lt;br /&gt;
*#* Andy Mabbett: Anecdotally; I see lots of pages with links marked &amp;quot;contact xxx&amp;quot;, where &amp;quot;xxx&amp;quot; is &amp;quot;us&amp;quot;, &amp;quot;me&amp;quot; or the name of the organisation owning the page concerned (Google finds about 3,590,000,000 for &amp;quot;contact us&amp;quot;).&lt;br /&gt;
*#** [[User:TobyInk|TobyInk]]: Yes, the HTML 5 definition certainly seems more generically useful.&lt;br /&gt;
*#* Ryan King: I've given this feedback to the HTML-WG already. Ian Hickson, one of the editors, has said he'll address it in HTML5.&lt;br /&gt;
*#** Recent drafts of HTML 5 have removed the conflicting meaning of &amp;lt;code&amp;gt;rel=&amp;quot;contact&amp;quot;&amp;lt;/code&amp;gt; ''for now''.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Template ==&lt;br /&gt;
{{issues-format}}&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
{{xfn-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=xfn-issues&amp;diff=29730</id>
		<title>xfn-issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=xfn-issues&amp;diff=29730"/>
		<updated>2008-10-03T22:41:57Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added support to tantek's argument against gender in rel-values&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;XFN Issues&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
&lt;br /&gt;
These are issues about XFN with broadly varying degrees of merit. Thus some issues are REJECTED for a number of obvious reasons (but still documented here in case they are re-raised), and others contain longer discussions. Some issues may be ACCEPTED and perhaps cause changes or improved explanations in the spec.&lt;br /&gt;
&lt;br /&gt;
IMPORTANT: Please read the [[xfn-faq]] before giving any feedback or raising any issues as your feedback/issues may already be resolved/answered.&lt;br /&gt;
Submitted issues may (and probably will) be edited and rewritten for better terseness, clarity, calmness, rationality, and as neutral a point of view as possible. Write your issues well. — Brian&lt;br /&gt;
&lt;br /&gt;
Please add new issues to the top of the list. Please follow-up to resolved/rejected issues with new information rather than resubmitting such issues. Duplicate issue additions will be reverted.&lt;br /&gt;
&lt;br /&gt;
== Closed Issues ==&lt;br /&gt;
Resolved issues that have no further actions to take.  These will likely be moved to a separate page like [[xfn-issues-closed]].&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Resolved Issues ==&lt;br /&gt;
Issues that are resolved but may have outstanding [[to-do]] items. As issues are resolved, they will be moved from the top of the [[xfn-issues#Issues|Issues list]] to the bottom of this section.&lt;br /&gt;
&lt;br /&gt;
=== 2007 ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
* {{AcceptedIssue}} &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2007-06-07&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://factoryjoe.com Chris Messina]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# A question came up about fragment identifiers on the OpenID list. Does the presence of a fragment identifier have any impact on an identity URL in XFN.&lt;br /&gt;
*#* &amp;lt;strong style=&amp;quot;text-transform:uppercase&amp;quot;&amp;gt;Resolved&amp;lt;/strong&amp;gt; FAQ. XFN doesn't define how to process a part of a page, only an entire page.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
* {{AcceptedIssue}} &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2007-06-08&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[http://suda.co.uk Brian Suda]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# Does the presence of a query string have any impact on an identity URL in XFN.&lt;br /&gt;
*#* &amp;lt;strong style=&amp;quot;text-transform:uppercase&amp;quot;&amp;gt;Resolved&amp;lt;/strong&amp;gt; FAQ. Well, if you want to follow web architecture, all urls are opaque, so it doesn't matter whether the URL has a query string or not, so no, the presence of a query string has no impact on an identity URL in XFN.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2008 ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-16&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:AndyMabbett|Andy Mabbett]]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# XFN values lack gender-specificity (e.g. &amp;quot;spouse&amp;quot; rather than &amp;quot;husband&amp;quot; or &amp;quot;wife&amp;quot;; &amp;quot;parent&amp;quot; rather than &amp;quot;father&amp;quot; or &amp;quot;mother&amp;quot;). This may limit their usefulness in, for example, [[genealogy]] (unless an alternative method of expressing gender is found).&lt;br /&gt;
*#* REJECTED BY DESIGN.  See http://gmpg.org/xfn/background#gender for explanation. Gender should be represented as part of a profile / person description, either as an extension to hCard or as a separate [[gender]] microformat.&lt;br /&gt;
*#** Per the [[process]], where is the evidence that people publish links using terms like &amp;quot;parent&amp;quot;, rather than &amp;quot;mother&amp;quot; or &amp;quot;father&amp;quot; ? [[User:AndyMabbett|Andy Mabbett]] 12:57, 2 Feb 2008 (PST)&lt;br /&gt;
*#*** Per the [[process]] and the [[principles]] any references to mother and/or father were simplified (see microformat principle as simple as possible) to simply &amp;quot;parent&amp;quot;, as well as removing the unnecessary binding of gender information which makes more sense to keep in one place (with the profile of the person) rather than duplicating across every link (and thus violating the DRY principle). [[User:Tantek|Tantek]] 12:37, 5 Feb 2008 (PST)&lt;br /&gt;
*#*** I'd like to second Tantek's argument. The object of the rel-value should maintain the current gender state (as a design principle, if the gender changes, the change should be reflected on the profile, not in the relationship; gender should have no bearing on the kin/parent relationship).  [[User:Tantek|Tantek]] 12:37, 5 Feb 2008 (PST)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
* &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-30&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:AndyMabbett|Andy Mabbett]]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# XFN has no &amp;lt;code&amp;gt;rel=&amp;quot;guardian&amp;quot;&amp;lt;/code&amp;gt; property, for children who have no (biological or legal) parent. (See: http://www.google.co.uk/search?q=%22parent+or+guardian%22)&lt;br /&gt;
*#* ACCEPTED FAQ. The XFN meaning of parent includes guardian per http://gmpg.org/xfn/background#family . This should be better documented in an FAQ.&lt;br /&gt;
*#** XFN may intend that definition, but that is not the commonly-used definition; and such muddying will be offensive to some people - note [http://www.askoxford.com/concise_oed/guardian the distinction] and the [http://www.google.co.uk/search?q=%22parent+or+guardian%22 evidence of the many websites making such a distinction].  [[User:AndyMabbett|Andy Mabbett]] 11:40, 2 Feb 2008 (PST)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
=== 2007 ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
* {{AcceptedIssue}} &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2007-10-24&amp;lt;/span&amp;gt; [http://twitter.com/markng/statuses/359428672 raised] by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Mark Ng&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# How to express automatically generated user relationships in XFN (f.e those gleaned from the Facebook API) ?&lt;br /&gt;
*#* ACCEPTED. To-do - examine the Facebook API to see if it returns any information about the nature of the relationship and then choose respective XFN values accordingly.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 2008 ===&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot; id=&amp;quot;relparentoverloaded&amp;quot;&amp;gt;&lt;br /&gt;
* {{OpenIssue}} &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-01-29&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;description&amp;quot;&amp;gt;&lt;br /&gt;
*# Apparently experience with XFN crawling tools has shown that there are non-trivial instances in the wild of rel=&amp;quot;parent&amp;quot; that don't mean the XFN definition (e.g. on http://Tv.com ).  We need a way to distinguish the XFN [[rel-parent]] from the non XFN uses. A few possibilities:&lt;br /&gt;
*#* If there is a reference to the XFN 1.0 or 1.1 [[XMDP]] profile in the &amp;lt;code&amp;gt;head&amp;lt;/code&amp;gt; element, then uses of rel=&amp;quot;parent&amp;quot; have the XFN meaning.&lt;br /&gt;
*#* Otherwise, require [[hCard]] at the from (where the hyperlink is, to make it clear that it is a link to a person) OR at the destination (thus making it clear that the destination is a person) for the XFN rel-parent relation.&lt;br /&gt;
*#**Alternatively, extend XFN to use rel=&amp;quot;mother&amp;quot; and rel=&amp;quot;father&amp;quot;. [[User:AndyMabbett|Andy Mabbett]] 00:07, 30 Jan 2008 (PST)&lt;br /&gt;
*#*** REJECTED DUPLICATE.  The proposal for &amp;quot;mother&amp;quot; and &amp;quot;father&amp;quot; has been made many times and rejected. Repeating it is simply wasting time/space. Please stop reproposing it. [[User:Tantek|Tantek]] 12:37, 5 Feb 2008 (PST)&lt;br /&gt;
*#**** &amp;lt;span style=&amp;quot;text-transform:uppercase;&amp;quot;&amp;gt;Reopened&amp;lt;/span&amp;gt;. Rejected by whom? When? On what grounds? This is not a duplicate, since the proposal is made in response to the newly-identified problem of the overloading of &amp;quot;parent&amp;quot;. [[User:AndyMabbett|Andy Mabbett]] 14:30, 5 Feb 2008 (PST)&lt;br /&gt;
*#* Probably because drafts of HTML 4.0 included rel=&amp;quot;parent&amp;quot;, rel=&amp;quot;child&amp;quot;, and rel=&amp;quot;sibling&amp;quot; to indicate relationships between documents. These were dropped from the final version, but do seem to be used here and there. These original meanings are supported by the [http://www.mozdev.org/source/browse/cdn/xul/linktoolbar/content/linktoolbar/linkToolbarHandler.js?rev=1.49;content-type=text%2Fx-cvsweb-markup LinkToolbar for Firefox].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;relmeinjection&amp;quot;&amp;gt;&lt;br /&gt;
* {{OpenIssue}} 2008-02-01 raised by [[User:Tantek|Tantek]]&lt;br /&gt;
*# rel-me injection.  If a site allows 3rd parties to enter markup into their pages, it may be possible for a 3rd party to enter a hyperlink, perhaps even a hyperlink with a rel attribute, which would enable errant rel-me links.  No such known example exists, but the issue has been raised as a possibility, since such sites (or web site software) might exist.  If any example is found, please add them to [[rel-me-injection-sites]].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot; id=&amp;quot;relcontactconflict&amp;quot;&amp;gt;&lt;br /&gt;
* {{OpenIssue}} &amp;lt;span class=&amp;quot;summary vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-18&amp;lt;/span&amp;gt; raised by &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[User:TobyInk|TobyInk]]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
*# &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;The XFN meaning of [[rel-contact|rel=&amp;quot;contact&amp;quot;]] conflicts with the HTML5 definition: &amp;quot;Gives a link to contact information for the current document.&amp;quot;&amp;lt;/span&amp;gt;&lt;br /&gt;
*#* Andy Mabbett: Anecdotally; I see lots of pages with links marked &amp;quot;contact xxx&amp;quot;, where &amp;quot;xxx&amp;quot; is &amp;quot;us&amp;quot;, &amp;quot;me&amp;quot; or the name of the organisation owning the page concerned (Google finds about 3,590,000,000 for &amp;quot;contact us&amp;quot;).&lt;br /&gt;
*#** [[User:TobyInk|TobyInk]]: Yes, the HTML 5 definition certainly seems more generically useful.&lt;br /&gt;
*#* Ryan King: I've given this feedback to the HTML-WG already. Ian Hickson, one of the editors, has said he'll address it in HTML5.&lt;br /&gt;
*#** Recent drafts of HTML 5 have removed the conflicting meaning of &amp;lt;code&amp;gt;rel=&amp;quot;contact&amp;quot;&amp;lt;/code&amp;gt; ''for now''.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Template ==&lt;br /&gt;
{{issues-format}}&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
{{xfn-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-implementations&amp;diff=29824</id>
		<title>hcard-implementations</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-implementations&amp;diff=29824"/>
		<updated>2008-09-24T08:25:52Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: Added Verizon Contact Exporter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard Implementations&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&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 implementations have been developed which either generate or parse [[hcard|hCards]]. If you have such an hCard implementation, feel free to add it to '''the top''' of the New Implementations section. If you have a page or site which just ''publishes'' hCards, please use [[hcard-examples-in-wild]] instead.&lt;br /&gt;
&lt;br /&gt;
== New Implementations ==&lt;br /&gt;
Add new implementations here for evaluation and classification into the below taxonomy of implementations.&lt;br /&gt;
&lt;br /&gt;
* [http://code.google.com/p/verizon-contact-exporter/ Verizon Contact Exporter] -- adds hcards to a typical HTML page of contacts from someone's Verizon online address book so that they can be exported (say, if someone wants to leave Verizon)&lt;br /&gt;
* [http://hcard.geekhood.net/ hCard Validator] - finally!&lt;br /&gt;
* [http://www.cogmap.com/ Cogmap] - Cogmap has a bunch of org charts marked up with hcard. Desperately needs [[XPN]]!&lt;br /&gt;
* [http://www.tripit.com/ TripIt] - The TripIt contact list of your connections is marked up with hCard&lt;br /&gt;
* [[hAvatar]] - Wordpress plugin displaying avatars for commenters based on their hCard&lt;br /&gt;
* [[org.microformats.hCard]] - java hCard parser and creator.&lt;br /&gt;
* [http://mobileonlinebusiness.com.au/uf/vCard_to_hCard_converter.html Mobile Online Business' vCard to hCard converter]&lt;br /&gt;
*[http://www.jamplanet.com Jam] is an active address book extension for Firefox/Flock. Jam imports Vcard and various CSV formats, and can output contacts in Vcard and hCard format.&lt;br /&gt;
*The &amp;quot;[http://typo3.org/extensions/repository/view/tt_address/2.0.1/ tt_address]&amp;quot; extension for [http://www.typo3.com TYPO3] supports hCard since the latest release, v2.0.0 &lt;br /&gt;
*[https://addons.mozilla.org/firefox/4106/ Operator] lets you combine pieces of information on Web sites with applications in ways that are useful. (Firefox-plugin)&lt;br /&gt;
*[http://rafaeloliveira.net/labs/hcard_creator.zip Wordpress hCard Creator] - I've made this simple plugin for wordpress. It adds the hCard Options submenu at Options menu, where you can create a simple hCard and put it on your blog using &amp;lt; ?php hcard_creator() ?&amp;gt; to show it. Also, it is possible to show an &amp;quot;export to vCard&amp;quot; link, which uses Brian Suda X2V. (Got send an e-mail to him regarding this)&lt;br /&gt;
*[http://leftlogic.com/lounge/articles/microformats_bookmarklet/ Microformats Bookmarklet] is a bookmarklet designed for IE6 and IE7, Firefox, Safari, Opera and Camino, that overlays on the current page to allow users to import individual hCards or hCalendars.  Written by Remy Sharp.&lt;br /&gt;
*[http://domanske.de/2006/09/vcardexplorer-04/ vCardExplorer] is a Mac OS X Application, that displays VCF-Files and extracts hCards from Websites written by [http://vcardexplorer.corefault.de Daniel Kagemann].&lt;br /&gt;
* [http://placenamehere.com/mf/nnwextract/ Extract Microformats] is a script for NetNewsWire that supports extracting hCard and hCalendar data in blog posts (via technorati service). Written by [[User:ChrisCasciano|Chris Casciano]]&lt;br /&gt;
* [http://allinthehead.com/hkit/ hKit] is an open source PHP 5 parsing library with support for hCard.&lt;br /&gt;
* [http://kitchen.technorati.com/search Technorati Microformats Search] indexes [[hcard|hCard]], [[hcalendar|hCalendar]], and [[hreview|hReview]] as [http://tantek.com/log/2006/05.html#d31t1802 announced by Tantek].&lt;br /&gt;
** list of pages with indexing Issues so they can be looked into as to why data is not being extracted&lt;br /&gt;
** suda.co.uk/contact&lt;br /&gt;
** multipack.co.uk&lt;br /&gt;
* [http://www.webstandards.org/action/dwtf/microformats/ Dreamweaver Extension suite] from the [http://webstandards.org/ Web Standards Project] enables the authoring of hCards from within Dreamweaver 8.&lt;br /&gt;
* [http://scooch.gr0w.com/ Scooch] is a slide show and presentation creator that generates a [[hCard]] for individual slide show authors and comment authors with a CSS button to parse and download via [http://suda.co.uk/projects/X2V/ X2V]. Also uses [[hReview]] for slide ratings and [[rel-tag]] for categories.&lt;br /&gt;
* [http://blog.codeeg.com/2006/03/20/flock-tails-flocktails/ Flocktails] - port of Tails extension for Flock 0.5.12 that looks for hCards, hCalendar, xFolk and hReview and tosses them into a handy topbar&lt;br /&gt;
*[http://opensource.reevoo.com/2006/03/08/release-uformats-12/ uformats] is a ruby library that can parse [[hCalendar]], [[hCard]], [[hReview]] and [[rel-tag]]&lt;br /&gt;
* [http://blog.codeeg.com/tails-firefox-extension-03/ Tails] is a Firefox Extension that will display the presence and details of microformats ([[hcard|hCard]], [[hcalendar|hCalendar]], [[hreview|hReview]], [[xfolk|xFolk]]) on a webpage. [https://addons.mozilla.org/firefox/2240/ Tails Export] is an extended version.&lt;br /&gt;
* [http://www.stripytshirt.co.uk/features/firefox/smartzilla Smartzilla is a Firefox Extension] that finds hCards on web pages and lets you add them to your addressbook.&lt;br /&gt;
* [http://placenamehere.com/TXP/pnh_mf/ pnh_mf] is a plugin for [http://textpattern.com/ Textpattern] that supports embedding hCard and other microformats in templates and blog posts. Written by [http://placenamehere.com/ Chris Casciano].&lt;br /&gt;
* There is [http://flickr.com/photos/factoryjoe/68755089/ evidence of built-in hCard support in the Konqueror browser].  Specifically, Konqueror 3.5, in KDE 3.5 (kubuntu Breezy w/ update).&lt;br /&gt;
* There is [http://tagcamp.org/index.cgi?ContactList evidence of a kwiki plugin for hCards].  Update: the [http://svn.kwiki.org/cwest/Kwiki-hCard/ hCard kwiki plugin svn repository].  See the [http://microwiki.caseywest.com/index.cgi?hCard documentation of the hCard kwiki plugin].&lt;br /&gt;
* [http://suda.co.uk/projects/X2V/ X2V] is a bookmarklet that parses hCard and produces a .vcf (vCard) stream.  Note: needs to be updated as the spec is refined.&lt;br /&gt;
* [http://www.stripytshirt.co.uk Duncan Walker] has built [http://www.stripytshirt.co.uk/features/firefox/smartzilla a Firefox extension] that gets hCard data from a webpage, uses Brian Suda's XSL (locally) to transform it to vcard format and opens the resulting .vcf file.&lt;br /&gt;
* [http://george.hotelling.net/90percent/ George] has written a [http://george.hotelling.net/90percent/geekery/greasemonkey_and_microformats.php Greasemonkey user script] that detects hCards and allows users to easily add them to their address book application.  Relies on the X2V web service to do the conversion.&lt;br /&gt;
* [http://inside.glnetworks.de/ Martin Rehfeld] has updated the work of [http://blogmatrix.blogmatrix.com/ David Janes] and produced a [[Greasemonkey]] [http://inside.glnetworks.de/2006/06/05/microformats-have-arrived-in-firefox-15-greasemonkey-06/ script] that finds many microformat elements, including hCards, and [http://blog.davidjanes.com/mtarchives/2005_08.html#003379 provides a popup menu of actions]. The hCard to vCard conversion is done internally within the script. ''This will work with FireFox 1.5+/GreaseMonkey 0.6.4+ now.''&lt;br /&gt;
* [http://diveintomark.org/ Mark Pilgrim] has also written an [http://diveintomark.org/projects/greasemonkey/hcard/ hCard parser Greasemonkey user script].  It is self-contained and does not rely on the X2V web service.&lt;br /&gt;
* [http://www.oliverbrown.me.uk/2005/09/03/a-working-microformats-extension-to-simplexml/ Oliver Brown] has written an &amp;quot;extension&amp;quot; to [http://www.php.net/simplexml SimpleXML] that gives simple access to hCard information in PHP 5.&lt;br /&gt;
* [http://thedredge.org/ Andrew D. Hume] has built a system (Wordpress plugin?) for [http://thedredge.org/2005/06/using-hcards-in-your-blog/ using hCards in your blog] to represent people leaving comments on blog posts.&lt;br /&gt;
* [http://greenbytes.de/tech/webdav/rfc2629.xslt rfc2629.xslt] now attempts to generate hCard information ([http://ietf.org/rfc/rfc2629 RFC2629] is an XML format for authoring RFCs and Internet Drafts, see [http://greenbytes.de/tech/webdav/rfc2629xslt/rfc2629xslt.html example document])&lt;br /&gt;
* [http://tantek.com/microformats/buddylist2hcards.html iChat buddy list to hCards] - Open source AppleScript to automatically convert one's buddy list in the MacOSX iChat AIM client into a valid XHTML 1.0 Strict list of hCards. &lt;br /&gt;
* [http://dev.w3.org/cvsweb/2001/palmagent/ palmagent] is a collection of palmpilot and sidekick tools. It includes X2V derivatives xhtml2hcard.xsl and toICal.xsl plus some [http://dev.w3.org/cvsweb/2001/palmagent/hcardTest.html hcardTest] materials&lt;br /&gt;
* [http://www.openpsa.org/ OpenPsa 2.x] CRM application uses hCard for all person listings. The widget is [http://www.midgard-project.org/midcom-permalink-922834501b71daad856f35ec593c7a6d reusable across Midgard CMS]&lt;br /&gt;
* [http://www.metonymie.com Emiliano Martínez Luque] has written an experimental [http://www.metonymie.com/hCard_extract/app.html hCard finder and structured search application] that finds hCards within a given set of URLs and returns the ones that match the specified search criteria.&lt;br /&gt;
* [http://www.milkcarton.be/apps/lustro Lustro] is a free and open source Mac OS X application that exports your Address Book contacts to CSV, tab delimited, Google Contacts and hCards off course. It creates a single XHMTL webpage with all your contacts as hCards.&lt;br /&gt;
&amp;lt;!-- *  [http://randomchaos.com/microformats/base/ Microformat Base] is an open-source PHP microformat aggregation crawler, currently recognizing hReview, hCalendar, and hCard. down! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Authoring==&lt;br /&gt;
Implementations you can use to author, create, and publish hCards.&lt;br /&gt;
&lt;br /&gt;
===Web-based Creators===&lt;br /&gt;
;[http://microformats.org/code/hcard/creator hCard creator]:Create your own hCards; also has a [http://www.wnas.nl/microformats/hcard/hcardCreator.html Dutch interface].  [[hcard-creator-feedback|hCard Give feedback.]]&lt;br /&gt;
&lt;br /&gt;
===Blogging and CMS tools===&lt;br /&gt;
;[http://euphemize.net/blog/plugins/textpattern/jmc_event_manager/ Textpattern plug-in]:jmc_event_manager is a plugin for [http://textpattern.com/ Textpattern] that outputs locations and events  in hCard (and hCalendar) formats. Written by [http://euphemize.net/ Joel Courtney].&lt;br /&gt;
;[http://wordpress.org/extend/plugins/addressbook/ Wordpress Addressbook plugin]:Display list of addresses from the blog owner's address book, each marked up as an hCard.  Maintained by [http://samwilson.id.au Sam Wilson].&lt;br /&gt;
&lt;br /&gt;
===Browser scripts and plug-ins===&lt;br /&gt;
Browser plugins that work with existing authoring tools:&lt;br /&gt;
; Any browser with javascript and a little bit of CSS :  [http://microformats.org/code/hcard/creator microformats.org hCard creator]  (see also [http://tantek.com/ Tantek]'s original [http://tantek.com/microformats/hcard-creator.html hCard creator on tantek.com].&lt;br /&gt;
&lt;br /&gt;
===Desktop Authoring Tools===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
==Search and Discovery==&lt;br /&gt;
* [http://kitchen.technorati.com/search Technorati Microformats Search] indexes [[hcard|hCard]], [[hcalendar|hCalendar]], and [[hreview|hReview]] as [http://tantek.com/log/2006/05.html#d31t1802 announced by Tantek]. &lt;br /&gt;
* [http://leftlogic.com/info/articles/microformats_bookmarklet Microformats Bookmarklet] is a bookmarklet designed for Safari (works in Firefox and Camino) that overlays on the current page to allow users to import individual [[hcard|hCards]] or [[hcalendar|hCalendars]]. Written by [http://leftlogic.com Remy Sharp].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- need to continue copy/rename some parallel implementations from [[hcalendar-implementations]] from here down --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Conversion and Import==&lt;br /&gt;
Implementations you can use to importing into an address book application, typically by converting hCard to vCard.&lt;br /&gt;
&lt;br /&gt;
===Web Services===&lt;br /&gt;
These return vCard (.vcf) and other contact formats for easy importing into typical address book programs or other processing.&lt;br /&gt;
* [http://www.tomota.de www.tomota.de] Online address book that allows to import, export and convert hCard into vCard, ldif, csv and plain text. &lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
===Firefox Greasemonkey Plugins===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
===Aggregators===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
===Forms===&lt;br /&gt;
* [http://lib.omnia-computing.de/hcardmapper hCard Mapper] maps hCards onto form fields (Javascript based)&lt;br /&gt;
&lt;br /&gt;
==Browsing==&lt;br /&gt;
Implementations that detect, display and otherwise highlight hCards in pages.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
===Firefox extension===&lt;br /&gt;
&lt;br /&gt;
[http://www.kaply.com/weblog/operator Operator] - This extension is casual-user, advanced-user and developer friendly. Very customizable and unobstrusive.&lt;br /&gt;
&lt;br /&gt;
===Flock extension===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
==Open Source==&lt;br /&gt;
&lt;br /&gt;
Open source libraries of hCard parsers and other related code for building hCard implementations. Note: it is very likely that above implementations may be duplicated in this section. That's ok.&lt;br /&gt;
&lt;br /&gt;
;Javascript &lt;br /&gt;
: The [http://microformats.org/code/hcard/creator hCard creator] ([[hcard-creator-feedback|hCard creator feedback]]) is a very simple, yet illustrative, open source user interface / form / script which creates an hCard in real-time as you type in a set of contact information.&lt;br /&gt;
;Perl&lt;br /&gt;
* [http://search.cpan.org/~ussjoin/Data-Microformat-0.01/lib/Data/Microformat/hCard.pm Data::Microformat] - CPAN module for both creating and parsing hCards&lt;br /&gt;
;PHP&lt;br /&gt;
* [[hKit]]&lt;br /&gt;
;Python:&lt;br /&gt;
* [http://tommorris.org/files/gmail2hcard-py.txt gmail2hcard-py.txt] - for converting Gmail CSV address book export to hCards&lt;br /&gt;
;Java:&lt;br /&gt;
* [[org.microformats.hCard]]&lt;br /&gt;
;Objective-C&lt;br /&gt;
* [http://www.milkcarton.be/apps/lustro Lustro] is a free and open source Mac OS X application that exports your Address Book contacts to CSV, tab delimited, Google Contacts and hCards off course. It creates a single XHMTL webpage with all your contacts as hCards.&lt;br /&gt;
&lt;br /&gt;
== Additional Applications ==&lt;br /&gt;
This section should probably be incorporated into [[hcard-brainstorming]].&lt;br /&gt;
&lt;br /&gt;
There are numerous potential additional uses and applications for hCards on the Web. The following are merely a few thoughts and possibilities that folks have come up with:&lt;br /&gt;
&lt;br /&gt;
* As an open standard/format for [http://www.gravatar.com/ Gravatars].&lt;br /&gt;
** Like [http://alper.nl/cgi-bin/OpenAvatar.py?url=http://tantek.com this].&lt;br /&gt;
** Wordpress plugin with hCard based replacement for gravatar is in the make. [[User:Alper|Alper]] 12:59, 8 Aug 2007 (PDT)&lt;br /&gt;
* Marking up individual authors of blog posts on a group blog&lt;br /&gt;
* Marking up people's names and URLs in a blogroll&lt;br /&gt;
* Any reference to people in blog posts (e.g. when citing them, or referencing them, or describing them, by name).&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-examples-in-wild&amp;diff=29655</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=29655"/>
		<updated>2008-09-24T08:18:28Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: updated Chris Messina's homepage link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard Examples in the wild&amp;lt;/h1&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;
{{TOC-right}}&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.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://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.serviceworksglobal.com/pages/contact-us.php Service Works Global] uses hcards on the contact us page and in the site footer&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://christophertcressman.com Christopher T. Cressman] uses an hCard on the home page of his blog, [http://christophertcressman.com christopher t cressman].&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://www.lounews.com/ The Louisville News Company] uses hCard for site-wide contact information for the company and for the site developer.&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://we05.com/ Web Essentials 05] marked up all their [http://we05.com/presenters.cfm presenters 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/760874 Mrs A Smith] 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;
&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 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;
&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;
Sort alphabetically by &amp;quot;family-name&amp;quot;.&lt;br /&gt;
* [http://dbaron.org/ David Baron]'s home page is marked up with hCard.&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://tomleo.com/about.html Tom Leo]'s about page has an hCard. Ya Microformats!&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;
=== Organizations ===&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;
&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: Web Essentials 2005 - The Presenters &amp;lt;nowiki&amp;gt;http://we05.com/presenters.cfm&amp;lt;/nowiki&amp;gt; (appears to have stopped working as of 2007-12-18, perhaps earlier) mirror on tantek.com: [http://tantek.com/microformats/2005/we05/presenters.html Web Essentials 2005 - The Presenters]. Web Essentials 2005 (we05) was the [http://tantek.com/log/2005/10.html#d06t1720 first conference to adopt hCard and hCalendar] on their website.&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;
===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>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcalendar&amp;diff=31204</id>
		<title>hcalendar</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcalendar&amp;diff=31204"/>
		<updated>2008-09-23T20:43:20Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added requirement for &amp;quot;vevent&amp;quot; -- since one might miss this if they only look at required *properties*&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCalendar&amp;lt;/h1&amp;gt;&lt;br /&gt;
http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
hCalendar is a simple, open, distributed calendaring and events format, based on the iCalendar standard ([http://www.ietf.org/rfc/rfc2445.txt RFC2445]), suitable for embedding in HTML or XHTML, Atom, RSS, and arbitrary XML. hCalendar is one of several open [[microformats|microformat]] standards.&lt;br /&gt;
&lt;br /&gt;
Want to get started with writing an [[hcalendar|hCalendar]] event? Use the [http://microformats.org/code/hcalendar/creator hCalendar creator] to write up an event and publish it, or follow the [[hcalendar-authoring|hCalendar authoring tips]] to add hCalendar markup to your page of upcoming events or events you mention in blog posts, wikis, etc.&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Specification ==&lt;br /&gt;
&lt;br /&gt;
; Editor : [http://tantek.com/ Tantek Çelik] ([http://technorati.com Technorati, Inc])&lt;br /&gt;
; Authors : [http://tantek.com/ Tantek Çelik] ([http://technorati.com Technorati, Inc])&lt;br /&gt;
: [http://suda.co.uk/ Brian Suda]&lt;br /&gt;
&lt;br /&gt;
=== Copyright ===&lt;br /&gt;
Per the public domain release on the authors' user pages ([[User:Tantek|Tantek Çelik]], [[User:Brian|Brian Suda]]) this specification is released into the public domain.&lt;br /&gt;
&lt;br /&gt;
{{MicroFormatPublicDomainContributionStatement}}&lt;br /&gt;
&lt;br /&gt;
=== Patents ===&lt;br /&gt;
{{MicroFormatPatentStatement}}&lt;br /&gt;
&lt;br /&gt;
=== Inspiration and Acknowledgments ===&lt;br /&gt;
Thanks to:&lt;br /&gt;
* Adam Bosworth for leading the [http://wiki.oreillynet.com/foocamp04/index.cgi?HTMLForCalendars FOO Camp 2004 HTML For Calendars presentation] which brought together a critical mass of interested parties.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
The iCalendar standard ([http://www.ietf.org/rfc/rfc2445.txt RFC2445]), has been broadly interoperably implemented (e.g. Apple's &amp;quot;iCal&amp;quot; application built into MacOSX).&lt;br /&gt;
&lt;br /&gt;
In addition, bloggers often discuss events on their blogs -- upcoming events, writeups of past events, etc.  With just a tad bit of structure, bloggers can discuss events in their blog(s) in such a way that spiders and other aggregators can retrieve such events, automatically convert them to iCalendar, and use them in any iCalendar application or service.&lt;br /&gt;
&lt;br /&gt;
This specification introduces the '''hCalendar''' format, which is a 1:1 representation of the aforementioned iCalendar standard, in semantic HTML.  Bloggers can both embed hCalendar events directly in their web pages, and style them with CSS to make them appear as desired.  In addition, hCalendar enables applications to retrieve information about such events directly from web pages without having to reference a separate file.&lt;br /&gt;
&lt;br /&gt;
{{rfc-2119-intro}}&lt;br /&gt;
&lt;br /&gt;
== Semantic XHTML Design Principles ==&lt;br /&gt;
&lt;br /&gt;
{{semantic-xhtml-design-principles}}&lt;br /&gt;
&lt;br /&gt;
For practical implementations, it should be noted that Internet Explorer's support for styling &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; elements is poor, and may require wrapper elements.&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
=== In General ===&lt;br /&gt;
The iCalendar standard ([http://www.ietf.org/rfc/rfc2445.txt RFC2445]) forms the basis of hCalendar.&lt;br /&gt;
&lt;br /&gt;
Note: the editor and authors of this specification are tracking the [http://lists.osafoundation.org/pipermail/ietf-calsify/ &amp;quot;iCal-Basic&amp;quot; effort] and intend to base the core hCalendar profile on iCal-Basic. See references for a link to the current draft.&lt;br /&gt;
&lt;br /&gt;
The basic format of hCalendar is to use iCalendar object/property names in lower-case for class names, and to map the nesting of iCalendar objects directly into nested XHTML elements.&lt;br /&gt;
&lt;br /&gt;
=== Root Class Name ===&lt;br /&gt;
The root class name for hCalendar is &amp;quot;vcalendar&amp;quot;.  An element with a class name of &amp;quot;vcalendar&amp;quot; is itself called an ''hCalendar''. &lt;br /&gt;
&lt;br /&gt;
The root class name for events is &amp;quot;vevent&amp;quot;. An element with a class name of &amp;quot;vevent&amp;quot; is itself called an ''hCalendar event''.&lt;br /&gt;
&lt;br /&gt;
For authoring convenience, both &amp;quot;vevent&amp;quot; and &amp;quot;vcalendar&amp;quot; are treated as root class names for parsing purposes.  If a document contains elements with class name &amp;quot;vevent&amp;quot; but not &amp;quot;vcalendar&amp;quot;, the entire document has an implied &amp;quot;vcalendar&amp;quot; context.&lt;br /&gt;
&lt;br /&gt;
'''vevent''' should be considered required for each event listing.&lt;br /&gt;
&lt;br /&gt;
=== Properties and Sub-properties ===&lt;br /&gt;
The properties of an hCalendar are represented by elements inside the hCalendar.  Elements with class names of the listed properties represent the values of those properties.  Some properties have sub-properties, and those are represented by elements inside the elements for properties.&lt;br /&gt;
&lt;br /&gt;
=== Property List ===&lt;br /&gt;
hCalendar properties (sub-properties in parentheses like this)&lt;br /&gt;
&lt;br /&gt;
'''Required:'''&lt;br /&gt;
* '''dtstart''' ([[iso-8601|ISO date]])&lt;br /&gt;
* '''summary'''&lt;br /&gt;
Optional:&lt;br /&gt;
* location&lt;br /&gt;
* url&lt;br /&gt;
* dtend (ISO date), duration (ISO date duration)&lt;br /&gt;
* rdate, rrule&lt;br /&gt;
* category, description&lt;br /&gt;
* uid&lt;br /&gt;
* geo (latitude, longitude)&lt;br /&gt;
* ... editor's note: this list is incomplete (an incomplete list is better than no list) and is being currently edited from RFC2445 to here.  The above list of properties are those that are most commonly used for hCalendar.&lt;br /&gt;
&lt;br /&gt;
=== More Semantic Equivalents ===&lt;br /&gt;
For some properties there is a more semantic equivalent, and therefore they get special treatment, e.g.:&lt;br /&gt;
* &amp;lt;code&amp;gt;URL&amp;lt;/code&amp;gt; in iCalendar becomes  &amp;lt;code&amp;gt;&amp;lt;a class=&amp;quot;url&amp;quot; href=&amp;quot;...&amp;quot;&amp;gt;...&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt; inside the element with &amp;lt;code&amp;gt;class=&amp;quot;vevent&amp;quot;&amp;lt;/code&amp;gt; in hCalendar.&lt;br /&gt;
* &amp;lt;code&amp;gt;ATTENDEE&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;CONTACT&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;ORGANIZER&amp;lt;/code&amp;gt; in iCalendar {{may}} be represented by an [[hcard|hCard]] in hCalendar .&lt;br /&gt;
* A named &amp;lt;code&amp;gt;LOCATION&amp;lt;/code&amp;gt; (potentially with an address and/or geo) in iCalendar {{may}} be represented by a nested [[hcard|hCard]] in hCalendar. Similarly, an address &amp;lt;code&amp;gt;LOCATION&amp;lt;/code&amp;gt; {{may}} be represented by an [[adr]], and a geo (latitude and longitude) &amp;lt;code&amp;gt;LOCATION&amp;lt;/code&amp;gt; may be represented by a [[geo]].&lt;br /&gt;
* &amp;lt;code&amp;gt;UID&amp;lt;/code&amp;gt; in iCalendar simply becomes another semantic applied to a specific URL for an hCalendar event.&lt;br /&gt;
&lt;br /&gt;
=== Singular vs. Plural Properties ===&lt;br /&gt;
&lt;br /&gt;
For properties which are singular (e.g. &amp;quot;N&amp;quot; and &amp;quot;FN&amp;quot; from vCard), the first descendant element with that class {{should}} take effect, any others being ignored.&lt;br /&gt;
&lt;br /&gt;
For properties which can be plural (e.g. &amp;quot;TEL&amp;quot; from vCard), each class instance {{should}} create a instance of that property. Plural properties with subtypes (e.g. TEL with WORK, HOME, CELL from vCard) can be optimized to share a common element for the property itself, with each instance of subtype being an appropriately classed descendant of the property element.&lt;br /&gt;
&lt;br /&gt;
==== Plural Properties Singularized ====&lt;br /&gt;
&lt;br /&gt;
Since plural property names become their singular equivalents, even if the original plural property permitted only a single value with multiple components, those multiple components are represented each with their own singularly named property and the the property is effectively multivalued and subject to the above treatment of multivalued properties.&lt;br /&gt;
&lt;br /&gt;
=== Human vs. Machine readable ===&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; element is used for a property, then the '&amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt;' attribute of the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; element is the value of the property, instead of the contents of the element,  which instead provide a human presentable version of the value.  This specification recommends that such &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; elements be used for the following iCalendar properties:&lt;br /&gt;
* DTSTART, DTEND, DURATION, RDATE, RRULE&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
Here is a sample event in an iCalendar:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
BEGIN:VCALENDAR&lt;br /&gt;
PRODID:-//XYZproduct//EN&lt;br /&gt;
VERSION:2.0&lt;br /&gt;
BEGIN:VEVENT&lt;br /&gt;
URL:http://www.web2con.com/&lt;br /&gt;
DTSTART:20071005&lt;br /&gt;
DTEND:20071020&lt;br /&gt;
SUMMARY:Web 2.0 Conference&lt;br /&gt;
LOCATION:Argent Hotel\, San Francisco\, CA&lt;br /&gt;
END:VEVENT&lt;br /&gt;
END:VCALENDAR&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and an equivalent event in hCalendar format with various elements optimized appropriately. See [[hcalendar-example1-steps]] for the derivation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;a class=&amp;quot;url&amp;quot; href=&amp;quot;http://www.web2con.com/&amp;quot;&amp;gt;http://www.web2con.com/&amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Web 2.0 Conference&amp;lt;/span&amp;gt;: &lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;dtstart&amp;quot; title=&amp;quot;2007-10-05&amp;quot;&amp;gt;October 5&amp;lt;/abbr&amp;gt;-&lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;dtend&amp;quot; title=&amp;quot;2007-10-20&amp;quot;&amp;gt;19&amp;lt;/abbr&amp;gt;,&lt;br /&gt;
 at the &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Argent Hotel, San Francisco, CA&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
which could be displayed as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.web2con.com/&amp;lt;/span&amp;gt;&amp;amp;nbsp;&amp;lt;!-- note modified to account for idiosyncrasy of wiki software --&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Web 2.0 Conference&amp;lt;/span&amp;gt;: &lt;br /&gt;
&amp;lt;abbr class=&amp;quot;dtstart&amp;quot; title=&amp;quot;2007-10-05&amp;quot;&amp;gt;October 5&amp;lt;/abbr&amp;gt;-&lt;br /&gt;
&amp;lt;abbr class=&amp;quot;dtend&amp;quot; title=&amp;quot;2007-10-20&amp;quot;&amp;gt;19&amp;lt;/abbr&amp;gt;,&lt;br /&gt;
at the &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Argent Hotel, San Francisco, CA&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that this is a '''live''' hCalendar microformat, which will be found on this page by parsers.&lt;br /&gt;
&lt;br /&gt;
=== Example 2 ===&lt;br /&gt;
&lt;br /&gt;
The following example specifies a scheduled meeting that begins&lt;br /&gt;
at 8:30 AM EST on March 12, 1998 and ends at 9:30 AM EST on March 12,&lt;br /&gt;
1998. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
     BEGIN:VCALENDAR&lt;br /&gt;
     BEGIN:VEVENT&lt;br /&gt;
     UID:guid-1.host1.com&lt;br /&gt;
     DTSTAMP:19980309T231000Z&lt;br /&gt;
     DESCRIPTION:Project XYZ Review Meeting&lt;br /&gt;
     SUMMARY:XYZ Project Review&lt;br /&gt;
     DTSTART:19980312T133000Z&lt;br /&gt;
     DTEND:19980312T143000Z&lt;br /&gt;
     LOCATION:1CP Conference Room 4350&lt;br /&gt;
     END:VEVENT&lt;br /&gt;
     END:VCALENDAR&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The equivalent in hCalendar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h3 class=&amp;quot;summary&amp;quot;&amp;gt;XYZ Project Review&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;description&amp;quot;&amp;gt;Project XYZ Review Meeting&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;To be held on &amp;lt;abbr class=&amp;quot;dtstart&amp;quot; title=&amp;quot;1998-03-12T08:30:00-05:00&amp;quot;&amp;gt;12 March 1998 from 8:30am EST&amp;lt;/abbr&amp;gt; &lt;br /&gt;
until &amp;lt;abbr class=&amp;quot;dtend&amp;quot; title=&amp;quot;1998-03-12T09:30:00-05:00&amp;quot;&amp;gt;9:30am EST&amp;lt;/abbr&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Location: &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;1CP Conference Room 4350&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Booked by: &amp;lt;span class=&amp;quot;uid&amp;quot;&amp;gt;guid-1.host1.com&amp;lt;/span&amp;gt; on &lt;br /&gt;
&amp;lt;abbr class=&amp;quot;dtstamp&amp;quot; title=&amp;quot;19980309T231000Z&amp;quot;&amp;gt;9 Mar 1998 6:00pm&amp;lt;/abbr&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This could be displayed as:&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3 class=&amp;quot;summary&amp;quot;&amp;gt;XYZ Project Review&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;description&amp;quot;&amp;gt;Project XYZ Review Meeting&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;To be held on &amp;lt;abbr class=&amp;quot;dtstart&amp;quot; title=&amp;quot;1998-03-12T08:30:00-05:00&amp;quot;&amp;gt;12 March 1998 from 8:30am EST&amp;lt;/abbr&amp;gt; &lt;br /&gt;
until &amp;lt;abbr class=&amp;quot;dtend&amp;quot; title=&amp;quot;1998-03-12T09:30:00-05:00&amp;quot;&amp;gt;9:30am EST&amp;lt;/abbr&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Location: &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;1CP Conference Room 4350&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;Booked by: &amp;lt;span class=&amp;quot;uid&amp;quot;&amp;gt;guid-1.host1.com&amp;lt;/span&amp;gt; on &amp;lt;abbr class=&amp;quot;dtstamp&amp;quot; title=&amp;quot;19980309T231000Z&amp;quot;&amp;gt;9 Mar 1998 6:00pm&amp;lt;/abbr&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Note 1: The product information is not necessary since hCalendar is an interchange format.  When transforming hCalendar back into iCalendar, the transforming engine should add its own product ID.&lt;br /&gt;
&lt;br /&gt;
Note 2: A surrounding &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;vcalendar&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; element is optional, and is left out as such.  It is optional since the context of a vcalendar is implied when a vevent is encountered.  The implied context/scope is that of the document.  Authors may explicitly use elements with class=&amp;quot;vcalendar&amp;quot; to wrap sets of vevents that all belong to the same calendar, e.g. when publishing multiple calendars on the same page.&lt;br /&gt;
&lt;br /&gt;
Note 3: The version information is unnecessary in hCalendar markup directly since the version will be defined by the profile of hCalendar that is used/referred to in the 'profile' attribute of the &amp;lt;head&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
Note 4: [[iso-8601|ISO8601]] dates (required by iCalendar) are not very human friendly.  In addition, the year is often understood implicitly by humans from the context.  Thus &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; elements are used to simultaneously provide a human friendly date and/or time in the visible contents of the element, while placing the respective machine parsable comprehensive ISO8601 datetime in the 'title' attribute.&lt;br /&gt;
The notation &amp;lt;code&amp;gt;YYYY-MM-DDThh:mm:ss&amp;lt;/code&amp;gt; should be used for better readability, following the format of RFC 3339.&lt;br /&gt;
&lt;br /&gt;
Note 5: The difference between the DTEND ISO8601 date (2005-10-08) and the human readable date (7) is NOT a mistake.  [http://lists.osafoundation.org/pipermail/ietf-calsify/2005-September/000769.html DTEND is exclusive], meaning, that the event ends just before the DTEND. Thus for events which start on one day and end on another day, the DTEND date must be specified as the day after the day that a human would say is the last day of the event.&lt;br /&gt;
&lt;br /&gt;
Note 6: The location in this example contains implicit structure (venue name, city, state) which could be marked up explicitly as an [[hcard|hCard]].  See [http://microformats.org/wiki/hcalendar-brainstorming#hCard_locations hCalendar brainstorming: hCard locations] for a informative explanation of how to do this.&lt;br /&gt;
&lt;br /&gt;
==Buttons==&lt;br /&gt;
Don't forget that you can add one of our [[buttons#hCalendar|buttons]] to the page, to indicate the presence of hCalendar microformats. For example: http://www.boogdesign.com/images/buttons/microformat_hcalendar.png. If you can link it back to this page (or even page on your website, about your use of the microformat), so much the better!&lt;br /&gt;
&lt;br /&gt;
=== More Examples ===&lt;br /&gt;
See [[hcalendar-examples|hCalendar examples]] for more examples, including examples from iCalendar RFC 2445 converted into hCalendar.&lt;br /&gt;
&lt;br /&gt;
== Examples in the wild ==&lt;br /&gt;
This section is '''informative'''. The number of hCalendar examples in the wild has expanded far beyond the capacity of being kept inline in this specification. They have been moved to a [[hcalendar-examples-in-wild|separate page]].&lt;br /&gt;
&lt;br /&gt;
See [[hcalendar-examples-in-wild|hCalendar Examples in the wild]].&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
This section is '''informative'''. The number of hCalendar implementations has also expanded beyond the capacity of keeping them inline. They have been moved to a [[hcalendar-implementations|separate page]].&lt;br /&gt;
&lt;br /&gt;
See [[hcalendar-implementations|hCalendar Implementations]].&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
=== Normative References ===&lt;br /&gt;
* [http://www.w3.org/TR/2002/REC-xhtml1-20020801/ XHTML 1.0 SE]&lt;br /&gt;
* [[hcard|hCard]]&lt;br /&gt;
* [http://www.ietf.org/rfc/rfc2445.txt iCalendar RFC2445]&lt;br /&gt;
* [[rfc-2119| RFC 2119]]&lt;br /&gt;
* [[iso-8601|ISO8601]]&lt;br /&gt;
&lt;br /&gt;
=== Informative References ===&lt;br /&gt;
* [http://w3.org/TR/REC-CSS1 CSS1]&lt;br /&gt;
* [http://tantek.com/log/2004/09.html#hcalendar hCalendar term introduced and defined on the Web, 20040930]&lt;br /&gt;
* [http://wiki.oreillynet.com/foocamp04/index.cgi?HTMLForCalendars FOO Camp 2004 HTML For Calendars presentation, 20040911]&lt;br /&gt;
* [http://wiki.oreillynet.com/foocamp04/index.cgi?SimpleSemanticFormats FOO Camp 2004 Simple Semantic Formats presentation, 20040910]&lt;br /&gt;
* [http://ietfreport.isoc.org/idref/draft-royer-ical-basic/ iCal-Basic (latest)] [http://www.faqs.org/ftp/pub/pub/internet-drafts/draft-royer-ical-basic-04.txt (draft 04)]&lt;br /&gt;
* [http://www.w3.org/TR/NOTE-datetime W3C Note on Date and Time Formats]&lt;br /&gt;
* [http://www.imc.org/pdi/ Internet Mail Consortium Personal Data Interchange vCard and vCalendar]&lt;br /&gt;
* Contributed from http://developers.technorati.com/wiki/hCalendar&lt;br /&gt;
&lt;br /&gt;
==== Specifications That Use hCalendar ====&lt;br /&gt;
* [[hreview|hReview]]&lt;br /&gt;
&lt;br /&gt;
==== Related Work ====&lt;br /&gt;
* [http://lists.osafoundation.org/pipermail/ietf-calsify/ IETF-calsify archives]&lt;br /&gt;
* [http://www.softwarestudio.org/iCal/2445Issues.html RFC2445 Issues List]&lt;br /&gt;
* [http://ietf.webdav.org/calsify/ CALSIFY WG Links And Resources]&lt;br /&gt;
&lt;br /&gt;
== Further Reading ==&lt;br /&gt;
* [http://www.livejournal.com/users/jwz/444651.html jwz - Hula] (required reading)&lt;br /&gt;
* [http://www.jwz.org/doc/groupware.html Groupware Bad by Jamie Zawinski] crystalizes the reason for hCalendar ('''emphasis''' added):&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Right now people can do that by publishing .ics files, but it's not trivial to do so, and it's work on the part of other people to look at them. '''If it's not HTML hanging off our friend's home page that can be viewed in any browser on a public terminal in a library, the bar to entry is too high and it's useless.'''&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [http://muddybranch.thejkgroup.com/ Jason Klemow's blog]&lt;br /&gt;
* [http://weblog.infoworld.com/udell/2006/01/11.html#a1368 Moving forward with microformats] by [http://weblog.infoworld.com/udell Jon Udell] provides an hCalendar example and some discussion.&lt;br /&gt;
* See also [http://www.technorati.com/cosmos/referer.html blogs discussing this page] and the [http://technorati.com/tags/hcalendar hCalendar tag]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/HCalendar Wikipedia article on hCalendar] (requires expansion)&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
{{hcalendar-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=brightkite-syntax&amp;diff=34288</id>
		<title>brightkite-syntax</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=brightkite-syntax&amp;diff=34288"/>
		<updated>2008-09-15T20:29:55Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;BrightKite SMS syntax&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Brightkite's mobile commands are available on their [http://brightkite.com/help/sms_reference text message reference guide] page.&lt;br /&gt;
&lt;br /&gt;
Brightkite's text messaging functionality is available on AT&amp;amp;T, Sprint, Nextel, T-Mobile®, Boost, Alltel and Suncom.&lt;br /&gt;
&lt;br /&gt;
== BrightKite basics ==&lt;br /&gt;
&lt;br /&gt;
There are 2 ways to opt-in your mobile device:&lt;br /&gt;
&lt;br /&gt;
* Specify your phone number when you sign up, or on your account screen.&lt;br /&gt;
* Send '''@place''' (for example, @Denver, CO) to '''80289''' in the US, or '''+44 7624 805707''' outside the US.&lt;br /&gt;
&lt;br /&gt;
== Commands ==&lt;br /&gt;
&lt;br /&gt;
=== Checking In ===&lt;br /&gt;
&lt;br /&gt;
* '''@place''': check in at an address or business. e.g. ''@1026 Valencia St, San Francisco, CA'' or ''Ritual ROasters''. Shorter forms can sometimes work too, e.g. '''1026 Valencia St, SF CA'''&lt;br /&gt;
* '''MARK newplacemark''': creates placemark newplacemark for your currently checked in location. e.g. '''MARK ritro'''&lt;br /&gt;
* '''@placemark''': check in at a placemark. Note: you must have previously defined it. e.g. '''@ritro'''&lt;br /&gt;
* '''JOIN username''': Checks you in at the same location as the specified user.&lt;br /&gt;
&lt;br /&gt;
=== Posting ===&lt;br /&gt;
&lt;br /&gt;
* '''SAY''': message Posts a note to your current place.&lt;br /&gt;
** '''! message''': posts a message to your currently checked in location. e.g. '''!the line is out the door'''. Shortcut for &amp;quot;SAY&amp;quot; command.&lt;br /&gt;
* '''POSTPHOTO''': Gets instructions on how to post a photo to your current place.&lt;br /&gt;
&lt;br /&gt;
===Places===&lt;br /&gt;
* '''NOTES''': Lists notes posted at your current place.&lt;br /&gt;
* '''PHOTOS''': Lists photos posted at your current place.&lt;br /&gt;
* '''WHO''': Lists any other users checked in at your current place.&lt;br /&gt;
* '''PASTVISITORS''': Lists users that have previously checked in at your current place.&lt;br /&gt;
* '''MARK placemark''': Gives your current place the specified placemark.&lt;br /&gt;
* '''UNMARK placemark''': Deletes the specified placemark.&lt;br /&gt;
* '''LEAVE''': Checks you out from your current place.&lt;br /&gt;
&lt;br /&gt;
===Users &amp;amp;amp; Friends===&lt;br /&gt;
* '''MSG username message''': Sends a direct message to the specified user.&lt;br /&gt;
** '''M username message''': Shortcut for &amp;quot;MSG&amp;quot;. Sends direct message to a specified user&lt;br /&gt;
* '''FRIEND username''': Sends a friend request to the specified user.&lt;br /&gt;
* '''UNFRIEND username''': Unfriends the specified user.&lt;br /&gt;
* '''BLOCK username''': Blocks the specified user and prevents them from seeing your checkins or posts.&lt;br /&gt;
* '''UNBLOCK username''': Unblocks the specified user.&lt;br /&gt;
* '''NUDGE username''': Sends a message to the specified user encouraging them to check in.&lt;br /&gt;
* '''WHERE username''': Finds out where the specified user is currently checked in.&lt;br /&gt;
* '''WHEREAMI''': Tells you where you're currently checked in.&lt;br /&gt;
* '''PROFILE username''': Gets the specified user's profile.&lt;br /&gt;
* '''SETPROFILE text''': Sets your profile to the specified text.&lt;br /&gt;
* '''NAME username''': Changes your username.&lt;br /&gt;
&lt;br /&gt;
===Privacy &amp;amp; Notifications===&lt;br /&gt;
* '''PUBLIC''': Sets your privacy mode to public.&lt;br /&gt;
* '''PRIVATE''': Sets your privacy mode to private.&lt;br /&gt;
* '''ON''': Turns notifications on.&lt;br /&gt;
* '''OFF''': Turns notifications off.&lt;br /&gt;
* '''NN''': Show current nearby notification settings.&lt;br /&gt;
* '''NN ON''': Turn on nearby notifications.&lt;br /&gt;
* '''NN OFF''': Turn off nearby notifications.&lt;br /&gt;
* '''NN ALL''': Set nearby notifications to apply to all activity within nearby radius.&lt;br /&gt;
* '''NN FRIENDS''': Set nearby notifications to only apply to friend activity within nearby radius.&lt;br /&gt;
* '''NN CLOSE''': Set nearby notifications radius to 20 meters.&lt;br /&gt;
* '''NN BLOCK''': Set nearby notifications radius to 200 meters.&lt;br /&gt;
* '''NN NEIGHBORHOOD''': Set nearby notifications radius to 2000 meters.&lt;br /&gt;
* '''NN AREA''': Set nearby notifications radius to 4000 meters.&lt;br /&gt;
&lt;br /&gt;
=== Utility commands===&lt;br /&gt;
&lt;br /&gt;
* '''HELP''': Provides general help&lt;br /&gt;
* '''COMMANDS''': Provides help on what commands are available, etc.&lt;br /&gt;
* '''STOP''': Disables your account and asks you to confirm before deleting&lt;br /&gt;
* '''STOP ALL''': delete your Brightkite account, including all content that you've created&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [[dodgeball-syntax]]&lt;br /&gt;
* [[picoformats]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=brightkite-syntax&amp;diff=28747</id>
		<title>brightkite-syntax</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=brightkite-syntax&amp;diff=28747"/>
		<updated>2008-09-15T20:29:37Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: major overhaul of syntax&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;BrightKite SMS syntax&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Brightkite's mobile commands are available on their [http://brightkite.com/help/sms_reference text message reference guide] page.&lt;br /&gt;
&lt;br /&gt;
Brightkite's text messaging functionality is available on AT&amp;amp;T, Sprint, Nextel, T-Mobile®, Boost, Alltel and Suncom.&lt;br /&gt;
&lt;br /&gt;
== BrightKite basics ==&lt;br /&gt;
&lt;br /&gt;
There are 2 ways to opt-in your mobile device:&lt;br /&gt;
&lt;br /&gt;
* Specify your phone number when you sign up, or on your account screen.&lt;br /&gt;
* Send '''@place''' (for example, @Denver, CO) to '''80289''' in the US, or '''+44 7624 805707''' outside the US.&lt;br /&gt;
&lt;br /&gt;
== Commands ==&lt;br /&gt;
&lt;br /&gt;
== Checking In ==&lt;br /&gt;
&lt;br /&gt;
* '''@place''': check in at an address or business. e.g. ''@1026 Valencia St, San Francisco, CA'' or ''Ritual ROasters''. Shorter forms can sometimes work too, e.g. '''1026 Valencia St, SF CA'''&lt;br /&gt;
* '''MARK newplacemark''': creates placemark newplacemark for your currently checked in location. e.g. '''MARK ritro'''&lt;br /&gt;
* '''@placemark''': check in at a placemark. Note: you must have previously defined it. e.g. '''@ritro'''&lt;br /&gt;
* '''JOIN username''': Checks you in at the same location as the specified user.&lt;br /&gt;
&lt;br /&gt;
=== Posting ===&lt;br /&gt;
&lt;br /&gt;
* '''SAY''': message Posts a note to your current place.&lt;br /&gt;
** '''! message''': posts a message to your currently checked in location. e.g. '''!the line is out the door'''. Shortcut for &amp;quot;SAY&amp;quot; command.&lt;br /&gt;
* '''POSTPHOTO''': Gets instructions on how to post a photo to your current place.&lt;br /&gt;
&lt;br /&gt;
===Places===&lt;br /&gt;
* '''NOTES''': Lists notes posted at your current place.&lt;br /&gt;
* '''PHOTOS''': Lists photos posted at your current place.&lt;br /&gt;
* '''WHO''': Lists any other users checked in at your current place.&lt;br /&gt;
* '''PASTVISITORS''': Lists users that have previously checked in at your current place.&lt;br /&gt;
* '''MARK placemark''': Gives your current place the specified placemark.&lt;br /&gt;
* '''UNMARK placemark''': Deletes the specified placemark.&lt;br /&gt;
* '''LEAVE''': Checks you out from your current place.&lt;br /&gt;
&lt;br /&gt;
===Users &amp;amp;amp; Friends===&lt;br /&gt;
* '''MSG username message''': Sends a direct message to the specified user.&lt;br /&gt;
** '''M username message''': Shortcut for &amp;quot;MSG&amp;quot;. Sends direct message to a specified user&lt;br /&gt;
* '''FRIEND username''': Sends a friend request to the specified user.&lt;br /&gt;
* '''UNFRIEND username''': Unfriends the specified user.&lt;br /&gt;
* '''BLOCK username''': Blocks the specified user and prevents them from seeing your checkins or posts.&lt;br /&gt;
* '''UNBLOCK username''': Unblocks the specified user.&lt;br /&gt;
* '''NUDGE username''': Sends a message to the specified user encouraging them to check in.&lt;br /&gt;
* '''WHERE username''': Finds out where the specified user is currently checked in.&lt;br /&gt;
* '''WHEREAMI''': Tells you where you're currently checked in.&lt;br /&gt;
* '''PROFILE username''': Gets the specified user's profile.&lt;br /&gt;
* '''SETPROFILE text''': Sets your profile to the specified text.&lt;br /&gt;
* '''NAME username''': Changes your username.&lt;br /&gt;
&lt;br /&gt;
===Privacy &amp;amp; Notifications===&lt;br /&gt;
* '''PUBLIC''': Sets your privacy mode to public.&lt;br /&gt;
* '''PRIVATE''': Sets your privacy mode to private.&lt;br /&gt;
* '''ON''': Turns notifications on.&lt;br /&gt;
* '''OFF''': Turns notifications off.&lt;br /&gt;
* '''NN''': Show current nearby notification settings.&lt;br /&gt;
* '''NN ON''': Turn on nearby notifications.&lt;br /&gt;
* '''NN OFF''': Turn off nearby notifications.&lt;br /&gt;
* '''NN ALL''': Set nearby notifications to apply to all activity within nearby radius.&lt;br /&gt;
* '''NN FRIENDS''': Set nearby notifications to only apply to friend activity within nearby radius.&lt;br /&gt;
* '''NN CLOSE''': Set nearby notifications radius to 20 meters.&lt;br /&gt;
* '''NN BLOCK''': Set nearby notifications radius to 200 meters.&lt;br /&gt;
* '''NN NEIGHBORHOOD''': Set nearby notifications radius to 2000 meters.&lt;br /&gt;
* '''NN AREA''': Set nearby notifications radius to 4000 meters.&lt;br /&gt;
&lt;br /&gt;
=== Utility commands===&lt;br /&gt;
&lt;br /&gt;
* '''HELP''': Provides general help&lt;br /&gt;
* '''COMMANDS''': Provides help on what commands are available, etc.&lt;br /&gt;
* '''STOP''': Disables your account and asks you to confirm before deleting&lt;br /&gt;
* '''STOP ALL''': delete your Brightkite account, including all content that you've created&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [[dodgeball-syntax]]&lt;br /&gt;
* [[picoformats]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=twitter-syntax&amp;diff=32216</id>
		<title>twitter-syntax</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=twitter-syntax&amp;diff=32216"/>
		<updated>2008-09-15T19:46:11Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: updated syntax, added link to new Official Command Page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Twitter Syntax&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There is now an [http://help.twitter.com/index.php?pg=kb.page&amp;amp;id=75 Official Twitter Commands] page. Originally retrieved from the [http://twitter.com/help/lingo Twitter Lingo page], [http://twitter.com/help/follow Friends and Followers].&lt;br /&gt;
&lt;br /&gt;
Send these commands to the appropriate number (below) and interact with Twitter on your mobile phone, via Gtalk (IM twitter at twitter.com) or the web.&lt;br /&gt;
&lt;br /&gt;
;Following [http://twitter.com/blog/2007/07/friends-followers-and-notifications.html changes at Twitter] this page may need to be updated.&lt;br /&gt;
&lt;br /&gt;
==Numbers==&lt;br /&gt;
&amp;lt;!-- Alphabetical by country; International last--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class =&amp;quot;fn org&amp;quot;&amp;gt;Twitter Canada&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;type&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;cell&amp;lt;/span&amp;gt; 21212&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class =&amp;quot;fn org&amp;quot;&amp;gt;Twitter UK&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;type&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;cell&amp;lt;/span&amp;gt; +44 7624 801423&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class =&amp;quot;fn org&amp;quot;&amp;gt;Twitter USA&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;type&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;cell&amp;lt;/span&amp;gt; 40404&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class =&amp;quot;fn org&amp;quot;&amp;gt;Twitter International&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;type&amp;quot; style=&amp;quot;display:none;&amp;quot;&amp;gt;cell&amp;lt;/span&amp;gt; +44 7624 801423&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Commands ==&lt;br /&gt;
&lt;br /&gt;
=== Messages ===&lt;br /&gt;
&lt;br /&gt;
* '''@username + message''': directs a twitter at another person, and causes your twitter to save in their &amp;quot;replies&amp;quot; tab. Aka &amp;quot;at replies&amp;quot; or &amp;quot;@replies&amp;quot;.&lt;br /&gt;
* '''D username + message''': sends a person a private message that goes to their device, and saves in their web archive.&lt;br /&gt;
&lt;br /&gt;
=== Friends and Followers ===&lt;br /&gt;
&lt;br /&gt;
* '''invite phone number''': 415-555-1212 john sends a text invite to john&lt;br /&gt;
* '''accept''': this command will accept a friend invitation.  Example: Accept Jade.  NOTE: when you accept, you must type in the name exactly as it was sent to you in order for Twitter to recognize it properly.&lt;br /&gt;
* '''deny''': this command will deny a friend invitation. &lt;br /&gt;
* '''delete''': for now, deleting friends must be done from the web.&lt;br /&gt;
* '''fav username''': marks a person's last twitter as a favorite&lt;br /&gt;
&lt;br /&gt;
* '''get ''username''''': gets this person's last update&lt;br /&gt;
* '''on''' or '''start''' or '''wake''': enables twitter phone updates&lt;br /&gt;
** '''on username''': turns on notifications for a specific person on your device. For example, ON alissa.&lt;br /&gt;
* '''off''' or '''stop''' or '''sleep''': disables twitter phone updates&lt;br /&gt;
** '''off username''':turns off notifications for a specific person on your device. For example, OFF blaine.&lt;br /&gt;
* '''follow all''': turns on phone updates (entire friends list)&lt;br /&gt;
** '''follow username''': you will get phone updates from this person (requires initial approval)&lt;br /&gt;
*** shortcut: '''F''' &lt;br /&gt;
* '''leave all''': turns off phone updates (entire friends list)&lt;br /&gt;
** '''leave username''': disables phone updates from this person&lt;br /&gt;
*** shortcut: '''L''' &lt;br /&gt;
* '''nudge username''': encourages this person to update&lt;br /&gt;
* '''whois username''': text WHOIS BIZ to 40404 you will get the info Biz has filled out in his settings&lt;br /&gt;
&lt;br /&gt;
=== Finding Out Stuff ===&lt;br /&gt;
&lt;br /&gt;
* '''followers''': find out who is following your updates ''(no longer supported)''&lt;br /&gt;
* '''stats''': find out how many people are following you, and how many friends you have&lt;br /&gt;
* '''help''': sends back a list of twitter lingo commands&lt;br /&gt;
&lt;br /&gt;
To update your own Twitter timeline, just text whatever is on your mind to the Twitter number: 40404, or use +447781488126 if you are outside the US.&lt;br /&gt;
&lt;br /&gt;
=== Tracking ===&lt;br /&gt;
&lt;br /&gt;
* '''track word''': get notifications via SMS or IM when a word is mentioned. type again to turn off.&lt;br /&gt;
* '''untrack word''': stops tracking a word&lt;br /&gt;
* '''untrack all''': stops tracking all words&lt;br /&gt;
* '''track off''': stops tracking all words&lt;br /&gt;
* '''tracks''': returns a list of words you're tracking&lt;br /&gt;
&lt;br /&gt;
==hash tags==&lt;br /&gt;
[http://hashtags.org/ Hashtags] (aka &amp;quot;#tags&amp;quot;) allow tagging of Twitter posts. For example, post &amp;quot;I love #microformats a lot&amp;quot; to Twitter and the post is tagged &amp;quot;microformats&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== hreview ==&lt;br /&gt;
* starting a message with &amp;quot;@hreview&amp;quot; will have it be aggregated by http://microrevie.ws and republished with [[hReview]] markup there.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[picoformats]]&lt;br /&gt;
*[[twitter-nanoformats|twitter nanoformats]]&lt;br /&gt;
*[http://pigsonthewing.wordpress.com/2008/01/05/suggested-method-of-publishing-microformats-in-twitter-posts/ A suggested method of publishing microformats in Twitter posts]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=picoformats&amp;diff=28769</id>
		<title>picoformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=picoformats&amp;diff=28769"/>
		<updated>2008-09-15T19:31:08Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: removed meetmoi.com and zoove.com. No relevant information.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Picoformats =&lt;br /&gt;
&lt;br /&gt;
== Contributors == &amp;lt;!-- alphabetical by surname/ nickname --&amp;gt;&lt;br /&gt;
* [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://factoryjoe.com/blog Chris Messina]&lt;br /&gt;
* Andy Stack, [http://mozes.com Mozes]&lt;br /&gt;
* [http://highearthorbit.com Andrew Turner]&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Picoformats represent an effort being undertaken led by Chris Messina to codify various standards and openly pursue a nomenclature and syntax for communicating and executing commands with mobile devices over SMS or via command line interfaces (CLI).&lt;br /&gt;
&lt;br /&gt;
An example application is [http://dodgeball.com Dodgeball's] use of the at symbol (@) to express checking in to a place.&lt;br /&gt;
&lt;br /&gt;
Using the Microformats process and principles of building block design, our goal is to openly develop a complete syntax for interacting with various mobile services using the characters available on most mobile devices.&lt;br /&gt;
&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
&lt;br /&gt;
* send messages to user mobiles - via SMS, or a small application, that contains information like appointment times, locations,&lt;br /&gt;
directions, and contact info. For example, when2where.com reminds users when they need to leave to get to their appointment, so the&lt;br /&gt;
message may be like:&lt;br /&gt;
&lt;br /&gt;
 leave @ 4:35PM ~Dentist Office -&amp;gt; Detroit, MI&lt;br /&gt;
&lt;br /&gt;
where the text itself is simple and readable, but there *may* be an small utility that would parse the @ symbol to add the event to the calendar, the ~ to allow the person to quickly call that contact, or the -&amp;gt; to pull up a Map/directions to the location&lt;br /&gt;
&lt;br /&gt;
* allow users to write messages to query an application - this is similar to what Mozes has started with notes:&lt;br /&gt;
&lt;br /&gt;
 when2where: ?today    --- what appointments to I have today&lt;br /&gt;
 new @ 4PM ~Olive Garden -&amp;gt; Novi     --- add an appointment&lt;br /&gt;
&lt;br /&gt;
In addition to the obvious mobile device arena, picoformats may be usable in any context where &amp;quot;markup&amp;quot; is too heavy. For example, an IRC bot, whereisbot, that announces user locations as they sign into a channel, or allows people to do:&lt;br /&gt;
&lt;br /&gt;
 .whereami, or .whereis &amp;lt;nick&amp;gt; to geolocate other people in a channel.&lt;br /&gt;
&lt;br /&gt;
The intention is to 'markup' the information, but putting actual XHTML or XML is annoying, since IRC doesn't parse the information at all. So right now the response is:&lt;br /&gt;
&lt;br /&gt;
 ajturner: .whereami&lt;br /&gt;
 whereisbot: ajturner is in Northville, MI, US  [42.4365 x -83.4884]&lt;br /&gt;
&lt;br /&gt;
So then someone could write a Picoformat parser for X-Chat/Colloquy/other that would parse the [ #### x #### ] and provide a Map url link.&lt;br /&gt;
&lt;br /&gt;
Using arrows to denote time and place, familiar from video recorders and other devices.&lt;br /&gt;
Some thoughts: &amp;lt;past  &amp;gt;future  ^now (the hat is also mnemonic for Here + At)  or &amp;gt;5 (in five days time) &amp;gt;&amp;gt;5 (in 5 weeks time) &amp;gt;&amp;gt;&amp;gt;5 (5 months)&lt;br /&gt;
 &lt;br /&gt;
 Meeting &amp;lt;Leeds went well. ^Home. See you &amp;gt;london&lt;br /&gt;
 Sorry, saw them &amp;lt;&amp;lt;2 wanna go see film &amp;gt;3?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Documented_Syntaxes&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Syntaxes ==&lt;br /&gt;
&lt;br /&gt;
* [[actiontastic-syntax | Actiontastic]]&lt;br /&gt;
* [[brightkite-syntax| BrightKite]]&lt;br /&gt;
* [[dodgeball-syntax| Dodgeball]]&lt;br /&gt;
* [[dopplr-syntax | Dopplr]]&lt;br /&gt;
* [[facebook-syntax | Facebook Mobile]]&lt;br /&gt;
* [[igtd-syntax | iGTD]]&lt;br /&gt;
* [[kiboze-syntax|Kiboze]]&lt;br /&gt;
* [[jaiku-syntax|Jaiku]]&lt;br /&gt;
* [[mixd-syntax | Mixd]]&lt;br /&gt;
* [[plazes-syntax | Plazes]]&lt;br /&gt;
* [[poi66-syntax | POI66]] - [http://www.poi66.com/maps/step1.php]&lt;br /&gt;
* [[quickpack-syntax | QuickPack]]&lt;br /&gt;
* [[remember-the-milk | Remember the Milk for Twitter]]&lt;br /&gt;
* [[stikkit-syntax | Stikkit]] [http://stikkit.com/]&lt;br /&gt;
* [[swaggle-syntax | Swaggle]] [http://swaggle.mobi/]&lt;br /&gt;
* [[textmarks-syntax|Textmarks]]&lt;br /&gt;
* [[tfl-syntax | Transport for London]]&lt;br /&gt;
* [[tripit-syntax | TripIt]]&lt;br /&gt;
* [[twitter-syntax | Twitter]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.kiboze.com/kiboze/CustWorks.aspx Kiboze How it Works]&lt;br /&gt;
* Flagr: [http://www.flagr.com/help/howto#mobile_creating_flag Creating mobile flags]&lt;br /&gt;
* [http://www.dodgeball.com/glossary Dodgeball Glossary]&lt;br /&gt;
* [http://twttr.com/t/help/lingo twttr lingo]&lt;br /&gt;
* Twitter (or Jaiku) [[twitter-nanoformats]] brainstorm [http://twitternanoformats.wikispaces.com/ A proposal for Twitter nanoformats]&lt;br /&gt;
* [http://skobee.com/email_howto Skobee's email syntax]&lt;br /&gt;
* [https://www.billmonk.com/about/sms BillMonk syntax]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-examples-in-wild-pending&amp;diff=28618</id>
		<title>hcard-examples-in-wild-pending</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-examples-in-wild-pending&amp;diff=28618"/>
		<updated>2008-09-04T16:25:48Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: Added SuggestionBox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard Examples in the wild, pending review&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&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]], but those hCards have not yet been reviewed. Once checked, they may be moved to [[hcard-examples-in-wild-reviewed]]; a great place to start for anyone looking for examples &amp;quot;in the wild&amp;quot; to try parsing, indexing, organizing etc.  &lt;br /&gt;
&lt;br /&gt;
If people or organizations on your site are marked up with hCard (even just your own contact information), feel free to add it to the '''top''' of this list. Please be sure to include at least one URL to a page on your site that includes actual [[hcard|hCard]] mark-up. Examples added without a URL to a page with hCard mark-up may be removed.&lt;br /&gt;
&lt;br /&gt;
Want to get started with writing an [[hcard|hCard]]? Use the [http://microformats.org/code/hcard/creator hCard creator] to write up some contact information and publish it, or follow the [[hcard-authoring|hCard authoring tips]] to add hCard mark-up to your current contact page.&lt;br /&gt;
&lt;br /&gt;
==New Examples==&lt;br /&gt;
Please add new examples to the '''top''' of this section so they can be reviewed! Please check back after a few days, to see if anyone has found any problems with the examples supplied.&amp;lt;!--&lt;br /&gt;
	 &lt;br /&gt;
 	Please add new examples to the *top* of this section.&lt;br /&gt;
&lt;br /&gt;
 	Please cite the specific page(s) which use(s) microformats, not a non- microformatted home page.&lt;br /&gt;
&lt;br /&gt;
	--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Added in 2008===&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://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].&amp;lt;!--&lt;br /&gt;
	 &lt;br /&gt;
 	Please add new examples to the *top* of this section.&lt;br /&gt;
&lt;br /&gt;
	--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Added in 2007===&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;
** Response in under 12 hours, to advocacy request - [[User:AndyMabbett|Andy Mabbett]]&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.serviceworksglobal.com/pages/contact-us.php Service Works Global] uses hcards on the contact us page and in the site footer&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/keylogger.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.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://christophertcressman.com Christopher T. Cressman] uses an hCard on the home page of his blog, [http://christophertcressman.com christopher t cressman].&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://www.lounews.com/ The Louisville News Company] uses hCard for site-wide contact information for the company and for the site developer.&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;
&lt;br /&gt;
===Added pre 2007===&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/blog/hcard Chris Messina' hCard]&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;
** use: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;fn n&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;given-name&amp;quot;&amp;gt;Andy&amp;lt;/span&amp;gt; &amp;quot;&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Pigsonthewing&amp;lt;/span&amp;gt;&amp;quot; &amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Mabbett&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. [[User:AndyMabbett|Andy Mabbett]] 09:12, 16 Jan 2008 (PST)	 &amp;lt;!--&lt;br /&gt;
 	Please add new examples to the *top* of the current year's section.&lt;br /&gt;
&lt;br /&gt;
	--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=xfn-brainstorming&amp;diff=28466</id>
		<title>xfn-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=xfn-brainstorming&amp;diff=28466"/>
		<updated>2008-08-29T23:01:54Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; XFN Brainstorming &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
This page is for brainstorming about various uses and details of [[XFN]], as well as collecting input for potential extensions.&lt;br /&gt;
&lt;br /&gt;
== Required Reading ==&lt;br /&gt;
Before participating in any XFN brainstorming please read and understand the following:&lt;br /&gt;
* [http://gmpg.org/xfn/intro XFN intro]&lt;br /&gt;
* [http://gmpg.org/xfn/background XFN background]&lt;br /&gt;
* [[xfn-faq|XFN FAQ]] &lt;br /&gt;
* [http://gmpg.org/xfn/and XFN and other services]&lt;br /&gt;
* [[rel-faq]]&lt;br /&gt;
&lt;br /&gt;
Note that all existing XFN values were based on research that showed real world sites that indicated such relationships explicitly via text and hyperlinks to other sites.  Thus any new semantics or values will be more seriously considered if URLs demonstrating existing text labeling and hyperlinking behavior are provided.&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik]&lt;br /&gt;
* [[User:CiaranMc |CiaranMc ]]&lt;br /&gt;
* [http://factoryjoe.com/ Chris Messina]&lt;br /&gt;
* [http://kevinmarks.com/ Kevin Marks]&lt;br /&gt;
&lt;br /&gt;
== general ==&lt;br /&gt;
* [[xfn-wants]]&lt;br /&gt;
&lt;br /&gt;
== Identity Consolidation ==&lt;br /&gt;
See [[rel-me]] and [[identity-consolidation]]. &amp;lt;span id=&amp;quot;Frames&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Indicating non-identity ===&lt;br /&gt;
I think we need a way to indicate that another page should not be consolidated into your identity. - KevinMarks&lt;br /&gt;
&lt;br /&gt;
==== common name disambiguation ====&lt;br /&gt;
If you have a common name, creating a disambiguation page or pages to indicate which ones aren't you is useful for indexers and people alike. In fact there are examples of people already creating such a page and linking to pages that are not them. Real world use cases that would benefit:&lt;br /&gt;
* Kevin Kelly (the former Wired editor) has put together a page to indicate [http://kevinkelly.name|other people also called &amp;quot;Kevin Kelly&amp;quot;].&lt;br /&gt;
* [http://vadim.com Vadim Akslerod] has created a page of [http://vadim.com/vadim/ Vadims on the Net] that link to other people called Vadim.&lt;br /&gt;
&lt;br /&gt;
==== accidental or malicious rel-me links ====&lt;br /&gt;
If someone accidentally or maliciously links to one of my pages with rel=&amp;quot;me&amp;quot; it would be good to be able to actually deny the connection, rather than just passively not link back. See [http://socialgraph-resources.googlecode.com/svn/trunk/samples/findyours.html?q=kevinmarks.com | the social graph API results for kevinmarks.com] for examples. - KevinMarks&lt;br /&gt;
&lt;br /&gt;
This appears to be more of a theoretical use case (as compared to the common name disambiguation) because the real world use ''is'' to simply '''not''' link back, and I don't think we should encourage people to add links to things that are not them, nor are they likely to, especially if it is a spammer/stalker/griefer that is linking to them. - [[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
==== notme proposal ====&lt;br /&gt;
initial proposal: &amp;lt;code&amp;gt;rel=&amp;quot;notme&amp;quot;&amp;lt;/code&amp;gt;, though very open to better suggestions.&lt;br /&gt;
&lt;br /&gt;
== Extending family relationships ==&lt;br /&gt;
&lt;br /&gt;
=== grandparent ===&lt;br /&gt;
&amp;lt;cite&amp;gt;[http://www.gmpg.org/xfn/background The XFN: Background page]&amp;lt;/cite&amp;gt; says:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
We considered adding &amp;quot;grandparent,&amp;quot; but in the end dropped the term because it seemed unlikely to be used in the near future. It may appear in future versions of XFN.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Presumably the assumption is that a grandparent won't have a website, but:&lt;br /&gt;
&lt;br /&gt;
* I think it's important in some situations to capture the age difference in a relationship in a way that @rel=&amp;quot;kin&amp;quot; doesn't seem to.&lt;br /&gt;
** ''follow-up'': XFN is the wrong place to represent age information (even relative). Instead, mark up each person's page with an hCard for them that has a &amp;lt;code&amp;gt;bday&amp;lt;/code&amp;gt; property, with even just the year if you want - that could then be used to determine an approximate age difference, which is presumably all that is desired.  Thus rel=&amp;quot;kin&amp;quot; can be considered to be sufficient for now.&lt;br /&gt;
*** ''rel-kin'' with an age difference of, say, 45 years, might represent any of parent, grandparent, uncle, sibling, cousin or more.&lt;br /&gt;
&lt;br /&gt;
To date, no real world examples have been documented, thus, per the microformats [[process]], we should not complicate a format for a theoretical need. However, anyone that cares to pursue this may find some real world examples to document in the following web searches: [http://www.google.co.uk/search?&amp;amp;q=%22my+grandpa%27s+website%22 &amp;quot;my grandpa's website&amp;quot;], [http://www.google.co.uk/search?&amp;amp;q=%22my+grandfather%27s+website%22 &amp;quot;my grandfather's website&amp;quot;], [http://www.google.co.uk/search?&amp;amp;q=%22my+grandma%27s+website%22 &amp;quot;my grandma's website&amp;quot;], [http://www.google.co.uk/search?&amp;amp;q=%22my+grandmother%27s+website%22 &amp;quot;my grandmother's website&amp;quot;]. See also [[genealogy-examples]].&lt;br /&gt;
&lt;br /&gt;
=== ancestor descendant ===&lt;br /&gt;
Even if they don't maintain it themselves (or are deceased) there might be a URL that does a good job of representing a person.&lt;br /&gt;
&lt;br /&gt;
Consider a site about one's family tree.  It might have something like:&lt;br /&gt;
&lt;br /&gt;
 I can trace my family back to &lt;br /&gt;
 &amp;lt;a href=&amp;quot;http://en.wikipedia.org/wiki/William_I_of_England&amp;quot;&amp;gt;&lt;br /&gt;
  William the conqueror.&lt;br /&gt;
 &amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In these cases it would be useful to have @rel=&amp;quot;ancestor&amp;quot;, and perhaps a corresponding @rel=&amp;quot;descendant&amp;quot;.&lt;br /&gt;
-CiaranMc&lt;br /&gt;
&lt;br /&gt;
See also: [[genealogy-brainstorming#Relationships]]&lt;br /&gt;
&lt;br /&gt;
* follow-up: rel=&amp;quot;kin&amp;quot; can be considered to be sufficient for now.&lt;br /&gt;
&lt;br /&gt;
So far only a couple of (representative) real world examples (from just one site) have been provided, thus, per the microformats [[process]], we should not complicate a format for a need clearly outside of the 80/20. Examples from Wikipedia: [http://en.wikipedia.org/wiki/Winston_Churchill#Family_and_early_life Winston Churchill, with list if ancestors], [http://en.wikipedia.org/wiki/Elizabeth_II_of_the_United_Kingdom#Marriage Queen Elizabeth II]: refers to &amp;quot;Queen Victoria as [her] great-great-grandmother&amp;quot;. See also [[genealogy-examples]].&lt;br /&gt;
&lt;br /&gt;
== Simple Groups and Members ==&lt;br /&gt;
A very simple extension to XFN could enable decentralized group membership. E.g.&lt;br /&gt;
* rel=&amp;quot;group&amp;quot;.  A person could link from their page to the page of a group that they belong to (e.g. their company, school, DJ collective etc.) and thus assert that they belong to that group.&lt;br /&gt;
* rel=&amp;quot;member&amp;quot;.  The web pages of groups could link to who they consider members and thus assert that person's membership.&lt;br /&gt;
&lt;br /&gt;
The relationships could be required bi-directional in order to confirm group membership, that is, both the individual must link to the group with rel=&amp;quot;group&amp;quot; and the group must link to the individiual with rel=&amp;quot;member&amp;quot; in order for the membership to be considered &amp;quot;true&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
See also [[group-brainstorming]] for more on this including documentation of examples.&lt;br /&gt;
&lt;br /&gt;
== fans and followers ==&lt;br /&gt;
It's becoming a common aspect of many social networks (see list below) that you have unreciprocated and non-friend-based connections to people. These connections are particularly noteworthy where you don't really ever expect to have your connections reciprocated, but instead are similar to the idea of &amp;quot;rel-muse&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
=== fan follower examples ===&lt;br /&gt;
Sites that have the semantic / implied-schema of &amp;quot;fan&amp;quot; or &amp;quot;follower&amp;quot;)&lt;br /&gt;
* http://crowdvine.com/ (has fans and mutual fans and want to meet)&lt;br /&gt;
* http://pownce.com/ (has fans vs friends)&lt;br /&gt;
* http://twitter.com/ (has followers vs friends)&lt;br /&gt;
* http://upcoming.org/ (has fans vs friends)&lt;br /&gt;
* http://www.sugarloot.com (has Fans vs Favorites)&lt;br /&gt;
&lt;br /&gt;
=== possible inverse of fan terms ===&lt;br /&gt;
Brainstorm list of possible terms (for an inverse of fan/follower):&lt;br /&gt;
* source&lt;br /&gt;
** +1 I like this as a neutral term, &amp;lt;s&amp;gt;except that it would be better kept as a rel value for atom:source in [[hAtom]]&amp;lt;/s&amp;gt; (on re-reading the Atom spec, atom:source should be a class on a containing element) [[User:Kevin Marks|Kevin Marks]]&lt;br /&gt;
* influence&lt;br /&gt;
* influencer&lt;br /&gt;
** +1 [[User:Tantek|Tantek]] - I like this one the best so far, as it seems to represent the implied semantics the best.  If I follow someone, then they are an &amp;quot;influencer&amp;quot; to me.&lt;br /&gt;
** -1 Sounds like &amp;quot;influenza&amp;quot;, and just because I follow someone, doesn't mean they influence me. [[User:Gazza|Gazza]]&lt;br /&gt;
** -1 - influence can be negative as well as positive: &amp;quot;The child only shoplifted because he was under the influence of older boys&amp;quot;. [[User:AndyMabbett|Andy Mabbett]] 01:04, 26 Jan 2008 (PST)&lt;br /&gt;
** +1 This seems strong; the relationship is not meant to imply an endorsement; we have [[vote-links]] for that [[User:Kevin Marks|Kevin Marks]] 14:30, 24 Mar 2008 (PDT) &lt;br /&gt;
** -1 This value is assigned one of 2 ways; arbitrarily by app, or by the user. I don't trust an app to make a decision on what constitutes an ''influencer'' and I don't see a user choosing that in its current wording --[[User:Donohoe|Donohoe]] 19:55, 5 Aug 2008 (PDT)&lt;br /&gt;
* leader&lt;br /&gt;
* star&lt;br /&gt;
* hero&lt;br /&gt;
* favorite&lt;br /&gt;
* guider&lt;br /&gt;
* role-model&lt;br /&gt;
* idol&lt;br /&gt;
** -1 [[User:Tantek|Tantek]] These all seem too strong and sometimes imply more subordination than most people want.&lt;br /&gt;
* subscription&lt;br /&gt;
** +1 Tony Stubblebine&lt;br /&gt;
** +1 this one seems most neutral to me (a good thing) [[User:STHayden|STHayden]] 08:35, 3 Mar 2008 (PST)&lt;br /&gt;
** -1 this makes sense in a feed-reader context, but not necessarily in a blogroll one; it implies the content rather than the person [[User:Kevin Marks|Kevin Marks]] 14:30, 24 Mar 2008 (PDT)&lt;br /&gt;
** +1 Was neutral, now in favor --[[User:Donohoe|Donohoe]] 19:11, 6 Aug 2008 (PDT)&lt;br /&gt;
** -1 against for same reasons as Kevin Marks. And &amp;quot;subscription&amp;quot; doesn't sound like a term for a person. --  [[User:Tantek|Tantek]]&lt;br /&gt;
* of-interest&lt;br /&gt;
* interest&lt;br /&gt;
* followee&lt;br /&gt;
* focus&lt;br /&gt;
* &amp;lt;span id=&amp;quot;following&amp;quot;&amp;gt;following&amp;lt;/span&amp;gt; - as the singular of &amp;quot;followings&amp;quot;. If someone is one of your &amp;quot;followings&amp;quot;, then you are following that someone, as opposed to if someone is one of your &amp;quot;followers&amp;quot;, then that someone is following you! It may sound a bit clumsy/awkward as a term at first, but I think that's actually a sign of novel usage, which has some appeal because then it means the term may be available for us to fill it with this meaning - or I should say, amplify this meaning as it [http://search.twitter.com/search?q=followings has been given by existing Twitter users].&lt;br /&gt;
** +1 [[User:Tantek|Tantek]] '''following''' is the best term I have seen for the inverse of fan/follower, and paired with '''follower''', provides a good enough complementary pair of relationships to express both directions.&lt;br /&gt;
** Note that Google has now [http://buzz.blogger.com/2008/08/show-off-your-followers.html adopted the &amp;quot;follow&amp;quot; terminology]. -- [http://factoryjoe.com/ Chris Messina]&lt;br /&gt;
** ...&lt;br /&gt;
&lt;br /&gt;
=== rejected fan follower terms ===&lt;br /&gt;
==== rel-fan ====&lt;br /&gt;
I would propose adding &amp;quot;rel-fan&amp;quot; or &amp;quot;rel-follower&amp;quot; to the collection of XFN values -- as being something like a &amp;quot;contact&amp;quot; or a &amp;quot;muse&amp;quot; but having a different purpose within the realm of social networking. Again, given that this is showing up in social networks like Pownce (fan), Twitter (follower), and that these words are becoming common, I wonder if it wouldn't make sense to even ditch rel-muse in favor of rel-follower and rel-fan (the former implying some kind of positive social stalking and the latter a kind of amiable appreciation for someone's work). &lt;br /&gt;
&lt;br /&gt;
This fan/follower designation seems sorely lacking from Flickr where not everyone falls into either contact, friend or family... but in many cases, you just like someone's photos and want to be able to check in on them every now and again, similar to the way that people &amp;quot;follow&amp;quot; or &amp;quot;subscribe&amp;quot; to blog feeds... Someone who reads my blog feed could be considered a &amp;quot;follower&amp;quot; -- as in, &amp;quot;someone who follows my blog&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
- Chris Messina&lt;br /&gt;
&lt;br /&gt;
Chris, rel-fan or rel-follower would work for you to point to people who follow you, but the converse case is probably more useful, saying who you follow (eg blogroll case too). We need a good noun for that relationship that describes how you view them, that is less coloured than 'muse' currently is by being classified as romantic. rel-source or rel-influence maybe? Very hard to come up with a good noun. &lt;br /&gt;
&lt;br /&gt;
[[User:Kevin Marks|Kevin Marks]] 12:57, 17 Aug 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
* Hence the existence of the HTML &amp;quot;rev&amp;quot; attribute. [[User:TobyInk|TobyInk]] 00:12, 25 Feb 2008 (PST)&lt;br /&gt;
** The [[rel-faq#Should_rev_even_be_used|use of rev has been deprecated]] since authors nearly always get it wrong. [[User:Tantek|Tantek]] 10:32, 6 Aug 2008 (PDT)&lt;br /&gt;
*** I'm not suggesting that we create a new microformat using rev — I'm pointing out that if we define &amp;lt;code&amp;gt;rel=fan&amp;lt;/code&amp;gt; (for linking to your fans) then &amp;lt;code&amp;gt;rev=fan&amp;lt;/code&amp;gt; &amp;quot;automatically pops into meaning&amp;quot;. (Besides which the usually quoted evidence of rev being &amp;quot;confusing&amp;quot; to authors (i.e. Google's analysis) is flaky at best.) [[User:TobyInk|TobyInk]] 15:26, 6 Aug 2008 (PDT)&lt;br /&gt;
**** Suggesting the use of &amp;lt;code&amp;gt;rev=fan&amp;lt;/code&amp;gt; (as you just did) *is* creating a new microformat using rev, so yes, you are suggesting it.  And Google's analysis backed up many years of my (and others') personal anecdotal experience with web developers where &amp;amp;gt;90% did not understand the difference between rel and rev. [[User:Tantek|Tantek]] 17:53, 6 Aug 2008 (PDT)&lt;br /&gt;
***** My point is that as per the [http://www.w3.org/TR/REC-html40/struct/links.html#adef-rev HTML 4 definition of &amp;lt;code&amp;gt;rev&amp;lt;/code&amp;gt;] any time anyone defines a new link type &amp;lt;code&amp;gt;rel=''X''&amp;lt;/code&amp;gt;, the meaning of &amp;lt;code&amp;gt;rev=''X''&amp;lt;/code&amp;gt; becomes defined too. This is unavoidable. We should define new link types in terms of &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; rather than &amp;lt;code&amp;gt;rev&amp;lt;/code&amp;gt; for clarity, but we can't prevent people from taking advantage of the facilities inherent in (X)HTML to mark up the inverse meaning. (e.g. [http://changelog.ca/log/2005/09/12/proposed-microformats-for-reputation-and-trust-metrics &amp;lt;code&amp;gt;rev=tag&amp;lt;/code&amp;gt; mention], [http://singpolyma.net/2007/05/the-state-of-distributed-social-networking/ and again], [http://styrheim.weblogg.no/311005201154_revtags.html and again]) [[User:TobyInk|TobyInk]] 01:17, 7 Aug 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
==== rel-reader ====&lt;br /&gt;
For blogrolls at least, what about rel-read / rel-reader? -- [[User:SteveIvy|Steve Ivy]]&lt;br /&gt;
&lt;br /&gt;
Steve, &amp;quot;read&amp;quot; is still a verb (and [[rel-values]] need to be nouns), and &amp;quot;reader&amp;quot; would still imply that they are a &amp;quot;reader&amp;quot; of yours, rather than vice versa. -- [[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
==== rel-subscriber ====&lt;br /&gt;
What about ''subscriber'' instead - also very neutral and more akin to others in the list? --[[User:Donohoe|Donohoe]] 19:55, 5 Aug 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;subscriber&amp;quot; is no different from &amp;quot;reader&amp;quot; in this respect, and means the *opposite* of what we are looking for.  I.e. a rel=&amp;quot;subscriber&amp;quot; link to someone would mean that someone is a subscriber of my content/feed. -- [[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
== favorites ==&lt;br /&gt;
Another possibility is perhaps 'favorite', that is, people do link to favorite bands for example, which is similar to saying they are a fan of the band. Thus you could add &amp;lt;code&amp;gt;rel=&amp;quot;favorite&amp;quot;&amp;lt;/code&amp;gt; to such hyperlinks to indicate that that music band over there is a favorite of yours. [[User:Tantek|Tantek]] 17:57, 2 Oct 2007 (PDT) based on a question raised by DanBri.&lt;br /&gt;
&lt;br /&gt;
== mentors and mentees ==&lt;br /&gt;
Though seemingly rare, I personally have found use for &amp;lt;code&amp;gt;rel=&amp;quot;mentor&amp;quot;&amp;lt;/code&amp;gt; and inverse &amp;lt;code&amp;gt;rel=&amp;quot;mentee&amp;quot;&amp;lt;/code&amp;gt; (see Wiktionary definitions: [http://en.wiktionary.org/wiki/mentor mentor], [http://en.wiktionary.org/wiki/mentee mentee]).  I don't have sufficient evidence to even consider proposing adding these to XFN, but I wanted to capture them here as a brainstorm while I look into using them personally and research examples in the wild.  I may just use them as [[POSH]] myself.&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]] 02:34, 8 Jul 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
* +1 Erica OGrady&lt;br /&gt;
&lt;br /&gt;
== advisor and advisee ==&lt;br /&gt;
Similarly, I have seen folks reference someone as an advisor, or note that they are advising someone.  We could consider &amp;lt;code&amp;gt;rel=&amp;quot;advisor&amp;quot;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rel=&amp;quot;advisee&amp;quot;&amp;lt;/code&amp;gt; to capture and represent these semantics.&lt;br /&gt;
&lt;br /&gt;
Note that the relationship of advising a company or organization would be much better captured by noting &amp;quot;advisor&amp;quot; as a &amp;quot;role&amp;quot; property value in an hCard listing that organization, e.g.:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Tantek Çelik&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;org&amp;quot;&amp;gt;Citizen Agency&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;advisor&amp;lt;/span&amp;gt;&lt;br /&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;
Again, I think [[POSH]] usage of these terms would make a good experiment to see if there is sufficient use to formalize them.&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]] 07:45, 29 Dec 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== scholarly ==&lt;br /&gt;
A possibility that might be added is scholarly definitions.  For example &amp;lt;code&amp;gt;rel=&amp;quot;mentor&amp;quot;&amp;lt;/code&amp;gt;[Student's Teacher] (similar to above), &amp;lt;code&amp;gt;rel=&amp;quot;student&amp;quot;&amp;lt;/code&amp;gt;[Teacher's Student] (inverse of mentor), &amp;lt;code&amp;gt;rel=&amp;quot;classmate&amp;quot;&amp;lt;/code&amp;gt;[Student's classmate].  Possible uses in Social Networking sites that involve adding your school, grading your teachers, etc.  Teacher &amp;lt;-&amp;gt; Teacher would be specified in with &amp;lt;code&amp;gt;rel=&amp;quot;co-worker&amp;quot;&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;rel=&amp;quot;colleague&amp;quot;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[User:Navarr|Navarr]] 05:56, 13 Dec 2007 (CST)&lt;br /&gt;
&lt;br /&gt;
== professional ==&lt;br /&gt;
* [[xpn]] / [[xpn-examples]] - proposal to extend (or replicate) XFN for business (or professional - hence X'''P'''N) relationships&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
{{xfn-related-pages}}&lt;br /&gt;
* [[hcard|hCard]]&lt;br /&gt;
* [[hcard-brainstorming|hCard brainstorming]]&lt;br /&gt;
* [[social-network-portability]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=xfn-brainstorming&amp;diff=28452</id>
		<title>xfn-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=xfn-brainstorming&amp;diff=28452"/>
		<updated>2008-08-29T22:58:38Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added follow note about google&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; XFN Brainstorming &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
This page is for brainstorming about various uses and details of [[XFN]], as well as collecting input for potential extensions.&lt;br /&gt;
&lt;br /&gt;
== Required Reading ==&lt;br /&gt;
Before participating in any XFN brainstorming please read and understand the following:&lt;br /&gt;
* [http://gmpg.org/xfn/intro XFN intro]&lt;br /&gt;
* [http://gmpg.org/xfn/background XFN background]&lt;br /&gt;
* [[xfn-faq|XFN FAQ]] &lt;br /&gt;
* [http://gmpg.org/xfn/and XFN and other services]&lt;br /&gt;
* [[rel-faq]]&lt;br /&gt;
&lt;br /&gt;
Note that all existing XFN values were based on research that showed real world sites that indicated such relationships explicitly via text and hyperlinks to other sites.  Thus any new semantics or values will be more seriously considered if URLs demonstrating existing text labeling and hyperlinking behavior are provided.&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik]&lt;br /&gt;
* [[User:CiaranMc |CiaranMc ]]&lt;br /&gt;
* [http://factoryjoe.com/ Chris Messina]&lt;br /&gt;
* [http://kevinmarks.com/ Kevin Marks]&lt;br /&gt;
&lt;br /&gt;
== general ==&lt;br /&gt;
* [[xfn-wants]]&lt;br /&gt;
&lt;br /&gt;
== Identity Consolidation ==&lt;br /&gt;
See [[rel-me]] and [[identity-consolidation]]. &amp;lt;span id=&amp;quot;Frames&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Indicating non-identity ===&lt;br /&gt;
I think we need a way to indicate that another page should not be consolidated into your identity. - KevinMarks&lt;br /&gt;
&lt;br /&gt;
==== common name disambiguation ====&lt;br /&gt;
If you have a common name, creating a disambiguation page or pages to indicate which ones aren't you is useful for indexers and people alike. In fact there are examples of people already creating such a page and linking to pages that are not them. Real world use cases that would benefit:&lt;br /&gt;
* Kevin Kelly (the former Wired editor) has put together a page to indicate [http://kevinkelly.name|other people also called &amp;quot;Kevin Kelly&amp;quot;].&lt;br /&gt;
* [http://vadim.com Vadim Akslerod] has created a page of [http://vadim.com/vadim/ Vadims on the Net] that link to other people called Vadim.&lt;br /&gt;
&lt;br /&gt;
==== accidental or malicious rel-me links ====&lt;br /&gt;
If someone accidentally or maliciously links to one of my pages with rel=&amp;quot;me&amp;quot; it would be good to be able to actually deny the connection, rather than just passively not link back. See [http://socialgraph-resources.googlecode.com/svn/trunk/samples/findyours.html?q=kevinmarks.com | the social graph API results for kevinmarks.com] for examples. - KevinMarks&lt;br /&gt;
&lt;br /&gt;
This appears to be more of a theoretical use case (as compared to the common name disambiguation) because the real world use ''is'' to simply '''not''' link back, and I don't think we should encourage people to add links to things that are not them, nor are they likely to, especially if it is a spammer/stalker/griefer that is linking to them. - [[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
==== notme proposal ====&lt;br /&gt;
initial proposal: &amp;lt;code&amp;gt;rel=&amp;quot;notme&amp;quot;&amp;lt;/code&amp;gt;, though very open to better suggestions.&lt;br /&gt;
&lt;br /&gt;
== Extending family relationships ==&lt;br /&gt;
&lt;br /&gt;
=== grandparent ===&lt;br /&gt;
&amp;lt;cite&amp;gt;[http://www.gmpg.org/xfn/background The XFN: Background page]&amp;lt;/cite&amp;gt; says:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
We considered adding &amp;quot;grandparent,&amp;quot; but in the end dropped the term because it seemed unlikely to be used in the near future. It may appear in future versions of XFN.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Presumably the assumption is that a grandparent won't have a website, but:&lt;br /&gt;
&lt;br /&gt;
* I think it's important in some situations to capture the age difference in a relationship in a way that @rel=&amp;quot;kin&amp;quot; doesn't seem to.&lt;br /&gt;
** ''follow-up'': XFN is the wrong place to represent age information (even relative). Instead, mark up each person's page with an hCard for them that has a &amp;lt;code&amp;gt;bday&amp;lt;/code&amp;gt; property, with even just the year if you want - that could then be used to determine an approximate age difference, which is presumably all that is desired.  Thus rel=&amp;quot;kin&amp;quot; can be considered to be sufficient for now.&lt;br /&gt;
*** ''rel-kin'' with an age difference of, say, 45 years, might represent any of parent, grandparent, uncle, sibling, cousin or more.&lt;br /&gt;
&lt;br /&gt;
To date, no real world examples have been documented, thus, per the microformats [[process]], we should not complicate a format for a theoretical need. However, anyone that cares to pursue this may find some real world examples to document in the following web searches: [http://www.google.co.uk/search?&amp;amp;q=%22my+grandpa%27s+website%22 &amp;quot;my grandpa's website&amp;quot;], [http://www.google.co.uk/search?&amp;amp;q=%22my+grandfather%27s+website%22 &amp;quot;my grandfather's website&amp;quot;], [http://www.google.co.uk/search?&amp;amp;q=%22my+grandma%27s+website%22 &amp;quot;my grandma's website&amp;quot;], [http://www.google.co.uk/search?&amp;amp;q=%22my+grandmother%27s+website%22 &amp;quot;my grandmother's website&amp;quot;]. See also [[genealogy-examples]].&lt;br /&gt;
&lt;br /&gt;
=== ancestor descendant ===&lt;br /&gt;
Even if they don't maintain it themselves (or are deceased) there might be a URL that does a good job of representing a person.&lt;br /&gt;
&lt;br /&gt;
Consider a site about one's family tree.  It might have something like:&lt;br /&gt;
&lt;br /&gt;
 I can trace my family back to &lt;br /&gt;
 &amp;lt;a href=&amp;quot;http://en.wikipedia.org/wiki/William_I_of_England&amp;quot;&amp;gt;&lt;br /&gt;
  William the conqueror.&lt;br /&gt;
 &amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In these cases it would be useful to have @rel=&amp;quot;ancestor&amp;quot;, and perhaps a corresponding @rel=&amp;quot;descendant&amp;quot;.&lt;br /&gt;
-CiaranMc&lt;br /&gt;
&lt;br /&gt;
See also: [[genealogy-brainstorming#Relationships]]&lt;br /&gt;
&lt;br /&gt;
* follow-up: rel=&amp;quot;kin&amp;quot; can be considered to be sufficient for now.&lt;br /&gt;
&lt;br /&gt;
So far only a couple of (representative) real world examples (from just one site) have been provided, thus, per the microformats [[process]], we should not complicate a format for a need clearly outside of the 80/20. Examples from Wikipedia: [http://en.wikipedia.org/wiki/Winston_Churchill#Family_and_early_life Winston Churchill, with list if ancestors], [http://en.wikipedia.org/wiki/Elizabeth_II_of_the_United_Kingdom#Marriage Queen Elizabeth II]: refers to &amp;quot;Queen Victoria as [her] great-great-grandmother&amp;quot;. See also [[genealogy-examples]].&lt;br /&gt;
&lt;br /&gt;
== Simple Groups and Members ==&lt;br /&gt;
A very simple extension to XFN could enable decentralized group membership. E.g.&lt;br /&gt;
* rel=&amp;quot;group&amp;quot;.  A person could link from their page to the page of a group that they belong to (e.g. their company, school, DJ collective etc.) and thus assert that they belong to that group.&lt;br /&gt;
* rel=&amp;quot;member&amp;quot;.  The web pages of groups could link to who they consider members and thus assert that person's membership.&lt;br /&gt;
&lt;br /&gt;
The relationships could be required bi-directional in order to confirm group membership, that is, both the individual must link to the group with rel=&amp;quot;group&amp;quot; and the group must link to the individiual with rel=&amp;quot;member&amp;quot; in order for the membership to be considered &amp;quot;true&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
See also [[group-brainstorming]] for more on this including documentation of examples.&lt;br /&gt;
&lt;br /&gt;
== fans and followers ==&lt;br /&gt;
It's becoming a common aspect of many social networks (see list below) that you have unreciprocated and non-friend-based connections to people. These connections are particularly noteworthy where you don't really ever expect to have your connections reciprocated, but instead are similar to the idea of &amp;quot;rel-muse&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
=== fan follower examples ===&lt;br /&gt;
Sites that have the semantic / implied-schema of &amp;quot;fan&amp;quot; or &amp;quot;follower&amp;quot;)&lt;br /&gt;
* http://crowdvine.com/ (has fans and mutual fans and want to meet)&lt;br /&gt;
* http://pownce.com/ (has fans vs friends)&lt;br /&gt;
* http://twitter.com/ (has followers vs friends)&lt;br /&gt;
* http://upcoming.org/ (has fans vs friends)&lt;br /&gt;
* http://www.sugarloot.com (has Fans vs Favorites)&lt;br /&gt;
&lt;br /&gt;
=== possible inverse of fan terms ===&lt;br /&gt;
Brainstorm list of possible terms (for an inverse of fan/follower):&lt;br /&gt;
* source&lt;br /&gt;
** +1 I like this as a neutral term, &amp;lt;s&amp;gt;except that it would be better kept as a rel value for atom:source in [[hAtom]]&amp;lt;/s&amp;gt; (on re-reading the Atom spec, atom:source should be a class on a containing element) [[User:Kevin Marks|Kevin Marks]]&lt;br /&gt;
* influence&lt;br /&gt;
* influencer&lt;br /&gt;
** +1 [[User:Tantek|Tantek]] - I like this one the best so far, as it seems to represent the implied semantics the best.  If I follow someone, then they are an &amp;quot;influencer&amp;quot; to me.&lt;br /&gt;
** -1 Sounds like &amp;quot;influenza&amp;quot;, and just because I follow someone, doesn't mean they influence me. [[User:Gazza|Gazza]]&lt;br /&gt;
** -1 - influence can be negative as well as positive: &amp;quot;The child only shoplifted because he was under the influence of older boys&amp;quot;. [[User:AndyMabbett|Andy Mabbett]] 01:04, 26 Jan 2008 (PST)&lt;br /&gt;
** +1 This seems strong; the relationship is not meant to imply an endorsement; we have [[vote-links]] for that [[User:Kevin Marks|Kevin Marks]] 14:30, 24 Mar 2008 (PDT) &lt;br /&gt;
** -1 This value is assigned one of 2 ways; arbitrarily by app, or by the user. I don't trust an app to make a decision on what constitutes an ''influencer'' and I don't see a user choosing that in its current wording --[[User:Donohoe|Donohoe]] 19:55, 5 Aug 2008 (PDT)&lt;br /&gt;
* leader&lt;br /&gt;
* star&lt;br /&gt;
* hero&lt;br /&gt;
* favorite&lt;br /&gt;
* guider&lt;br /&gt;
* role-model&lt;br /&gt;
* idol&lt;br /&gt;
** -1 [[User:Tantek|Tantek]] These all seem too strong and sometimes imply more subordination than most people want.&lt;br /&gt;
* subscription&lt;br /&gt;
** +1 Tony Stubblebine&lt;br /&gt;
** +1 this one seems most neutral to me (a good thing) [[User:STHayden|STHayden]] 08:35, 3 Mar 2008 (PST)&lt;br /&gt;
** -1 this makes sense in a feed-reader context, but not necessarily in a blogroll one; it implies the content rather than the person [[User:Kevin Marks|Kevin Marks]] 14:30, 24 Mar 2008 (PDT)&lt;br /&gt;
** +1 Was neutral, now in favor --[[User:Donohoe|Donohoe]] 19:11, 6 Aug 2008 (PDT)&lt;br /&gt;
** -1 against for same reasons as Kevin Marks. And &amp;quot;subscription&amp;quot; doesn't sound like a term for a person. --  [[User:Tantek|Tantek]]&lt;br /&gt;
* of-interest&lt;br /&gt;
* interest&lt;br /&gt;
* followee&lt;br /&gt;
* focus&lt;br /&gt;
* &amp;lt;span id=&amp;quot;following&amp;quot;&amp;gt;following&amp;lt;/span&amp;gt; - as the singular of &amp;quot;followings&amp;quot;. If someone is one of your &amp;quot;followings&amp;quot;, then you are following that someone, as opposed to if someone is one of your &amp;quot;followers&amp;quot;, then that someone is following you! It may sound a bit clumsy/awkward as a term at first, but I think that's actually a sign of novel usage, which has some appeal because then it means the term may be available for us to fill it with this meaning - or I should say, amplify this meaning as it [http://search.twitter.com/search?q=followings has been given by existing Twitter users].&lt;br /&gt;
** +1 [[User:Tantek|Tantek]] '''following''' is the best term I have seen for the inverse of fan/follower, and paired with '''follower''', provides a good enough complementary pair of relationships to express both directions.&lt;br /&gt;
** ...&lt;br /&gt;
&lt;br /&gt;
=== rejected fan follower terms ===&lt;br /&gt;
==== rel-fan ====&lt;br /&gt;
I would propose adding &amp;quot;rel-fan&amp;quot; or &amp;quot;rel-follower&amp;quot; to the collection of XFN values -- as being something like a &amp;quot;contact&amp;quot; or a &amp;quot;muse&amp;quot; but having a different purpose within the realm of social networking. Again, given that this is showing up in social networks like Pownce (fan), Twitter (follower), and that these words are becoming common, I wonder if it wouldn't make sense to even ditch rel-muse in favor of rel-follower and rel-fan (the former implying some kind of positive social stalking and the latter a kind of amiable appreciation for someone's work). &lt;br /&gt;
&lt;br /&gt;
This fan/follower designation seems sorely lacking from Flickr where not everyone falls into either contact, friend or family... but in many cases, you just like someone's photos and want to be able to check in on them every now and again, similar to the way that people &amp;quot;follow&amp;quot; or &amp;quot;subscribe&amp;quot; to blog feeds... Someone who reads my blog feed could be considered a &amp;quot;follower&amp;quot; -- as in, &amp;quot;someone who follows my blog&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
- Chris Messina&lt;br /&gt;
&lt;br /&gt;
Chris, rel-fan or rel-follower would work for you to point to people who follow you, but the converse case is probably more useful, saying who you follow (eg blogroll case too). We need a good noun for that relationship that describes how you view them, that is less coloured than 'muse' currently is by being classified as romantic. rel-source or rel-influence maybe? Very hard to come up with a good noun. &lt;br /&gt;
&lt;br /&gt;
[[User:Kevin Marks|Kevin Marks]] 12:57, 17 Aug 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
* Hence the existence of the HTML &amp;quot;rev&amp;quot; attribute. [[User:TobyInk|TobyInk]] 00:12, 25 Feb 2008 (PST)&lt;br /&gt;
** The [[rel-faq#Should_rev_even_be_used|use of rev has been deprecated]] since authors nearly always get it wrong. [[User:Tantek|Tantek]] 10:32, 6 Aug 2008 (PDT)&lt;br /&gt;
*** I'm not suggesting that we create a new microformat using rev — I'm pointing out that if we define &amp;lt;code&amp;gt;rel=fan&amp;lt;/code&amp;gt; (for linking to your fans) then &amp;lt;code&amp;gt;rev=fan&amp;lt;/code&amp;gt; &amp;quot;automatically pops into meaning&amp;quot;. (Besides which the usually quoted evidence of rev being &amp;quot;confusing&amp;quot; to authors (i.e. Google's analysis) is flaky at best.) [[User:TobyInk|TobyInk]] 15:26, 6 Aug 2008 (PDT)&lt;br /&gt;
**** Suggesting the use of &amp;lt;code&amp;gt;rev=fan&amp;lt;/code&amp;gt; (as you just did) *is* creating a new microformat using rev, so yes, you are suggesting it.  And Google's analysis backed up many years of my (and others') personal anecdotal experience with web developers where &amp;amp;gt;90% did not understand the difference between rel and rev. [[User:Tantek|Tantek]] 17:53, 6 Aug 2008 (PDT)&lt;br /&gt;
***** My point is that as per the [http://www.w3.org/TR/REC-html40/struct/links.html#adef-rev HTML 4 definition of &amp;lt;code&amp;gt;rev&amp;lt;/code&amp;gt;] any time anyone defines a new link type &amp;lt;code&amp;gt;rel=''X''&amp;lt;/code&amp;gt;, the meaning of &amp;lt;code&amp;gt;rev=''X''&amp;lt;/code&amp;gt; becomes defined too. This is unavoidable. We should define new link types in terms of &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; rather than &amp;lt;code&amp;gt;rev&amp;lt;/code&amp;gt; for clarity, but we can't prevent people from taking advantage of the facilities inherent in (X)HTML to mark up the inverse meaning. (e.g. [http://changelog.ca/log/2005/09/12/proposed-microformats-for-reputation-and-trust-metrics &amp;lt;code&amp;gt;rev=tag&amp;lt;/code&amp;gt; mention], [http://singpolyma.net/2007/05/the-state-of-distributed-social-networking/ and again], [http://styrheim.weblogg.no/311005201154_revtags.html and again]) [[User:TobyInk|TobyInk]] 01:17, 7 Aug 2008 (PDT)&lt;br /&gt;
*** Note that Google has now [http://buzz.blogger.com/2008/08/show-off-your-followers.html adopted the &amp;quot;follow&amp;quot; terminology].&lt;br /&gt;
&lt;br /&gt;
==== rel-reader ====&lt;br /&gt;
For blogrolls at least, what about rel-read / rel-reader? -- [[User:SteveIvy|Steve Ivy]]&lt;br /&gt;
&lt;br /&gt;
Steve, &amp;quot;read&amp;quot; is still a verb (and [[rel-values]] need to be nouns), and &amp;quot;reader&amp;quot; would still imply that they are a &amp;quot;reader&amp;quot; of yours, rather than vice versa. -- [[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
==== rel-subscriber ====&lt;br /&gt;
What about ''subscriber'' instead - also very neutral and more akin to others in the list? --[[User:Donohoe|Donohoe]] 19:55, 5 Aug 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;subscriber&amp;quot; is no different from &amp;quot;reader&amp;quot; in this respect, and means the *opposite* of what we are looking for.  I.e. a rel=&amp;quot;subscriber&amp;quot; link to someone would mean that someone is a subscriber of my content/feed. -- [[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
== favorites ==&lt;br /&gt;
Another possibility is perhaps 'favorite', that is, people do link to favorite bands for example, which is similar to saying they are a fan of the band. Thus you could add &amp;lt;code&amp;gt;rel=&amp;quot;favorite&amp;quot;&amp;lt;/code&amp;gt; to such hyperlinks to indicate that that music band over there is a favorite of yours. [[User:Tantek|Tantek]] 17:57, 2 Oct 2007 (PDT) based on a question raised by DanBri.&lt;br /&gt;
&lt;br /&gt;
== mentors and mentees ==&lt;br /&gt;
Though seemingly rare, I personally have found use for &amp;lt;code&amp;gt;rel=&amp;quot;mentor&amp;quot;&amp;lt;/code&amp;gt; and inverse &amp;lt;code&amp;gt;rel=&amp;quot;mentee&amp;quot;&amp;lt;/code&amp;gt; (see Wiktionary definitions: [http://en.wiktionary.org/wiki/mentor mentor], [http://en.wiktionary.org/wiki/mentee mentee]).  I don't have sufficient evidence to even consider proposing adding these to XFN, but I wanted to capture them here as a brainstorm while I look into using them personally and research examples in the wild.  I may just use them as [[POSH]] myself.&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]] 02:34, 8 Jul 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
* +1 Erica OGrady&lt;br /&gt;
&lt;br /&gt;
== advisor and advisee ==&lt;br /&gt;
Similarly, I have seen folks reference someone as an advisor, or note that they are advising someone.  We could consider &amp;lt;code&amp;gt;rel=&amp;quot;advisor&amp;quot;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rel=&amp;quot;advisee&amp;quot;&amp;lt;/code&amp;gt; to capture and represent these semantics.&lt;br /&gt;
&lt;br /&gt;
Note that the relationship of advising a company or organization would be much better captured by noting &amp;quot;advisor&amp;quot; as a &amp;quot;role&amp;quot; property value in an hCard listing that organization, e.g.:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Tantek Çelik&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;org&amp;quot;&amp;gt;Citizen Agency&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt;advisor&amp;lt;/span&amp;gt;&lt;br /&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;
Again, I think [[POSH]] usage of these terms would make a good experiment to see if there is sufficient use to formalize them.&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]] 07:45, 29 Dec 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== scholarly ==&lt;br /&gt;
A possibility that might be added is scholarly definitions.  For example &amp;lt;code&amp;gt;rel=&amp;quot;mentor&amp;quot;&amp;lt;/code&amp;gt;[Student's Teacher] (similar to above), &amp;lt;code&amp;gt;rel=&amp;quot;student&amp;quot;&amp;lt;/code&amp;gt;[Teacher's Student] (inverse of mentor), &amp;lt;code&amp;gt;rel=&amp;quot;classmate&amp;quot;&amp;lt;/code&amp;gt;[Student's classmate].  Possible uses in Social Networking sites that involve adding your school, grading your teachers, etc.  Teacher &amp;lt;-&amp;gt; Teacher would be specified in with &amp;lt;code&amp;gt;rel=&amp;quot;co-worker&amp;quot;&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;rel=&amp;quot;colleague&amp;quot;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[User:Navarr|Navarr]] 05:56, 13 Dec 2007 (CST)&lt;br /&gt;
&lt;br /&gt;
== professional ==&lt;br /&gt;
* [[xpn]] / [[xpn-examples]] - proposal to extend (or replicate) XFN for business (or professional - hence X'''P'''N) relationships&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
{{xfn-related-pages}}&lt;br /&gt;
* [[hcard|hCard]]&lt;br /&gt;
* [[hcard-brainstorming|hCard brainstorming]]&lt;br /&gt;
* [[social-network-portability]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=spread-microformats&amp;diff=28661</id>
		<title>spread-microformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=spread-microformats&amp;diff=28661"/>
		<updated>2008-08-29T22:23:00Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added link to vimeo group&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Spread Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Inspired by [http://spreadfirefox.com/ Spread Firefox], this page is for sharing community resources for marketing microformats such as [[buttons]], banners, wallpaper / desktop screens, logo graphics, etc.&lt;br /&gt;
&lt;br /&gt;
== Email ==&lt;br /&gt;
* See [[advocacy-email-samples]] for some sample emails you can copy/customize and send to site owners to encourage them adopt microformats.&lt;br /&gt;
&lt;br /&gt;
== Wallpaper ==&lt;br /&gt;
=== Wallpaper and desktop screens. ===&lt;br /&gt;
* A [http://remiprevost.com/images/wallpapers/microformats/ wallpaper] by [[User:Remi|Rémi Prévost]]&lt;br /&gt;
&lt;br /&gt;
== Logo ==&lt;br /&gt;
&lt;br /&gt;
=== logo text ===&lt;br /&gt;
[http://microformats.org/img/logo.gif http://microformats.org/img/logo.gif]&lt;br /&gt;
&lt;br /&gt;
* High-resolution [http://simplebits.com/bits/microformats/microformats-logo.eps EPS] and  [http://simplebits.com/bits/microformats/microformats-logo.png transparent PNG] versions of the microformats logo text by [[User:DanCederholm|Dan Cederholm]].&lt;br /&gt;
&lt;br /&gt;
=== logo mark ===&lt;br /&gt;
* A [http://remiprevost.com/images/wallpapers/microformats/mf-vector.svg SVG] and [http://remiprevost.com/images/wallpapers/microformats/mf-vector.png PNG] (for Fireworks) version of the microformats logo, by [[User:Remi|Rémi Prévost]] (Released under a [http://creativecommons.org/licenses/by-nc-sa/2.5/ Creative Commons BY-NC-SA] license)&lt;br /&gt;
&lt;br /&gt;
== POSH ==&lt;br /&gt;
* [[posh|POSH]] logos and buttons&lt;br /&gt;
&lt;br /&gt;
== T-Shirts ==&lt;br /&gt;
* See [http://flickr.com/photos/tags/microformatstshirt photos of microformats tshirts on Flickr] (the [http://flickr.com/photos/tags/microformatstshirt/clusters/ clusters] are especially fun)&lt;br /&gt;
** Note also [http://pixelsebi.com/2006-10-26/microformats-t-shirt-in-second-life/ microformats t-shirt in Second Life]&lt;br /&gt;
=== do it yourself tshirts ===&lt;br /&gt;
[[User:TheJbf|Jane B. Foster]] has made her own microformats t-shirt:&lt;br /&gt;
&lt;br /&gt;
[http://www.flickr.com/photos/janebfoster/2449460410/ http://farm4.static.flickr.com/3139/2449460410_656f27f305_m.jpg]&lt;br /&gt;
&lt;br /&gt;
For those who are not able to find a microformats t-shirt, it is possible to make one at home less than an hour. The requirements for such a pressing process are listed below:&lt;br /&gt;
* A high quality microformats logo (which can be found below the '''Logo headline''' on this page)&lt;br /&gt;
* A black t-shirt&lt;br /&gt;
* An iron-on transfer paper for '''dark t-shirts''' (note that printers doesn't print white, so there're special papers to print white on dark)&lt;br /&gt;
* An iron an a hard surface. (Ironing press with a large surface is highly recommended.)&lt;br /&gt;
* A laser printer&lt;br /&gt;
* Sharp and sensitive scissors&lt;br /&gt;
* Non-metalic heat resisting papers&lt;br /&gt;
&lt;br /&gt;
('''Warning:''' Take the instructions on the transfer paper you bought as the first reference, we're not responsible for unsuccessful attempts. Tips about pressing can change from paper to paper.)&lt;br /&gt;
&lt;br /&gt;
Firstly, you need to print the logo on the transfer paper. Transfer papers for dark t-shirts are sticky backed white papers which vary in size. You need to decide which size you want to press on your t-shirt. A4 and A3 are suitable for microformats t-shirts.&lt;br /&gt;
&lt;br /&gt;
Print the logo with a black background. The result of the paper printed should look like this: &lt;br /&gt;
&lt;br /&gt;
[http://imjbf.com/im/do-it-yourself-tshirt1.jpg http://imjbf.com/im/do-it-yourself-tshirt1.jpg]&lt;br /&gt;
&lt;br /&gt;
(You can, of course decrease, the amount of background area to save ink)&lt;br /&gt;
&lt;br /&gt;
Now it is time to separate logo from the background. Carefully clip the edges and get the logo all alone. White borders should stay with the green layers, don't make a mistake by clipping them out.&lt;br /&gt;
&lt;br /&gt;
Prepare the iron press, you will need the highest temperature with no stream to transfer successfully. Give your press at least 10 minutes to heat fully. While the iron is heating, decide which position your logo should appear. Use a ruler to check if the logo is positioned symmetrically.&lt;br /&gt;
&lt;br /&gt;
[http://imjbf.com/im/do-it-yourself-tshirt2.png http://imjbf.com/im/do-it-yourself-tshirt2.png]&lt;br /&gt;
&lt;br /&gt;
If your iron press is heated, gently peel the tiny paper on the back of the transfer paper to make it sticky. Place it on the t-shirt and put 1 or 2 non-metalic heat resisting paper of any kind on the logo. Be sure that transfer paper doesn't overlap.&lt;br /&gt;
&lt;br /&gt;
[http://imjbf.com/im/do-it-yourself-tshirt3.png http://imjbf.com/im/do-it-yourself-tshirt3.png]&lt;br /&gt;
&lt;br /&gt;
Press the iron for 10-15 seconds. This actually depends on the paper you are using, so it is best to follow the instructions on the iron-on transfer paper you purchased. If necessary repress the iron on the whole surface for 5-10 seconds again. &lt;br /&gt;
&lt;br /&gt;
And, you made a new microformats t-shirt! Don't forget to take a picture and share.&lt;br /&gt;
&lt;br /&gt;
Note that you should hand wash your t-shirt and iron it from back carefully. Don't forget that it is also possible to use another fabrics such as bags to print microformats logos. We're waiting for your creations.&lt;br /&gt;
&lt;br /&gt;
== External online community resources ==&lt;br /&gt;
&lt;br /&gt;
=== Video ===&lt;br /&gt;
* See [http://www.youtube.com/results?search_query=microformats videos of microformats on YouTube] or [http://vimeo.com/groups/microformats Vimeo], in particular, a [http://www.youtube.com/watch?v=UAV4SGpPuQI video of a microformats tshirt] ([http://www.flickr.com/photos/fumi/372068162/ photo]).&lt;br /&gt;
&lt;br /&gt;
===Social networking===&lt;br /&gt;
Groups for fans and advocates of microformats to join or follow:&amp;lt;!--listed alphabetically--&amp;gt;&lt;br /&gt;
* [http://www.facebook.com/group.php?gid=2374732285 Facebook microformats group]&lt;br /&gt;
* [http://flickr.com/groups/microformats/ Flickr microformats group]&lt;br /&gt;
* [http://getsatisfaction.com/microformats microformats on Satisfaction]&lt;br /&gt;
* [http://twitter.com/microformats microformats on Twitter].&lt;br /&gt;
&lt;br /&gt;
=== wiki-communities ===&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats Wikipedia: Project Microformats]&lt;br /&gt;
**[http://ko.wikipedia.org/wiki/%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:%EC%9C%84%ED%82%A4%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8_%EB%A7%88%EC%9D%B4%ED%81%AC%EB%A1%9C%ED%8F%AC%EB%A7%B7 -&amp;quot; - in Korean]&lt;br /&gt;
**[http://zh.wikipedia.org/wiki/Wikipedia:%E5%B0%88%E9%A1%8C/%E5%BE%AE%E6%A0%BC%E5%BC%8F -&amp;quot; - in Chinese]&lt;br /&gt;
* [http://www.usemod.com/cgi-bin/mb.pl?MicroFormats meatball:microformats] -- a first page (stub to be reviewed) dedicated to have any review/opinion from the meatballers especially on the wiki-formats.&lt;br /&gt;
* [http://communitywiki.org/fr/MicroFormats communitywiki:microformats] -- an old multilingual page with a blockcodemachine proposal.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[advocacy]]&lt;br /&gt;
* [[buttons]]&lt;br /&gt;
* [[notable-users|notable users]].&lt;br /&gt;
* [[podcasts]]&lt;br /&gt;
* [[presentations]]&lt;br /&gt;
* [[press]]&lt;br /&gt;
* &amp;lt;span id=&amp;quot;Semacode&amp;quot;&amp;gt;[[semacode]]&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-examples-in-wild-pending&amp;diff=28446</id>
		<title>hcard-examples-in-wild-pending</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-examples-in-wild-pending&amp;diff=28446"/>
		<updated>2008-08-24T23:39:00Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added youtube&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard Examples in the wild, pending review&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&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]], but those hCards have not yet been reviewed. Once checked, they may be moved to [[hcard-examples-in-wild-reviewed]]; a great place to start for anyone looking for examples &amp;quot;in the wild&amp;quot; to try parsing, indexing, organizing etc.  &lt;br /&gt;
&lt;br /&gt;
If people or organizations on your site are marked up with hCard (even just your own contact information), feel free to add it to the '''top''' of this list. Please be sure to include at least one URL to a page on your site that includes actual [[hcard|hCard]] mark-up. Examples added without a URL to a page with hCard mark-up may be removed.&lt;br /&gt;
&lt;br /&gt;
Want to get started with writing an [[hcard|hCard]]? Use the [http://microformats.org/code/hcard/creator hCard creator] to write up some contact information and publish it, or follow the [[hcard-authoring|hCard authoring tips]] to add hCard mark-up to your current contact page.&lt;br /&gt;
&lt;br /&gt;
==New Examples==&lt;br /&gt;
Please add new examples to the '''top''' of this section so they can be reviewed! Please check back after a few days, to see if anyone has found any problems with the examples supplied.&amp;lt;!--&lt;br /&gt;
	 &lt;br /&gt;
 	Please add new examples to the *top* of this section.&lt;br /&gt;
&lt;br /&gt;
 	Please cite the specific page(s) which use(s) microformats, not a non- microformatted home page.&lt;br /&gt;
&lt;br /&gt;
	--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Added in 2008===&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://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].&amp;lt;!--&lt;br /&gt;
	 &lt;br /&gt;
 	Please add new examples to the *top* of this section.&lt;br /&gt;
&lt;br /&gt;
	--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Added in 2007===&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;
** Response in under 12 hours, to advocacy request - [[User:AndyMabbett|Andy Mabbett]]&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.serviceworksglobal.com/pages/contact-us.php Service Works Global] uses hcards on the contact us page and in the site footer&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/keylogger.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.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://christophertcressman.com Christopher T. Cressman] uses an hCard on the home page of his blog, [http://christophertcressman.com christopher t cressman].&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://www.lounews.com/ The Louisville News Company] uses hCard for site-wide contact information for the company and for the site developer.&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;
&lt;br /&gt;
===Added pre 2007===&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/blog/hcard Chris Messina' hCard]&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;
** use: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;fn n&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;given-name&amp;quot;&amp;gt;Andy&amp;lt;/span&amp;gt; &amp;quot;&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Pigsonthewing&amp;lt;/span&amp;gt;&amp;quot; &amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Mabbett&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. [[User:AndyMabbett|Andy Mabbett]] 09:12, 16 Jan 2008 (PST)	 &amp;lt;!--&lt;br /&gt;
 	Please add new examples to the *top* of the current year's section.&lt;br /&gt;
&lt;br /&gt;
	--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-advocacy&amp;diff=28464</id>
		<title>hcard-advocacy</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-advocacy&amp;diff=28464"/>
		<updated>2008-08-24T23:24:46Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: changed YouTube's entry&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard advocacy&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Part of the larger microformats [[advocacy]] effort. Adding [[hcard|hCard]] to these sites would improve their usability and ambient findability.&lt;br /&gt;
&lt;br /&gt;
== Online Profiles ==&lt;br /&gt;
=== Sites to check ===&lt;br /&gt;
The following sites may have hCard or XFN support and need to be checked and placed into lists on [[hcard-supporting-user-profiles]] and [[hcard-xfn-supporting-friends-lists]] as well.  Feel free to add icons/logos for each of these as well.&lt;br /&gt;
* http://amazon.com&lt;br /&gt;
* http://aol.com&lt;br /&gt;
* http://bebo.com&lt;br /&gt;
* http://bloglines.com&lt;br /&gt;
* http://blogspot.com&lt;br /&gt;
* http://connotea.org&lt;br /&gt;
* http://facebook.com&lt;br /&gt;
* http://hi5.com&lt;br /&gt;
* http://ilike.com&lt;br /&gt;
* http://imageshack.us&lt;br /&gt;
* http://librarything.com&lt;br /&gt;
* http://meetup.com&lt;br /&gt;
* http://mugshot.org&lt;br /&gt;
* http://multiply.com&lt;br /&gt;
* http://myspace.com&lt;br /&gt;
* http://network.nature.com&lt;br /&gt;
* http://picasaweb.google.com&lt;br /&gt;
* http://pictures.aol.com&lt;br /&gt;
* http://reader.google.com&lt;br /&gt;
* http://reddit.com&lt;br /&gt;
* http://smugmug.com&lt;br /&gt;
* http://socializr.com&lt;br /&gt;
* http://spaces.live.com&lt;br /&gt;
* http://stumbleupon.com&lt;br /&gt;
* http://travelpod.com&lt;br /&gt;
* http://tribe.net&lt;br /&gt;
* http://tumblr.com&lt;br /&gt;
* http://webshots.com&lt;br /&gt;
* http://xanga.com&lt;br /&gt;
* http://yelp.com&lt;br /&gt;
* http://ziki.com&lt;br /&gt;
&lt;br /&gt;
=== User Profiles ===&lt;br /&gt;
Nearly every website that has a login has a page representing the public profile of the user that other users can see and interact with. Many such sites already [[hcard-supporting-user-profiles|support hCard]] (e.g. ClaimID.com, Flickr.com, Technorati.com). Here are some that I think would benefit from the addition of hCard to their profile / user pages, making them [[hcard-supporting-user-profiles]].&lt;br /&gt;
&lt;br /&gt;
Feel free to add more such sites that have a social network profile-like component and we'll see what we can do, as well as add icons/logos for each of these as well.&lt;br /&gt;
* Wikimedia - including this site, Wikipedia (See [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats WikiProject Microformats]), Wikitravel, etc.&lt;br /&gt;
**It would be nice if &amp;lt;nowiki&amp;gt;[[User:YOURNAME]]&amp;lt;/nowiki&amp;gt; links generated proper (mini)hCards. ([http://microformats.org/wiki?title=to-do&amp;amp;diff=12177&amp;amp;oldid=12173#Lazyweb per SteveIvy]; moved from 'to-do')&lt;br /&gt;
* http://360.yahoo.com&lt;br /&gt;
* http://alexa.com has online profiles for domains with contact information.  Would be great if they could add hCard to those. 2007-04-18 [[User:Tantek]] requested of [[User:BenWest]] e.g.:&lt;br /&gt;
** http://www.alexa.com/data/details?url=alexa.com/&lt;br /&gt;
** http://www.alexa.com/data/details?url=w3.org/&lt;br /&gt;
* [http://dodgeball.com/ Dodgeball] profiles and venues need [[hcard|hCard]] for people and organizations&lt;br /&gt;
** [http://www.dodgeball.com/user?uid=30209 a profile]&lt;br /&gt;
** [http://www.dodgeball.com/venue?vid=23551 a venue] - could also use [[hreview|hReview]] for the user reviews listed there for the venue&lt;br /&gt;
* [http://www.icq.com/people ICQ people], where they show people's profiles and have a few ways of contacting and/or connection to people.&lt;br /&gt;
* http://youtube.com The very popular YouTube has profiles that do include some information (username) that uses [[hcard|hCard]].&lt;br /&gt;
* [http://www.facebook.com Facebook] is a very popular (over 13 million members) community.&lt;br /&gt;
**Requested support of microformats in [http://flickr.com/photos/56624456@N00/1399881855/ openly asked question to Mark Zuckerberg (founder of Facebook) during Q&amp;amp;A at TechCrunch40 conference], and got [http://therealmccrea.wordpress.com/2007/09/18/facebook-to-support-open-standards/ lukewarm reply]. Glimmer of hope: &amp;quot;When it's important to our users, we'll do it.&amp;quot;  Thus if you are a Facebook user, please make a request to them to support microformats and tell them it is important to you.  Feel free to add your name below. 2007-09-17 [[User:Tantek|Tantek]]&lt;br /&gt;
*** Additional notes of Mark's response to Q above: &amp;quot;fits into context of push to open up in more ways, but keep in mind we're a really small company, under 300, so with respect to open standards, it's a matter of priorities.  When it's important to our users we'll do it.&amp;quot;  Notes taken by John McCrea of Plaxo at TechCrunch40 conference.&lt;br /&gt;
**Requested in message to developer, 2007-09-28 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://anobii.com Anobii] - I asked them if they could implement hCard-supporting profiles and XFN on 2007-10-05 - [[User:JulianStahnke|Julian Stahnke]]&lt;br /&gt;
** Response: We will definitely spend some time to consider the suggestion.&lt;br /&gt;
** Got another mail from one of their developers, they’re looking into it.&lt;br /&gt;
* http://360.yahoo.com&lt;br /&gt;
* http://amazon.com &lt;br /&gt;
* http://aol.com &lt;br /&gt;
* http://bebo.com&lt;br /&gt;
* http://bloglines.com &lt;br /&gt;
* http://del.icio.us&lt;br /&gt;
* http://picasaweb.google.com &lt;br /&gt;
* http://pictures.aol.com &lt;br /&gt;
* http://socializr.com &lt;br /&gt;
* http://yelp.com &lt;br /&gt;
* http://youtube.com &lt;br /&gt;
* http://zooomr.com&lt;br /&gt;
* http://viddler.com&lt;br /&gt;
&lt;br /&gt;
==== appear to be offline ====&lt;br /&gt;
* [http://idubyou.com/ i dub you] - appears to be 404 as of 2008-02-02 [[User:Tantek|Tantek]] 20:28, 2 Feb 2008 (PST)&lt;br /&gt;
&lt;br /&gt;
=== hCard XFN friends lists ===&lt;br /&gt;
In addition, if sites with people profiles have friends lists, we should encourage them to add support for [[hcard-xfn-supporting-friends-lists]].  Both of these help [[social-network-portability]] and help the site become a node on the [[open-social-web]]. Feel free to add icons/logos for each of these as well.&lt;br /&gt;
* http://360.yahoo.com&lt;br /&gt;
* [http://dodgeball.com/ Dodgeball]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Company Profiles ===&lt;br /&gt;
* [http://getsatisfaction.com/ Satisfaction Unlimited], has company profiles, e.g. http://getsatisfaction.com/satisfaction/ that could be marked up with hCards.  &lt;br /&gt;
** Contacted Ted Grubb at the company and requested hCards for company and its employees for all their company profiles. [[User:Tantek|Tantek]] 11:24, 2 Sep 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Online Venues ==&lt;br /&gt;
There are many sites that offer pages that represent organizations and venues that could benefit from being marked up with hCard. [http://local.yahoo.com/ Yahoo Local] venues are marked up with hCards for example. Here are some more sites that have venues that would benefit from hCard markup.&lt;br /&gt;
* Yelp.com&lt;br /&gt;
* http://opentable.com - a site for making restaurant reservations&lt;br /&gt;
** [[hcard|hCard]] for restaurants&lt;br /&gt;
** [[hcalendar|hCalendar]] for free busy times at restaurants&lt;br /&gt;
** [[hcalendar|hCalendar]] for your reservations&lt;br /&gt;
** Tantek has emailed a friend who is a former employee of OpenTable with the above three requests, in the hopes she can pass on the message.  In addition, Ryan King may know someone in marketing there. [[User:Tantek|Tantek]] 16:57, 30 Sep 2007 (PDT)&lt;br /&gt;
*[http://www.wikioutdoors.com/ WikiOutdoors]&lt;br /&gt;
**Could use hCard, Geo, and others&lt;br /&gt;
**'''Requested''', 2007-03-14&lt;br /&gt;
**[http://www.wikioutdoors.com/forums/viewtopic.php?p=80#80 Considering] [[User:AndyMabbett|Andy Mabbett]] 04:17, 15 Mar 2007 (PDT)&lt;br /&gt;
* [http://www.MotorwayServices.info Motorway Services Info] (UK)&lt;br /&gt;
**hCard (&amp;amp; Geo) and hReviewRequested''' by e-mail, 2007-09-21 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
== Plugins for and modifications of web-applications ==&lt;br /&gt;
Many web-applications use plugin-systems to change their behavior and content. Most notable is probably web-forums and blogs. Many of these have a community of coders that develop plugins or code to modify the default behavior of these web-applications. Here are some sites where it might be interesting to develop hcard-related plugins/mods.&lt;br /&gt;
&lt;br /&gt;
=== WYSIWYG buttons ===&lt;br /&gt;
In addition to getting them to markup obvious references to users/usernames with hCard, it would be great to see them update their WYSIWYG authoring interfaces (little creator/style buttons that often line up just above the top of a blog post editing textarea for creating links, lists etc.) to add a &amp;quot;person&amp;quot; button (perhaps with an icon http://microformats.org/wiki/skins/monobook/user.gif) which simply inserts [[hCard]] markup for you, or better yet, lets you pick someone from your address book, and then inserts an inline hCard with their name, URL (and perhaps even your [[XFN]] relationship to them) for you.  While they're at it, perhaps a similar button/feature for easily inserting an [[hCalendar]] event.&lt;br /&gt;
&lt;br /&gt;
=== Tools ===&lt;br /&gt;
* forum-software&lt;br /&gt;
** http://www.phpbb.com&lt;br /&gt;
* blog-software&lt;br /&gt;
** http://b2evolution.net&lt;br /&gt;
** WordPress&lt;br /&gt;
** Moveable Type&lt;br /&gt;
** LiveJournal&lt;br /&gt;
&lt;br /&gt;
==Telephone Directory Listings==&lt;br /&gt;
Telephone Directory Listings could usefully apply hCard to their results pages, e.g. (please add other examples!):&lt;br /&gt;
&lt;br /&gt;
* [http://www.thephonebook.bt.com/ BT]&lt;br /&gt;
** '''Requested''' via [http://tinyurl.com/yhtdjy BT feedback form], 2006-11-13 [[User:AndyMabbett|Andy Mabbett]] &lt;br /&gt;
** BT confirm that they will consider this at their next re-build. 2006-12 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
** A BT [http://monkeyformats.org Monkeyformat] is available at [http://userscripts.org/scripts/show/24705 Userscripts.org] which will add hcard markup through GreaseMonkey.&lt;br /&gt;
* [http://118118.com 118118.com]&lt;br /&gt;
** '''Requested''' via e-mail, 2006-11-13. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://192.com/ 192.com]&lt;br /&gt;
** '''Requested''' via [http://www.192.com/support/feedback.cfm 192.com feedback form], 2007-03-07 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://www.skype.com/intl/en-gb/download/features/skypefind/ SkypeFind]&lt;br /&gt;
** ''Requested''' via [http://support.skype.com/?_a=tickets&amp;amp;_m=submit Skype feedback form], 2007-03-16 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://www.whitepages.com/ White Pages (USA/ Canada)]&lt;br /&gt;
* [http://www.whitepages.com.au/ White Pages (Australia)]&lt;br /&gt;
* [http://www.switchboard.com/ Stitchboard (USA)]]&lt;br /&gt;
* [http://people.yahoo.com/ Yahoo! People Search (USA)]&lt;br /&gt;
* [http://www.whowhere.com/ Lycos People Search (USA)]&lt;br /&gt;
* [http://www.bsnl.co.in/map.htm BSNL (India)]&lt;br /&gt;
* [http://www.saynoto0870.com/ saynoto0870.com] (UK listings of geo vs. non-geo equivalents)&lt;br /&gt;
** '''Requested''' by feedback form, 2007-10-13. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
==Postal (ZIP) code Finders==&lt;br /&gt;
Postal code Finders could usefully apply hCard to their results pages. [[User:AndyMabbett|Andy Mabbett]] 12:09, 13 Nov 2006 (PST)&lt;br /&gt;
&lt;br /&gt;
e.g. (please add other examples!):&lt;br /&gt;
*[http://pol.royalmail.com/dda/txt/pf.asp Royal Mail] (UK)&lt;br /&gt;
**Requested via [http://tinyurl.com/ya4hzu Royal Mail feedback form], 2006-11-13 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**Acknowledged 2006-11-30. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
==Government hCard==&lt;br /&gt;
===UK Gov. hCard===&lt;br /&gt;
* Parliament: [http://www.parliament.uk/directories/hciolists/alms.cfm Alphabetical List of Members of Parliament] (see also [http://www.parliament.uk/directories/directories.cfm other lists of MPs and Lords]). [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
===Europe Gov. hCard===&lt;br /&gt;
* e.g. [http://www.europarl.org.uk/uk_meps/westmidlands.asp UK MEPs]&lt;br /&gt;
&lt;br /&gt;
=== MAPLight ===&lt;br /&gt;
http://maplight.org/ can use a bunch of hCard markup, e.g.&lt;br /&gt;
* individual politicians, like [http://www.maplight.org/map/us/legislator/408/individuals Nancy Pelosi]&lt;br /&gt;
* mentions of politicians on interest pages like [http://www.maplight.org/map/us/interest/L1300 Teachers unions]&lt;br /&gt;
* their contact info of course: http://www.maplight.org/contact&lt;br /&gt;
Requested by [[User:Tantek|Tantek]] 12:13, 30 May 2007 (PDT) in person at the NetSquared2007 conference.&lt;br /&gt;
&lt;br /&gt;
== Organization Contacts ==&lt;br /&gt;
Many companies and organizations have about or contact pages that could benefit from being marked up with hCard.  [http://technorati.com/about/contact.html Technorati's contact page] for example is both marked up with hCard and has a convenient &amp;quot;Add to Address Book&amp;quot; hCard to vCard converter link. The following company sites could benefit from similar markup (and, until user agents support hCards natively, &amp;quot;Add to Address Book&amp;quot; links). [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
*Adobe&lt;br /&gt;
**[http://www.adobe.com/aboutadobe/offices.html Adobe offices]&lt;br /&gt;
***Requested using contact form, 2006-12-14. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*claimID&lt;br /&gt;
**[http://claimid.com/people claimID people]&lt;br /&gt;
***requested via instant message with Terrell Russell (co-founder) 2007-11-20. [[User:Tantek|Tantek]]&lt;br /&gt;
*Google &lt;br /&gt;
**Contacts, e.g. &lt;br /&gt;
*** [http://www.google.com/intl/en/contact/index.html Google.com contact page]&lt;br /&gt;
**** Requested by asking Google Employee KevinMarks via instant messaging to add hCard to that page along with a &amp;quot;Add to Address Book&amp;quot; link [[User:Tantek|Tantek]] 11:32, 10 Apr 2007 (PDT) and RyanKing in IRC&lt;br /&gt;
*** [http://www.google.co.uk/intl/en/contact/index.html Google UK], etc.&lt;br /&gt;
*[http://ibm.com/ IBM]&lt;br /&gt;
**[http://www.ibm.com/contact/us/ IBM contact page]&lt;br /&gt;
*** Requested by asking IBM employee Michael Kaply via IRC 2007-07-31 08:57am PDT: &amp;quot;how about getting hCard and 'Add to address book' links on the IBM contact page?&amp;quot;&lt;br /&gt;
*[http://www.mozilla.com/ Mozilla]&lt;br /&gt;
**[http://www.mozilla.com/en-US/about/legal.html Mozilla legal notices]&lt;br /&gt;
*Opera &lt;br /&gt;
**People, e.g. [http://people.opera.com/howcome/ Håkon Wium Lie]; could also be hResume&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://www.w3.org/Consortium/contact W3C contact]&lt;br /&gt;
**[http://www.w3.org/People/all W3C Staff listing] and individual pages, e.g. [http://www.w3.org/People/Berners-Lee/ Tim Berners-Lee]&lt;br /&gt;
***Requested by e-mail. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
== Individual hCards ==&lt;br /&gt;
Getting these sites to at least add hCard to their home page or contact info page and then [http://pingerati.net/ping/ ping Pingerati] would be an excellent start with getting them some experience with microformats and thinking about adding microformats to other places in their sites that make sense:&lt;br /&gt;
* [http://metaweb.com/ Metaweb Technologies]&lt;br /&gt;
** [http://www.freebase.com/ Freebase ]&lt;br /&gt;
&lt;br /&gt;
==Trade directories==&lt;br /&gt;
* [http://www.booktrust.org.uk/info/search_publishers.php BookTrust (UK book publishers)]&lt;br /&gt;
* [http://www.gepir.org/ Global Electronic Party Information Register] (GEPIR) over 1 million companies&lt;br /&gt;
** Requested 2007-08-31 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://www.journa-list.com/ Journa-list]&lt;br /&gt;
** hCard, rel-tag requested 2007-10-13, by e-mail. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
&lt;br /&gt;
==Store locators==&lt;br /&gt;
(see [http://www.google.com/search?q=%22store+locator%22 Google search for &amp;quot;store locator&amp;quot;]; &amp;quot;about 2,000,000&amp;quot; results!)&lt;br /&gt;
* [http://www.argos.co.uk/webapp/wcs/stores/servlet/ArgosGSGiftModeExitCmd?action=ArgosStoreLocatorMain?langId=-1&amp;amp;storeId=10001 Argos (UK)]&lt;br /&gt;
* [http://www.multimap.com/clients/places.cgi?client=asda_sf Asda (UK; part of WalMart)]&lt;br /&gt;
* [http://www.boots.com/storelocator/store_search.jsp Boots (UK)]&lt;br /&gt;
* [http://www.mcdonalds.co.uk/asp/locator/index.asp McDonalds (UK)]&lt;br /&gt;
* [http://www.tesco.com/storelocator/ Tesco (UK)]&lt;br /&gt;
&lt;br /&gt;
== people search ==&lt;br /&gt;
* [http://www.spock.com/ SPOCK]&lt;br /&gt;
** primarily could use hCard on the search results (this is a search engine for people after all)&lt;br /&gt;
** rel-tag namespace possibly&lt;br /&gt;
** VoteLinks&lt;br /&gt;
**'''Requested''', 2007-09-13 [[User:DavidMead|David Mead]]&lt;br /&gt;
&lt;br /&gt;
==Other hCard==&lt;br /&gt;
* [http://www.imdb.com/ Internet Movie Database] (IMDb) for people (real, not characters), e.g. [http://www.imdb.com/name/nm0000007/ Humphrey Bogart]. [[User:AndyMabbett|Andy Mabbett]] 02:49, 13 Nov 2006 (PST)&lt;br /&gt;
**Can't find contact info! [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**See also example, below.&lt;br /&gt;
*Wikitravel&lt;br /&gt;
**e.g. [http://wikitravel.org/en/Birmingham_%28England%29 Wikitravel - Birmingham]&lt;br /&gt;
***[http://microformats.org/wiki?title=User_talk:MarkJaroski&amp;amp;curid=2699&amp;amp;diff=0&amp;amp;oldid=10663&amp;amp;rcid=19955 Wikitravel is about to hugely roll out hCard] Mark Jaroski&lt;br /&gt;
***See also [http://wikitravel.org/en/Wikitravel:Microformats Wikitravel:Microformats]&lt;br /&gt;
*[http://orlabs.oclc.org/Identities/ WorldCat Identities]&lt;br /&gt;
**The recently prototyped WorldCat Identities provides pages for 20 million 'identities', mainly authors and people who are the subjects of published titles.&lt;br /&gt;
**Requested by feedback form, 2007-03-09 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
** No reply, as of 02:02, 13 Jun 2007 (PDT)&lt;br /&gt;
*[http://geonames.org GeoNames]&lt;br /&gt;
**Requested by e-mail, 2007-06-07 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**Reply confirms that they will deploy hCard and Geo&lt;br /&gt;
**Geo noted in use, 06:08, 30 Jul 2007 (PDT)&lt;br /&gt;
*[http://www.oup.com/oxforddnb/info/ Oxford Dictionary of National Biography] (ODNB); subscription based, but [http://www.oxforddnb.com/public/lotw/ some ODNB articles available free]. All 56,000+ entries have Date of Death.&lt;br /&gt;
*[http://www.findagrave.com/ Find-a-Grave] e.g. [http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&amp;amp;GRid=680 Karl Marx]. Most entries have Date of Death.&lt;br /&gt;
*[http://www.biography.com/ Biography.com] e.g. [http://www.biography.com/impressionists/monet-bio.jsp Camille Monet] Most posthumous entries have Date of Death.&lt;br /&gt;
*[http://www.cwgc.org/ Commonwealth War Graves Commission] (1.75 million  people's details)&lt;br /&gt;
**E-mail sent 2007-08-24. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*Civil Aviation Authority; UK aircraft register&lt;br /&gt;
** e.g [http://www.caa.co.uk/application.aspx?catid=60&amp;amp;pagetype=65&amp;amp;appid=1&amp;amp;mode=detailnosummary&amp;amp;fullregmark=G-MOUR G-MOUR]&lt;br /&gt;
*[http://chicago.everyblock.com/ Chicago Everyblock]&lt;br /&gt;
&lt;br /&gt;
== Successes ==&lt;br /&gt;
Perhaps we can consider moving successes to a separate page, like [[hcard-advocacy-successes]]. [[User:Tantek|Tantek]]&lt;br /&gt;
*Details of hCard should be added to the [http://www.imc.org/pdi/ Internet Mail Consortium's vCard page]&lt;br /&gt;
**Requested by e-mail, 2006-11-24 [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**'''Success''' achieved 2006-11-25. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*W3C&lt;br /&gt;
**'''W3C webmaster''' [http://www.w3.org/People/Jean-Gui/ Jean-Guilhem Rouel] now has an hCard. [[User:AndyMabbett|Andy Mabbett]] 15:41, 4 Apr 2007 (PDT)&lt;br /&gt;
* [http://jpgmag.com/ JPG magazine] - have sent email to their web developer with sample marked up member profile with [[hcard|hCard]] and [[xfn]] [[rel-me|rel=&amp;quot;me&amp;quot;]]. [[User:Tantek|Tantek]] 23:48, 21 Feb 2007 (PST)&lt;br /&gt;
** [[hcard|hCard]]+[[xfn]] [[rel-me|rel=&amp;quot;me&amp;quot;]] support as of March 2007.&lt;br /&gt;
* Twitter.com - working on it [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST).  &lt;br /&gt;
** Completed [[hcard|hCard]]+[[xfn]]+[[hatom|hAtom]] support last week with help from Chris Messina. [[User:Tantek|Tantek]] 12:01, 16 May 2007 (PDT)&lt;br /&gt;
* Consumating.com - working on it [[User:Tantek|Tantek]] 17:44, 13 Dec 2006 (PST)&lt;br /&gt;
** [[hcard|hCard]] profiles, [[hcalendar|hCalendar]] events as of March 2007.&lt;br /&gt;
* [http://sunlightlabs.com/api/ SunlightLabs API] provides profiles for US Congresspeople.  Their [http://sunlightlabs.com/api/masterref/megatable.php megatable] could easily be marked up with hCard, and their APIs could return hCards and hCard fields.&lt;br /&gt;
** [[User:Tantek|Tantek]] 12:30, 20 Apr 2007 (PDT) contacted them and requested that they add hCard to megatable, consider a GethCard API method, and potentially a GethResume API method for each person.&lt;br /&gt;
** [[User:CarlAnderson|CarlAnderson]] 26 Apr 2007: http://sunlightlabs.com/api does now have a people.getHCard.php API method to get an hCard for every member of congress. See the documentation at http://sunlightlabs.com/api/people.getHCard.php. An example call: http://api.sunlightlabs.com/people.getHCard.php?id=fakeopenID1 &lt;br /&gt;
** [[User:CarlAnderson|CarlAnderson]] 30 Apr 2007: I created a page of hCards for every member of congress: http://sunlightlabs.com/api/hcards/index.php&lt;br /&gt;
* [http://pownce.com Pownce] - I'm talking with them, and have requested the following (and a bit more) as of 2007-07-29 - [[User:Tantek|Tantek]]&lt;br /&gt;
** needs to add class=&amp;quot;photo&amp;quot; to image icon&lt;br /&gt;
*** 2007-09-02 success!&lt;br /&gt;
** needs to add class=&amp;quot;note&amp;quot; to description&lt;br /&gt;
*** 2007-09-02 success!&lt;br /&gt;
** needs to add hCard+XFN to friends lists.&lt;br /&gt;
*** 2007-09-02 partial success, friends lists have hCard, have asked Daniel Burka to add rel=&amp;quot;acquaintance&amp;quot; per [[xfn-clarifications#are_you_my_friend_yes_or_no|XFN clarifications for yes/no friend relationships]]. [[User:Tantek|Tantek]] 10:41, 3 Sep 2007 (PDT)&lt;br /&gt;
**** 2008-01 success!&lt;br /&gt;
** 2007-09-02 note also XFN rel=&amp;quot;me&amp;quot; success: http://pownce.com/t/notes/644806/&lt;br /&gt;
&lt;br /&gt;
===Wikpedia hCard===&lt;br /&gt;
*Infobox Templates for people mostly now have [[hcard|hCard]] in their generated markup&lt;br /&gt;
** [http://en.wikipedia.org/wiki/Template:Infobox_Person Infobox_Person]; e.g. [http://en.wikipedia.org/wiki/E._O._Wilson E. O. Wilson]&lt;br /&gt;
** [http://en.wikipedia.org/wiki/Template:Infobox_actor Infobox_actor]; e.g. [http://en.wikipedia.org/wiki/Humphrey_Bogart Humphrey Bogart]&lt;br /&gt;
*Addressable buildings e.g. [http://en.wikipedia.org/wiki/The_Old_Crown%2C_Birmingham The Old Crown, Birmingham]&lt;br /&gt;
*Tourist attractions, e.g. [http://en.wikipedia.org/wiki/Cadbury_World%2C_Birmingham Cadbury World]&lt;br /&gt;
*Companies, e.g. [http://en.wikipedia.org/wiki/Tesco Tesco] (note headquarters address in infobox)&lt;br /&gt;
*Railway Stations, e.g. [http://en.wikipedia.org/wiki/Perry_Barr_railway_station Perry Barr]&lt;br /&gt;
*etc.&lt;br /&gt;
*See also [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats WikiProject Microformats] [[User:AndyMabbett|Andy Mabbett]] 13:10, 28 Jan 2007 (PST)&lt;br /&gt;
* See also [[persondata|discussion of Wikipedia's Persondata]], which aligns very closely with hCard, but has additional date and place of birth &amp;amp; death fields. [[User:AndyMabbett|Andy Mabbett]] 13:23, 28 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Some microformat data is now (2007-09-14) being removed from Wikipedia; see, for example [http://en.wikipedia.org/w/index.php?title=List_of_Gaudi_Buildings&amp;amp;diff=prev&amp;amp;oldid=157704557 List_of_Gaudi_Buildings]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[advocacy]] (in particular see [[advocacy#Geo|Geo advocacy]] - for the Geo microformat, including cases where it may be used inside hCard)&lt;br /&gt;
*[[advocacy-email-samples]]&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcalendar-examples-in-wild&amp;diff=27801</id>
		<title>hcalendar-examples-in-wild</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcalendar-examples-in-wild&amp;diff=27801"/>
		<updated>2008-07-11T06:12:10Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added subpop records&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCalendar Examples in the wild&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
This page is an '''informative''' section of the [[hcalendar|hCalendar specification]].&lt;br /&gt;
&lt;br /&gt;
The following sites have published events using [[hcalendar|hCalendar]], and thus are a great place to start for anyone looking for examples &amp;quot;in the wild&amp;quot; to try parsing, indexing, organizing etc.  &lt;br /&gt;
&lt;br /&gt;
If events on your site are marked up with hCalendar, feel free to add it to the top of this list. Please be sure to include at least one URL of a page on your site that includes actual [[hcalendar|hCalendar]] markup. Examples added without the URL of a page with hCalendar markup may be removed.&lt;br /&gt;
&lt;br /&gt;
Want to get started with writing an [[hcalendar|hCalendar]] event? Use the [http://microformats.org/code/hcalendar/creator hCalendar creator] to write up an event and publish it, or follow the [[hcalendar-authoring|hCalendar authoring tips]] to add hCalendar markup to your page of upcoming events or events you mention in blog posts, wikis, etc.&lt;br /&gt;
&lt;br /&gt;
Don't forget that you can add one of our [[buttons#hCalendar|buttons]] to the page, to indicate the presence of hCalendar microformats. For example: http://www.boogdesign.com/images/buttons/microformat_hcalendar.png. If you can link it back to [[hcalendar|hCalendar]] (or even page on your website, about your use of the microformat), so much the better!&lt;br /&gt;
&lt;br /&gt;
== examples to act on ==&lt;br /&gt;
&lt;br /&gt;
===new examples===&lt;br /&gt;
&amp;lt;span id=&amp;quot;New_Examples&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
Please add new examples to the '''top''' of this section.&lt;br /&gt;
* [http://beta.subpop.com/ SubPop Records] features hCalendar events on its homepage and on [http://subpop.com/artists/band_of_horses individual artist pages].&lt;br /&gt;
* [http://laughingsquid.com/squidlist/events/ Laughing Squid Events] use hCalendar ''only'' on event detail pages (not on the overall list of events), e.g. [http://laughingsquid.com/squidlist/events/index.php?com=detail&amp;amp;eID=177533&amp;amp;year=2008&amp;amp;month=06 Pownce 1 Year Anniversary Party!].&lt;br /&gt;
* [http://www.outbackadventuretreks.com.au Outback Adventure Treks] use hCalendar for their [http://outbackadventuretreks.com.au/tours_calendar.php tours calendar] also hCard for their [http://outbackadventuretreks.com.au/contact.php contact details.]&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 hcalendar, hcard, geo for events and lessons.&lt;br /&gt;
* [http://library.christchurch.org.nz/News/ Christchurch City Libraries] news and events calendar - many but not all events.&lt;br /&gt;
* [http://www.villamedia.nl/agenda Villamedia] and [http://www.dejournalist.nl/agenda De Journalist] (both Dutch websites for journalists and media workers) use hCalendar to mark up their (shared) events list.&lt;br /&gt;
* At [http://www.ecoresearch.net/event ECOresearch.net] we export our event calendar as hCalendar.&lt;br /&gt;
* [http://www.firmendb.de/messetermine/index.php Fimendb Messetermine] uses hCalendar markup to add semantic meaning to the calendar of fairs and exhibitions.&lt;br /&gt;
* [http://www.kickstartme.co.uk KickStart Events] uses hCalendar markup to add semantic meaning to our calendar of events for forthcoming RubyOnRails workshop and courses.&lt;br /&gt;
* The [http://www.amentsoc.org/events/ Amateur Entomologists' Society] uses hCalendar in our calendar of events for entomologists or people with an interest in natural history.&lt;br /&gt;
* The [http://www.sandiegobrewersguild.org/calendar.php San Diego Brewers Guild] is using hCalendar for member brewers&amp;amp;rsquo; and pubs&amp;amp;rsquo; upcoming events. &lt;br /&gt;
* The [http://users.belgacom.net/gaudete Gregorian choir Gaudete] from Aalst (Belgium) uses hCalendar in their calendar of upcoming performances.&lt;br /&gt;
* [http://autopendium.com/events Classic Car Events] - Classic car events -- shows, auctions, race meetings -- from around the world marked up with hCalendar.&lt;br /&gt;
* [http://www.worldeventsguide.com World Events Guide] - Events occuring around the world marked up with hCalendar.&lt;br /&gt;
* [http://www.niallkennedy.com/about/ Niall Kennedy's Upcoming speeches] - hcalendar describing upcoming speeches occurs within the bounds of the parent hCard. Each vevent references said hCard using &amp;quot;include&amp;quot; method and attendee or organizer where appropriate. One vevent's description is a vcalendar itself, specifying multiple events (speeches) within the event and Niall's role in each, again with hCard include.&lt;br /&gt;
** The hcard include breaks one of the rules of the [[include-pattern]]: 'To prevent infinite loops, if a class=&amp;quot;include&amp;quot; refers to itself or to an ancestor in the parse tree, then it is ignored and has no effect on the parser.'&lt;br /&gt;
* [http://competitiondiva.com/calendar.html Competition Diva's Event Calendar] is marked up with hCalendar.&lt;br /&gt;
* [http://www.bicyclepaper.com/calendar BicyclePaper Calendar] - Cycling event calendar marked up in hCalendar format&lt;br /&gt;
* [http://floatingsheep.com/userscripts/evite-hcalendar.user.js Evite hCalendar] - userscript to add hCalendar markup to eVite invitation pages&lt;br /&gt;
* [http://www.tripit.com/ TripIt] - uses hCalendar markup for every itinerary&lt;br /&gt;
* [http://www.leaguist.com Leaguist] - uses hCalendar markup sporting events&lt;br /&gt;
** Examples: http://www.leaguist.com/super-14-2008/games/, http://www.leaguist.com/super-14-2008/pick/1&lt;br /&gt;
* [http://www.areaguides.net areaguides.net] - uses hCalendar markup on all of our event pages&lt;br /&gt;
** Examples: http://newyorkny.areaguides.net/events.html, http://chicagoil.areaguides.net/events.html&lt;br /&gt;
* [http://www.keevu.com Keevu.com] - embeds hCalendar markup on all of it's events announcements&lt;br /&gt;
** Example here:  [http://www.keevu.com/events Latest events]&lt;br /&gt;
* [http://www.auctionlink.com.au/ AuctionLink] uses hCalendar markup to show dates and times for [http://www.auctionlink.com.au/UpcomingAuctionSales Auction Sales in Australia]. (also uses hCard)&lt;br /&gt;
* [http://rosebleed.net/events/ Rosebleed] uses hCalendar markup on the Events calendar and individual Event pages.&lt;br /&gt;
* [http://www.hotmix.org/calendar/icalendar/icalagenda.php?Calendar=AnnMeetAgenda The National Asphalt Pavement Association] uses hCalendar on its meeting agenda pages.  It features a selective iCalendar/CSV download option.  The calendar data comes from an ASP web service on their exchange server.  The hCalendar, iCalendar and CSV outputs are all generated with PHP.&lt;br /&gt;
* The [http://www.ox.ac.uk/ University of Oxford (UK)] has a locally produced institutional newsfeed system ([http://www.oucs.ox.ac.uk/oxitems/ OXITEMS]) where members of the University can create newsfeeds and add items to those newsfeeds.  One of the possibilities is to use a newsfeed to represent a collection of events. This kind of newsfeed can be delivered in the Atom 1.0 notation where the content element of each entry element has [http://rss.oucs.ox.ac.uk/running/events-demo/atom10.xml some hCalendar embedded in it]. It is also possible to obtain an event in iCalendar notation or to obtain all the events of the newsfeed [http://rss.oucs.ox.ac.uk/running/events-demo/getevents.ics in iCalendar notation].  For this, it uses [http://suda.co.uk/projects/X2V/ Brian Suda's X2V] to produce the iCalendar from Atom 1.0. &lt;br /&gt;
*Wikipedia-EN - [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
**I have added hCalendar to the [http://en.wikipedia.org/wiki/Template:Infobox_Space_mission Infobox Space mission] template, with dates entered using the [http://en.wikipedia.org/wiki/Template:Start_date Start date] and [http://en.wikipedia.org/wiki/Template:End_date end date] templates (to counter the lack of support for the &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt; element). Example: [http://en.wikipedia.org/wiki/Apollo_11 Apollo 11]. Work on improvements is continuing, prior to roll-out.&lt;br /&gt;
**Now used in templates for album (e.g. [http://en.wikipedia.org/wiki/The_Dark_Side_of_the_Moon The Dark Side of the Moon]), single (e.g. [http://en.wikipedia.org/wiki/I_Want_to_Hold_Your_Hand I Want to Hold Your Hand]) and film (e.g. [http://en.wikipedia.org/wiki/The_Piano The Piano] release dates.&lt;br /&gt;
**Every day from 1 July 2006 onwards has its news events rolled into a single hCalendar item, via the [http://en.wikipedia.org/wiki/Portal:Current_events current events portal]; earlier dates will be converted shortly.&lt;br /&gt;
**Issues: non-inclusive end date; no HH:MM:SS component as yet&lt;br /&gt;
* [http://my.opera.com/Kilimanjaro07/blog/ My Opera] uses hCalendar to mark-up Countdowns in blog/group sidebars.&lt;br /&gt;
* [http://www.nensa.net/sched&amp;amp;result/racing_index.php New England Nordic Ski Association's Calendar] marked up in hCalendar. &lt;br /&gt;
* [http://www.lshtm.ac.uk/events/ London School of Hygiene &amp;amp;amp; Tropical Medicine's Events section] supports hCalendar. &lt;br /&gt;
* [http://hope-international.com/fundraising/07_springdinners.html HOPE International's Spring Fundraising Dinner Events] marked up in hCalendar. &lt;br /&gt;
* [http://www.brewerdesigngroup.com/barcamp-hcalendar.html The schedule for BarCamp San Diego] marked up in hCalendar. &lt;br /&gt;
* [http://2007.xtech.org/public/schedule/full The schedule for XTech 2007] uses hCalendar.&lt;br /&gt;
* [http://www.seemsartless.com seemsArtless daily photoblog] - embeds hCalendar markup for each photo, with GEO markup for photos with significant geographic locations ( such as with [http://www.seemsartless.com/index.php?pic=348 this photo] )&lt;br /&gt;
* [http://www.ischool.washington.edu/ Information School of the University of Washington] - now embeds hCalendar markup on all of it's events&lt;br /&gt;
** Example here: [http://www.ischool.washington.edu/events/calendar.aspx Events Calendar]&lt;br /&gt;
* [http://playinghere.com/ Playing Here] uses hCalendar for live music shows in America, [http://playinghere.com/2007/07/07/CA/Los_Angeles/The_Hollywood_Bowl/ e.g.]&lt;br /&gt;
* [http://www.thsh.co.uk THSH] uses iCalendar for events at Town Hall Birmingham and Symphony Hall Birmingham&lt;br /&gt;
* [http://www.anfsusa.org/ America-Nepal Friendship Society] uses hCalendar for its program events&lt;br /&gt;
** Example here: [http://www.anfsusa.org/news/programs-projects/ ANFS: Programs &amp;amp;amp; Projects]&lt;br /&gt;
* [http://www.friendsofthechildrenny.org/ Friends of the Children, New York] - uses hCalendar for upcoming fundraising events&lt;br /&gt;
** Example here:  [http://www.friendsofthechildrenny.org/events.html Events]&lt;br /&gt;
* [http://www.depechemode.de www.depechemode.de] - uses hCalendar for events in the party guide&lt;br /&gt;
** Example here:  [http://www.depechemode.de/parties/show-party.php?cat=1 Depeche Mode Parties]&lt;br /&gt;
* [http://last.fm last.fm] - uses hCalendar on all concert announcements.&lt;br /&gt;
** Example here: [http://www.last.fm/event/75615 Rise Against at Arena, Wien]&lt;br /&gt;
* [http://www.radiotimes.com Radio Times] - now mark up all their radio and TV listings.&lt;br /&gt;
**The hCals on listings are good, but on pages for individual programmes, they have no date/times - for instance [http://www.radiotimes.com/ListingsServlet?event=10&amp;amp;channelId=56&amp;amp;programmeId=57876521&amp;amp;jspLocation=/jsp/prog_details_fullpage.jsp]&lt;br /&gt;
** Would benefit from using [[include-pattern]] for channel name in main listings. This would facilitate the writing of parsers to set audio or video recording software. [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://nederlandskamerkoor.nl Dutch Chamber Choir] uses hCalendar to notify visitors of their tour schedule.&lt;br /&gt;
* [http://cloudislands.com Cloud Islands] uses hCalendar to notify our customers about the conferences we'll be attending.&lt;br /&gt;
* [http://www.international.unt.edu UNT International] uses hCalendar for events (see esp. [http://www.international.unt.edu/offices/welcome/events/intlweek/calendar International Week 2007 Event Calendar])&lt;br /&gt;
* [http://www.rockisland.com/%7elopezmuseum/index.html The Lopez Island Historical Society and Museum] uses hCalendar for events&lt;br /&gt;
* [http://futureofwebapps.com/schedule.html Future of Web Apps London] lists its schedule in hcalendar. &lt;br /&gt;
* [http://leicesteryha.org.uk/cgi-bin/leoprog Leicester YHA Group's programme page] uses hCalendar and hCard to mark up forthcoming events and their organisers.&lt;br /&gt;
* [http://www.wadip.org.uk/pages/events.php Wadhurst Independent Photography events] lists forthcoming events in hCalendar format.&lt;br /&gt;
* [http://xlntads.com/about-xlntads/development-schedule.php XLNTads-development schedule] has their project development schedule timeline marked up in hcal (as well as contacts in hCard)&lt;br /&gt;
* [http://www.jaama.co.uk Jaama] have their event details as iCal downloads on their [http://www.jaama.co.uk/HS_Seminars.aspx workshops] page.&lt;br /&gt;
* [http://3amproductions.net 3AM Productions] has employee education ([http://3amproductions.net/jason.php Jason], [http://3amproductions.net/gilbert.php Gilbert]) marked up in hCalendar&lt;br /&gt;
* The [http://neatta.org New England Antique Tractor &amp;amp; Truck Association] (of all sites) has their 15 upcoming events marked up in hCalendar (as well as contacts in hCard and classifieds in hListing)&lt;br /&gt;
* [http://diarised.com Diarised] is a quick and simple online tool to help pick the best time for a meeting, uses hCalendar for meeting information.&lt;br /&gt;
* [http://etnies.com/ etnies.com] uses hCalendar on each sports home page ([http://etniesskate.com/ etniesskate.com]) and the [http://etnies.com/extra/calendar/ calendar of events] page.&lt;br /&gt;
* [http://www.mdas.org/ La maison des associations de Strasbourg] uses hCalendar on event pages.&lt;br /&gt;
* [http://nuggetshoops.com/schedule.php NuggetsHoops] , an NBA fansite, uses hCalendar for each remaining game in the current season.&lt;br /&gt;
* [http://wikevent.org WikEvent] aims to make it as easy as possible to put events on the web with semantic markup, including hCalendar for events and hCard for venues and artists.&lt;br /&gt;
* [http://fundyfilm.ca/calendar/ The Fundy Film Society] uses hCalendar for their calendar of upcoming film screenings.&lt;br /&gt;
* Psychology Press and Routledge's Behavioral Sciences' publishing division have implemented hCalendar on their conferences listings on 17 of their websites (example on the conference listing on their [http://www.clinicalpsychologyarena.com/resources/conferences.asp Clinical Psychology Arena])&lt;br /&gt;
* [http://jhtc.org Jewish High Tech Community] uses hCalendar on event pages.&lt;br /&gt;
*[http://www.gore-tex.com/remote/Satellite?c=fabrics_content_c&amp;amp;cid=1162322807952&amp;amp;pagename=goretex_en_US%2Ffabrics_content_c%2FKnowWhatsInsideDetail Gore-Tex &amp;quot;Know What's Inside&amp;quot;] tour dates in hCalendar by [http://microformats.org/wiki/User:Csarven csarven]&lt;br /&gt;
* [http://finetoothcog.com/site/stolen_bikes Finetoothcog] uses hCalendar to markup when bikes are stolen.&lt;br /&gt;
* [https://www.urbanbody.com/information/contact-us Urban Body Men's Clothing] uses hCalendar for business hours and hCard for business locations.&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 hCalendar to markup events.&lt;br /&gt;
* [http://www.crosbyheritage.co.uk/events/ Colin Crosby Heritage Tours] uses hCalendar to markup events.&lt;br /&gt;
* [http://www.facebook.com Facebook] use hCalendar to markup events.&lt;br /&gt;
**'''Example needed''' (no such microformat on this [http://www.facebook.com/event.php?eid=6494697371 public event])&lt;br /&gt;
* [http://www.newbury-college.ac.uk/ Newbury College UK] uses a smattering of hCalendar and hCard&lt;br /&gt;
* [http://07.pagesd.info/ardeche/agenda.aspx 07.pagesd.info] uses hCalendar and hCard to mark up events of the Ardèche département in France.&lt;br /&gt;
* [http://climbtothestars.org Stephanie Booth] announced the [http://climbtothestars.org/archives/2006/09/14/microformats-et-bloggy-friday-doctobre/ Bloggy Friday for October 2006] using hCalendar.&lt;br /&gt;
* The [http://www.westmidlandbirdclub.com/ West Midland Bird Club], in the English Midlands, uses hCal (with nested hCard) on its [http://www.westmidlandbirdclub.com/diary/ diary of birding events].&lt;br /&gt;
* [http://www.comtec-ars.com/press-releases/ ComTec audience response systems' press releases] use hCalendar as a method to organize  by title and date.&lt;br /&gt;
* [http://webdirections.org/program/ The Web Directions Conference (Sydney Australia)] uses hCalendar for their program. It uses axis and headers for events in a table, and demonstrates how easy it is to make the whole thing downloadable using X2V.&lt;br /&gt;
* [http://www.thestreet.org.au/ The Street Theatre (Canberra, Australia)] now uses hCalendar for performances on its [http://www.thestreet.org.au/whats_on.htm What's On] page.&lt;br /&gt;
* [http://www.clacksweb.org.uk Clackmannanshire Council] uses hCalendar on its [http://www.clacksweb.org.uk/community/events/ event diary] listing pages and individual event pages.&lt;br /&gt;
* [http://www.markthisdate.com/ Calendarportal MarkThisDate.com] now uses hCalendar for all calendars. On our website visitors can add calendars and download calendars to Outlook, Lotus Notes, iCal, Netvibes, 30Boxes, Google Calendar and many others. Over 600 calendars were already uploaded. &lt;br /&gt;
* [http://mogue.jp/ mogue] uses hCalendar at [http://mogue.jp/event/1000/ event detail] pages.&lt;br /&gt;
* [http://www.gustavus.edu/events/nobelconference/2006/schedule.cfm 2006 Nobel Conference] uses hCalendar for the conference schedule&lt;br /&gt;
* [http://www.geekinthepark.co.uk Geek in the Park] uses hCalendar for the event information. -- by [[User:Trovster|trovster]]&lt;br /&gt;
* [http://www.besancon.fr/ official site of Besançon (France)] for its events&lt;br /&gt;
* [http://2006.dconstruct.org/schedule/ Conference schedule for d.Construct 2006] is published using hCalendar.&lt;br /&gt;
* [http://local.yahoo.com Yahoo Local] now supports hCalendar&lt;br /&gt;
* We used hcalendar for the [http://www.fuckparade.org/flyer/2006/ F’parade flyer 2006], a counter demonstration to the Love Parade in Berlin, alas the '''Firefox tails extension''' doesn't get a summary when it's an alt-text in an image.&lt;br /&gt;
* [http://www.harper-adams.ac.uk/press/events.cfm Harper Adams University College] uses hCalendar to mark up all University events on the Homepage and Events Calendar page.&lt;br /&gt;
* [http://www.capital.edu/ Capital University] uses hCalendar on multiple pages to provide feeds of events, relevant to page content&lt;br /&gt;
* [http://www.thesession.org/events/ The Session events] uses hCalendar to mark up concerts, festivals and workshops related to Irish traditional music.&lt;br /&gt;
* [http://rubyandrails.org/usergroups/newcastle ncl.rb] uses hCalendar to mark up new meetings.&lt;br /&gt;
* [http://www.webanalyticsassociation.org/en/calendarevents/search.asp  Web Analytics Association] - hCalendar microformat is in place on all Tendenci sites on the calendar events search page and consolidated list page.&lt;br /&gt;
* [http://www.tendenci.com/en/calendarevents/search.asp Tendenci Calendar Events] with hCalendar&lt;br /&gt;
* [http://www.argolon.com/2006/04/17/web20-conference-in-dublin/ Web2.0 Conference in Dublin] hCalendar event&lt;br /&gt;
* [http://www.meetup.com/ Meetup.com] has marked up [http://www.meetup.com/cities/us/ny/new_york city event calendars], [http://photo.meetup.com/100/events/ group event lists], and [http://www.meetup.com/ signed-in homepages] with hCalendar.&lt;br /&gt;
* [http://ukwindsurfing.com/ ukwindsurfing.com] has marked upcoming events with hCalendar, and the [http://ukwindsurfing.com/events/ events page] in a table.&lt;br /&gt;
* [http://ocono.com/ ocono.com] has marked up it's &amp;quot;Upcoming Events&amp;quot; list with hCalendar.&lt;br /&gt;
* [http://www.austinbloggers.org/ Austin Bloggers] has marked up their &amp;quot;Upcoming Events&amp;quot; box with hCalendar ([http://www.austinbloggers.org/blog/a/001123.html announcement]).&lt;br /&gt;
* Ning's cloneable Group app has [[hcalendar|hCalendar]] markup on its [http://group.ning.com/index.php?controller=event&amp;amp;action=list event calendar] and [http://group.ning.com/index.php?controller=event&amp;amp;action=view&amp;amp;id=727220 event detail] pages.&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;
* The National Arbor Day Foundation has started using hCalendars for their [http://arborday.org/programs/conferences/communityforestry/index.cfm upcoming] [http://arborday.org/programs/conferences/hazardtrees-treeplanting/ conferences].&lt;br /&gt;
* [http://www.stateofflux.com/ State of Flux street art site] has started adding events in hCalendar format&lt;br /&gt;
* The [http://barcamp.org/#BarCamps BarCamp home page lists upcoming BarCamps marked up with hCalendar] and even has a &amp;quot;Subscribe...&amp;quot; link.&lt;br /&gt;
* [http://www.w3.org/2005/12/allgroupoverview.html 2006 W3C Technical Plenary Week] has marked up the schedule and events for the week with hCalendar.&lt;br /&gt;
* [http://www.code4lib.org/2006/schedule code4lib Conference 2006 Schedule] is marked up with hCalendar as [http://www.code4lib.org/node/65 announced on their blog].&lt;br /&gt;
* [http://grouper.ieee.org/groups/754 IEEE 754 Working Group] - trying hCalendar for upcoming meetings.&lt;br /&gt;
* [http://www.pehuen.org/node/494  Elecciones 2005 Chile] - the first spanish language hCalendar event found in the wild.&lt;br /&gt;
* [http://www.codewitch.org/it/2005/11/17/no-creative-commons-no-party/ Giocolando » No Creative Commons? No Party!] is marked up with hCalendar&lt;br /&gt;
* [http://www.cmprofessionals.org/events/calendar.html CM Pros Events Calendar] by Bob Doyle&lt;br /&gt;
* [http://www.midgard-project.org/community/events/ Midgard CMS Event calendar] - as [http://bergie.iki.fi/blog/new-event-calendar-for-midcom.html blogged by Henri Bergius] &lt;br /&gt;
* [http://www.iowamilitaryveteransband.com/schedule/ Iowa Military Veterans Band Schedule] - hCalendar markup [http://weblog.randomchaos.com/archive/2005/10/24/Microformats/ added by Scott Reynen]&lt;br /&gt;
* [http://www.funfairgames.net/weblog/posts/00000011.html Upcoming events on Jason A.R. Moody Amusements Weblog] posted by Jason Moody on 15 Oct 2005. [http://www.funfairgames.net/weblog/index.html His weblog] in general has hCalendar events posted inside the blog posts.&lt;br /&gt;
* [http://tantek.com/microformats/2005/syndicate/tracks-sessions-schedule.html Syndicate - Tracks &amp;amp;amp; Sessions]&lt;br /&gt;
* [http://tantek.com/microformats/2005/web2/program.html Web 2.0 Conference schedule page marked up with hCalendar]&lt;br /&gt;
* [http://www.thisiscmon.com/ C'MON] is a rock band from Canada, and their [http://www.thisiscmon.com/shows/ tour dates] have been marked up by [http://www.d2digitalmedia.com/ Ray Dickman] with hCalendar.&lt;br /&gt;
* [http://ifreebusy.com/ ifreebusy.com] will display freebusy information using hCalendar. See this [http://ifreebusy.com/neiljensen/freebusy/ example].&lt;br /&gt;
* [http://we05.com/ Web Essentials 05] has marked up their [http://we05.com/program.cfm program schedule table with hCalendar], using the 'axis' and 'headers' attributes.&lt;br /&gt;
* [http://www.asdvbonaparte.nl/ ASDV Bonaparte] is a Dutch debating society. Their events calendar has been marked up with the hCalendar conventions.&lt;br /&gt;
* [http://chocnvodka.blogware.com/blog Suw Charman] has marked up [http://suw.org.uk/archives/category/events/ her events] with hCalendar.&lt;br /&gt;
* [http://www.blogbusinesssummit.com/ Blog Business Summit] has published their [http://www.blogbusinesssummit.com/details.htm event details] marked up with hCalendar.&lt;br /&gt;
* [http://eventful.com Eventful.com] publishes all events with hCalendar and venues with [[hcard|hCard]].  Took them only 15 minutes to implement both! Their Atom feeds also contain hCalendar/hCard.&lt;br /&gt;
* [http://upcoming.org Upcoming.org] publishes all events and lists of events with hCalendar.  Took them only an hour to add hCalendar support to the site.&lt;br /&gt;
** The dtend values for events with no time specified (like [http://upcoming.org/event/110145/ | Burning Man] are not exclusive. This causes problems when sending the microformats info to places like Google. They do correct the dtend when exporting to Outlook though. They have been made aware of the problem.&lt;br /&gt;
* The [http://laughingsquid.com/squidlist/calendar/ Laughing Squid Calendar] events, [http://laughingsquid.com/squidlist/calendar/9949/2005/5/9 e.g. this party], now supports hCalendar.&lt;br /&gt;
* [http://paulschreiber.com/ Paul] Schreiber's [http://concerts.shrub.ca/ Sunnyvale House Concerts] site publishes hCalendar event information for upcoming concerts.  In addition the [http://concerts.shrub.ca/shows Past Shows] page contains hCalendar events for all past concerts.&lt;br /&gt;
* [http://www.complexspiral.com/ Complex Spiral Consulting], both in the &amp;quot;Events&amp;quot; box on left side, and the separate [http://www.complexspiral.com/events/ Events page]. &lt;br /&gt;
* [http://tantek.com/log Tantek's Thoughts], specifically the &amp;quot;Events&amp;quot; roll in the right-most column.&lt;br /&gt;
* [http://suda.co.uk/projects/holidays/ Lesser Known Holidays], a list of holidays on [http://suda.co.uk suda.co.uk] that can be imported via iCal and hCal so you can compare actual transformation versus intended.&lt;br /&gt;
* [http://norman.walsh.name/2005/itinerary/ Norm Walsh's travel schedule] use hCalendar as well as GRDDL.&lt;br /&gt;
* [http://www.policyawareweb.org/2005/ftf2/paw-mtg Policy Aware Web (PAW) Project Meeting] uses hCalendar to record date-related decisions, and uses a vtodo microformat to record action items.&lt;br /&gt;
* The [http://lufgi4.informatik.rwth-aachen.de Laboratory for Dependable Distributed Systems] publishes it's [http://lufgi4.informatik.rwth-aachen.de/cfps list of notable CfPs on dependability and security] with hCalendar-todo elements.&lt;br /&gt;
* The [http://laughingsquid.com/laughing-squid-10th-anniversary-party/ Laughing Squid 10th Anniversary Party] has an hcalendar page.&lt;br /&gt;
* SPRACI has hcalendar versions of its nightlife/clubbing/gigs/festivals listings for many cities worldwide - eg: [http://www.spraci.com/listhcalendar.php?parea=sydney&amp;amp;category=all Events in Sydney] (check the [http://www.spraci.com/api/ API] pages in the faq section of [http://www.spraci.com/ SPRACI] for more info about the area/city keywords and category tags to use to get data for your city/categories&lt;br /&gt;
* WWF-Australia events calendars: [http://wwf.org.au/act/events/ What's on], [http://wwf.org.au/act/volunteer/ Volunteer]&lt;br /&gt;
* [http://rubyholic.com rubyholic] uses hCalendar to publish calendars for ruby groups.&lt;br /&gt;
* [http://www.bath.ac.uk/whats-on/ University of Bath What's On] uses hCalendar on individual event pages&lt;br /&gt;
* The [http://www.kiez-ev.de/ Kiez] is a small cinema and has published its [http://www.kiez-ev.de/programm program] marked up with hCalendar&lt;br /&gt;
&lt;br /&gt;
====World Cup Kick-off====&lt;br /&gt;
* [http://www.worldcupkickoff.com/ World Cup KickOff] where you can download and keep all the fixtures you are interested in so you will never miss a single game of the 2006 football World Cup!&lt;br /&gt;
** This link was on the [http://www.lifehacker.com/software/sports/world-cup-start-times-for-ical-etc-175393.php Lifehackers site] and made its way to the yahoo news site:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Mon May 22, 4:00 PM ET&lt;br /&gt;
The World Cup, one of the world's most watched sporting events, is almost upon us. If you've ever tried to follow your favorite team through the Cup you know that it can sometimes be difficult to know when they're on. World Cup Kickoff can help.&lt;br /&gt;
&lt;br /&gt;
World Cup KickOff is all you will ever need for knowing all the match details for the upcoming World Cup 2006. Whether you use your mobile phone, MS Outlook, Apple iCal or Mozilla Calendar, you can download and keep all the fixtures you are interested in so you will never miss a single game!&lt;br /&gt;
&lt;br /&gt;
Next tip? We'll show you how to get up at 2 AM to watch your matches. ;0) Thanks to Tom for the tip!&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== examples with some problems ===&lt;br /&gt;
&amp;lt;span id=&amp;quot;Examples_with_some_problems&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
If you find a problem with any example in any other section, please move it here, and note the precise problem and cite the section of the [[hcalendar | hCalendar spec]] that appears to be violated. If the example that was moved here is yours, and you want to improve it, see the [[hcalendar-faq| hCalendar FAQ]], or raise any queries on [[hcalendar-issues| hCalendar issues]] or [[mailing-lists#microformats-discuss|the mailing list]], where people will be happy to help you. &lt;br /&gt;
&lt;br /&gt;
* [http://www.tpexpress.co.uk/Liverpool08-Capital-of-Culture/ First TransPennine Express - Liverpool 08, Capital of Culture] - uses hCalendar markup for events.&lt;br /&gt;
**'''Suboptimal''', not using exclusive date end. [[User:AndyMabbett|Andy Mabbett]] 12:25, 17 Feb 2008 (PST)&lt;br /&gt;
* [http://www.konplan.com konplan.com] - uses hCalendar markup in their event container&lt;br /&gt;
** Examples: http://www.konplan.com/public1/_EN/index.php&lt;br /&gt;
**'''Suboptimal''', has wrong values in &amp;lt;code&amp;gt;dtend&amp;lt;/code&amp;gt;&lt;br /&gt;
*** Should be fixed. Can anyone check on it -- I'd like to move it back to examples above. --[[User:AndreasLappe|AndreasLappe]] 07:32, 23 Jan 2008 (PST)&lt;br /&gt;
**** Better, but the new end dates are not exclusive (this is a frequently-occurring problem, requiring a rethink of the way the microformat works). [[User:AndyMabbett|Andy Mabbett]] 10:13, 23 Jan 2008 (PST)&lt;br /&gt;
***** Should be fixed too. Again, I'd appreciate comments... --[[User:AndreasLappe|AndreasLappe]] 05:22, 25 Jan 2008 (PST)&lt;br /&gt;
****** Do those events really run from midnight to midnight? [[User:AndyMabbett|Andy Mabbett]] 05:56, 25 Jan 2008 (PST)&lt;br /&gt;
******* They don't. They are all-day events. I was working with [http://lists.osafoundation.org/pipermail/ietf-calsify/2005-September/000769.html] -- wrong? --[[User:AndreasLappe|AndreasLappe]] 06:08, 25 Jan 2008 (PST)&lt;br /&gt;
******** That's not usual practice (I'd say it gives a false level of precision), but should perhaps be raised at [[hcalendar-issues]] for clarification. [[User:AndyMabbett|Andy Mabbett]] 02:47, 28 Jan 2008 (PST)&lt;br /&gt;
* [http://wiki-translation.com wiki-translation.com] - uses hCalendar markup for events.&lt;br /&gt;
**Built-in feature for [http://TikiWiki.org TikiWiki CMS/Groupware] 1.10&lt;br /&gt;
**'''Hidden''', data hidden using CSS. [[User:AndyMabbett|Andy Mabbett]] 06:51, 15 Jan 2008 (PST)&lt;br /&gt;
***Should be fixed. Can anyone check on it? -- I'd like to move it back to examples above. --[[User:MarcLaporte|MarcLaporte]] 16:58, 4 Mar 2008 (PST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://konferenciakalauz.hu konferenciakalauz.hu] uses hCalendar for events (in Hungarian).&lt;br /&gt;
**'''Suboptimal''', not using exclusive date end. [[User:AndyMabbett|Andy Mabbett]] 13:18, 24 Sep 2007 (PDT)&lt;br /&gt;
***Fixed&lt;br /&gt;
* [http://www.chronii.com/ chronii.com], a site for creating, searching, and cross-referencing timelines, presents events marked up in hCalendar.&lt;br /&gt;
**'''Suboptimal''', '''Hidden''': [http://www.chronii.com/e/line.jsp?ti=1&amp;amp;q=The+Internet] uses &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr class=&amp;quot;dtstart&amp;quot; title=&amp;quot;1991-01-01&amp;quot;&amp;gt;&amp;lt;/abbr&amp;gt; &amp;lt;abbr class=&amp;quot;dtend&amp;quot; title=&amp;quot;1992-01-01&amp;quot;&amp;gt;&amp;lt;/abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; for a whole-year date of &amp;quot;1991&amp;quot;&lt;br /&gt;
* [http://www.gretchenland.com Gretchen] has their show schedule marked up with hCalendar&lt;br /&gt;
** Example here:  [http://www.gretchenland.com/shows  Upcoming Concert Dates]&lt;br /&gt;
**Invalid: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;SPAN title=&amp;quot;2007-04-21&amp;quot; class=&amp;quot;dtstart&amp;quot;&amp;gt;04.21.2007&amp;lt;/SPAN&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; [[User:AndyMabbett|Andy Mabbett]] 02:08, 20 Apr 2007 (PDT)&lt;br /&gt;
* I'd be happy if some future french Pinko-marketing meetings (CantineCamp) could require the use of hCalendar for listing some informal lunches in Paris. [http://www.wikiservice.at/fractal/wikidev.cgi?FR/PinkoMarketing/CantineCampParis10 CantineCampParis10 is an example] to include a hCalendar + hCard markup on the wiki-page. When converting to vCard, &amp;quot;Mendès&amp;quot; accent is malformed in a french outlook 2003 &amp;quot;address book&amp;quot;. I've looked UTF-8 example but could not find any way to correct. Any idea ? -- [[User:ChristopheDucamp|xtof]] 01:09, 26 Mar 2007 (PDT)&lt;br /&gt;
* [http://www.joomlamug.com Joomla! Melbourne User Group] uses hCalendar markup for listing of all events.&lt;br /&gt;
** No examples on cited page. [[User:AndyMabbett|Andy Mabbett]] 15:06, 31 Jan 2007 (PST)&lt;br /&gt;
* [http://www.webfeet.org/events.html Webfeet events] includes hCalendar markup in its aggregated events lists.&lt;br /&gt;
** &amp;lt;s&amp;gt;Possibly a case where &amp;lt;nowiki&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;/nowiki&amp;gt; won't work for dtstart/dtend as there are many events listed under a single date. [[User:Webf|Webf]] 15:19, 15 Jan 2007 (PST)&amp;lt;/s&amp;gt;&lt;br /&gt;
**Malformed e.g &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot; title=&amp;quot;20070120&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; [[User:AndyMabbett|Andy Mabbett]] 15:41, 15 Jan 2007 (PST)&lt;br /&gt;
** Continue the discussion under [[hcalendar-issues|hCalendar Issues]] perhaps. [[User:Webf|Webf]] 22:25, 15 Jan 2007 (PST)&lt;br /&gt;
* [http://www.theatrestudies.llc.ed.ac.uk/ Theatre Studies: European Theatre] at the University of Edinburgh uses hCalendar to markup news and events on the index page.&lt;br /&gt;
**&amp;lt;s&amp;gt;Uses &amp;quot;display:none&amp;quot; on image. [[User:AndyMabbett|Andy Mabbett]] 15:32, 13 Nov 2006 (PST)&amp;lt;/s&amp;gt; Removed img tag from hCard&lt;br /&gt;
* [http://www.bokle.de/ s'Bokle] is a German music pub. Their events calendar has been marked up with hCalendar.&lt;br /&gt;
** improper use of rrule --[[User:RyanKing|RyanKing]] 16:04, 6 Jan 2006 (PST)&lt;br /&gt;
* [http://plan9.tryphon.org/nancy/list Plan9] - Uses hCalendar to mark up events !&lt;br /&gt;
** &amp;lt;s&amp;gt;dtstart/dtend are implemented on span element [[User:TomArmitage|Tom Armitage]] June 23, 2006&amp;lt;/s&amp;gt; --[[User:Tim|Tim]] 13:34, 4 Mar 2007 (PST) Fixed now&lt;br /&gt;
* [http://www.socaltech.com socalTECH] is a news and information site. Their front page event listing is marked up with hCalendar.&lt;br /&gt;
** dtstart/dtend implemented on span element [[User:TomArmitage|Tom Armitage]] June 23, 2006&lt;br /&gt;
* [http://www.multipack.co.uk The Multipack] features a vevent for the next meeting information.&lt;br /&gt;
** dtstart/dtend are implemented on em element [[User:TomArmitage|Tom Armitage]] June 23, 2006&lt;br /&gt;
* [http://paulschreiber.com/ Paul] Schreiber's [http://iceoasis.shrub.ca/ unofficial schedule site] publishes hCalendar information for upcoming hockey games at [http://www.iceoasis.com/ Ice Oasis]&lt;br /&gt;
** dtstart/dtend are implemented on td element [[User:TomArmitage|Tom Armitage]] June 23, 2006&lt;br /&gt;
&lt;br /&gt;
- whilst Tails parses the &amp;quot;title&amp;quot; attribute for dtstart/dtend on &amp;lt;em&amp;gt;any&amp;lt;/em&amp;gt; element (does Tails still do this?), that is incorrect.  The title attribute only provides semantics for the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; element, while for elements in general like &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, only the contents of the element are used.  This is a simplification and see [[hcard-parsing|hCard parsing]] for details. Technorati Microformats Search only looks for the title attribute on &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;abbr&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; tags per the rules from [[hcard-parsing|hCard parsing]] which apply to [[hcalendar-parsing|hCalendar parsing]] as well.&lt;br /&gt;
&lt;br /&gt;
=== reviewed examples ===&lt;br /&gt;
&amp;lt;span id=&amp;quot;Reviewed_Examples&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
If you have reviewed a New Example (and you are not the author of the example) and believe it to be valid, go ahead and move it here.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== grouped examples ==&lt;br /&gt;
=== listings of upcoming local events ===&lt;br /&gt;
* ...&lt;br /&gt;
=== archives of local event listings ===&lt;br /&gt;
==== Laughing Squid Calendar ====&lt;br /&gt;
* The [http://laughingsquid.com/squidlist/calendar/ Laughing Squid Calendar] events listings supported [[hcalendar|hCalendar]] &lt;br /&gt;
** [http://laughingsquid.com/squidlist/calendar/month/2003/2 2003 February] thru [http://laughingsquid.com/squidlist/calendar/month/2006/9 2006 September]&lt;br /&gt;
&lt;br /&gt;
=== conference schedules ===&lt;br /&gt;
* [http://adactio.com/extras/schedules/barcamplondon3/ BarCamp London 3 Schedule] - uses hCalendar in a semantic &amp;lt;code&amp;gt;table&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;id&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;headers&amp;lt;/code&amp;gt; attributes.  Provides &amp;quot;Subscribe&amp;quot; and &amp;quot;Download&amp;quot; links using the [http://feeds.technorati.com/events/ Technorati Events Feed service].&lt;br /&gt;
* [http://adactio.com/extras/schedules/web2expo-berlin/ 2007 Web 2.0 Expo Berlin Schedule] - uses hCalendar in a semantic &amp;lt;code&amp;gt;table&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;id&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;headers&amp;lt;/code&amp;gt; attributes.  Provides &amp;quot;Subscribe&amp;quot; and &amp;quot;Download&amp;quot; links using the [http://feeds.technorati.com/events/ Technorati Events Feed service].&lt;br /&gt;
&lt;br /&gt;
== related pages ==&lt;br /&gt;
{{hcalendar-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2008-07-01-weekly-meetup-dinner&amp;diff=27536</id>
		<title>events/2008-07-01-weekly-meetup-dinner</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2008-07-01-weekly-meetup-dinner&amp;diff=27536"/>
		<updated>2008-07-02T00:04:53Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;microformats weekly meetup dinner&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
One of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
==Subscribe==&lt;br /&gt;
You can:&lt;br /&gt;
*Add this event to your Calendar: http://feeds.technorati.com/events/microformats.org/wiki/events/2008-07-01-weekly-meetup-dinner&lt;br /&gt;
*Subscribe to this event: webcal://feeds.technorati.com/events/microformats.org/wiki/events/2008-07-01-weekly-meetup-dinner&lt;br /&gt;
&lt;br /&gt;
== details ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
;When&lt;br /&gt;
:&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-07-01T18:30-0700&amp;lt;/span&amp;gt; to &amp;lt;span class=&amp;quot;dtend&amp;quot;&amp;gt;2008-07-01T20:30-0700&amp;lt;/span&amp;gt;&lt;br /&gt;
;Where&lt;br /&gt;
:&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Crepes on Cole&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;100 Carl St.&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94117&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;USA&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&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&amp;lt;/span&amp;gt;&lt;br /&gt;
;Web&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://pownce.com/t/notes/2627529/&amp;lt;/span&amp;gt;&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://upcoming.yahoo.com/event/859136/&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''[http://technorati.com/events/microformats.org/wiki/events/2008-07-01-weekly-meetup-dinner Add this event to your diary or calendar program]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== weekly meetup ==&lt;br /&gt;
We held the [[events/2008-06-24-weekly-meetup-dinner|first San Francisco microformats weekly meetup dinner last week]] and it was attended by 17 people! So we are doing it again, this time at a new location. More suggestions for locations welcome.&lt;br /&gt;
&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.&lt;br /&gt;
&lt;br /&gt;
By making this a regular (every week) 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;
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;
Suggested SF venues (suggester). Add your opinions and additional suggestions:&lt;br /&gt;
* Crepes on Cole (Eran Globen)&lt;br /&gt;
** +1 Tantek&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Past SF venues. We'll reuse these at some point I'm sure.&lt;br /&gt;
* Chaat Cafe: [[events/2008-06-24-weekly-meetup-dinner|2008-06-24]] (17 attendees)&lt;br /&gt;
&lt;br /&gt;
I encourage folks to organize meetup dinners wherever there is sufficient local critical mass.  &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;
* San Diego - [[User:EdwardOConnor]]&lt;br /&gt;
* San Jose (South Bay) - [[User:KevinMarks]]&lt;br /&gt;
* London - [[User:Phae]]&lt;br /&gt;
&lt;br /&gt;
== tags ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging related content (blog posts, photos):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
(Event author: 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).&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
tags: '''microformatsdinner20080701 microformatsdinner microformatsmeetup microformats'''&lt;br /&gt;
&lt;br /&gt;
If you use Twitter [[twitter-syntax#Hash_tags|hash tags]], mention '''#microformatsdinner20080701''' (with the &amp;quot;#&amp;quot;) in tweets about the event.&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
Add yourself alphabetically sorted by family name if you plan on attending or attended.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
*[xxxUrlxxx xxxNamexxx]&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
* [[User:Tantek|Tantek Çelik]]&lt;br /&gt;
* [[User:Chris_Messina|Chris Messina]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== photographs ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging related photos:&lt;br /&gt;
&lt;br /&gt;
tags: '''microformatsdinner20080701 microformatsdinner microformatsmeetup microformats'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
See [http://www.flickr.com/photos/tags/EVENTSPECIFICTAG/ EVENTSPECIFICTAG tag on Flickr].&lt;br /&gt;
&lt;br /&gt;
[http://www.flickr.com/photos/tantek/1565582389/ http://farm3.static.flickr.com/2282/1565582389_8385db9a08_m.jpg][http://www.flickr.com/photos/tantek/1566469202/ http://farm3.static.flickr.com/2020/1566469202_1ac8e757a8_m.jpg][http://www.flickr.com/photos/tantek/1566468100/ http://farm3.static.flickr.com/2414/1566468100_13f0338089_m.jpg]&lt;br /&gt;
&lt;br /&gt;
Click on yourself and add a note with your name linking to your URL!&lt;br /&gt;
&lt;br /&gt;
*[xxxUrlxxx] &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== notes ==&lt;br /&gt;
Session comments and Q&amp;amp;A.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== articles and blog posts ==&lt;br /&gt;
Articles and blog posts following up on the meetup. Newest first.&lt;br /&gt;
&lt;br /&gt;
Please use ''all'' of the following tags when tagging related blog posts:&lt;br /&gt;
&lt;br /&gt;
tags: '''microformatsdinner20080701 microformatsdinner microformatsmeetup microformats'''&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
== see also ==&lt;br /&gt;
* [[xxxWikilinkxxx]] &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== related pages==&lt;br /&gt;
{{events-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-implementations&amp;diff=27342</id>
		<title>hcard-implementations</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-implementations&amp;diff=27342"/>
		<updated>2008-06-11T14:33:52Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: adding cogmap&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard Implementations&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&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 implementations have been developed which either generate or parse [[hcard|hCards]]. If you have such an hCard implementation, feel free to add it to '''the top''' of the New Implementations section. If you have a page or site which just ''publishes'' hCards, please use [[hcard-examples-in-wild]] instead.&lt;br /&gt;
&lt;br /&gt;
== New Implementations ==&lt;br /&gt;
Add new implementations here for evaluation and classification into the below taxonomy of implementations.&lt;br /&gt;
&lt;br /&gt;
* [http://www.cogmap.com/ Cogmap] - Cogmap has a bunch of org charts marked up with hcard. Desperately needs [[XPN]]!&lt;br /&gt;
* [http://www.tripit.com/ TripIt] - The TripIt contact list of your connections is marked up with hCard&lt;br /&gt;
* [[hAvatar]] - Wordpress plugin displaying avatars for commenters based on their hCard&lt;br /&gt;
* [[org.microformats.hCard]] - java hCard parser and creator.&lt;br /&gt;
* [http://mobileonlinebusiness.com.au/uf/vCard_to_hCard_converter.html Mobile Online Business' vCard to hCard converter]&lt;br /&gt;
*[http://www.jamplanet.com Jam] is an active address book extension for Firefox/Flock. Jam imports Vcard and various CSV formats, and can output contacts in Vcard and hCard format.&lt;br /&gt;
*The &amp;quot;[http://typo3.org/extensions/repository/view/tt_address/2.0.1/ tt_address]&amp;quot; extension for [http://www.typo3.com TYPO3] supports hCard since the latest release, v2.0.0 &lt;br /&gt;
*[https://addons.mozilla.org/firefox/4106/ Operator] lets you combine pieces of information on Web sites with applications in ways that are useful. (Firefox-plugin)&lt;br /&gt;
*[http://rafaeloliveira.net/labs/hcard_creator.zip Wordpress hCard Creator] - I've made this simple plugin for wordpress. It adds the hCard Options submenu at Options menu, where you can create a simple hCard and put it on your blog using &amp;lt; ?php hcard_creator() ?&amp;gt; to show it. Also, it is possible to show an &amp;quot;export to vCard&amp;quot; link, which uses Brian Suda X2V. (Got send an e-mail to him regarding this)&lt;br /&gt;
*[http://leftlogic.com/lounge/articles/microformats_bookmarklet/ Microformats Bookmarklet] is a bookmarklet designed for IE6 and IE7, Firefox, Safari, Opera and Camino, that overlays on the current page to allow users to import individual hCards or hCalendars.  Written by Remy Sharp.&lt;br /&gt;
*[http://domanske.de/2006/09/vcardexplorer-04/ vCardExplorer] is a Mac OS X Application, that displays VCF-Files and extracts hCards from Websites written by [http://vcardexplorer.corefault.de Daniel Kagemann].&lt;br /&gt;
* [http://placenamehere.com/mf/nnwextract/ Extract Microformats] is a script for NetNewsWire that supports extracting hCard and hCalendar data in blog posts (via technorati service). Written by [[User:ChrisCasciano|Chris Casciano]]&lt;br /&gt;
* [http://allinthehead.com/hkit/ hKit] is an open source PHP 5 parsing library with support for hCard.&lt;br /&gt;
* [http://kitchen.technorati.com/search Technorati Microformats Search] indexes [[hcard|hCard]], [[hcalendar|hCalendar]], and [[hreview|hReview]] as [http://tantek.com/log/2006/05.html#d31t1802 announced by Tantek].&lt;br /&gt;
** list of pages with indexing Issues so they can be looked into as to why data is not being extracted&lt;br /&gt;
** suda.co.uk/contact&lt;br /&gt;
** multipack.co.uk&lt;br /&gt;
* [http://www.webstandards.org/action/dwtf/microformats/ Dreamweaver Extension suite] from the [http://webstandards.org/ Web Standards Project] enables the authoring of hCards from within Dreamweaver 8.&lt;br /&gt;
* [http://scooch.gr0w.com/ Scooch] is a slide show and presentation creator that generates a [[hCard]] for individual slide show authors and comment authors with a CSS button to parse and download via [http://suda.co.uk/projects/X2V/ X2V]. Also uses [[hReview]] for slide ratings and [[rel-tag]] for categories.&lt;br /&gt;
* [http://blog.codeeg.com/2006/03/20/flock-tails-flocktails/ Flocktails] - port of Tails extension for Flock 0.5.12 that looks for hCards, hCalendar, xFolk and hReview and tosses them into a handy topbar&lt;br /&gt;
*[http://opensource.reevoo.com/2006/03/08/release-uformats-12/ uformats] is a ruby library that can parse [[hCalendar]], [[hCard]], [[hReview]] and [[rel-tag]]&lt;br /&gt;
* [http://blog.codeeg.com/tails-firefox-extension-03/ Tails] is a Firefox Extension that will display the presence and details of microformats ([[hcard|hCard]], [[hcalendar|hCalendar]], [[hreview|hReview]], [[xfolk|xFolk]]) on a webpage. [https://addons.mozilla.org/firefox/2240/ Tails Export] is an extended version.&lt;br /&gt;
* [http://www.stripytshirt.co.uk/features/firefox/smartzilla Smartzilla is a Firefox Extension] that finds hCards on web pages and lets you add them to your addressbook.&lt;br /&gt;
* [http://placenamehere.com/TXP/pnh_mf/ pnh_mf] is a plugin for [http://textpattern.com/ Textpattern] that supports embedding hCard and other microformats in templates and blog posts. Written by [http://placenamehere.com/ Chris Casciano].&lt;br /&gt;
* There is [http://flickr.com/photos/factoryjoe/68755089/ evidence of built-in hCard support in the Konqueror browser].  Specifically, Konqueror 3.5, in KDE 3.5 (kubuntu Breezy w/ update).&lt;br /&gt;
* There is [http://tagcamp.org/index.cgi?ContactList evidence of a kwiki plugin for hCards].  Update: the [http://svn.kwiki.org/cwest/Kwiki-hCard/ hCard kwiki plugin svn repository].  See the [http://microwiki.caseywest.com/index.cgi?hCard documentation of the hCard kwiki plugin].&lt;br /&gt;
* [http://suda.co.uk/projects/X2V/ X2V] is a bookmarklet that parses hCard and produces a .vcf (vCard) stream.  Note: needs to be updated as the spec is refined.&lt;br /&gt;
* [http://www.stripytshirt.co.uk Duncan Walker] has built [http://www.stripytshirt.co.uk/features/firefox/smartzilla a Firefox extension] that gets hCard data from a webpage, uses Brian Suda's XSL (locally) to transform it to vcard format and opens the resulting .vcf file.&lt;br /&gt;
* [http://george.hotelling.net/90percent/ George] has written a [http://george.hotelling.net/90percent/geekery/greasemonkey_and_microformats.php Greasemonkey user script] that detects hCards and allows users to easily add them to their address book application.  Relies on the X2V web service to do the conversion.&lt;br /&gt;
* [http://inside.glnetworks.de/ Martin Rehfeld] has updated the work of [http://blogmatrix.blogmatrix.com/ David Janes] and produced a [[Greasemonkey]] [http://inside.glnetworks.de/2006/06/05/microformats-have-arrived-in-firefox-15-greasemonkey-06/ script] that finds many microformat elements, including hCards, and [http://blog.davidjanes.com/mtarchives/2005_08.html#003379 provides a popup menu of actions]. The hCard to vCard conversion is done internally within the script. ''This will work with FireFox 1.5+/GreaseMonkey 0.6.4+ now.''&lt;br /&gt;
* [http://diveintomark.org/ Mark Pilgrim] has also written an [http://diveintomark.org/projects/greasemonkey/hcard/ hCard parser Greasemonkey user script].  It is self-contained and does not rely on the X2V web service.&lt;br /&gt;
* [http://www.oliverbrown.me.uk/2005/09/03/a-working-microformats-extension-to-simplexml/ Oliver Brown] has written an &amp;quot;extension&amp;quot; to [http://www.php.net/simplexml SimpleXML] that gives simple access to hCard information in PHP 5.&lt;br /&gt;
* [http://thedredge.org/ Andrew D. Hume] has built a system (Wordpress plugin?) for [http://thedredge.org/2005/06/using-hcards-in-your-blog/ using hCards in your blog] to represent people leaving comments on blog posts.&lt;br /&gt;
* [http://greenbytes.de/tech/webdav/rfc2629.xslt rfc2629.xslt] now attempts to generate hCard information ([http://ietf.org/rfc/rfc2629 RFC2629] is an XML format for authoring RFCs and Internet Drafts, see [http://greenbytes.de/tech/webdav/rfc2629xslt/rfc2629xslt.html example document])&lt;br /&gt;
* [http://tantek.com/microformats/buddylist2hcards.html iChat buddy list to hCards] - Open source AppleScript to automatically convert one's buddy list in the MacOSX iChat AIM client into a valid XHTML 1.0 Strict list of hCards. &lt;br /&gt;
* [http://dev.w3.org/cvsweb/2001/palmagent/ palmagent] is a collection of palmpilot and sidekick tools. It includes X2V derivatives xhtml2hcard.xsl and toICal.xsl plus some [http://dev.w3.org/cvsweb/2001/palmagent/hcardTest.html hcardTest] materials&lt;br /&gt;
* [http://www.openpsa.org/ OpenPsa 2.x] CRM application uses hCard for all person listings. The widget is [http://www.midgard-project.org/midcom-permalink-922834501b71daad856f35ec593c7a6d reusable across Midgard CMS]&lt;br /&gt;
* [http://www.metonymie.com Emiliano Martínez Luque] has written an experimental [http://www.metonymie.com/hCard_extract/app.html hCard finder and structured search application] that finds hCards within a given set of URLs and returns the ones that match the specified search criteria.&lt;br /&gt;
&amp;lt;!-- *  [http://randomchaos.com/microformats/base/ Microformat Base] is an open-source PHP microformat aggregation crawler, currently recognizing hReview, hCalendar, and hCard. down! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Authoring==&lt;br /&gt;
Implementations you can use to author, create, and publish hCards.&lt;br /&gt;
&lt;br /&gt;
===Web-based Creators===&lt;br /&gt;
;[http://microformats.org/code/hcard/creator hCard creator]:Create your own hCards; also has a [http://www.wnas.nl/microformats/hcard/hcardCreator.html Dutch interface].  [[hcard-creator-feedback|hCard Give feedback.]]&lt;br /&gt;
&lt;br /&gt;
===Blogging and CMS tools===&lt;br /&gt;
;[http://euphemize.net/blog/plugins/textpattern/jmc_event_manager/ Textpattern plug-in]:jmc_event_manager is a plugin for [http://textpattern.com/ Textpattern] that outputs locations and events  in hCard (and hCalendar) formats. Written by [http://euphemize.net/ Joel Courtney].&lt;br /&gt;
;[http://wordpress.org/extend/plugins/addressbook/ Wordpress Addressbook plugin]:Display list of addresses from the blog owner's address book, each marked up as an hCard.  Maintained by [http://samwilson.id.au Sam Wilson].&lt;br /&gt;
&lt;br /&gt;
===Browser scripts and plug-ins===&lt;br /&gt;
Browser plugins that work with existing authoring tools:&lt;br /&gt;
; Any browser with javascript and a little bit of CSS :  [http://microformats.org/code/hcard/creator microformats.org hCard creator]  (see also [http://tantek.com/ Tantek]'s original [http://tantek.com/microformats/hcard-creator.html hCard creator on tantek.com].&lt;br /&gt;
&lt;br /&gt;
===Desktop Authoring Tools===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
==Search and Discovery==&lt;br /&gt;
* [http://kitchen.technorati.com/search Technorati Microformats Search] indexes [[hcard|hCard]], [[hcalendar|hCalendar]], and [[hreview|hReview]] as [http://tantek.com/log/2006/05.html#d31t1802 announced by Tantek]. &lt;br /&gt;
* [http://leftlogic.com/info/articles/microformats_bookmarklet Microformats Bookmarklet] is a bookmarklet designed for Safari (works in Firefox and Camino) that overlays on the current page to allow users to import individual [[hcard|hCards]] or [[hcalendar|hCalendars]]. Written by [http://leftlogic.com Remy Sharp].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- need to continue copy/rename some parallel implementations from [[hcalendar-implementations]] from here down --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Conversion and Import==&lt;br /&gt;
Implementations you can use to importing into an address book application, typically by converting hCard to vCard.&lt;br /&gt;
&lt;br /&gt;
===Web Services===&lt;br /&gt;
These return vCard (.vcf) and other contact formats for easy importing into typical address book programs or other processing.&lt;br /&gt;
* [http://www.tomota.de www.tomota.de] Online address book that allows to import, export and convert hCard into vCard, ldif, csv and plain text. &lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
===Firefox Greasemonkey Plugins===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
===Aggregators===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
===Forms===&lt;br /&gt;
* [http://lib.omnia-computing.de/hcardmapper hCard Mapper] maps hCards onto form fields (Javascript based)&lt;br /&gt;
&lt;br /&gt;
==Browsing==&lt;br /&gt;
Implementations that detect, display and otherwise highlight hCards in pages.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
===Firefox extension===&lt;br /&gt;
&lt;br /&gt;
[http://www.kaply.com/weblog/operator Operator] - This extension is casual-user, advanced-user and developer friendly. Very customizable and unobstrusive.&lt;br /&gt;
&lt;br /&gt;
===Flock extension===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
==Open Source==&lt;br /&gt;
Open source libraries of hCard parsers and other related code for building hCard implementations. Note: it is very likely that above implementations may be duplicated in this section. That's ok.&lt;br /&gt;
* ...&lt;br /&gt;
;Javascript &lt;br /&gt;
: The [http://microformats.org/code/hcard/creator hCard creator] ([[hcard-creator-feedback|hCard creator feedback]]) is a very simple, yet illustrative, open source user interface / form / script which creates an hCard in real-time as you type in a set of contact information.&lt;br /&gt;
&lt;br /&gt;
; PHP : &lt;br /&gt;
* [[hKit]]&lt;br /&gt;
; Python : &lt;br /&gt;
* [http://tommorris.org/files/gmail2hcard-py.txt gmail2hcard-py.txt] - for converting Gmail CSV address book export to hCards&lt;br /&gt;
; Java :&lt;br /&gt;
* [[org.microformats.hCard]]&lt;br /&gt;
; Ruby :&lt;br /&gt;
: ...&lt;br /&gt;
; XSLT :&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Additional Applications ==&lt;br /&gt;
This section should probably be incorporated into [[hcard-brainstorming]].&lt;br /&gt;
&lt;br /&gt;
There are numerous potential additional uses and applications for hCards on the Web. The following are merely a few thoughts and possibilities that folks have come up with:&lt;br /&gt;
&lt;br /&gt;
* As an open standard/format for [http://www.gravatar.com/ Gravatars].&lt;br /&gt;
** Like [http://alper.nl/cgi-bin/OpenAvatar.py?url=http://tantek.com this].&lt;br /&gt;
** Wordpress plugin with hCard based replacement for gravatar is in the make. [[User:Alper|Alper]] 12:59, 8 Aug 2007 (PDT)&lt;br /&gt;
* Marking up individual authors of blog posts on a group blog&lt;br /&gt;
* Marking up people's names and URLs in a blogroll&lt;br /&gt;
* Any reference to people in blog posts (e.g. when citing them, or referencing them, or describing them, by name).&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-examples-in-wild-pending&amp;diff=27016</id>
		<title>hcard-examples-in-wild-pending</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-examples-in-wild-pending&amp;diff=27016"/>
		<updated>2008-05-08T18:28:54Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: Added Veer's Skinny.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;hCard Examples in the wild, pending review&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&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]], but those hCards have not yet been reviewed. Once checked, they may be moved to [[hcard-examples-in-wild-reviewed]]; a great place to start for anyone looking for examples &amp;quot;in the wild&amp;quot; to try parsing, indexing, organizing etc.  &lt;br /&gt;
&lt;br /&gt;
If people or organizations on your site are marked up with hCard (even just your own contact information), feel free to add it to the '''top''' of this list. Please be sure to include at least one URL to a page on your site that includes actual [[hcard|hCard]] mark-up. Examples added without a URL to a page with hCard mark-up may be removed.&lt;br /&gt;
&lt;br /&gt;
Want to get started with writing an [[hcard|hCard]]? Use the [http://microformats.org/code/hcard/creator hCard creator] to write up some contact information and publish it, or follow the [[hcard-authoring|hCard authoring tips]] to add hCard mark-up to your current contact page.&lt;br /&gt;
&lt;br /&gt;
==New Examples==&lt;br /&gt;
Please add new examples to the '''top''' of this section so they can be reviewed! Please check back after a few days, to see if anyone has found any problems with the examples supplied.&amp;lt;!--&lt;br /&gt;
	 &lt;br /&gt;
 	Please add new examples to the *top* of this section.&lt;br /&gt;
&lt;br /&gt;
 	Please cite the specific page(s) which use(s) microformats, not a non- microformatted home page.&lt;br /&gt;
&lt;br /&gt;
	--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Added in 2008===&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]. &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://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].&amp;lt;!--&lt;br /&gt;
	 &lt;br /&gt;
 	Please add new examples to the *top* of this section.&lt;br /&gt;
&lt;br /&gt;
	--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Added in 2007===&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;
** Response in under 12 hours, to advocacy request - [[User:AndyMabbett|Andy Mabbett]]&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.serviceworksglobal.com/pages/contact-us.php Service Works Global] uses hcards on the contact us page and in the site footer&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/keylogger.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.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://christophertcressman.com Christopher T. Cressman] uses an hCard on the home page of his blog, [http://christophertcressman.com christopher t cressman].&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/usa 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://www.lounews.com/ The Louisville News Company] uses hCard for site-wide contact information for the company and for the site developer.&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;
&lt;br /&gt;
===Added pre 2007===&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/blog/hcard Chris Messina' hCard]&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;
** use: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;fn n&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;given-name&amp;quot;&amp;gt;Andy&amp;lt;/span&amp;gt; &amp;quot;&amp;lt;span class=&amp;quot;nickname&amp;quot;&amp;gt;Pigsonthewing&amp;lt;/span&amp;gt;&amp;quot; &amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Mabbett&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. [[User:AndyMabbett|Andy Mabbett]] 09:12, 16 Jan 2008 (PST)	 &amp;lt;!--&lt;br /&gt;
 	Please add new examples to the *top* of the current year's section.&lt;br /&gt;
&lt;br /&gt;
	--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
{{hcard-related-pages}}&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=swaggle-syntax&amp;diff=34125</id>
		<title>swaggle-syntax</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=swaggle-syntax&amp;diff=34125"/>
		<updated>2008-03-20T00:49:54Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Swaggle Syntax&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Retrieved from the [http://www.swaggle.mobi/about/sms Swaggle SMS page].&lt;br /&gt;
&lt;br /&gt;
Send these commands to  (206) 694-9197 and interact with Swaggle on your mobile phone.&lt;br /&gt;
&lt;br /&gt;
== Commands ==&lt;br /&gt;
&lt;br /&gt;
=== Joining Swaggle ===&lt;br /&gt;
&lt;br /&gt;
* '''.join your_group_name''' or '''.create your_group_name'''&lt;br /&gt;
&lt;br /&gt;
=== Sending messages ===&lt;br /&gt;
&lt;br /&gt;
The first group you join is your default group. Any message you send to Swaggle that isn't a command (like &amp;quot;.join&amp;quot;), we'll assume was meant for your default group, so we'll send it to out to them.&lt;br /&gt;
&lt;br /&gt;
Of course, you can be a member of more than one group, so you can specify which group you want to send a message to by starting your message with the group's name followed by a colon:&lt;br /&gt;
&lt;br /&gt;
* '''mygroup: Happy hour now at McPhee's'''&lt;br /&gt;
&lt;br /&gt;
=== Basic commands ===&lt;br /&gt;
&lt;br /&gt;
* '''&amp;amp;lt;group&amp;amp;gt;: &amp;amp;lt;message&amp;amp;gt;''': Sends a message to everyone in a particular group (e.g., &amp;quot;ultimate: game at Cal Anderson NOW!&amp;quot;).&lt;br /&gt;
* '''&amp;amp;lt;name&amp;amp;gt;: &amp;amp;lt;message&amp;amp;gt;''': Sends a message to another Swaggle user (e.g., &amp;quot;JohnS: I like you!&amp;quot;).&lt;br /&gt;
* '''.JOIN &amp;amp;lt;group&amp;amp;gt;''': Adds you to a group.&lt;br /&gt;
* '''.QUIT &amp;amp;lt;group&amp;amp;gt;''': Removes you from a group.&lt;br /&gt;
* '''.QUIT''' Removes you from the Swaggle service entirely.&lt;br /&gt;
&lt;br /&gt;
=== Advanced Commands ===&lt;br /&gt;
&lt;br /&gt;
* '''.CREATE &amp;amp;lt;group&amp;amp;gt;''': Creates a new group and adds you to it.&lt;br /&gt;
** Include the keyword &amp;quot;private&amp;quot; to create a private group: .CREATE ultimate private&lt;br /&gt;
** Include keyword &amp;quot;broadcast&amp;quot; to create a broadcast-only group: &amp;quot;.CREATE flashmob broadcast&amp;quot;.&lt;br /&gt;
* '''.INVITE &amp;amp;lt;group&amp;amp;gt; &amp;amp;lt;one or more 10 digit phone numbers and/or names&amp;amp;gt;''': Invites people to join the group. &lt;br /&gt;
** If the group is private and you are a member, this pre-authorizes the invitee(s) to join. Swaggle names can be used in addition to phone numbers: &amp;quot;.INVITE flashmob 2065551234 2064441234 karlc&amp;quot;&lt;br /&gt;
* '''.HUSH''': Mutes Swaggle until 8 am the next morning (Pacific Time)Messages sent to your groups during this time will not be delivered to you at all. You can also specify a particular day to hush until by sending .HUSH September 1 or .HUSH 9/1/07. To start receiving messages again send .HUSH off.&lt;br /&gt;
* '''.DEFAULT &amp;amp;lt;group&amp;amp;gt;''': This will set your default group.&lt;br /&gt;
* '''.DEFAULT''': Find out what your default group is.&lt;br /&gt;
* '''.NAME &amp;amp;lt;name&amp;amp;gt;''': Sets your Swaggle name (e.g., &amp;quot;.NAME Michelle&amp;quot;)&lt;br /&gt;
* '''.ECHO &amp;amp;lt;ON / OFF&amp;amp;gt;''': Sets whether you will receive copies of messages you send. On by default.&lt;br /&gt;
* '''.REPORTER &amp;amp;lt;group&amp;amp;gt; &amp;amp;lt;name&amp;amp;gt;''': Designates the person named as a &amp;quot;reporter&amp;quot; for a broadcast-only group, meaning they can send messages to the full group. Only an owner can designate a reporter: &amp;quot;.REPORTER newsevents WalterC&amp;quot;&lt;br /&gt;
* '''.BOOT &amp;amp;lt;group&amp;amp;gt; &amp;amp;lt;name&amp;amp;gt;''': Removes the person named from the group named. Only an owner may boot members from a group.&lt;br /&gt;
* '''.PWD &amp;amp;lt;newpassword&amp;amp;gt;''': Resets your Swaggle web site password.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[picoformats]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=picoformats&amp;diff=26805</id>
		<title>picoformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=picoformats&amp;diff=26805"/>
		<updated>2008-03-20T00:22:39Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: adding swaggle&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Picoformats =&lt;br /&gt;
&lt;br /&gt;
== Contributors == &amp;lt;!-- alphabetical by surname/ nickname --&amp;gt;&lt;br /&gt;
* [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://factoryjoe.com/blog Chris Messina]&lt;br /&gt;
* Andy Stack, [http://mozes.com Mozes]&lt;br /&gt;
* [http://highearthorbit.com Andrew Turner]&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Picoformats represent an effort being undertaken led by Chris Messina to codify various standards and openly pursue a nomenclature and syntax for communicating and executing commands with mobile devices over SMS or via command line interfaces (CLI).&lt;br /&gt;
&lt;br /&gt;
An example application is [http://dodgeball.com Dodgeball's] use of the at symbol (@) to express checking in to a place.&lt;br /&gt;
&lt;br /&gt;
Using the Microformats process and principles of building block design, our goal is to openly develop a complete syntax for interacting with various mobile services using the characters available on most mobile devices.&lt;br /&gt;
&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
&lt;br /&gt;
* send messages to user mobiles - via SMS, or a small application, that contains information like appointment times, locations,&lt;br /&gt;
directions, and contact info. For example, when2where.com reminds users when they need to leave to get to their appointment, so the&lt;br /&gt;
message may be like:&lt;br /&gt;
&lt;br /&gt;
 leave @ 4:35PM ~Dentist Office -&amp;gt; Detroit, MI&lt;br /&gt;
&lt;br /&gt;
where the text itself is simple and readable, but there *may* be an small utility that would parse the @ symbol to add the event to the calendar, the ~ to allow the person to quickly call that contact, or the -&amp;gt; to pull up a Map/directions to the location&lt;br /&gt;
&lt;br /&gt;
* allow users to write messages to query an application - this is similar to what Mozes has started with notes:&lt;br /&gt;
&lt;br /&gt;
 when2where: ?today    --- what appointments to I have today&lt;br /&gt;
 new @ 4PM ~Olive Garden -&amp;gt; Novi     --- add an appointment&lt;br /&gt;
&lt;br /&gt;
In addition to the obvious mobile device arena, picoformats may be usable in any context where &amp;quot;markup&amp;quot; is too heavy. For example, an IRC bot, whereisbot, that announces user locations as they sign into a channel, or allows people to do:&lt;br /&gt;
&lt;br /&gt;
 .whereami, or .whereis &amp;lt;nick&amp;gt; to geolocate other people in a channel.&lt;br /&gt;
&lt;br /&gt;
The intention is to 'markup' the information, but putting actual XHTML or XML is annoying, since IRC doesn't parse the information at all. So right now the response is:&lt;br /&gt;
&lt;br /&gt;
 ajturner: .whereami&lt;br /&gt;
 whereisbot: ajturner is in Northville, MI, US  [42.4365 x -83.4884]&lt;br /&gt;
&lt;br /&gt;
So then someone could write a Picoformat parser for X-Chat/Colloquy/other that would parse the [ #### x #### ] and provide a Map url link.&lt;br /&gt;
&lt;br /&gt;
Using arrows to denote time and place, familiar from video recorders and other devices.&lt;br /&gt;
Some thoughts: &amp;lt;past  &amp;gt;future  ^now (the hat is also mnemonic for Here + At)  or &amp;gt;5 (in five days time) &amp;gt;&amp;gt;5 (in 5 weeks time) &amp;gt;&amp;gt;&amp;gt;5 (5 months)&lt;br /&gt;
 &lt;br /&gt;
 Meeting &amp;lt;Leeds went well. ^Home. See you &amp;gt;london&lt;br /&gt;
 Sorry, saw them &amp;lt;&amp;lt;2 wanna go see film &amp;gt;3?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Documented_Syntaxes&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Syntaxes ==&lt;br /&gt;
&lt;br /&gt;
* [[actiontastic-syntax | Actiontastic]]&lt;br /&gt;
* [[dopplr-syntax | Dopplr]]&lt;br /&gt;
* [[facebook-syntax | Facebook Mobile]]&lt;br /&gt;
* [[igtd-syntax | iGTD]]&lt;br /&gt;
* [[kiboze-syntax|Kiboze]]&lt;br /&gt;
* [[jaiku-syntax|Jaiku]]&lt;br /&gt;
* [[mixd-syntax | Mixd]]&lt;br /&gt;
* [[plazes-syntax | Plazes]]&lt;br /&gt;
* [[poi66-syntax | POI66]] - [http://www.poi66.com/maps/step1.php]&lt;br /&gt;
* [[quickpack-syntax | QuickPack]]&lt;br /&gt;
* [[remember-the-milk | Remember the Milk for Twitter]]&lt;br /&gt;
* [[stikkit-syntax | Stikkit]] [http://stikkit.com/]&lt;br /&gt;
* [[swaggle-syntax | Swaggle]] [http://swaggle.mobi/]&lt;br /&gt;
* [[textmarks-syntax|Textmarks]]&lt;br /&gt;
* [[tfl-syntax | Transport for London]]&lt;br /&gt;
* [[twitter-syntax | Twitter]]&lt;br /&gt;
* [[zoove-syntax | Zoove]] - [http://www.zoove.com/]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.kiboze.com/kiboze/CustWorks.aspx Kiboze How it Works]&lt;br /&gt;
* Flagr: [http://www.flagr.com/help/howto#mobile_creating_flag Creating mobile flags]&lt;br /&gt;
* [http://www.dodgeball.com/glossary Dodgeball Glossary]&lt;br /&gt;
* [http://twttr.com/t/help/lingo twttr lingo]&lt;br /&gt;
* Twitter (or Jaiku) [[twitter-nanoformats]] brainstorm [http://twitternanoformats.wikispaces.com/ A proposal for Twitter nanoformats]&lt;br /&gt;
* [http://skobee.com/email_howto Skobee's email syntax]&lt;br /&gt;
* [http://www.meetmoi.com/1/meetmoi?wicket:bookmarkablePage=:com.mdate.web.GettingStarted#11 MeetMoi syntax]&lt;br /&gt;
* [https://www.billmonk.com/about/sms BillMonk syntax]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=spread-microformats&amp;diff=27060</id>
		<title>spread-microformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=spread-microformats&amp;diff=27060"/>
		<updated>2008-03-02T23:49:26Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: removed buy tshirt link as goodstorm got bought by zazzle (!)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Spread Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Inspired by [http://spreadfirefox.com/ Spread Firefox], this page is for sharing community resources for marketing microformats such as [[buttons]], banners, wallpaper / desktop screens, logo graphics, etc.&lt;br /&gt;
&lt;br /&gt;
== Email ==&lt;br /&gt;
* See [[advocacy-email-samples]] for some sample emails you can copy/customize and send to site owners to encourage them adopt microformats.&lt;br /&gt;
&lt;br /&gt;
== Wallpaper ==&lt;br /&gt;
=== Wallpaper and desktop screens. ===&lt;br /&gt;
* A [http://remiprevost.com/images/wallpapers/microformats/ wallpaper] by [[User:Remi|Rémi Prévost]]&lt;br /&gt;
&lt;br /&gt;
== Logo ==&lt;br /&gt;
&lt;br /&gt;
=== logo text ===&lt;br /&gt;
[http://microformats.org/img/logo.gif http://microformats.org/img/logo.gif]&lt;br /&gt;
&lt;br /&gt;
* High-resolution [http://simplebits.com/bits/microformats/microformats-logo.eps EPS] and  [http://simplebits.com/bits/microformats/microformats-logo.png transparent PNG] versions of the microformats logo text by [[User:DanCederholm|Dan Cederholm]].&lt;br /&gt;
&lt;br /&gt;
=== logo mark ===&lt;br /&gt;
* A [http://remiprevost.com/images/wallpapers/microformats/mf-vector.svg SVG] and [http://remiprevost.com/images/wallpapers/microformats/mf-vector.png PNG] (for Fireworks) version of the microformats logo, by [[User:Remi|Rémi Prévost]] (Released under a [http://creativecommons.org/licenses/by-nc-sa/2.5/ Creative Commons BY-NC-SA] license)&lt;br /&gt;
&lt;br /&gt;
== POSH ==&lt;br /&gt;
* [[posh|POSH]] logos and buttons&lt;br /&gt;
&lt;br /&gt;
== T-Shirts ==&lt;br /&gt;
* See [http://flickr.com/photos/tags/microformatstshirt photos of microformats tshirts on Flickr] (the [http://flickr.com/photos/tags/microformatstshirt/clusters/ clusters] are especially fun)&lt;br /&gt;
** Note also [http://pixelsebi.com/2006-10-26/microformats-t-shirt-in-second-life/ microformats t-shirt in Second Life]&lt;br /&gt;
&lt;br /&gt;
== External online community resources ==&lt;br /&gt;
&lt;br /&gt;
=== Video ===&lt;br /&gt;
* See [http://www.youtube.com/results?search_query=microformats videos of microformats on YouTube], in particular, a [http://www.youtube.com/watch?v=UAV4SGpPuQI video of a microformats tshirt] ([http://www.flickr.com/photos/fumi/372068162/ photo]).&lt;br /&gt;
&lt;br /&gt;
===Social networking===&lt;br /&gt;
Groups for fans and advocates of microformats to join or follow:&amp;lt;!--listed alphabetically--&amp;gt;&lt;br /&gt;
* [http://www.facebook.com/group.php?gid=2374732285 Facebook microformats group]&lt;br /&gt;
* [http://flickr.com/groups/microformats/ Flickr microformats group]&lt;br /&gt;
* [http://getsatisfaction.com/microformats microformats on Satisfaction]&lt;br /&gt;
* [http://twitter.com/microformats microformats on Twitter].&lt;br /&gt;
&lt;br /&gt;
=== wiki-communities ===&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats Wikipedia: Project Microformats]&lt;br /&gt;
**[http://ko.wikipedia.org/wiki/%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:%EC%9C%84%ED%82%A4%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8_%EB%A7%88%EC%9D%B4%ED%81%AC%EB%A1%9C%ED%8F%AC%EB%A7%B7 -&amp;quot; - in Korean]&lt;br /&gt;
**[http://zh.wikipedia.org/wiki/Wikipedia:%E5%B0%88%E9%A1%8C/%E5%BE%AE%E6%A0%BC%E5%BC%8F -&amp;quot; - in Chinese]&lt;br /&gt;
* [http://www.usemod.com/cgi-bin/mb.pl?MicroFormats meatball:microformats] -- a first page (stub to be reviewed) dedicated to have any review/opinion from the meatballers especially on the wiki-formats.&lt;br /&gt;
* [http://communitywiki.org/fr/MicroFormats communitywiki:microformats] -- an old multilingual page with a blockcodemachine proposal.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[advocacy]]&lt;br /&gt;
* [[buttons]]&lt;br /&gt;
* [[notable-users|notable users]].&lt;br /&gt;
* [[podcasts]]&lt;br /&gt;
* [[presentations]]&lt;br /&gt;
* [[press]]&lt;br /&gt;
* &amp;lt;span id=&amp;quot;Semacode&amp;quot;&amp;gt;[[semacode]]&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Chris_Messina&amp;diff=31760</id>
		<title>User:Chris Messina</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Chris_Messina&amp;diff=31760"/>
		<updated>2008-01-13T06:52:32Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: adding public domain declaration&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Chris Messina is an independent thinker, builder, doer and blogs at [http://factoryjoe.com/blog FactoryCity].&lt;br /&gt;
&lt;br /&gt;
==Copyright==&lt;br /&gt;
&amp;lt;div id=&amp;quot;publicdomainrelease&amp;quot; cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; style=&amp;quot;background: #f7f8ff; border: 1px solid #88a; padding: 5px; font-size: 80%;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;float:left;margin:.8em 0&amp;quot;&amp;gt;http://upload.wikimedia.org/wikipedia/commons/thumb/6/62/PD-icon.svg/64px-PD-icon.svg.png&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;float:right;margin:.8em 0&amp;quot;&amp;gt;http://upload.wikimedia.org/wikipedia/commons/thumb/6/62/PD-icon.svg/64px-PD-icon.svg.png&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;background:#fff;margin:0 68px;padding:2px&amp;quot;&amp;gt;&amp;lt;div style=&amp;quot;text-align: center; background: #ccf;&amp;quot;&amp;gt;'''Released into public domain'''&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I agree to release all my text and image contributions (past, present and future) to this wiki, into the [[#public-domain|public domain*]]. Please be aware that other contributors might not have done the same, so if you want to use pages with my contributions under public domain terms, please check past contributors' user pages.&amp;lt;/p&amp;gt;&amp;lt;p id=&amp;quot;public-domain&amp;quot;&amp;gt;&amp;quot;^ [http://creativecommons.org/licenses/publicdomain/ Creative Commons Public Domain License], the original at  http://creativecommons.org/licenses/publicdomain/ or any later version published by Creative Commons; with either a waiver of rights, or an assertion that no rights attach to a particular work.&amp;quot;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
[[Category:public domain license|{{PAGENAME}}]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=implementations&amp;diff=24338</id>
		<title>implementations</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=implementations&amp;diff=24338"/>
		<updated>2008-01-08T19:09:15Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: adding bugzilla&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats Implementations&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
This page lists the applications, plugins, sample code, services, tools that produce or consume microformats. This is only a partial list. If you know other services or tools for or supporting microformats, please add them, link to their [[implementors]], and list what specific microformats they support.&lt;br /&gt;
&lt;br /&gt;
== Implementations vs. Examples in the Wild ==&lt;br /&gt;
This page is ''only'' for implementations of tools that publish or consume microformats. Companies simply ''using'' microformats on their pages/sites belong in the &amp;quot;Examples in the wild&amp;quot; sections of those respective microformats, e.g.:&lt;br /&gt;
* [[hcard-examples-in-wild|hCard Examples in the wild]]&lt;br /&gt;
* [[hcalendar-examples-in-wild|hCalendar Examples in the wild]]&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Editing This Page ==&lt;br /&gt;
When you find an implementation, first make sure that it is ''actually'' an implementation as opposed to ''just'' an [[hcard-examples-in-wild|example in the wild]] of publishing microformats (see above).&lt;br /&gt;
&lt;br /&gt;
Second, note the name of the ''tool or service'' separately from the name of the ''developer(s)'' who wrote the tool/service.&lt;br /&gt;
&lt;br /&gt;
Add a third level heading with the name of the tool/service ( &amp;lt;code&amp;gt;=== Name of Tool ===&amp;lt;/code&amp;gt; ) to the Applications / Plugins / Services / Tools section, sorted alphabetically by name of tool/service.  Add a top level list item (*) just below the heading with an external link to the tool/service, along with a link to evidence of their support for microformats, and mention (and locally link) each microformat that is supported.&lt;br /&gt;
&lt;br /&gt;
Add a nested list item &amp;lt;code&amp;gt;* by Name of Developer&amp;lt;/code&amp;gt; and local to wiki hyperlink the Name of Developer to a fragment identifier in the [[implementors]] page, e.g. Apple Computer would be linked like this: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[implementors#Apple_Computer|Apple Computer]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check to see if there is an entry for the developer in the [[implementors|list of implementors]], if not add them there. Add a link to the developer's home page followed by &amp;quot;has implemented microformats in:&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In the entry for the developer, add a list item &amp;lt;code&amp;gt;* Name of Tool&amp;lt;/code&amp;gt; and local to wiki hyperlink the Name of Tool to a fragment identifier in this page, e.g. X2V would be linked like this: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[implementations#X2V|X2V]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save the page and make sure that each fragment ID local hyperlink when clicked scrolls you to the right spot (for the developer, and for the tool).  Make any fix-up edits as necessary.  That's it!&lt;br /&gt;
&lt;br /&gt;
== Reporting Bugs ==&lt;br /&gt;
In short, [[put-it-on-the-wiki]]. In particular, add bug reports, with URL(s) to a valid demonstrative test case(s) of course, to the listing of an implementation on this page, OR on the specific implementations wiki page (e.g. [[hcard-implementations]]).  Please describe why you think it is a bug (user interface, cosmetic, violates a spec page, e.g. for problems parsing hCards, reference which part of [[hcard-parsing]] the implementation appears to not be following).&lt;br /&gt;
&lt;br /&gt;
If you have a sense of urgency for getting that particular bug fixed in that implementation, you may email [http://microformats.org/discuss/ microformats-dev] with the URL of that implementation on the wiki page, and *summarize* the bug (the full description being on the wiki page instead).&lt;br /&gt;
&lt;br /&gt;
== Formats ==&lt;br /&gt;
Most microformat specifications have an &amp;quot;implementations&amp;quot; section, e.g.:&lt;br /&gt;
*[[rel-tag#Implementations|rel-tag implementations]]&lt;br /&gt;
*[[vote-links#Implementations|vote-link implementations]]&lt;br /&gt;
*[[xoxo#Implementations|XOXO implementations]]&lt;br /&gt;
&lt;br /&gt;
In addition, some microformat specifications have separate implementation pages:&lt;br /&gt;
*[[hcalendar-implementations|hCalendar implementations]]&lt;br /&gt;
*[[hcard-implementations|hCard Implementations]]&lt;br /&gt;
*[[xfn-implementations|XFN implementations]]&lt;br /&gt;
&lt;br /&gt;
== Applications / Plugins / Services / Tools ==&lt;br /&gt;
This is an alphabetical listing of all applications, plugins (grouped with their app/tool), services and tools that implement microformats, along with the list of microformats that are supported, and the company and/or developers responsible for it.&lt;br /&gt;
&lt;br /&gt;
As a user, the implementations listed below will automatically help you use microformats and help your data portability and interoperability with other apps and services.&lt;br /&gt;
&lt;br /&gt;
Please help complete this list!  If you know of additional apps/plugins/services/tools that support microformats, please add them!&lt;br /&gt;
&lt;br /&gt;
Note: this section is only for listing specific ''implementations''.  The list of ''implementors'' is in the [[implementors#Companies / Developers / Organizations|Companies / Developers / Organizations]] section on the [[implementors]] page.&lt;br /&gt;
&lt;br /&gt;
Alphabetically:&lt;br /&gt;
&lt;br /&gt;
=== .Mac Webmail ===&lt;br /&gt;
* The [http://www.mac.com/webmail .Mac Webmail] ''service'' now [http://factoryjoe.com/blog/2006/10/28/apple-embraces-microformats-in-new-mac-webmail/ supports hcard].&lt;br /&gt;
** by [[implementors#Apple_Computer|Apple Computer]]&lt;br /&gt;
&lt;br /&gt;
=== AlchemyPoint ===&lt;br /&gt;
* [http://www.orch8.net/ AlchemyPoint] is a structured web / mashup platform that supports parsing hCard, rel-tag and other microformats.&lt;br /&gt;
** by [[implementors#Orchestr8|Orchestr8]]&lt;br /&gt;
&lt;br /&gt;
=== Backnetwork ===&lt;br /&gt;
* [http://backnetwork.com/ Backnetwork] is a community networking tool for events that supports [[hCard]], [[hCalendar]], and [[XFN]].&lt;br /&gt;
** by [[implementors#Glenn_Jones|Glenn Jones]] of [[implementors#Madgex|Madgex]].&lt;br /&gt;
&lt;br /&gt;
=== Blinksale ===&lt;br /&gt;
* [http://blinksale.com Blinksale] uses [[hcard|hCard]] standard throughout for people and companies.&lt;br /&gt;
&lt;br /&gt;
=== BlogMatrix ===&lt;br /&gt;
* [http://www.blogmatrix.com BlogMatrix] - user information marked as [[hcard|hCard]], tag directories in [[xfolk]]/[[rel-tag]], enclosures are marked as [[rel-enclosure]].&lt;br /&gt;
** by [[implementors#David_Janes|David Janes]]&lt;br /&gt;
&lt;br /&gt;
=== Blogmarks.net ===&lt;br /&gt;
* [http://www.blogmarks.net Blogmarks.net] publish user bookmarks in [[xfolk]]/[[rel-tag]].&lt;br /&gt;
&lt;br /&gt;
=== Bugzilla ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.bugzilla.org/ Bugzilla] [http://www.bugzilla.org/status/2007-08-23.html 3.1.1] includes some microformats on show_bug.cgi and a few other places.&lt;br /&gt;
&lt;br /&gt;
=== cmSiteNavigation ===&lt;br /&gt;
* [http://www.christophm.de/software/firefox/cmSiteNavigation/ cmSiteNavigation] extension for Firefox make use of links marked with a [[existing-rel-values|&amp;quot;rel&amp;quot; value]], and parses additional link types also.&lt;br /&gt;
&lt;br /&gt;
=== Community Server ===&lt;br /&gt;
* [http://communityserver.org Community Server] supports tagging posts with [[rel-tag]], implements [[rel-nofollow]] on links in comments, and allows users to create link lists using [http://gmpg.org/xfn/ XFN].&lt;br /&gt;
&lt;br /&gt;
=== Conferenceer ===&lt;br /&gt;
* Built for SXSW 2007, [http://sxsw07.conferenceer.com/ Conferenceer] supports hcalendar and hcard.&lt;br /&gt;
&lt;br /&gt;
=== Citycita===&lt;br /&gt;
* [http://www.citycita.org Citycita] supports [[hCal|hCal]] in all event pages for local social groups.&lt;br /&gt;
** by [[implementors#Rubio_Jamin|Rubio Jamin]]&lt;br /&gt;
&lt;br /&gt;
=== Cork'd ===&lt;br /&gt;
* [http://corkd.com Cork'd] supports [[hcard|hCard]] for user profiles, [[hreview|hReview]] for wine reviews, along with [[rel-tag]] for tagging wines as announced in [http://www.simplebits.com/notebook/2006/06/10/wineformats.html Pairing Wine and Microformats]&lt;br /&gt;
** by [[implementors#Dan_Cederhold|Dan Cederholm]]&lt;br /&gt;
&lt;br /&gt;
=== Delicious Generation ===&lt;br /&gt;
* [http://deliciousgeneration.com/ Delicious Generation] supports [[hCal|hCal]] for the event and [[hcard|hCard]] for sponsors and people.&lt;br /&gt;
** by [[implementors#Chris_Messina|Chris Messina]]&lt;br /&gt;
&lt;br /&gt;
=== Digg ===&lt;br /&gt;
* [http://digg.com/ Digg] supports [[hcard|hCards]] for profiles and rel-me for identity consolidation (though they currently mix rel-nofollow with rel-me, negating these links).&lt;br /&gt;
&lt;br /&gt;
=== Dreamweaver ===&lt;br /&gt;
==== Microformats Extensions ====&lt;br /&gt;
* [http://www.webstandards.org/action/dwtf/microformats Dreamweaver Microformats Extensions] ([http://allinthehead.com/beta/microformats.mxp.zip download]) support authoring [[hcard|hCard]], [[hcalendar|hCalendar]], [http://gmpg.org/xfn XFN], [[rel-tag]], [[rel-license]] as [http://allinthehead.com/retro/282/microformats-in-dreamweaver announced by Drew]&lt;br /&gt;
** by [[implementors#Drew_Mclellan|Drew McLellan]]&lt;br /&gt;
&lt;br /&gt;
=== Drupal ===&lt;br /&gt;
==== Upcoming module for Drupal ====&lt;br /&gt;
* [http://hybernaut.com/upcoming-module Drupal Upcoming.org syndication module] emits [[hcalendar|hCalendar]]&lt;br /&gt;
** by [[implementors#Brian_Del_Vecchio|Brian Del Vecchio]]&lt;br /&gt;
&lt;br /&gt;
=== Etnies ===&lt;br /&gt;
* [http://etnies.com/extra/calendar/ Etnies Calendar] supports hcalendar. Maybe the [http://thecolab.com/blog/2007/01/22/etniescom-relaunch/ first skate-shop to support microformats].&lt;br /&gt;
&lt;br /&gt;
=== Eventful ===&lt;br /&gt;
* [http://eventful.com Eventful] supports [[hcalendar|hCalendar]] for over 1,000,000 event listings and [[hcard|hCard]] for venues.&lt;br /&gt;
&lt;br /&gt;
=== Facebook ===&lt;br /&gt;
* [http://facebook.com/ Facebook] supports [[hcard|hCard]] for some public profiles '''(example needed)'''. &lt;br /&gt;
* There is also an [http://www.facebook.com/apps/application.php?id=2400943827&amp;amp;ref=s hCard application] (a plug-in) for Facebook users.&lt;br /&gt;
* Note also the [http://www.facebook.com/group.php?gid=2374732285 microformats group], which Facebook users who support microformats can join.&lt;br /&gt;
&lt;br /&gt;
=== Ficlets ===&lt;br /&gt;
* [http://ficlets.com Ficlets] supports [[hcard]] for author data and [[hatom]] for stories and lists of stories.&lt;br /&gt;
** [http://sixtwothree.org Jason Garber] and [http://lawver.net Kevin Lawver] for [http://aol.com AOL]&lt;br /&gt;
&lt;br /&gt;
=== Finetoothcog ===&lt;br /&gt;
* [http://finetoothcog.com/site/stolen_bikes Stolen Bikes] now supports [[hcalendar|hCalendar]] for reported stolen bikes. Also provides iCal subscription.&lt;br /&gt;
&lt;br /&gt;
=== Firefox ===&lt;br /&gt;
* See [[firefox-extensions]]&lt;br /&gt;
&lt;br /&gt;
=== FunAdvice ===&lt;br /&gt;
* [http://funadvice.com FunAdvice] supports using the rel-nofollow tag to prevent users posting content simply for the search engine benefit, to improve teh quality of the advice giving community.&lt;br /&gt;
&lt;br /&gt;
=== Gravatar Commenters as hCards  ===&lt;br /&gt;
* [http://thedredge.org Andy Hume] added code to his blogging software to automatically mark-up the names and URLs of commenters on his blog with [[hcard|hCard]]. &lt;br /&gt;
** by [[implementors#Andy_Hume|Andy Hume]]&lt;br /&gt;
** Andy - any chance of open sourcing your code to turn Gravatars into hCards?&lt;br /&gt;
&lt;br /&gt;
=== Flickr People ===&lt;br /&gt;
* [http://flickr.com/ Flickr]'s profiles on its people pages supports both [[hcard|hCard]] and [http://gmpg.org/xfn XFN].&lt;br /&gt;
** by [[implementors#Cal_Henderson|Cal Henderson]]&lt;br /&gt;
**[http://flickr.com/people/tantek example]&lt;br /&gt;
&lt;br /&gt;
=== Flickr Photos ===&lt;br /&gt;
* [http://flickr.com/map/ Flickr's geo tagged photos] are marked up with the [[geo]] microformat.&lt;br /&gt;
&lt;br /&gt;
=== Flock Web Browser ===&lt;br /&gt;
* The [http://flock.com Flock web browser] supports the [[rel-tag]] microformat.&lt;br /&gt;
** by [[implementors#Flock|Flock]]&lt;br /&gt;
&lt;br /&gt;
=== Google Search ===&lt;br /&gt;
* [http://google.com/ Google Search] - supports [[rel-nofollow]]&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
&lt;br /&gt;
=== Google Blogger ===&lt;br /&gt;
* [http://blogger.com/ Blogger] supports [[hatom|hAtom]] (citation to blog post needed - 2007)&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
&lt;br /&gt;
=== Google Creative Commons Search ===&lt;br /&gt;
* [http://www.google.com/webhp?as_rights=(cc_publicdomain%7Ccc_attribute%7Ccc_sharealike%7Ccc_noncommercial%7Ccc_nonderived) Google Creative Commons Search] - supports [[rel-license]]&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
&lt;br /&gt;
=== Google Maps ===&lt;br /&gt;
* [http://maps.google.com/ Google Maps] supports [[hcard|hCard]] (see [http://googlemapsapi.blogspot.com/2007/06/microformats-in-google-maps.html 2007-06-31 announcement by Google])&lt;br /&gt;
* Google maps also allows reviewers and map creators to [http://maps.google.com/maps/me attach a public profile], which includes hCard and rel=&amp;quot;me' XFN markup. See [http://google-latlong.blogspot.com/2007/10/put-yourself-on-map.html 2007-10-17 announcement]. Sample profile: [http://maps.google.com/maps/user?uid=109581870574956225297 Kevin Marks].&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
**Unfortunately, [http://microformats.org/discuss/mail/microformats-discuss/2007-July/010311.html Google Map's implementation is broken]. [http://microformats.org/discuss/mail/microformats-discuss/2007-August/010457.html Google are aware; a fix is awaited].&lt;br /&gt;
** Also, there is no hCard nor any XFN rel values on the [http://maps.google.com/maps/user?uid=109581870574956225297 sample profile] itself, it appears to include a [http://maps.google.com/maps/c/widgets/ProfileViewer?js=RAW&amp;amp;maximize=true&amp;amp;hide=false&amp;amp;width=40&amp;amp;noTitle=true&amp;amp;theme=theme_2&amp;amp;service=local&amp;amp;uid=109581870574956225297&amp;amp;height=0&amp;amp;background=transparent&amp;amp;serverbased=true&amp;amp;border=NONE&amp;amp;eventCallback=ParentStub1192999211538&amp;amp;zx=dc574o15j0wrv frame] which then has an hCard and rel=&amp;quot;me&amp;quot; to the user's blog.&lt;br /&gt;
&lt;br /&gt;
=== Greasemonkey ===&lt;br /&gt;
* [http://greasemonkey.makedatamakesense.com/google_hcalendar/ Google hCalendar] - Adds hCalendar data to Google Calendar.&lt;br /&gt;
* [http://www.nickpeters.net/?p=35 Social xFolk] - Adds xFolk links to social bookmarking sites del.icio.us and ma.gnolia.&lt;br /&gt;
&lt;br /&gt;
=== hCalendar creator ===&lt;br /&gt;
* [http://microformats.org/code/hcalendar/creator hCalendar creator] (originally [http://theryanking.com/microformats/hcalendar-creator.html published by Ryan King]) is a javascript form for creating [[hcalendar|hCalendar]] events.&lt;br /&gt;
** by [[implementors#Ryan_King|Ryan King]]&lt;br /&gt;
&lt;br /&gt;
=== hCard to Gmail Service ===&lt;br /&gt;
* [http://jkg3.com/Journal/81/bookmarklet hCard to gmail] is a bookmarklet / service which will convert hCard formatted data to the .CSV file for importing to gmail.&lt;br /&gt;
** by [[implementors#Jamie_Knight|Jamie Knight]]&lt;br /&gt;
&lt;br /&gt;
=== hCard creator ===&lt;br /&gt;
* The open source [http://microformats.org/code/hcard/creator hCard creator] (originally [http://tantek.com/microformats/hcard-creator.html published by Tantek]) is a very simple, yet illustrative, open source user interface / form / script which creates an [[hcard|hCard]] in real-time as you type in a set of contact information.&lt;br /&gt;
** by [[implementors#Tantek_Çelik|Tantek Çelik]]&lt;br /&gt;
&lt;br /&gt;
=== hKit Microformats Toolkit for PHP5 ===&lt;br /&gt;
* [http://hkit.googlecode.com/ hKit Microformats Toolkit for PHP5] as [http://allinthehead.com/retro/291/hkit-microformats-toolkit-for-php announced by Drew McLellan]. See also [[hkit|hKit on this wiki]].&lt;br /&gt;
&lt;br /&gt;
=== hReview creator ===&lt;br /&gt;
* [http://microformats.org/code/hcalendar/creator hReview creator] (originally [http://theryanking.com/microformats/hreview-creator.html published by Ryan King]) is a javascript form for creating [[hreview|hReviews]].&lt;br /&gt;
** by [[implementors#Ryan_King|Ryan King]]&lt;br /&gt;
&lt;br /&gt;
=== Ice Rocket ===&lt;br /&gt;
* [http://icerocket.com] - [http://blogs.icerocket.com/tag/ supports] [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
=== iChat buddy list to hCards ===&lt;br /&gt;
* [http://tantek.com/microformats/buddylist2hcards.html iChat buddy list to hCards] - open source AppleScript to automatically convert one's buddy list in the MacOSX iChat AIM client into a valid XHTML 1.0 Strict list of hCards.&lt;br /&gt;
** by [[implementors#Tantek_Çelik|Tantek Çelik]]&lt;br /&gt;
&lt;br /&gt;
=== Internet Explorer ===&lt;br /&gt;
* See [[internet-explorer-extensions]]&lt;br /&gt;
&lt;br /&gt;
=== JobiJoba ===&lt;br /&gt;
* [http://www.jobijoba.com JobiJoba : moteur de recherche emploi] parses and supports [[hCard|hCard]] and [[rel-tag|rel-tag]] for over 40,000 job listings.&lt;br /&gt;
&lt;br /&gt;
=== JSCalendar ===&lt;br /&gt;
* [http://web.mit.edu/glasser/www/JSCalendar/ JSCalendar] parses [[hcalendar|hCalendar]] and produces a displayable HTML table/CSS-based calendar.&lt;br /&gt;
&lt;br /&gt;
=== Konqueror ===&lt;br /&gt;
* [http://www.konqueror.org/ Konqueror] - [http://flickr.com/photos/factoryjoe/68755089/ supports] [[hcard|hCard]]&lt;br /&gt;
&lt;br /&gt;
=== Last.fm ===&lt;br /&gt;
* [http://last.fm Last.fm] - [http://factoryjoe.com/blog/2006/10/31/lastfm-adds-support-for-hcalendar/ Last.fm supports] [[hcalendar|hCalendar]] &lt;br /&gt;
&lt;br /&gt;
=== LouderVoice ===&lt;br /&gt;
* [http://www.loudervoice.com Publishes and aggregates hreview content] - The LouderVoice site provides a variety of tools to publish hreview to blogs and it also aggregates hreview content from any registered RSS Feed so that users can search/rate/collect distributed reviews.&lt;br /&gt;
&lt;br /&gt;
=== Laughing Squid Calendar ===&lt;br /&gt;
* The [http://laughingsquid.com/squidlist/calendar/ Laughing Squid Calendar] events listings support [[hcalendar|hCalendar]].&lt;br /&gt;
** by [http://laughingsquid.com/ Laughing Squid]&lt;br /&gt;
&lt;br /&gt;
=== LinkedIn ===&lt;br /&gt;
* [http://www.linkedin.com LinkedIn] - LinkedIn includes [[hcard|hCard]] and [[xfn|XFN]] on contacts, [[hresume|hResume]] for public profiles and [[hreview|hReview]] on service provider recommendations&lt;br /&gt;
&lt;br /&gt;
=== Live Clipboard ===&lt;br /&gt;
* [http://spaces.live.com/editorial/rayozzie/demo/liveclip/liveclipsample/techPreview.html Live Clipboard Technical Introduction]&lt;br /&gt;
* [http://spaces.live.com/editorial/rayozzie/demo/liveclip/liveclipsample/clipboardexample.html Live Clipboard Example]&lt;br /&gt;
&lt;br /&gt;
=== LiveJournal ===&lt;br /&gt;
* [http://www.livejournal.com LiveJournal]&lt;br /&gt;
** supports tagging posts with [[rel-tag]]&lt;br /&gt;
** supports [[hcard-supporting-user-profiles|hCard user profiles]] and [[XFN]] ([http://community.livejournal.com/lj_releases/24768.html 2007-09-27 release #15]).&lt;br /&gt;
&lt;br /&gt;
=== LJFind ===&lt;br /&gt;
* [http://www.ljfind.com LJ-Find] - LJFind supports tagging posts with [[rel-tag]].&lt;br /&gt;
&lt;br /&gt;
=== Ma.gnolia ===&lt;br /&gt;
&lt;br /&gt;
* [http://ma.gnolia.com Ma.gnolia] has wide [http://wiki.ma.gnolia.com/Ma.gnolia_Feeds_Guide#Microformats support for a variety of microformats] including [[rel-tag]], [[xfolk]], [[hreview]], [[xfn]] and [[hcard]].&lt;br /&gt;
&lt;br /&gt;
=== Maxthon ===&lt;br /&gt;
[http://maxthon.com Maxthon] is a browser for Microsoft Windows that uses the Trident rendering engine and provides additional user interface.  Maxthon has built and published a plugin for their browser that recognizes microformats in web pages and allows users to take action with them, similar to Operator for [[Firefox]].&lt;br /&gt;
* [http://forum.maxthon.com/index.php?showtopic=65408 Microformats Button Version 1.0.0 Release Candidate 1]&lt;br /&gt;
** Description: &amp;quot;Microformats Button extracts Microformats from websites and allows you to export the data to vCard, vCalendar, Google Maps, Yahoo Maps and other sites.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Microformat Base ===&lt;br /&gt;
* [http://randomchaos.com/microformats/base/ Microformat Base]&lt;br /&gt;
** by [[implementors#Scott Reynen|Scott Reynen]]&lt;br /&gt;
&lt;br /&gt;
=== Microformat Bookmarklet Overlay ===&lt;br /&gt;
* [http://leftlogic.com/info/articles/microformats_bookmarklet Microformats Bookmarklet] for Safari, Firefox and Camino, supports [[hcard|hCard]] and [[hcalendar|hCalendar]] and allows the user to import individual microformats on the fly.&lt;br /&gt;
** by [[implementors#Remy_Sharp|Remy Sharp]]&lt;br /&gt;
&lt;br /&gt;
=== Microformat Parser for Ruby ===&lt;br /&gt;
* [http://blog.labnotes.org/2005/11/20/microformat-parser-for-ruby/ Microformat Parser for Ruby]&lt;br /&gt;
** by [[implementors#Assaf Arkin|Assaf Arkin]]&lt;br /&gt;
&lt;br /&gt;
=== MyMap.yam.com ===&lt;br /&gt;
* support [[geo]] microformat in the POI page. example: [http://mymap.yam.com/place/point/charleschuang/6695/ a book store in Tamsui].&lt;br /&gt;
&lt;br /&gt;
=== National eXtension Initiative ===&lt;br /&gt;
* [http://www.extension.org/ eXtension Home] - content marked-up with [[hatom|hAtom]] and events marked-up as [[hcalendar|hCalendar]] entries.&lt;br /&gt;
** by [[implementors#James E. Robinson, III|James E. Robinson, III]]&lt;br /&gt;
&lt;br /&gt;
=== Nature Network Boston ===&lt;br /&gt;
* [http://network.nature.com/boston/ Nature Network Boston], a social networking community for scientists, supports [[reltag|rel-tag]], [[hcard|hCard]] for user profiles and [[hcalendar|hCalendar]] for marking up events across the site.&lt;br /&gt;
** by [[implementors#Nature Publishing Group|Nature Publishing Group]]&lt;br /&gt;
&lt;br /&gt;
=== Nature Protocols ===&lt;br /&gt;
* [http://www.nature.com/nprot/ Nature Protocols], a forum for scientists to upload and comment on protocols, supports [[hcard|hCard]] and [[XOXO]].&lt;br /&gt;
** by [[implementors#Nature Publishing Group|Nature Publishing Group]]&lt;br /&gt;
&lt;br /&gt;
=== NetNewsWire ===&lt;br /&gt;
*[http://www.newsgator.com/Individuals/NetNewsWire/ NetNewsWire] is an easy-to-use RSS and Atom reader for your Mac. NetNewsWire 3.0 detects, extracts and converts hcard and hcalendar data from feed entries.&lt;br /&gt;
** by [[implementors#NewsGator|NewsGator]]&lt;br /&gt;
&lt;br /&gt;
=== Netscape Navigator ===&lt;br /&gt;
* Version 9.0+ supports [[Firefox extensions]], e.g. [[Operator]]:&lt;br /&gt;
** [http://notizblog.org/2007/10/21/operator-unter-navigator-90/ Operator unter Navigator 9.0]&lt;br /&gt;
&lt;br /&gt;
=== Nutch ===&lt;br /&gt;
* [http://www.mail-archive.com/nutch-dev@lucene.apache.org/msg01295.html rel-nofollow support added]&lt;br /&gt;
* [http://www.mail-archive.com/nutch-commits@lucene.apache.org/msg01014.html rel-tag support checked in]&lt;br /&gt;
&lt;br /&gt;
=== ODEO ===&lt;br /&gt;
* [http://odeo.com/ ODEO] [http://odeo.com/blog/2005/07/adding-microformats-to-odeo.html noted] that they support microformats: [[rel-tag]], [[rel-enclosure]], [http://gmpg.org/xfn XFN].&lt;br /&gt;
&lt;br /&gt;
=== Optimus ===&lt;br /&gt;
*[http://microformatique.com/optimus/ Optimus]. Output formats: XML, JSON, JSON-P.&lt;br /&gt;
&lt;br /&gt;
=== phpMicroformats ===&lt;br /&gt;
* [http://enarion.net/phpmicroformats/ phpMicroformats] is a PHP class library that generates microformat entries for [[hcalendar|hCalendar]] and [[hcard|hCard]]. It is released under GPL.&lt;br /&gt;
&lt;br /&gt;
=== Portable Social Network Profile Parser ===&lt;br /&gt;
* [http://lab.backnetwork.com/ufXtract-psn/ Portable Social Network Profile Parser] implements parsing of [[hCard]], [[XFN]], and in particular [[rel-me]] for [[identity-consolidation]] for [[social-network-portability]].&lt;br /&gt;
** by [[implementors#Glenn_Jones|Glenn Jones]] of [[implementors#Madgex|Madgex]].&lt;br /&gt;
&lt;br /&gt;
=== PostNuke ===&lt;br /&gt;
''[http://www.postnuke.com PostNuke] is an Application Framework/Content Management Systeme''&lt;br /&gt;
* [http://www.pagesetter.net/index.php?module=pagesetter&amp;amp;func=viewpub&amp;amp;tid=4&amp;amp;pid=96 hCards4Pagesetter] - hCards Publication Type for the PostNuke module &amp;quot;Pagesetter&amp;quot;&lt;br /&gt;
* [http://www.pagesetter.net/index.php?module=pagesetter&amp;amp;func=viewpub&amp;amp;tid=4&amp;amp;pid=97 hCalendar4Pagesetter] - hCalendar Publication Type for the PostNuke module &amp;quot;Pagesetter&amp;quot;&lt;br /&gt;
* [http://www.pagesetter.net/index.php?module=pagesetter&amp;amp;func=viewpub&amp;amp;tid=4&amp;amp;pid=98 hReview4Pagesetter] - hReview Publication Type for the PostNuke module &amp;quot;Pagesetter&amp;quot;&lt;br /&gt;
* [http://noc.postnuke.com/frs/?group_id=256&amp;amp;release_id=477 Blogroll] - XFN Block/Modul&lt;br /&gt;
* [http://noc.postnuke.com/frs/?group_id=256&amp;amp;release_id=628 nofollow] - nofollow Hook&lt;br /&gt;
&lt;br /&gt;
=== Pownce ===&lt;br /&gt;
*[http://pownce/ Optimus]. Output formats: XML, JSON, JSON-P.&lt;br /&gt;
&lt;br /&gt;
=== Profiler ===&lt;br /&gt;
* [http://microformat.makedatamakesense.com/profiler/ Profiler] works as a proxy service adding microformat profiles to documents that appear to contain microformats.&lt;br /&gt;
&lt;br /&gt;
=== RFC2629.xslt ===&lt;br /&gt;
* [http://greenbytes.de/tech/webdav/rfc2629.xslt rfc2629.xslt] now attempts to generate [[hcard|hCard]] information ([http://ietf.org/rfc/rfc2629 RFC2629] in an XML format for authoring RFCs and Internet Drafts, see [http://greenbytes.de/tech/webdav/rfc2629xslt/rfc2629xslt.html example document])&lt;br /&gt;
&lt;br /&gt;
=== Salesforce ===&lt;br /&gt;
* [http://salesforce.com Salesforce] [http://flickr.com/photos/kingsleyj/175689109/ supports] [[hcard|hCard]]&lt;br /&gt;
** by [http://flickr.com/people/kingsleyj/ Kingsley Joseph]&lt;br /&gt;
==== Spanning Salesforce ====&lt;br /&gt;
* [http://spanningsalesforce.com/ Spanning Salesforce] supports [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
=== Sivitools ===&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Sivitols is a Java library for microformats. Currently only the xFolk RC1 standard is implemented, but additional microformat support is planned. This library is being written and maintained for a tag sharing project undertaken by Video Vertigo.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
[http://blog.blip.tv/blog/microformats/ Annoucement], [http://pokkari.com/microformat/javadoc/ Docs]&lt;br /&gt;
&lt;br /&gt;
=== SPRACI ===&lt;br /&gt;
* [http://www.spraci.com SPRACI] - nightlife/events - [[hcalendar|hCalendar]] published in events listings, aggregator can read hCalendar&lt;br /&gt;
&lt;br /&gt;
=== stuckUnstuck ===&lt;br /&gt;
* [http://stuckunstuck.com stuckUnstuck] supports [[hcard|hCard]] and [[hatom|hatom]].&lt;br /&gt;
&lt;br /&gt;
=== Sunnyvale House Concerts ===&lt;br /&gt;
* [http://concerts.shrub.ca/shows Sunnyvale House Concerts] supports [[hcard|hCard]] and [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
=== Technorati Contacts Feed Service ===&lt;br /&gt;
* [http://feeds.technorati.com/contacts/ Technorati Contacts Feed Service] is a deployment of [[implementations#X2V|X2V]] to convert [[hcard|hCards]] to vCard (.vcf) format.&lt;br /&gt;
** by [[implementors#Technorati|Technorati]]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Events Feed Service ===&lt;br /&gt;
* [http://feeds.technorati.com/events/ Technorati Events Feed Service] is a deployment of [[implementations#X2V|X2V]] to convert [[hcalendar|hCalendar]] events to iCalendar (.ics) format.&lt;br /&gt;
** by [[implementors#Technorati|Technorati]]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Microformats Search ===&lt;br /&gt;
* Technorati [http://kitchen.technorati.com/search/ Microformats Search]. Search for contacts ([[hcard|hCard]]), events ([[hcalendar|hCalendar]]), or reviews ([[hreview|hReview]]) published on blogs and other web sites.&lt;br /&gt;
** by [[implementors#Ryan_King|Ryan King]]&lt;br /&gt;
** first version (2006 May) by [[implementors#Tantek_Çelik|Tantek Çelik]], [[implementors#Ryan_King|Ryan King]], [[implementors#Kevin_Marks|Kevin Marks]], [[implementors#Josh_Smith|Josh Smith]]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Search ===&lt;br /&gt;
* [http://technorati.com/ Technorati] [http://technorati.com/search Search] supports and handles both [[vote-links]] and [[rel-nofollow]] for indicating whether a link should have any/positive/negative weighting towards the destination.&lt;br /&gt;
** by [http://technorati.com/about/staff.html Technorati Staff]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Tags ===&lt;br /&gt;
* [http://technorati.com/tags/ Technorati Tags] pages aggregate blog posts tagged with the [[rel-tag]] open tagging standard, in addition to recent tagged photos and links.&lt;br /&gt;
&lt;br /&gt;
=== Textpattern ===&lt;br /&gt;
==== Microformats Plugin ====&lt;br /&gt;
* [http://placenamehere.com/TXP/pnh_mf/ Textpattern Microformats Plugin] supports authoring [[hcard|hCard]], [[hcalendar|hCalendar]], [[hreview|hReview]], [http://gmpg.org/xfn XFN], [[rel-tag]], [[rel-license]] in the [http://www.textpattern.com/ Textpattern] CMS/blogging tool &lt;br /&gt;
** by [http://placenamehere.com/ Chris Casciano]&lt;br /&gt;
&lt;br /&gt;
=== Tomota ===&lt;br /&gt;
* The [http://www.tomota.de Tomota] allows import, export and conversion from and to hcards.&lt;br /&gt;
** by [[implementors#RalfEngels|Ralf Engels]]&lt;br /&gt;
&lt;br /&gt;
=== TYPO3 ===&lt;br /&gt;
* [http://www.typo3.com TYPO3], [http://typo3.org TYPO3 Developer Ressource]&lt;br /&gt;
==== tt_address extension====&lt;br /&gt;
* [http://typo3.org/extensions/repository/view/tt_address/2.0.1/ tt_address] - hCard support with the tt_address extension version 2.0.0&lt;br /&gt;
** by [[implementors#Ingo_Renner|Ingo Renner]]&lt;br /&gt;
==== TIMTAB extension====&lt;br /&gt;
* [http://typo3.org/extensions/repository/view/timtab/0.5.11/ TIMTAB] - XFN support for blogrolls with the TIMTAB weblog extension for TYPO3&lt;br /&gt;
** by [[implementors#Ingo_Renner|Ingo Renner]]&lt;br /&gt;
&lt;br /&gt;
=== Tweeterboard ===&lt;br /&gt;
* Tweeterboard supports [hcard|hCard]], and [http://gmpg.org/xfn XFN] on profile pages ([http://tweeterboard.com/user/missrogue example]).&lt;br /&gt;
&lt;br /&gt;
=== Twitter ===&lt;br /&gt;
&lt;br /&gt;
* [http://twitter.com Twitter] [http://twitter.com/al3x/statuses/53982402 supports] [[hatom|hAtom]], [[hcard|hCard]], and [http://gmpg.org/xfn XFN].&lt;br /&gt;
** hCards for groups are marked up with &amp;quot;fn&amp;quot; not &amp;quot;fn org&amp;quot;. See, for example, [http://twitter.com/microformats microformats on Twitter]&lt;br /&gt;
** Improper address mark-up (no child properties; though this may be all that can be achieved, if the user enters a value like &amp;quot;Birmingham, England&amp;quot;)&lt;br /&gt;
** Uses &amp;lt;code&amp;gt;class=&amp;quot;label&amp;quot;&amp;lt;/code&amp;gt; for non-hCard purpose.&lt;br /&gt;
&lt;br /&gt;
=== ufXtract ===&lt;br /&gt;
* [http://lab.backnetwork.com/ufXtract/ ufXtract] implements [[parsing]] of microformats such as [[hCard]] and [[XFN]].&lt;br /&gt;
** by [[implementors#Glenn_Jones|Glenn Jones]] of [[implementors#Madgex|Madgex]].  See [http://www.glennjones.net/Post/831/ufXtractmicroformatsparser.htm blog post announcement].&lt;br /&gt;
&lt;br /&gt;
=== Upcoming.org ===&lt;br /&gt;
* [http://upcoming.org Upcoming.org] - hCalendar support in events listings and individual events.&lt;br /&gt;
** by [[implementors#Andy_Baio|Andy Baio]], [[implementors#Leonard_Lin|Leonard Lin]], [[implementors#Gordon_Luk|Gordon Luk]]&lt;br /&gt;
&lt;br /&gt;
=== vCardExplorer ===&lt;br /&gt;
* [http://vcardexplorer.corefault.de/ vCardExplorer for MacOSX] - browses local vcards and converts hcards from URLs.&lt;br /&gt;
&lt;br /&gt;
=== WindowsLiveWriter ===&lt;br /&gt;
* [[implementors#Microsoft|Microsoft's]] WindowsLiveWriter (WLW) [http://gallery.live.com/liveItemDetail.aspx?li=9751e563-1408-4fc3-8028-bd4351edb1fb&amp;amp;l=8 event plugin] supports [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
=== WordPress ===&lt;br /&gt;
* [http://wordpress.org WordPress] supports [http://gmpg.org/xfn/ XFN] blogrolls through a very nice built-in user interface. (cf. [[xfn-implementations]])&lt;br /&gt;
** by [[implementors#Matt_Mullenweg|Matt Mullenweg]] and friends&lt;br /&gt;
&lt;br /&gt;
==== WP Microformatted Blogroll ====&lt;br /&gt;
* The [http://factorycity.net/projects/wp-microformatted-blogroll/ WP Microformatted Blogroll 0.2] Wordpress plugin by [[implementors#Chris_Messina|Chris Messina]] supports [[hcard|hCard]] and [http://gmpg.org/xfn/ XFN].&lt;br /&gt;
&lt;br /&gt;
==== hCard About Box ====&lt;br /&gt;
* The [http://redmonk.net/projects/widget_hcard_about/ hCard About Box] widget by [[implementors#Steve_Ivy|Steve Ivy]] supports [[hcard|hCard]].&lt;br /&gt;
&lt;br /&gt;
====GigPress====&lt;br /&gt;
* [http://gigpress.com/ GigPress] is a WordPress plugin that manages and displays concerts and tours for bands or other touring acts, and outputs them with [[hcalendar|hCalendar]] markup.  By [[implementors#Derek_Hogue|Derek Hogue]].&lt;br /&gt;
&lt;br /&gt;
==== VoteBack Plugin ====&lt;br /&gt;
* The [http://redmonk.net/archives/2006/12/21/voteback/ VoteBack plugin for Wordpress] by [[implementors#Steve_Ivy|Steve Ivy]] checks incoming pingbacks and trackbacks for [[votelinks]].&lt;br /&gt;
&lt;br /&gt;
==== Save Microformats Plugin ====&lt;br /&gt;
* [http://notizblog.org/projects/save-microformats/ Save Microformats plugin for Wordpress] - a plugin to save posted Microformats using technorati feeds.&lt;br /&gt;
&lt;br /&gt;
==== WP Themes ====&lt;br /&gt;
* [http://www.plaintxt.org/themes/sandbox/ Sandbox] is a theme for Wordpress that uses [[hatom|hAtom]]. &lt;br /&gt;
** The theme is also available to accounts on the &amp;lt;username&amp;gt;.wordpress.com hosting service.&lt;br /&gt;
* [http://www.jesuscarrera.info/proyectos/startpoint/ StartPoint] A theme for theme developers. A good start point to make your own templates. It supports multiple languages, widgets, contains semantic hAtom microformats, and more.&lt;br /&gt;
* [http://www.whump.com/dropbox/Strangelove.zip Strangelove] is a modification of the default Wordpress theme (Kubrick) with [[hatom|hAtom]] support. &lt;br /&gt;
** It points to the hAtom2Atom proxy service as the link for syndication feeds.&lt;br /&gt;
&lt;br /&gt;
=== X2V ===&lt;br /&gt;
* Brian Suda has created several XSLT files to extract microformats from HTML. From that the [http://suda.co.uk/projects/X2V/ X2V] webservice/favelet emerged. The XSLT and favelet extracts [[hcard|hCard]] and to produces .vcf (vCard) files and [[hcalendar|hCalendar]] to produce .ics (iCal) files. Also in the labs is a universal XMDP validator and a site-wide search spider that recognizes 'no-follow', 'license' and other microformats so they can be used in a more semantic way when displaying search results.&lt;br /&gt;
** by [[implementors#Brian_Suda|Brian Suda]]&lt;br /&gt;
&lt;br /&gt;
=== XWiki ===&lt;br /&gt;
* [http://xwiki.org XWiki] (as of [http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWiki10Beta5 version 10Beta5]) publishes the user profiles using [[hcard | hCard]], the events in the calendar application using [[hCalendar | hCalendar]], the blog entries using [[hAtom | hAtom]] and homepage links using [[rel-home | rel-home]].&lt;br /&gt;
&lt;br /&gt;
=== Yahoo Creative Commons Search ===&lt;br /&gt;
* [http://search.yahoo.com/cc/ Yahoo Creative Commons Search] - supports [[rel-license]] specifically to search for Creative Commons licensed content.&lt;br /&gt;
&lt;br /&gt;
=== Yahoo Local ===&lt;br /&gt;
* [http://local.yahoo.com Yahoo local] supports [[hcard|hCard]], [[hcalendar|hCalendar]], and [[hreview|hReview]].&lt;br /&gt;
&lt;br /&gt;
=== Yahoo Tech ===&lt;br /&gt;
* [http://tech.yahoo.com Yahoo! Tech] supports [[hreview|hReview]].&lt;br /&gt;
&lt;br /&gt;
=== Yahoo UK Movies ===&lt;br /&gt;
* [http://movies.yahoo.co.uk Yahoo! UK Movies] supports [[hreview|hReview]].&lt;br /&gt;
** by Mark Norman Francis&lt;br /&gt;
&lt;br /&gt;
=== Yedda ===&lt;br /&gt;
* [http://yedda.com Yedda] supports [[hcard|hCard]] for exposing users information, [[hatom|hAtom]] for exposing data that is already exposed via feeds (like list of questions and answers) and [[rel-tag|rel-tag]] for every tag used to tag questions and users.&lt;br /&gt;
&lt;br /&gt;
== Validators ==&lt;br /&gt;
This is an alphabetical listing of tools that have been created to validate implementations, and which formats they support.&lt;br /&gt;
&lt;br /&gt;
Please add to this section if you have a validator/checker, no matter which or how many microformats you test for.&lt;br /&gt;
&lt;br /&gt;
=== rel-lint ===&lt;br /&gt;
* [http://tools.microformatic.com/help/xhtml/rel-lint/ rel-lint] supports validation of [[rel-tag|rel-tag]] and [[xfn|XFN]] &lt;br /&gt;
* by [[implementors#Drew_McLellan|Drew McLellan]]&lt;br /&gt;
&lt;br /&gt;
== Companies / Developers / Organizations ==&lt;br /&gt;
&lt;br /&gt;
See [[implementors]]&lt;br /&gt;
&lt;br /&gt;
The following have been moved from the sections above due to problems, stated below:&lt;br /&gt;
&lt;br /&gt;
=== Web Essentials ===&lt;br /&gt;
* [http://we05.com/ Web Essentials] - supports [[hcard|hCard]] and [[hcalendar|hCalendar]], e.g. in their [http://we05.com/presenters.cfm list of presenters] and [http://we05.com/program.cfm program schedule].&lt;br /&gt;
** John McKerrell tried to look at the site on 24th October 2006 but could not access the site, server didn't seem to be up.&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
Some notes on initial thoughts around [[implementation-guidelines|Guidelines and Strategies for Implementing Microformats]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=parsers&amp;diff=27509</id>
		<title>parsers</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=parsers&amp;diff=27509"/>
		<updated>2007-12-29T23:35:53Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added PHP Microformats parser&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats Parsers&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
This page lists libraries that consume, transform or convert microformats. This is only a partial list. If you know of other such tools for microformats, please add them and list what specific microformats they support.&lt;br /&gt;
&lt;br /&gt;
For now, this page ''copies'' (rather than ''moves'') information from the existing [[implementations | Implementations]] page.&lt;br /&gt;
&lt;br /&gt;
== Javascript ==&lt;br /&gt;
=== Sumo ===&lt;br /&gt;
* [http://www.danwebb.net/2007/2/9/sumo-a-generic-microformats-parser-for-javascript Sumo! A Generic Microformats Parser For JavaScript]&lt;br /&gt;
&lt;br /&gt;
== PHP ==&lt;br /&gt;
=== hKit Microformats Toolkit for PHP5 ===&lt;br /&gt;
* [http://allinthehead.com/hkit hKit Microformats Toolkit for PHP5] as [http://allinthehead.com/retro/291/hkit-microformats-toolkit-for-php announced by Drew McLellan]. See also [[hkit|hKit on this wiki]].&lt;br /&gt;
&lt;br /&gt;
===PHP Microformats parser===&lt;br /&gt;
* [http://www.phpclasses.org/browse/package/3597.html Microformats parser] is a PHP package for extracting the microformats data embedded into HTML. The gathered data is stored as an xArray of objects - one for each microformat type container found. [http://malatestapunk-stuff.blogspot.com/2007/01/php-microformats-parser.html Announcement]. The parser supports most of the hCard (missing SOUND), hCalendar, hReview (missing item info; spec really needs some clarification) and rel elements, according to their respective specification on microformats Wiki.&lt;br /&gt;
&lt;br /&gt;
== Ruby ==&lt;br /&gt;
=== mofo ruby microformats parser===&lt;br /&gt;
* [http://mofo.rubyforge.org/ mofo], [http://groups.google.com/group/mofo-rb mofo Google Group]&lt;br /&gt;
** by [[implementors#Chris Wanstrath|Chris Wanstrath]]&lt;br /&gt;
&lt;br /&gt;
=== Microformat Parser for Ruby ===&lt;br /&gt;
* [http://blog.labnotes.org/2005/11/20/microformat-parser-for-ruby/ Microformat Parser for Ruby]&lt;br /&gt;
** by [[implementors#Assaf Arkin|Assaf Arkin]]&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [[implementations]]&lt;br /&gt;
* [[implementors]]&lt;br /&gt;
* [[user-interface]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=implementations&amp;diff=23934</id>
		<title>implementations</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=implementations&amp;diff=23934"/>
		<updated>2007-12-16T23:30:18Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added tweeterboard (hcard, xfn)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats Implementations&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
This page lists the applications, plugins, sample code, services, tools that produce or consume microformats. This is only a partial list. If you know other services or tools for or supporting microformats, please add them, link to their [[implementors]], and list what specific microformats they support.&lt;br /&gt;
&lt;br /&gt;
== Implementations vs. Examples in the Wild ==&lt;br /&gt;
This page is ''only'' for implementations of tools that publish or consume microformats. Companies simply ''using'' microformats on their pages/sites belong in the &amp;quot;Examples in the wild&amp;quot; sections of those respective microformats, e.g.:&lt;br /&gt;
* [[hcard-examples-in-wild|hCard Examples in the wild]]&lt;br /&gt;
* [[hcalendar-examples-in-wild|hCalendar Examples in the wild]]&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Editing This Page ==&lt;br /&gt;
When you find an implementation, first make sure that it is ''actually'' an implementation as opposed to ''just'' an [[hcard-examples-in-wild|example in the wild]] of publishing microformats (see above).&lt;br /&gt;
&lt;br /&gt;
Second, note the name of the ''tool or service'' separately from the name of the ''developer(s)'' who wrote the tool/service.&lt;br /&gt;
&lt;br /&gt;
Add a third level heading with the name of the tool/service ( &amp;lt;code&amp;gt;=== Name of Tool ===&amp;lt;/code&amp;gt; ) to the Applications / Plugins / Services / Tools section, sorted alphabetically by name of tool/service.  Add a top level list item (*) just below the heading with an external link to the tool/service, along with a link to evidence of their support for microformats, and mention (and locally link) each microformat that is supported.&lt;br /&gt;
&lt;br /&gt;
Add a nested list item &amp;lt;code&amp;gt;* by Name of Developer&amp;lt;/code&amp;gt; and local to wiki hyperlink the Name of Developer to a fragment identifier in the [[implementors]] page, e.g. Apple Computer would be linked like this: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[implementors#Apple_Computer|Apple Computer]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check to see if there is an entry for the developer in the [[implementors|list of implementors]], if not add them there. Add a link to the developer's home page followed by &amp;quot;has implemented microformats in:&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In the entry for the developer, add a list item &amp;lt;code&amp;gt;* Name of Tool&amp;lt;/code&amp;gt; and local to wiki hyperlink the Name of Tool to a fragment identifier in this page, e.g. X2V would be linked like this: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[implementations#X2V|X2V]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save the page and make sure that each fragment ID local hyperlink when clicked scrolls you to the right spot (for the developer, and for the tool).  Make any fix-up edits as necessary.  That's it!&lt;br /&gt;
&lt;br /&gt;
== Reporting Bugs ==&lt;br /&gt;
In short, [[put-it-on-the-wiki]]. In particular, add bug reports, with URL(s) to a valid demonstrative test case(s) of course, to the listing of an implementation on this page, OR on the specific implementations wiki page (e.g. [[hcard-implementations]]).  Please describe why you think it is a bug (user interface, cosmetic, violates a spec page, e.g. for problems parsing hCards, reference which part of [[hcard-parsing]] the implementation appears to not be following).&lt;br /&gt;
&lt;br /&gt;
If you have a sense of urgency for getting that particular bug fixed in that implementation, you may email [http://microformats.org/discuss/ microformats-dev] with the URL of that implementation on the wiki page, and *summarize* the bug (the full description being on the wiki page instead).&lt;br /&gt;
&lt;br /&gt;
== Formats ==&lt;br /&gt;
Most microformat specifications have an &amp;quot;implementations&amp;quot; section, e.g.:&lt;br /&gt;
*[[rel-tag#Implementations|rel-tag implementations]]&lt;br /&gt;
*[[vote-links#Implementations|vote-link implementations]]&lt;br /&gt;
*[[xoxo#Implementations|XOXO implementations]]&lt;br /&gt;
&lt;br /&gt;
In addition, some microformat specifications have separate implementation pages:&lt;br /&gt;
*[[hcalendar-implementations|hCalendar implementations]]&lt;br /&gt;
*[[hcard-implementations|hCard Implementations]]&lt;br /&gt;
*[[xfn-implementations|XFN implementations]]&lt;br /&gt;
&lt;br /&gt;
== Applications / Plugins / Services / Tools ==&lt;br /&gt;
This is an alphabetical listing of all applications, plugins (grouped with their app/tool), services and tools that implement microformats, along with the list of microformats that are supported, and the company and/or developers responsible for it.&lt;br /&gt;
&lt;br /&gt;
As a user, the implementations listed below will automatically help you use microformats and help your data portability and interoperability with other apps and services.&lt;br /&gt;
&lt;br /&gt;
Please help complete this list!  If you know of additional apps/plugins/services/tools that support microformats, please add them!&lt;br /&gt;
&lt;br /&gt;
Note: this section is only for listing specific ''implementations''.  The list of ''implementors'' is in the [[implementors#Companies / Developers / Organizations|Companies / Developers / Organizations]] section on the [[implementors]] page.&lt;br /&gt;
&lt;br /&gt;
Alphabetically:&lt;br /&gt;
&lt;br /&gt;
=== .Mac Webmail ===&lt;br /&gt;
* The [http://www.mac.com/webmail .Mac Webmail] ''service'' now [http://factoryjoe.com/blog/2006/10/28/apple-embraces-microformats-in-new-mac-webmail/ supports hcard].&lt;br /&gt;
** by [[implementors#Apple_Computer|Apple Computer]]&lt;br /&gt;
&lt;br /&gt;
=== AlchemyPoint ===&lt;br /&gt;
* [http://www.orch8.net/ AlchemyPoint] is a structured web / mashup platform that supports parsing hCard, rel-tag and other microformats.&lt;br /&gt;
** by [[implementors#Orchestr8|Orchestr8]]&lt;br /&gt;
&lt;br /&gt;
=== Backnetwork ===&lt;br /&gt;
* [http://backnetwork.com/ Backnetwork] is a community networking tool for events that supports [[hCard]], [[hCalendar]], and [[XFN]].&lt;br /&gt;
** by [[implementors#Glenn_Jones|Glenn Jones]] of [[implementors#Madgex|Madgex]].&lt;br /&gt;
&lt;br /&gt;
=== Blinksale ===&lt;br /&gt;
* [http://blinksale.com Blinksale] uses [[hcard|hCard]] standard throughout for people and companies.&lt;br /&gt;
&lt;br /&gt;
=== BlogMatrix ===&lt;br /&gt;
* [http://www.blogmatrix.com BlogMatrix] - user information marked as [[hcard|hCard]], tag directories in [[xfolk]]/[[rel-tag]], enclosures are marked as [[rel-enclosure]].&lt;br /&gt;
** by [[implementors#David_Janes|David Janes]]&lt;br /&gt;
&lt;br /&gt;
=== Blogmarks.net ===&lt;br /&gt;
* [http://www.blogmarks.net Blogmarks.net] publish user bookmarks in [[xfolk]]/[[rel-tag]].&lt;br /&gt;
&lt;br /&gt;
=== cmSiteNavigation ===&lt;br /&gt;
* [http://www.christophm.de/software/firefox/cmSiteNavigation/ cmSiteNavigation] extension for Firefox make use of links marked with a [[existing-rel-values|&amp;quot;rel&amp;quot; value]], and parses additional link types also.&lt;br /&gt;
&lt;br /&gt;
=== Community Server ===&lt;br /&gt;
* [http://communityserver.org Community Server] supports tagging posts with [[rel-tag]], implements [[rel-nofollow]] on links in comments, and allows users to create link lists using [http://gmpg.org/xfn/ XFN].&lt;br /&gt;
&lt;br /&gt;
=== Conferenceer ===&lt;br /&gt;
* Built for SXSW 2007, [http://sxsw07.conferenceer.com/ Conferenceer] supports hcalendar and hcard.&lt;br /&gt;
&lt;br /&gt;
=== Citycita===&lt;br /&gt;
* [http://www.citycita.org Citycita] supports [[hCal|hCal]] in all event pages for local social groups.&lt;br /&gt;
** by [[implementors#Rubio_Jamin|Rubio Jamin]]&lt;br /&gt;
&lt;br /&gt;
=== Cork'd ===&lt;br /&gt;
* [http://corkd.com Cork'd] supports [[hcard|hCard]] for user profiles, [[hreview|hReview]] for wine reviews, along with [[rel-tag]] for tagging wines as announced in [http://www.simplebits.com/notebook/2006/06/10/wineformats.html Pairing Wine and Microformats]&lt;br /&gt;
** by [[implementors#Dan_Cederhold|Dan Cederholm]]&lt;br /&gt;
&lt;br /&gt;
=== Delicious Generation ===&lt;br /&gt;
* [http://deliciousgeneration.com/ Delicious Generation] supports [[hCal|hCal]] for the event and [[hcard|hCard]] for sponsors and people.&lt;br /&gt;
** by [[implementors#Chris_Messina|Chris Messina]]&lt;br /&gt;
&lt;br /&gt;
=== Digg ===&lt;br /&gt;
* [http://digg.com/ Digg] supports [[hcard|hCards]] for profiles and rel-me for identity consolidation (though they currently mix rel-nofollow with rel-me, negating these links).&lt;br /&gt;
&lt;br /&gt;
=== Dreamweaver ===&lt;br /&gt;
==== Microformats Extensions ====&lt;br /&gt;
* [http://www.webstandards.org/action/dwtf/microformats Dreamweaver Microformats Extensions] ([http://allinthehead.com/beta/microformats.mxp.zip download]) support authoring [[hcard|hCard]], [[hcalendar|hCalendar]], [http://gmpg.org/xfn XFN], [[rel-tag]], [[rel-license]] as [http://allinthehead.com/retro/282/microformats-in-dreamweaver announced by Drew]&lt;br /&gt;
** by [[implementors#Drew_Mclellan|Drew McLellan]]&lt;br /&gt;
&lt;br /&gt;
=== Drupal ===&lt;br /&gt;
==== Upcoming module for Drupal ====&lt;br /&gt;
* [http://hybernaut.com/upcoming-module Drupal Upcoming.org syndication module] emits [[hcalendar|hCalendar]]&lt;br /&gt;
** by [[implementors#Brian_Del_Vecchio|Brian Del Vecchio]]&lt;br /&gt;
&lt;br /&gt;
=== Etnies ===&lt;br /&gt;
* [http://etnies.com/extra/calendar/ Etnies Calendar] supports hcalendar. Maybe the [http://thecolab.com/blog/2007/01/22/etniescom-relaunch/ first skate-shop to support microformats].&lt;br /&gt;
&lt;br /&gt;
=== Eventful ===&lt;br /&gt;
* [http://eventful.com Eventful] supports [[hcalendar|hCalendar]] for over 1,000,000 event listings and [[hcard|hCard]] for venues.&lt;br /&gt;
&lt;br /&gt;
=== Facebook ===&lt;br /&gt;
* [http://facebook.com/ Facebook] supports [[hcard|hCard]] for some public profiles '''(example needed)'''. &lt;br /&gt;
* There is also an [http://www.facebook.com/apps/application.php?id=2400943827&amp;amp;ref=s hCard application] (a plug-in) for Facebook users.&lt;br /&gt;
* Note also the [http://www.facebook.com/group.php?gid=2374732285 microformats group], which Facebook users who support microformats can join.&lt;br /&gt;
&lt;br /&gt;
=== Ficlets ===&lt;br /&gt;
* [http://ficlets.com Ficlets] supports [[hcard]] for author data and [[hatom]] for stories and lists of stories.&lt;br /&gt;
** [http://sixtwothree.org Jason Garber] and [http://lawver.net Kevin Lawver] for [http://aol.com AOL]&lt;br /&gt;
&lt;br /&gt;
=== Finetoothcog ===&lt;br /&gt;
* [http://finetoothcog.com/site/stolen_bikes Stolen Bikes] now supports [[hcalendar|hCalendar]] for reported stolen bikes. Also provides iCal subscription.&lt;br /&gt;
&lt;br /&gt;
=== Firefox ===&lt;br /&gt;
* See [[firefox-extensions]]&lt;br /&gt;
&lt;br /&gt;
=== FunAdvice ===&lt;br /&gt;
* [http://funadvice.com FunAdvice] supports using the rel-nofollow tag to prevent users posting content simply for the search engine benefit, to improve teh quality of the advice giving community.&lt;br /&gt;
&lt;br /&gt;
=== Gravatar Commenters as hCards  ===&lt;br /&gt;
* [http://thedredge.org Andy Hume] added code to his blogging software to automatically mark-up the names and URLs of commenters on his blog with [[hcard|hCard]]. &lt;br /&gt;
** by [[implementors#Andy_Hume|Andy Hume]]&lt;br /&gt;
** Andy - any chance of open sourcing your code to turn Gravatars into hCards?&lt;br /&gt;
&lt;br /&gt;
=== Flickr People ===&lt;br /&gt;
* [http://flickr.com/ Flickr]'s profiles on its people pages supports both [[hcard|hCard]] and [http://gmpg.org/xfn XFN].&lt;br /&gt;
** by [[implementors#Cal_Henderson|Cal Henderson]]&lt;br /&gt;
**[http://flickr.com/people/tantek example]&lt;br /&gt;
&lt;br /&gt;
=== Flickr Photos ===&lt;br /&gt;
* [http://flickr.com/map/ Flickr's geo tagged photos] are marked up with the [[geo]] microformat.&lt;br /&gt;
&lt;br /&gt;
=== Flock Web Browser ===&lt;br /&gt;
* The [http://flock.com Flock web browser] supports the [[rel-tag]] microformat.&lt;br /&gt;
** by [[implementors#Flock|Flock]]&lt;br /&gt;
&lt;br /&gt;
=== Google Search ===&lt;br /&gt;
* [http://google.com/ Google Search] - supports [[rel-nofollow]]&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
&lt;br /&gt;
=== Google Blogger ===&lt;br /&gt;
* [http://blogger.com/ Blogger] supports [[hatom|hAtom]] (citation to blog post needed - 2007)&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
&lt;br /&gt;
=== Google Creative Commons Search ===&lt;br /&gt;
* [http://www.google.com/webhp?as_rights=(cc_publicdomain%7Ccc_attribute%7Ccc_sharealike%7Ccc_noncommercial%7Ccc_nonderived) Google Creative Commons Search] - supports [[rel-license]]&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
&lt;br /&gt;
=== Google Maps ===&lt;br /&gt;
* [http://maps.google.com/ Google Maps] supports [[hcard|hCard]] (see [http://googlemapsapi.blogspot.com/2007/06/microformats-in-google-maps.html 2007-06-31 announcement by Google])&lt;br /&gt;
* Google maps also allows reviewers and map creators to [http://maps.google.com/maps/me attach a public profile], which includes hCard and rel=&amp;quot;me' XFN markup. See [http://google-latlong.blogspot.com/2007/10/put-yourself-on-map.html 2007-10-17 announcement]. Sample profile: [http://maps.google.com/maps/user?uid=109581870574956225297 Kevin Marks].&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
**Unfortunately, [http://microformats.org/discuss/mail/microformats-discuss/2007-July/010311.html Google Map's implementation is broken]. [http://microformats.org/discuss/mail/microformats-discuss/2007-August/010457.html Google are aware; a fix is awaited].&lt;br /&gt;
** Also, there is no hCard nor any XFN rel values on the [http://maps.google.com/maps/user?uid=109581870574956225297 sample profile] itself, it appears to include a [http://maps.google.com/maps/c/widgets/ProfileViewer?js=RAW&amp;amp;maximize=true&amp;amp;hide=false&amp;amp;width=40&amp;amp;noTitle=true&amp;amp;theme=theme_2&amp;amp;service=local&amp;amp;uid=109581870574956225297&amp;amp;height=0&amp;amp;background=transparent&amp;amp;serverbased=true&amp;amp;border=NONE&amp;amp;eventCallback=ParentStub1192999211538&amp;amp;zx=dc574o15j0wrv frame] which then has an hCard and rel=&amp;quot;me&amp;quot; to the user's blog.&lt;br /&gt;
&lt;br /&gt;
=== Greasemonkey ===&lt;br /&gt;
* [http://greasemonkey.makedatamakesense.com/google_hcalendar/ Google hCalendar] - Adds hCalendar data to Google Calendar.&lt;br /&gt;
* [http://www.nickpeters.net/?p=35 Social xFolk] - Adds xFolk links to social bookmarking sites del.icio.us and ma.gnolia.&lt;br /&gt;
&lt;br /&gt;
=== hCalendar creator ===&lt;br /&gt;
* [http://microformats.org/code/hcalendar/creator hCalendar creator] (originally [http://theryanking.com/microformats/hcalendar-creator.html published by Ryan King]) is a javascript form for creating [[hcalendar|hCalendar]] events.&lt;br /&gt;
** by [[implementors#Ryan_King|Ryan King]]&lt;br /&gt;
&lt;br /&gt;
=== hCard creator ===&lt;br /&gt;
* The open source [http://microformats.org/code/hcard/creator hCard creator] (originally [http://tantek.com/microformats/hcard-creator.html published by Tantek]) is a very simple, yet illustrative, open source user interface / form / script which creates an [[hcard|hCard]] in real-time as you type in a set of contact information.&lt;br /&gt;
** by [[implementors#Tantek_Çelik|Tantek Çelik]]&lt;br /&gt;
&lt;br /&gt;
=== hKit Microformats Toolkit for PHP5 ===&lt;br /&gt;
* [http://allinthehead.com/hkit hKit Microformats Toolkit for PHP5] as [http://allinthehead.com/retro/291/hkit-microformats-toolkit-for-php announced by Drew McLellan]. See also [[hkit|hKit on this wiki]].&lt;br /&gt;
&lt;br /&gt;
=== hReview creator ===&lt;br /&gt;
* [http://microformats.org/code/hcalendar/creator hReview creator] (originally [http://theryanking.com/microformats/hreview-creator.html published by Ryan King]) is a javascript form for creating [[hreview|hReviews]].&lt;br /&gt;
** by [[implementors#Ryan_King|Ryan King]]&lt;br /&gt;
&lt;br /&gt;
=== Ice Rocket ===&lt;br /&gt;
* [http://icerocket.com] - [http://blogs.icerocket.com/tag/ supports] [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
=== iChat buddy list to hCards ===&lt;br /&gt;
* [http://tantek.com/microformats/buddylist2hcards.html iChat buddy list to hCards] - open source AppleScript to automatically convert one's buddy list in the MacOSX iChat AIM client into a valid XHTML 1.0 Strict list of hCards.&lt;br /&gt;
** by [[implementors#Tantek_Çelik|Tantek Çelik]]&lt;br /&gt;
&lt;br /&gt;
=== Internet Explorer ===&lt;br /&gt;
* See [[internet-explorer-extensions]]&lt;br /&gt;
&lt;br /&gt;
=== JobiJoba ===&lt;br /&gt;
* [http://www.jobijoba.com JobiJoba : moteur de recherche emploi] parses and supports [[hCard|hCard]] and [[rel-tag|rel-tag]] for over 40,000 job listings.&lt;br /&gt;
&lt;br /&gt;
=== JSCalendar ===&lt;br /&gt;
* [http://web.mit.edu/glasser/www/JSCalendar/ JSCalendar] parses [[hcalendar|hCalendar]] and produces a displayable HTML table/CSS-based calendar.&lt;br /&gt;
&lt;br /&gt;
=== Konqueror ===&lt;br /&gt;
* [http://www.konqueror.org/ Konqueror] - [http://flickr.com/photos/factoryjoe/68755089/ supports] [[hcard|hCard]]&lt;br /&gt;
&lt;br /&gt;
=== Last.fm ===&lt;br /&gt;
* [http://last.fm Last.fm] - [http://factoryjoe.com/blog/2006/10/31/lastfm-adds-support-for-hcalendar/ Last.fm supports] [[hcalendar|hCalendar]] &lt;br /&gt;
&lt;br /&gt;
=== LouderVoice ===&lt;br /&gt;
* [http://www.loudervoice.com Publishes and aggregates hreview content] - The LouderVoice site provides a variety of tools to publish hreview to blogs and it also aggregates hreview content from any registered RSS Feed so that users can search/rate/collect distributed reviews.&lt;br /&gt;
&lt;br /&gt;
=== Laughing Squid Calendar ===&lt;br /&gt;
* The [http://laughingsquid.com/squidlist/calendar/ Laughing Squid Calendar] events listings support [[hcalendar|hCalendar]].&lt;br /&gt;
** by [http://laughingsquid.com/ Laughing Squid]&lt;br /&gt;
&lt;br /&gt;
=== LinkedIn ===&lt;br /&gt;
* [http://www.linkedin.com LinkedIn] - LinkedIn includes [[hcard|hCard]] and [[xfn|XFN]] on contacts, [[hresume|hResume]] for public profiles and [[hreview|hReview]] on service provider recommendations&lt;br /&gt;
&lt;br /&gt;
=== Live Clipboard ===&lt;br /&gt;
* [http://spaces.live.com/editorial/rayozzie/demo/liveclip/liveclipsample/techPreview.html Live Clipboard Technical Introduction]&lt;br /&gt;
* [http://spaces.live.com/editorial/rayozzie/demo/liveclip/liveclipsample/clipboardexample.html Live Clipboard Example]&lt;br /&gt;
&lt;br /&gt;
=== LiveJournal ===&lt;br /&gt;
* [http://www.livejournal.com LiveJournal]&lt;br /&gt;
** supports tagging posts with [[rel-tag]]&lt;br /&gt;
** supports [[hcard-supporting-user-profiles|hCard user profiles]] and [[XFN]] ([http://community.livejournal.com/lj_releases/24768.html 2007-09-27 release #15]).&lt;br /&gt;
&lt;br /&gt;
=== LJFind ===&lt;br /&gt;
* [http://www.ljfind.com LJ-Find] - LJFind supports tagging posts with [[rel-tag]].&lt;br /&gt;
&lt;br /&gt;
=== Ma.gnolia ===&lt;br /&gt;
&lt;br /&gt;
* [http://ma.gnolia.com Ma.gnolia] has wide [http://wiki.ma.gnolia.com/Ma.gnolia_Feeds_Guide#Microformats support for a variety of microformats] including [[rel-tag]], [[xfolk]], [[hreview]], [[xfn]] and [[hcard]].&lt;br /&gt;
&lt;br /&gt;
=== Maxthon ===&lt;br /&gt;
[http://maxthon.com Maxthon] is a browser for Microsoft Windows that uses the Trident rendering engine and provides additional user interface.  Maxthon has built and published a plugin for their browser that recognizes microformats in web pages and allows users to take action with them, similar to Operator for [[Firefox]].&lt;br /&gt;
* [http://forum.maxthon.com/index.php?showtopic=65408 Microformats Button Version 1.0.0 Release Candidate 1]&lt;br /&gt;
** Description: &amp;quot;Microformats Button extracts Microformats from websites and allows you to export the data to vCard, vCalendar, Google Maps, Yahoo Maps and other sites.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Microformat Base ===&lt;br /&gt;
* [http://randomchaos.com/microformats/base/ Microformat Base]&lt;br /&gt;
** by [[implementors#Scott Reynen|Scott Reynen]]&lt;br /&gt;
&lt;br /&gt;
=== Microformat Bookmarklet Overlay ===&lt;br /&gt;
* [http://leftlogic.com/info/articles/microformats_bookmarklet Microformats Bookmarklet] for Safari, Firefox and Camino, supports [[hcard|hCard]] and [[hcalendar|hCalendar]] and allows the user to import individual microformats on the fly.&lt;br /&gt;
** by [[implementors#Remy_Sharp|Remy Sharp]]&lt;br /&gt;
&lt;br /&gt;
=== Microformat Parser for Ruby ===&lt;br /&gt;
* [http://blog.labnotes.org/2005/11/20/microformat-parser-for-ruby/ Microformat Parser for Ruby]&lt;br /&gt;
** by [[implementors#Assaf Arkin|Assaf Arkin]]&lt;br /&gt;
&lt;br /&gt;
=== MyMap.yam.com ===&lt;br /&gt;
* support [[geo]] microformat in the POI page. example: [http://mymap.yam.com/place/point/charleschuang/6695/ a book store in Tamsui].&lt;br /&gt;
&lt;br /&gt;
=== National eXtension Initiative ===&lt;br /&gt;
* [http://www.extension.org/ eXtension Home] - content marked-up with [[hatom|hAtom]] and events marked-up as [[hcalendar|hCalendar]] entries.&lt;br /&gt;
** by [[implementors#James E. Robinson, III|James E. Robinson, III]]&lt;br /&gt;
&lt;br /&gt;
=== Nature Network Boston ===&lt;br /&gt;
* [http://network.nature.com/boston/ Nature Network Boston], a social networking community for scientists, supports [[reltag|rel-tag]], [[hcard|hCard]] for user profiles and [[hcalendar|hCalendar]] for marking up events across the site.&lt;br /&gt;
** by [[implementors#Nature Publishing Group|Nature Publishing Group]]&lt;br /&gt;
&lt;br /&gt;
=== Nature Protocols ===&lt;br /&gt;
* [http://www.nature.com/nprot/ Nature Protocols], a forum for scientists to upload and comment on protocols, supports [[hcard|hCard]] and [[XOXO]].&lt;br /&gt;
** by [[implementors#Nature Publishing Group|Nature Publishing Group]]&lt;br /&gt;
&lt;br /&gt;
=== NetNewsWire ===&lt;br /&gt;
*[http://www.newsgator.com/Individuals/NetNewsWire/ NetNewsWire] is an easy-to-use RSS and Atom reader for your Mac. NetNewsWire 3.0 detects, extracts and converts hcard and hcalendar data from feed entries.&lt;br /&gt;
** by [[implementors#NewsGator|NewsGator]]&lt;br /&gt;
&lt;br /&gt;
=== Netscape Navigator ===&lt;br /&gt;
* Version 9.0+ supports [[Firefox extensions]], e.g. [[Operator]]:&lt;br /&gt;
** [http://notizblog.org/2007/10/21/operator-unter-navigator-90/ Operator unter Navigator 9.0]&lt;br /&gt;
&lt;br /&gt;
=== Nutch ===&lt;br /&gt;
* [http://www.mail-archive.com/nutch-dev@lucene.apache.org/msg01295.html rel-nofollow support added]&lt;br /&gt;
* [http://www.mail-archive.com/nutch-commits@lucene.apache.org/msg01014.html rel-tag support checked in]&lt;br /&gt;
&lt;br /&gt;
=== ODEO ===&lt;br /&gt;
* [http://odeo.com/ ODEO] [http://odeo.com/blog/2005/07/adding-microformats-to-odeo.html noted] that they support microformats: [[rel-tag]], [[rel-enclosure]], [http://gmpg.org/xfn XFN].&lt;br /&gt;
&lt;br /&gt;
=== Optimus ===&lt;br /&gt;
*[http://microformatique.com/optimus/ Optimus]. Output formats: XML, JSON, JSON-P.&lt;br /&gt;
&lt;br /&gt;
=== phpMicroformats ===&lt;br /&gt;
* [http://enarion.net/phpmicroformats/ phpMicroformats] is a PHP class library that generates microformat entries for [[hcalendar|hCalendar]] and [[hcard|hCard]]. It is released under GPL.&lt;br /&gt;
&lt;br /&gt;
=== Portable Social Network Profile Parser ===&lt;br /&gt;
* [http://lab.backnetwork.com/ufXtract-psn/ Portable Social Network Profile Parser] implements parsing of [[hCard]], [[XFN]], and in particular [[rel-me]] for [[identity-consolidation]] for [[social-network-portability]].&lt;br /&gt;
** by [[implementors#Glenn_Jones|Glenn Jones]] of [[implementors#Madgex|Madgex]].&lt;br /&gt;
&lt;br /&gt;
=== PostNuke ===&lt;br /&gt;
''[http://www.postnuke.com PostNuke] is an Application Framework/Content Management Systeme''&lt;br /&gt;
* [http://www.pagesetter.net/index.php?module=pagesetter&amp;amp;func=viewpub&amp;amp;tid=4&amp;amp;pid=96 hCards4Pagesetter] - hCards Publication Type for the PostNuke module &amp;quot;Pagesetter&amp;quot;&lt;br /&gt;
* [http://www.pagesetter.net/index.php?module=pagesetter&amp;amp;func=viewpub&amp;amp;tid=4&amp;amp;pid=97 hCalendar4Pagesetter] - hCalendar Publication Type for the PostNuke module &amp;quot;Pagesetter&amp;quot;&lt;br /&gt;
* [http://www.pagesetter.net/index.php?module=pagesetter&amp;amp;func=viewpub&amp;amp;tid=4&amp;amp;pid=98 hReview4Pagesetter] - hReview Publication Type for the PostNuke module &amp;quot;Pagesetter&amp;quot;&lt;br /&gt;
* [http://noc.postnuke.com/frs/?group_id=256&amp;amp;release_id=477 Blogroll] - XFN Block/Modul&lt;br /&gt;
* [http://noc.postnuke.com/frs/?group_id=256&amp;amp;release_id=628 nofollow] - nofollow Hook&lt;br /&gt;
&lt;br /&gt;
=== Pownce ===&lt;br /&gt;
*[http://pownce/ Optimus]. Output formats: XML, JSON, JSON-P.&lt;br /&gt;
&lt;br /&gt;
=== Profiler ===&lt;br /&gt;
* [http://microformat.makedatamakesense.com/profiler/ Profiler] works as a proxy service adding microformat profiles to documents that appear to contain microformats.&lt;br /&gt;
&lt;br /&gt;
=== RFC2629.xslt ===&lt;br /&gt;
* [http://greenbytes.de/tech/webdav/rfc2629.xslt rfc2629.xslt] now attempts to generate [[hcard|hCard]] information ([http://ietf.org/rfc/rfc2629 RFC2629] in an XML format for authoring RFCs and Internet Drafts, see [http://greenbytes.de/tech/webdav/rfc2629xslt/rfc2629xslt.html example document])&lt;br /&gt;
&lt;br /&gt;
=== Salesforce ===&lt;br /&gt;
* [http://salesforce.com Salesforce] [http://flickr.com/photos/kingsleyj/175689109/ supports] [[hcard|hCard]]&lt;br /&gt;
** by [http://flickr.com/people/kingsleyj/ Kingsley Joseph]&lt;br /&gt;
==== Spanning Salesforce ====&lt;br /&gt;
* [http://spanningsalesforce.com/ Spanning Salesforce] supports [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
=== Sivitools ===&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Sivitols is a Java library for microformats. Currently only the xFolk RC1 standard is implemented, but additional microformat support is planned. This library is being written and maintained for a tag sharing project undertaken by Video Vertigo.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
[http://blog.blip.tv/blog/microformats/ Annoucement], [http://pokkari.com/microformat/javadoc/ Docs]&lt;br /&gt;
&lt;br /&gt;
=== SPRACI ===&lt;br /&gt;
* [http://www.spraci.com SPRACI] - nightlife/events - [[hcalendar|hCalendar]] published in events listings, aggregator can read hCalendar&lt;br /&gt;
&lt;br /&gt;
=== stuckUnstuck ===&lt;br /&gt;
* [http://stuckunstuck.com stuckUnstuck] supports [[hcard|hCard]] and [[hatom|hatom]].&lt;br /&gt;
&lt;br /&gt;
=== Sunnyvale House Concerts ===&lt;br /&gt;
* [http://concerts.shrub.ca/shows Sunnyvale House Concerts] supports [[hcard|hCard]] and [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
=== Technorati Contacts Feed Service ===&lt;br /&gt;
* [http://feeds.technorati.com/contacts/ Technorati Contacts Feed Service] is a deployment of [[implementations#X2V|X2V]] to convert [[hcard|hCards]] to vCard (.vcf) format.&lt;br /&gt;
** by [[implementors#Technorati|Technorati]]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Events Feed Service ===&lt;br /&gt;
* [http://feeds.technorati.com/events/ Technorati Events Feed Service] is a deployment of [[implementations#X2V|X2V]] to convert [[hcalendar|hCalendar]] events to iCalendar (.ics) format.&lt;br /&gt;
** by [[implementors#Technorati|Technorati]]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Microformats Search ===&lt;br /&gt;
* Technorati [http://kitchen.technorati.com/search/ Microformats Search]. Search for contacts ([[hcard|hCard]]), events ([[hcalendar|hCalendar]]), or reviews ([[hreview|hReview]]) published on blogs and other web sites.&lt;br /&gt;
** by [[implementors#Ryan_King|Ryan King]]&lt;br /&gt;
** first version (2006 May) by [[implementors#Tantek_Çelik|Tantek Çelik]], [[implementors#Ryan_King|Ryan King]], [[implementors#Kevin_Marks|Kevin Marks]], [[implementors#Josh_Smith|Josh Smith]]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Search ===&lt;br /&gt;
* [http://technorati.com/ Technorati] [http://technorati.com/search Search] supports and handles both [[vote-links]] and [[rel-nofollow]] for indicating whether a link should have any/positive/negative weighting towards the destination.&lt;br /&gt;
** by [http://technorati.com/about/staff.html Technorati Staff]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Tags ===&lt;br /&gt;
* [http://technorati.com/tags/ Technorati Tags] pages aggregate blog posts tagged with the [[rel-tag]] open tagging standard, in addition to recent tagged photos and links.&lt;br /&gt;
&lt;br /&gt;
=== Textpattern ===&lt;br /&gt;
==== Microformats Plugin ====&lt;br /&gt;
* [http://placenamehere.com/TXP/pnh_mf/ Textpattern Microformats Plugin] supports authoring [[hcard|hCard]], [[hcalendar|hCalendar]], [[hreview|hReview]], [http://gmpg.org/xfn XFN], [[rel-tag]], [[rel-license]] in the [http://www.textpattern.com/ Textpattern] CMS/blogging tool &lt;br /&gt;
** by [http://placenamehere.com/ Chris Casciano]&lt;br /&gt;
&lt;br /&gt;
=== Tomota ===&lt;br /&gt;
* The [http://www.tomota.de Tomota] allows import, export and conversion from and to hcards.&lt;br /&gt;
** by [[implementors#RalfEngels|Ralf Engels]]&lt;br /&gt;
&lt;br /&gt;
=== TYPO3 ===&lt;br /&gt;
* [http://www.typo3.com TYPO3], [http://typo3.org TYPO3 Developer Ressource]&lt;br /&gt;
==== tt_address extension====&lt;br /&gt;
* [http://typo3.org/extensions/repository/view/tt_address/2.0.1/ tt_address] - hCard support with the tt_address extension version 2.0.0&lt;br /&gt;
** by [[implementors#Ingo_Renner|Ingo Renner]]&lt;br /&gt;
==== TIMTAB extension====&lt;br /&gt;
* [http://typo3.org/extensions/repository/view/timtab/0.5.11/ TIMTAB] - XFN support for blogrolls with the TIMTAB weblog extension for TYPO3&lt;br /&gt;
** by [[implementors#Ingo_Renner|Ingo Renner]]&lt;br /&gt;
&lt;br /&gt;
=== Tweeterboard ===&lt;br /&gt;
* Tweeterboard supports [hcard|hCard]], and [http://gmpg.org/xfn XFN] on profile pages ([http://tweeterboard.com/user/missrogue example]).&lt;br /&gt;
&lt;br /&gt;
=== Twitter ===&lt;br /&gt;
&lt;br /&gt;
* [http://twitter.com Twitter] [http://twitter.com/al3x/statuses/53982402 supports] [[hatom|hAtom]], [[hcard|hCard]], and [http://gmpg.org/xfn XFN].&lt;br /&gt;
** hCards for groups are marked up with &amp;quot;fn&amp;quot; not &amp;quot;fn org&amp;quot;. See, for example, [http://twitter.com/microformats microformats on Twitter]&lt;br /&gt;
** Improper address mark-up (no child properties; though this may be all that can be achieved, if the user enters a value like &amp;quot;Birmingham, England&amp;quot;)&lt;br /&gt;
** Uses &amp;lt;code&amp;gt;class=&amp;quot;label&amp;quot;&amp;lt;/code&amp;gt; for non-hCard purpose.&lt;br /&gt;
&lt;br /&gt;
=== ufXtract ===&lt;br /&gt;
* [http://lab.backnetwork.com/ufXtract/ ufXtract] implements [[parsing]] of microformats such as [[hCard]] and [[XFN]].&lt;br /&gt;
** by [[implementors#Glenn_Jones|Glenn Jones]] of [[implementors#Madgex|Madgex]].  See [http://www.glennjones.net/Post/831/ufXtractmicroformatsparser.htm blog post announcement].&lt;br /&gt;
&lt;br /&gt;
=== Upcoming.org ===&lt;br /&gt;
* [http://upcoming.org Upcoming.org] - hCalendar support in events listings and individual events.&lt;br /&gt;
** by [[implementors#Andy_Baio|Andy Baio]], [[implementors#Leonard_Lin|Leonard Lin]], [[implementors#Gordon_Luk|Gordon Luk]]&lt;br /&gt;
&lt;br /&gt;
=== vCardExplorer ===&lt;br /&gt;
* [http://vcardexplorer.corefault.de/ vCardExplorer for MacOSX] - browses local vcards and converts hcards from URLs.&lt;br /&gt;
&lt;br /&gt;
=== WindowsLiveWriter ===&lt;br /&gt;
* [[implementors#Microsoft|Microsoft's]] WindowsLiveWriter (WLW) [http://gallery.live.com/liveItemDetail.aspx?li=9751e563-1408-4fc3-8028-bd4351edb1fb&amp;amp;l=8 event plugin] supports [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
=== WordPress ===&lt;br /&gt;
* [http://wordpress.org WordPress] supports [http://gmpg.org/xfn/ XFN] blogrolls through a very nice built-in user interface. (cf. [[xfn-implementations]])&lt;br /&gt;
** by [[implementors#Matt_Mullenweg|Matt Mullenweg]] and friends&lt;br /&gt;
&lt;br /&gt;
==== WP Microformatted Blogroll ====&lt;br /&gt;
* The [http://factorycity.net/projects/wp-microformatted-blogroll/ WP Microformatted Blogroll 0.2] Wordpress plugin by [[implementors#Chris_Messina|Chris Messina]] supports [[hcard|hCard]] and [http://gmpg.org/xfn/ XFN].&lt;br /&gt;
&lt;br /&gt;
==== hCard About Box ====&lt;br /&gt;
* The [http://redmonk.net/projects/widget_hcard_about/ hCard About Box] widget by [[implementors#Steve_Ivy|Steve Ivy]] supports [[hcard|hCard]].&lt;br /&gt;
&lt;br /&gt;
====GigPress====&lt;br /&gt;
* [http://gigpress.com/ GigPress] is a WordPress plugin that manages and displays concerts and tours for bands or other touring acts, and outputs them with [[hcalendar|hCalendar]] markup.  By [[implementors#Derek_Hogue|Derek Hogue]].&lt;br /&gt;
&lt;br /&gt;
==== VoteBack Plugin ====&lt;br /&gt;
* The [http://redmonk.net/archives/2006/12/21/voteback/ VoteBack plugin for Wordpress] by [[implementors#Steve_Ivy|Steve Ivy]] checks incoming pingbacks and trackbacks for [[votelinks]].&lt;br /&gt;
&lt;br /&gt;
==== Save Microformats Plugin ====&lt;br /&gt;
* [http://notizblog.org/projects/save-microformats/ Save Microformats plugin for Wordpress] - a plugin to save posted Microformats using technorati feeds.&lt;br /&gt;
&lt;br /&gt;
==== WP Themes ====&lt;br /&gt;
* [http://www.plaintxt.org/themes/sandbox/ Sandbox] is a theme for Wordpress that uses [[hatom|hAtom]]. &lt;br /&gt;
** The theme is also available to accounts on the &amp;lt;username&amp;gt;.wordpress.com hosting service.&lt;br /&gt;
* [http://www.jesuscarrera.info/proyectos/startpoint/ StartPoint] A theme for theme developers. A good start point to make your own templates. It supports multiple languages, widgets, contains semantic hAtom microformats, and more.&lt;br /&gt;
* [http://www.whump.com/dropbox/Strangelove.zip Strangelove] is a modification of the default Wordpress theme (Kubrick) with [[hatom|hAtom]] support. &lt;br /&gt;
** It points to the hAtom2Atom proxy service as the link for syndication feeds.&lt;br /&gt;
&lt;br /&gt;
=== X2V ===&lt;br /&gt;
* Brian Suda has created several XSLT files to extract microformats from HTML. From that the [http://suda.co.uk/projects/X2V/ X2V] webservice/favelet emerged. The XSLT and favelet extracts [[hcard|hCard]] and to produces .vcf (vCard) files and [[hcalendar|hCalendar]] to produce .ics (iCal) files. Also in the labs is a universal XMDP validator and a site-wide search spider that recognizes 'no-follow', 'license' and other microformats so they can be used in a more semantic way when displaying search results.&lt;br /&gt;
** by [[implementors#Brian_Suda|Brian Suda]]&lt;br /&gt;
&lt;br /&gt;
=== XWiki ===&lt;br /&gt;
* [http://xwiki.org XWiki] (as of [http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWiki10Beta5 version 10Beta5]) publishes the user profiles using [[hcard | hCard]], the events in the calendar application using [[hCalendar | hCalendar]], the blog entries using [[hAtom | hAtom]] and homepage links using [[rel-home | rel-home]].&lt;br /&gt;
&lt;br /&gt;
=== Yahoo Creative Commons Search ===&lt;br /&gt;
* [http://search.yahoo.com/cc/ Yahoo Creative Commons Search] - supports [[rel-license]] specifically to search for Creative Commons licensed content.&lt;br /&gt;
&lt;br /&gt;
=== Yahoo Local ===&lt;br /&gt;
* [http://local.yahoo.com Yahoo local] supports [[hcard|hCard]], [[hcalendar|hCalendar]], and [[hreview|hReview]].&lt;br /&gt;
&lt;br /&gt;
=== Yahoo Tech ===&lt;br /&gt;
* [http://tech.yahoo.com Yahoo! Tech] supports [[hreview|hReview]].&lt;br /&gt;
&lt;br /&gt;
=== Yahoo UK Movies ===&lt;br /&gt;
* [http://movies.yahoo.co.uk Yahoo! UK Movies] supports [[hreview|hReview]].&lt;br /&gt;
** by Mark Norman Francis&lt;br /&gt;
&lt;br /&gt;
=== Yedda ===&lt;br /&gt;
* [http://yedda.com Yedda] supports [[hcard|hCard]] for exposing users information, [[hatom|hAtom]] for exposing data that is already exposed via feeds (like list of questions and answers) and [[rel-tag|rel-tag]] for every tag used to tag questions and users.&lt;br /&gt;
&lt;br /&gt;
== Validators ==&lt;br /&gt;
This is an alphabetical listing of tools that have been created to validate implementations, and which formats they support.&lt;br /&gt;
&lt;br /&gt;
Please add to this section if you have a validator/checker, no matter which or how many microformats you test for.&lt;br /&gt;
&lt;br /&gt;
=== rel-lint ===&lt;br /&gt;
* [http://tools.microformatic.com/help/xhtml/rel-lint/ rel-lint] supports validation of [[rel-tag|rel-tag]] and [[xfn|XFN]] &lt;br /&gt;
* by [[implementors#Drew_McLellan|Drew McLellan]]&lt;br /&gt;
&lt;br /&gt;
== Companies / Developers / Organizations ==&lt;br /&gt;
&lt;br /&gt;
See [[implementors]]&lt;br /&gt;
&lt;br /&gt;
The following have been moved from the sections above due to problems, stated below:&lt;br /&gt;
&lt;br /&gt;
=== Web Essentials ===&lt;br /&gt;
* [http://we05.com/ Web Essentials] - supports [[hcard|hCard]] and [[hcalendar|hCalendar]], e.g. in their [http://we05.com/presenters.cfm list of presenters] and [http://we05.com/program.cfm program schedule].&lt;br /&gt;
** John McKerrell tried to look at the site on 24th October 2006 but could not access the site, server didn't seem to be up.&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
Some notes on initial thoughts around [[implementation-guidelines|Guidelines and Strategies for Implementing Microformats]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=implementations&amp;diff=23848</id>
		<title>implementations</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=implementations&amp;diff=23848"/>
		<updated>2007-12-16T04:37:13Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: adding facebook and digg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats Implementations&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
This page lists the applications, plugins, sample code, services, tools that produce or consume microformats. This is only a partial list. If you know other services or tools for or supporting microformats, please add them, link to their [[implementors]], and list what specific microformats they support.&lt;br /&gt;
&lt;br /&gt;
== Implementations vs. Examples in the Wild ==&lt;br /&gt;
This page is ''only'' for implementations of tools that publish or consume microformats. Companies simply ''using'' microformats on their pages/sites belong in the &amp;quot;Examples in the wild&amp;quot; sections of those respective microformats, e.g.:&lt;br /&gt;
* [[hcard-examples-in-wild|hCard Examples in the wild]]&lt;br /&gt;
* [[hcalendar-examples-in-wild|hCalendar Examples in the wild]]&lt;br /&gt;
* etc.&lt;br /&gt;
&lt;br /&gt;
== Editing This Page ==&lt;br /&gt;
When you find an implementation, first make sure that it is ''actually'' an implementation as opposed to ''just'' an [[hcard-examples-in-wild|example in the wild]] of publishing microformats (see above).&lt;br /&gt;
&lt;br /&gt;
Second, note the name of the ''tool or service'' separately from the name of the ''developer(s)'' who wrote the tool/service.&lt;br /&gt;
&lt;br /&gt;
Add a third level heading with the name of the tool/service ( &amp;lt;code&amp;gt;=== Name of Tool ===&amp;lt;/code&amp;gt; ) to the Applications / Plugins / Services / Tools section, sorted alphabetically by name of tool/service.  Add a top level list item (*) just below the heading with an external link to the tool/service, along with a link to evidence of their support for microformats, and mention (and locally link) each microformat that is supported.&lt;br /&gt;
&lt;br /&gt;
Add a nested list item &amp;lt;code&amp;gt;* by Name of Developer&amp;lt;/code&amp;gt; and local to wiki hyperlink the Name of Developer to a fragment identifier in the [[implementors]] page, e.g. Apple Computer would be linked like this: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[implementors#Apple_Computer|Apple Computer]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check to see if there is an entry for the developer in the [[implementors|list of implementors]], if not add them there. Add a link to the developer's home page followed by &amp;quot;has implemented microformats in:&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In the entry for the developer, add a list item &amp;lt;code&amp;gt;* Name of Tool&amp;lt;/code&amp;gt; and local to wiki hyperlink the Name of Tool to a fragment identifier in this page, e.g. X2V would be linked like this: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[implementations#X2V|X2V]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save the page and make sure that each fragment ID local hyperlink when clicked scrolls you to the right spot (for the developer, and for the tool).  Make any fix-up edits as necessary.  That's it!&lt;br /&gt;
&lt;br /&gt;
== Reporting Bugs ==&lt;br /&gt;
In short, [[put-it-on-the-wiki]]. In particular, add bug reports, with URL(s) to a valid demonstrative test case(s) of course, to the listing of an implementation on this page, OR on the specific implementations wiki page (e.g. [[hcard-implementations]]).  Please describe why you think it is a bug (user interface, cosmetic, violates a spec page, e.g. for problems parsing hCards, reference which part of [[hcard-parsing]] the implementation appears to not be following).&lt;br /&gt;
&lt;br /&gt;
If you have a sense of urgency for getting that particular bug fixed in that implementation, you may email [http://microformats.org/discuss/ microformats-dev] with the URL of that implementation on the wiki page, and *summarize* the bug (the full description being on the wiki page instead).&lt;br /&gt;
&lt;br /&gt;
== Formats ==&lt;br /&gt;
Most microformat specifications have an &amp;quot;implementations&amp;quot; section, e.g.:&lt;br /&gt;
*[[rel-tag#Implementations|rel-tag implementations]]&lt;br /&gt;
*[[vote-links#Implementations|vote-link implementations]]&lt;br /&gt;
*[[xoxo#Implementations|XOXO implementations]]&lt;br /&gt;
&lt;br /&gt;
In addition, some microformat specifications have separate implementation pages:&lt;br /&gt;
*[[hcalendar-implementations|hCalendar implementations]]&lt;br /&gt;
*[[hcard-implementations|hCard Implementations]]&lt;br /&gt;
*[[xfn-implementations|XFN implementations]]&lt;br /&gt;
&lt;br /&gt;
== Applications / Plugins / Services / Tools ==&lt;br /&gt;
This is an alphabetical listing of all applications, plugins (grouped with their app/tool), services and tools that implement microformats, along with the list of microformats that are supported, and the company and/or developers responsible for it.&lt;br /&gt;
&lt;br /&gt;
As a user, the implementations listed below will automatically help you use microformats and help your data portability and interoperability with other apps and services.&lt;br /&gt;
&lt;br /&gt;
Please help complete this list!  If you know of additional apps/plugins/services/tools that support microformats, please add them!&lt;br /&gt;
&lt;br /&gt;
Note: this section is only for listing specific ''implementations''.  The list of ''implementors'' is in the [[implementors#Companies / Developers / Organizations|Companies / Developers / Organizations]] section on the [[implementors]] page.&lt;br /&gt;
&lt;br /&gt;
Alphabetically:&lt;br /&gt;
&lt;br /&gt;
=== .Mac Webmail ===&lt;br /&gt;
* The [http://www.mac.com/webmail .Mac Webmail] ''service'' now [http://factoryjoe.com/blog/2006/10/28/apple-embraces-microformats-in-new-mac-webmail/ supports hcard].&lt;br /&gt;
** by [[implementors#Apple_Computer|Apple Computer]]&lt;br /&gt;
&lt;br /&gt;
=== AlchemyPoint ===&lt;br /&gt;
* [http://www.orch8.net/ AlchemyPoint] is a structured web / mashup platform that supports parsing hCard, rel-tag and other microformats.&lt;br /&gt;
** by [[implementors#Orchestr8|Orchestr8]]&lt;br /&gt;
&lt;br /&gt;
=== Backnetwork ===&lt;br /&gt;
* [http://backnetwork.com/ Backnetwork] is a community networking tool for events that supports [[hCard]], [[hCalendar]], and [[XFN]].&lt;br /&gt;
** by [[implementors#Glenn_Jones|Glenn Jones]] of [[implementors#Madgex|Madgex]].&lt;br /&gt;
&lt;br /&gt;
=== Blinksale ===&lt;br /&gt;
* [http://blinksale.com Blinksale] uses [[hcard|hCard]] standard throughout for people and companies.&lt;br /&gt;
&lt;br /&gt;
=== BlogMatrix ===&lt;br /&gt;
* [http://www.blogmatrix.com BlogMatrix] - user information marked as [[hcard|hCard]], tag directories in [[xfolk]]/[[rel-tag]], enclosures are marked as [[rel-enclosure]].&lt;br /&gt;
** by [[implementors#David_Janes|David Janes]]&lt;br /&gt;
&lt;br /&gt;
=== Blogmarks.net ===&lt;br /&gt;
* [http://www.blogmarks.net Blogmarks.net] publish user bookmarks in [[xfolk]]/[[rel-tag]].&lt;br /&gt;
&lt;br /&gt;
=== cmSiteNavigation ===&lt;br /&gt;
* [http://www.christophm.de/software/firefox/cmSiteNavigation/ cmSiteNavigation] extension for Firefox make use of links marked with a [[existing-rel-values|&amp;quot;rel&amp;quot; value]], and parses additional link types also.&lt;br /&gt;
&lt;br /&gt;
=== Community Server ===&lt;br /&gt;
* [http://communityserver.org Community Server] supports tagging posts with [[rel-tag]], implements [[rel-nofollow]] on links in comments, and allows users to create link lists using [http://gmpg.org/xfn/ XFN].&lt;br /&gt;
&lt;br /&gt;
=== Conferenceer ===&lt;br /&gt;
* Built for SXSW 2007, [http://sxsw07.conferenceer.com/ Conferenceer] supports hcalendar and hcard.&lt;br /&gt;
&lt;br /&gt;
=== Citycita===&lt;br /&gt;
* [http://www.citycita.org Citycita] supports [[hCal|hCal]] in all event pages for local social groups.&lt;br /&gt;
** by [[implementors#Rubio_Jamin|Rubio Jamin]]&lt;br /&gt;
&lt;br /&gt;
=== Cork'd ===&lt;br /&gt;
* [http://corkd.com Cork'd] supports [[hcard|hCard]] for user profiles, [[hreview|hReview]] for wine reviews, along with [[rel-tag]] for tagging wines as announced in [http://www.simplebits.com/notebook/2006/06/10/wineformats.html Pairing Wine and Microformats]&lt;br /&gt;
** by [[implementors#Dan_Cederhold|Dan Cederholm]]&lt;br /&gt;
&lt;br /&gt;
=== Delicious Generation ===&lt;br /&gt;
* [http://deliciousgeneration.com/ Delicious Generation] supports [[hCal|hCal]] for the event and [[hcard|hCard]] for sponsors and people.&lt;br /&gt;
** by [[implementors#Chris_Messina|Chris Messina]]&lt;br /&gt;
&lt;br /&gt;
=== Digg ===&lt;br /&gt;
* [http://digg.com/ Digg] supports [[hcard|hCards]] for profiles and rel-me for identity consolidation (though they currently mix rel-nofollow with rel-me, negating these links).&lt;br /&gt;
&lt;br /&gt;
=== Dreamweaver ===&lt;br /&gt;
==== Microformats Extensions ====&lt;br /&gt;
* [http://www.webstandards.org/action/dwtf/microformats Dreamweaver Microformats Extensions] ([http://allinthehead.com/beta/microformats.mxp.zip download]) support authoring [[hcard|hCard]], [[hcalendar|hCalendar]], [http://gmpg.org/xfn XFN], [[rel-tag]], [[rel-license]] as [http://allinthehead.com/retro/282/microformats-in-dreamweaver announced by Drew]&lt;br /&gt;
** by [[implementors#Drew_Mclellan|Drew McLellan]]&lt;br /&gt;
&lt;br /&gt;
=== Drupal ===&lt;br /&gt;
==== Upcoming module for Drupal ====&lt;br /&gt;
* [http://hybernaut.com/upcoming-module Drupal Upcoming.org syndication module] emits [[hcalendar|hCalendar]]&lt;br /&gt;
** by [[implementors#Brian_Del_Vecchio|Brian Del Vecchio]]&lt;br /&gt;
&lt;br /&gt;
=== Etnies ===&lt;br /&gt;
* [http://etnies.com/extra/calendar/ Etnies Calendar] supports hcalendar. Maybe the [http://thecolab.com/blog/2007/01/22/etniescom-relaunch/ first skate-shop to support microformats].&lt;br /&gt;
&lt;br /&gt;
=== Eventful ===&lt;br /&gt;
* [http://eventful.com Eventful] supports [[hcalendar|hCalendar]] for over 1,000,000 event listings and [[hcard|hCard]] for venues.&lt;br /&gt;
&lt;br /&gt;
=== Facebook ===&lt;br /&gt;
* [http://facebook.com/ Facebook] supports [[hcard|hCard]] for public profiles.&lt;br /&gt;
&lt;br /&gt;
=== Ficlets ===&lt;br /&gt;
* [http://ficlets.com Ficlets] supports [[hcard]] for author data and [[hatom]] for stories and lists of stories.&lt;br /&gt;
** [http://sixtwothree.org Jason Garber] and [http://lawver.net Kevin Lawver] for [http://aol.com AOL]&lt;br /&gt;
&lt;br /&gt;
=== Finetoothcog ===&lt;br /&gt;
* [http://finetoothcog.com/site/stolen_bikes Stolen Bikes] now supports [[hcalendar|hCalendar]] for reported stolen bikes. Also provides iCal subscription.&lt;br /&gt;
&lt;br /&gt;
=== Firefox ===&lt;br /&gt;
* See [[firefox-extensions]]&lt;br /&gt;
&lt;br /&gt;
=== FunAdvice ===&lt;br /&gt;
* [http://funadvice.com FunAdvice] supports using the rel-nofollow tag to prevent users posting content simply for the search engine benefit, to improve teh quality of the advice giving community.&lt;br /&gt;
&lt;br /&gt;
=== Gravatar Commenters as hCards  ===&lt;br /&gt;
* [http://thedredge.org Andy Hume] added code to his blogging software to automatically mark-up the names and URLs of commenters on his blog with [[hcard|hCard]]. &lt;br /&gt;
** by [[implementors#Andy_Hume|Andy Hume]]&lt;br /&gt;
** Andy - any chance of open sourcing your code to turn Gravatars into hCards?&lt;br /&gt;
&lt;br /&gt;
=== Flickr People ===&lt;br /&gt;
* [http://flickr.com/ Flickr]'s profiles on its people pages supports both [[hcard|hCard]] and [http://gmpg.org/xfn XFN].&lt;br /&gt;
** by [[implementors#Cal_Henderson|Cal Henderson]]&lt;br /&gt;
**[http://flickr.com/people/tantek example]&lt;br /&gt;
&lt;br /&gt;
=== Flickr Photos ===&lt;br /&gt;
* [http://flickr.com/map/ Flickr's geo tagged photos] are marked up with the [[geo]] microformat.&lt;br /&gt;
&lt;br /&gt;
=== Flock Web Browser ===&lt;br /&gt;
* The [http://flock.com Flock web browser] supports the [[rel-tag]] microformat.&lt;br /&gt;
** by [[implementors#Flock|Flock]]&lt;br /&gt;
&lt;br /&gt;
=== Google Search ===&lt;br /&gt;
* [http://google.com/ Google Search] - supports [[rel-nofollow]]&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
&lt;br /&gt;
=== Google Blogger ===&lt;br /&gt;
* [http://blogger.com/ Blogger] supports [[hatom|hAtom]] (citation to blog post needed - 2007)&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
&lt;br /&gt;
=== Google Creative Commons Search ===&lt;br /&gt;
* [http://www.google.com/webhp?as_rights=(cc_publicdomain%7Ccc_attribute%7Ccc_sharealike%7Ccc_noncommercial%7Ccc_nonderived) Google Creative Commons Search] - supports [[rel-license]]&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
&lt;br /&gt;
=== Google Maps ===&lt;br /&gt;
* [http://maps.google.com/ Google Maps] supports [[hcard|hCard]] (see [http://googlemapsapi.blogspot.com/2007/06/microformats-in-google-maps.html 2007-06-31 announcement by Google])&lt;br /&gt;
* Google maps also allows reviewers and map creators to [http://maps.google.com/maps/me attach a public profile], which includes hCard and rel=&amp;quot;me' XFN markup. See [http://google-latlong.blogspot.com/2007/10/put-yourself-on-map.html 2007-10-17 announcement]. Sample profile: [http://maps.google.com/maps/user?uid=109581870574956225297 Kevin Marks].&lt;br /&gt;
** by [[implementors#Google|Google]]&lt;br /&gt;
**Unfortunately, [http://microformats.org/discuss/mail/microformats-discuss/2007-July/010311.html Google Map's implementation is broken]. [http://microformats.org/discuss/mail/microformats-discuss/2007-August/010457.html Google are aware; a fix is awaited].&lt;br /&gt;
** Also, there is no hCard nor any XFN rel values on the [http://maps.google.com/maps/user?uid=109581870574956225297 sample profile] itself, it appears to include a [http://maps.google.com/maps/c/widgets/ProfileViewer?js=RAW&amp;amp;maximize=true&amp;amp;hide=false&amp;amp;width=40&amp;amp;noTitle=true&amp;amp;theme=theme_2&amp;amp;service=local&amp;amp;uid=109581870574956225297&amp;amp;height=0&amp;amp;background=transparent&amp;amp;serverbased=true&amp;amp;border=NONE&amp;amp;eventCallback=ParentStub1192999211538&amp;amp;zx=dc574o15j0wrv frame] which then has an hCard and rel=&amp;quot;me&amp;quot; to the user's blog.&lt;br /&gt;
&lt;br /&gt;
=== Greasemonkey ===&lt;br /&gt;
* [http://greasemonkey.makedatamakesense.com/google_hcalendar/ Google hCalendar] - Adds hCalendar data to Google Calendar.&lt;br /&gt;
* [http://www.nickpeters.net/?p=35 Social xFolk] - Adds xFolk links to social bookmarking sites del.icio.us and ma.gnolia.&lt;br /&gt;
&lt;br /&gt;
=== hCalendar creator ===&lt;br /&gt;
* [http://microformats.org/code/hcalendar/creator hCalendar creator] (originally [http://theryanking.com/microformats/hcalendar-creator.html published by Ryan King]) is a javascript form for creating [[hcalendar|hCalendar]] events.&lt;br /&gt;
** by [[implementors#Ryan_King|Ryan King]]&lt;br /&gt;
&lt;br /&gt;
=== hCard creator ===&lt;br /&gt;
* The open source [http://microformats.org/code/hcard/creator hCard creator] (originally [http://tantek.com/microformats/hcard-creator.html published by Tantek]) is a very simple, yet illustrative, open source user interface / form / script which creates an [[hcard|hCard]] in real-time as you type in a set of contact information.&lt;br /&gt;
** by [[implementors#Tantek_Çelik|Tantek Çelik]]&lt;br /&gt;
&lt;br /&gt;
=== hKit Microformats Toolkit for PHP5 ===&lt;br /&gt;
* [http://allinthehead.com/hkit hKit Microformats Toolkit for PHP5] as [http://allinthehead.com/retro/291/hkit-microformats-toolkit-for-php announced by Drew McLellan]. See also [[hkit|hKit on this wiki]].&lt;br /&gt;
&lt;br /&gt;
=== hReview creator ===&lt;br /&gt;
* [http://microformats.org/code/hcalendar/creator hReview creator] (originally [http://theryanking.com/microformats/hreview-creator.html published by Ryan King]) is a javascript form for creating [[hreview|hReviews]].&lt;br /&gt;
** by [[implementors#Ryan_King|Ryan King]]&lt;br /&gt;
&lt;br /&gt;
=== Ice Rocket ===&lt;br /&gt;
* [http://icerocket.com] - [http://blogs.icerocket.com/tag/ supports] [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
=== iChat buddy list to hCards ===&lt;br /&gt;
* [http://tantek.com/microformats/buddylist2hcards.html iChat buddy list to hCards] - open source AppleScript to automatically convert one's buddy list in the MacOSX iChat AIM client into a valid XHTML 1.0 Strict list of hCards.&lt;br /&gt;
** by [[implementors#Tantek_Çelik|Tantek Çelik]]&lt;br /&gt;
&lt;br /&gt;
=== Internet Explorer ===&lt;br /&gt;
* See [[internet-explorer-extensions]]&lt;br /&gt;
&lt;br /&gt;
=== JobiJoba ===&lt;br /&gt;
* [http://www.jobijoba.com JobiJoba : moteur de recherche emploi] parses and supports [[hCard|hCard]] and [[rel-tag|rel-tag]] for over 40,000 job listings.&lt;br /&gt;
&lt;br /&gt;
=== JSCalendar ===&lt;br /&gt;
* [http://web.mit.edu/glasser/www/JSCalendar/ JSCalendar] parses [[hcalendar|hCalendar]] and produces a displayable HTML table/CSS-based calendar.&lt;br /&gt;
&lt;br /&gt;
=== Konqueror ===&lt;br /&gt;
* [http://www.konqueror.org/ Konqueror] - [http://flickr.com/photos/factoryjoe/68755089/ supports] [[hcard|hCard]]&lt;br /&gt;
&lt;br /&gt;
=== Last.fm ===&lt;br /&gt;
* [http://last.fm Last.fm] - [http://factoryjoe.com/blog/2006/10/31/lastfm-adds-support-for-hcalendar/ Last.fm supports] [[hcalendar|hCalendar]] &lt;br /&gt;
&lt;br /&gt;
=== LouderVoice ===&lt;br /&gt;
* [http://www.loudervoice.com Publishes and aggregates hreview content] - The LouderVoice site provides a variety of tools to publish hreview to blogs and it also aggregates hreview content from any registered RSS Feed so that users can search/rate/collect distributed reviews.&lt;br /&gt;
&lt;br /&gt;
=== Laughing Squid Calendar ===&lt;br /&gt;
* The [http://laughingsquid.com/squidlist/calendar/ Laughing Squid Calendar] events listings support [[hcalendar|hCalendar]].&lt;br /&gt;
** by [http://laughingsquid.com/ Laughing Squid]&lt;br /&gt;
&lt;br /&gt;
=== LinkedIn ===&lt;br /&gt;
* [http://www.linkedin.com LinkedIn] - LinkedIn includes [[hcard|hCard]] and [[xfn|XFN]] on contacts, [[hresume|hResume]] for public profiles and [[hreview|hReview]] on service provider recommendations&lt;br /&gt;
&lt;br /&gt;
=== Live Clipboard ===&lt;br /&gt;
* [http://spaces.live.com/editorial/rayozzie/demo/liveclip/liveclipsample/techPreview.html Live Clipboard Technical Introduction]&lt;br /&gt;
* [http://spaces.live.com/editorial/rayozzie/demo/liveclip/liveclipsample/clipboardexample.html Live Clipboard Example]&lt;br /&gt;
&lt;br /&gt;
=== LiveJournal ===&lt;br /&gt;
* [http://www.livejournal.com LiveJournal]&lt;br /&gt;
** supports tagging posts with [[rel-tag]]&lt;br /&gt;
** supports [[hcard-supporting-user-profiles|hCard user profiles]] and [[XFN]] ([http://community.livejournal.com/lj_releases/24768.html 2007-09-27 release #15]).&lt;br /&gt;
&lt;br /&gt;
=== LJFind ===&lt;br /&gt;
* [http://www.ljfind.com LJ-Find] - LJFind supports tagging posts with [[rel-tag]].&lt;br /&gt;
&lt;br /&gt;
=== Ma.gnolia ===&lt;br /&gt;
&lt;br /&gt;
* [http://ma.gnolia.com Ma.gnolia] has wide [http://wiki.ma.gnolia.com/Ma.gnolia_Feeds_Guide#Microformats support for a variety of microformats] including [[rel-tag]], [[xfolk]], [[hreview]], [[xfn]] and [[hcard]].&lt;br /&gt;
&lt;br /&gt;
=== Maxthon ===&lt;br /&gt;
[http://maxthon.com Maxthon] is a browser for Microsoft Windows that uses the Trident rendering engine and provides additional user interface.  Maxthon has built and published a plugin for their browser that recognizes microformats in web pages and allows users to take action with them, similar to Operator for [[Firefox]].&lt;br /&gt;
* [http://forum.maxthon.com/index.php?showtopic=65408 Microformats Button Version 1.0.0 Release Candidate 1]&lt;br /&gt;
** Description: &amp;quot;Microformats Button extracts Microformats from websites and allows you to export the data to vCard, vCalendar, Google Maps, Yahoo Maps and other sites.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Microformat Base ===&lt;br /&gt;
* [http://randomchaos.com/microformats/base/ Microformat Base]&lt;br /&gt;
** by [[implementors#Scott Reynen|Scott Reynen]]&lt;br /&gt;
&lt;br /&gt;
=== Microformat Bookmarklet Overlay ===&lt;br /&gt;
* [http://leftlogic.com/info/articles/microformats_bookmarklet Microformats Bookmarklet] for Safari, Firefox and Camino, supports [[hcard|hCard]] and [[hcalendar|hCalendar]] and allows the user to import individual microformats on the fly.&lt;br /&gt;
** by [[implementors#Remy_Sharp|Remy Sharp]]&lt;br /&gt;
&lt;br /&gt;
=== Microformat Parser for Ruby ===&lt;br /&gt;
* [http://blog.labnotes.org/2005/11/20/microformat-parser-for-ruby/ Microformat Parser for Ruby]&lt;br /&gt;
** by [[implementors#Assaf Arkin|Assaf Arkin]]&lt;br /&gt;
&lt;br /&gt;
=== MyMap.yam.com ===&lt;br /&gt;
* support [[geo]] microformat in the POI page. example: [http://mymap.yam.com/place/point/charleschuang/6695/ a book store in Tamsui].&lt;br /&gt;
&lt;br /&gt;
=== National eXtension Initiative ===&lt;br /&gt;
* [http://www.extension.org/ eXtension Home] - content marked-up with [[hatom|hAtom]] and events marked-up as [[hcalendar|hCalendar]] entries.&lt;br /&gt;
** by [[implementors#James E. Robinson, III|James E. Robinson, III]]&lt;br /&gt;
&lt;br /&gt;
=== Nature Network Boston ===&lt;br /&gt;
* [http://network.nature.com/boston/ Nature Network Boston], a social networking community for scientists, supports [[reltag|rel-tag]], [[hcard|hCard]] for user profiles and [[hcalendar|hCalendar]] for marking up events across the site.&lt;br /&gt;
** by [[implementors#Nature Publishing Group|Nature Publishing Group]]&lt;br /&gt;
&lt;br /&gt;
=== Nature Protocols ===&lt;br /&gt;
* [http://www.nature.com/nprot/ Nature Protocols], a forum for scientists to upload and comment on protocols, supports [[hcard|hCard]] and [[XOXO]].&lt;br /&gt;
** by [[implementors#Nature Publishing Group|Nature Publishing Group]]&lt;br /&gt;
&lt;br /&gt;
=== NetNewsWire ===&lt;br /&gt;
*[http://www.newsgator.com/Individuals/NetNewsWire/ NetNewsWire] is an easy-to-use RSS and Atom reader for your Mac. NetNewsWire 3.0 detects, extracts and converts hcard and hcalendar data from feed entries.&lt;br /&gt;
** by [[implementors#NewsGator|NewsGator]]&lt;br /&gt;
&lt;br /&gt;
=== Netscape Navigator ===&lt;br /&gt;
* Version 9.0+ supports [[Firefox extensions]], e.g. [[Operator]]:&lt;br /&gt;
** [http://notizblog.org/2007/10/21/operator-unter-navigator-90/ Operator unter Navigator 9.0]&lt;br /&gt;
&lt;br /&gt;
=== Nutch ===&lt;br /&gt;
* [http://www.mail-archive.com/nutch-dev@lucene.apache.org/msg01295.html rel-nofollow support added]&lt;br /&gt;
* [http://www.mail-archive.com/nutch-commits@lucene.apache.org/msg01014.html rel-tag support checked in]&lt;br /&gt;
&lt;br /&gt;
=== ODEO ===&lt;br /&gt;
* [http://odeo.com/ ODEO] [http://odeo.com/blog/2005/07/adding-microformats-to-odeo.html noted] that they support microformats: [[rel-tag]], [[rel-enclosure]], [http://gmpg.org/xfn XFN].&lt;br /&gt;
&lt;br /&gt;
=== Optimus ===&lt;br /&gt;
*[http://microformatique.com/optimus/ Optimus]. Output formats: XML, JSON, JSON-P.&lt;br /&gt;
&lt;br /&gt;
=== phpMicroformats ===&lt;br /&gt;
* [http://enarion.net/phpmicroformats/ phpMicroformats] is a PHP class library that generates microformat entries for [[hcalendar|hCalendar]] and [[hcard|hCard]]. It is released under GPL.&lt;br /&gt;
&lt;br /&gt;
=== Portable Social Network Profile Parser ===&lt;br /&gt;
* [http://lab.backnetwork.com/ufXtract-psn/ Portable Social Network Profile Parser] implements parsing of [[hCard]], [[XFN]], and in particular [[rel-me]] for [[identity-consolidation]] for [[social-network-portability]].&lt;br /&gt;
** by [[implementors#Glenn_Jones|Glenn Jones]] of [[implementors#Madgex|Madgex]].&lt;br /&gt;
&lt;br /&gt;
=== PostNuke ===&lt;br /&gt;
''[http://www.postnuke.com PostNuke] is an Application Framework/Content Management Systeme''&lt;br /&gt;
* [http://www.pagesetter.net/index.php?module=pagesetter&amp;amp;func=viewpub&amp;amp;tid=4&amp;amp;pid=96 hCards4Pagesetter] - hCards Publication Type for the PostNuke module &amp;quot;Pagesetter&amp;quot;&lt;br /&gt;
* [http://www.pagesetter.net/index.php?module=pagesetter&amp;amp;func=viewpub&amp;amp;tid=4&amp;amp;pid=97 hCalendar4Pagesetter] - hCalendar Publication Type for the PostNuke module &amp;quot;Pagesetter&amp;quot;&lt;br /&gt;
* [http://www.pagesetter.net/index.php?module=pagesetter&amp;amp;func=viewpub&amp;amp;tid=4&amp;amp;pid=98 hReview4Pagesetter] - hReview Publication Type for the PostNuke module &amp;quot;Pagesetter&amp;quot;&lt;br /&gt;
* [http://noc.postnuke.com/frs/?group_id=256&amp;amp;release_id=477 Blogroll] - XFN Block/Modul&lt;br /&gt;
* [http://noc.postnuke.com/frs/?group_id=256&amp;amp;release_id=628 nofollow] - nofollow Hook&lt;br /&gt;
&lt;br /&gt;
=== Pownce ===&lt;br /&gt;
*[http://pownce/ Optimus]. Output formats: XML, JSON, JSON-P.&lt;br /&gt;
&lt;br /&gt;
=== Profiler ===&lt;br /&gt;
* [http://microformat.makedatamakesense.com/profiler/ Profiler] works as a proxy service adding microformat profiles to documents that appear to contain microformats.&lt;br /&gt;
&lt;br /&gt;
=== RFC2629.xslt ===&lt;br /&gt;
* [http://greenbytes.de/tech/webdav/rfc2629.xslt rfc2629.xslt] now attempts to generate [[hcard|hCard]] information ([http://ietf.org/rfc/rfc2629 RFC2629] in an XML format for authoring RFCs and Internet Drafts, see [http://greenbytes.de/tech/webdav/rfc2629xslt/rfc2629xslt.html example document])&lt;br /&gt;
&lt;br /&gt;
=== Salesforce ===&lt;br /&gt;
* [http://salesforce.com Salesforce] [http://flickr.com/photos/kingsleyj/175689109/ supports] [[hcard|hCard]]&lt;br /&gt;
** by [http://flickr.com/people/kingsleyj/ Kingsley Joseph]&lt;br /&gt;
==== Spanning Salesforce ====&lt;br /&gt;
* [http://spanningsalesforce.com/ Spanning Salesforce] supports [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
=== Sivitools ===&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Sivitols is a Java library for microformats. Currently only the xFolk RC1 standard is implemented, but additional microformat support is planned. This library is being written and maintained for a tag sharing project undertaken by Video Vertigo.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
[http://blog.blip.tv/blog/microformats/ Annoucement], [http://pokkari.com/microformat/javadoc/ Docs]&lt;br /&gt;
&lt;br /&gt;
=== SPRACI ===&lt;br /&gt;
* [http://www.spraci.com SPRACI] - nightlife/events - [[hcalendar|hCalendar]] published in events listings, aggregator can read hCalendar&lt;br /&gt;
&lt;br /&gt;
=== stuckUnstuck ===&lt;br /&gt;
* [http://stuckunstuck.com stuckUnstuck] supports [[hcard|hCard]] and [[hatom|hatom]].&lt;br /&gt;
&lt;br /&gt;
=== Sunnyvale House Concerts ===&lt;br /&gt;
* [http://concerts.shrub.ca/shows Sunnyvale House Concerts] supports [[hcard|hCard]] and [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
=== Technorati Contacts Feed Service ===&lt;br /&gt;
* [http://feeds.technorati.com/contacts/ Technorati Contacts Feed Service] is a deployment of [[implementations#X2V|X2V]] to convert [[hcard|hCards]] to vCard (.vcf) format.&lt;br /&gt;
** by [[implementors#Technorati|Technorati]]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Events Feed Service ===&lt;br /&gt;
* [http://feeds.technorati.com/events/ Technorati Events Feed Service] is a deployment of [[implementations#X2V|X2V]] to convert [[hcalendar|hCalendar]] events to iCalendar (.ics) format.&lt;br /&gt;
** by [[implementors#Technorati|Technorati]]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Microformats Search ===&lt;br /&gt;
* Technorati [http://kitchen.technorati.com/search/ Microformats Search]. Search for contacts ([[hcard|hCard]]), events ([[hcalendar|hCalendar]]), or reviews ([[hreview|hReview]]) published on blogs and other web sites.&lt;br /&gt;
** by [[implementors#Ryan_King|Ryan King]]&lt;br /&gt;
** first version (2006 May) by [[implementors#Tantek_Çelik|Tantek Çelik]], [[implementors#Ryan_King|Ryan King]], [[implementors#Kevin_Marks|Kevin Marks]], [[implementors#Josh_Smith|Josh Smith]]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Search ===&lt;br /&gt;
* [http://technorati.com/ Technorati] [http://technorati.com/search Search] supports and handles both [[vote-links]] and [[rel-nofollow]] for indicating whether a link should have any/positive/negative weighting towards the destination.&lt;br /&gt;
** by [http://technorati.com/about/staff.html Technorati Staff]&lt;br /&gt;
&lt;br /&gt;
=== Technorati Tags ===&lt;br /&gt;
* [http://technorati.com/tags/ Technorati Tags] pages aggregate blog posts tagged with the [[rel-tag]] open tagging standard, in addition to recent tagged photos and links.&lt;br /&gt;
&lt;br /&gt;
=== Textpattern ===&lt;br /&gt;
==== Microformats Plugin ====&lt;br /&gt;
* [http://placenamehere.com/TXP/pnh_mf/ Textpattern Microformats Plugin] supports authoring [[hcard|hCard]], [[hcalendar|hCalendar]], [[hreview|hReview]], [http://gmpg.org/xfn XFN], [[rel-tag]], [[rel-license]] in the [http://www.textpattern.com/ Textpattern] CMS/blogging tool &lt;br /&gt;
** by [http://placenamehere.com/ Chris Casciano]&lt;br /&gt;
&lt;br /&gt;
=== Tomota ===&lt;br /&gt;
* The [http://www.tomota.de Tomota] allows import, export and conversion from and to hcards.&lt;br /&gt;
** by [[implementors#RalfEngels|Ralf Engels]]&lt;br /&gt;
&lt;br /&gt;
=== TYPO3 ===&lt;br /&gt;
* [http://www.typo3.com TYPO3], [http://typo3.org TYPO3 Developer Ressource]&lt;br /&gt;
==== tt_address extension====&lt;br /&gt;
* [http://typo3.org/extensions/repository/view/tt_address/2.0.1/ tt_address] - hCard support with the tt_address extension version 2.0.0&lt;br /&gt;
** by [[implementors#Ingo_Renner|Ingo Renner]]&lt;br /&gt;
==== TIMTAB extension====&lt;br /&gt;
* [http://typo3.org/extensions/repository/view/timtab/0.5.11/ TIMTAB] - XFN support for blogrolls with the TIMTAB weblog extension for TYPO3&lt;br /&gt;
** by [[implementors#Ingo_Renner|Ingo Renner]]&lt;br /&gt;
&lt;br /&gt;
=== Twitter ===&lt;br /&gt;
&lt;br /&gt;
* [http://twitter.com Twitter] [http://twitter.com/al3x/statuses/53982402 supports] [[hatom|hAtom]], [[hcard|hCard]], and [http://gmpg.org/xfn XFN].&lt;br /&gt;
&lt;br /&gt;
=== ufXtract ===&lt;br /&gt;
* [http://lab.backnetwork.com/ufXtract/ ufXtract] implements [[parsing]] of microformats such as [[hCard]] and [[XFN]].&lt;br /&gt;
** by [[implementors#Glenn_Jones|Glenn Jones]] of [[implementors#Madgex|Madgex]].  See [http://www.glennjones.net/Post/831/ufXtractmicroformatsparser.htm blog post announcement].&lt;br /&gt;
&lt;br /&gt;
=== Upcoming.org ===&lt;br /&gt;
* [http://upcoming.org Upcoming.org] - hCalendar support in events listings and individual events.&lt;br /&gt;
** by [[implementors#Andy_Baio|Andy Baio]], [[implementors#Leonard_Lin|Leonard Lin]], [[implementors#Gordon_Luk|Gordon Luk]]&lt;br /&gt;
&lt;br /&gt;
=== vCardExplorer ===&lt;br /&gt;
* [http://vcardexplorer.corefault.de/ vCardExplorer for MacOSX] - browses local vcards and converts hcards from URLs.&lt;br /&gt;
&lt;br /&gt;
=== WindowsLiveWriter ===&lt;br /&gt;
* [[implementors#Microsoft|Microsoft's]] WindowsLiveWriter (WLW) [http://gallery.live.com/liveItemDetail.aspx?li=9751e563-1408-4fc3-8028-bd4351edb1fb&amp;amp;l=8 event plugin] supports [[hcalendar|hCalendar]].&lt;br /&gt;
&lt;br /&gt;
=== WordPress ===&lt;br /&gt;
* [http://wordpress.org WordPress] supports [http://gmpg.org/xfn/ XFN] blogrolls through a very nice built-in user interface. (cf. [[xfn-implementations]])&lt;br /&gt;
** by [[implementors#Matt_Mullenweg|Matt Mullenweg]] and friends&lt;br /&gt;
&lt;br /&gt;
==== WP Microformatted Blogroll ====&lt;br /&gt;
* The [http://factorycity.net/projects/wp-microformatted-blogroll/ WP Microformatted Blogroll 0.2] Wordpress plugin by [[implementors#Chris_Messina|Chris Messina]] supports [[hcard|hCard]] and [http://gmpg.org/xfn/ XFN].&lt;br /&gt;
&lt;br /&gt;
==== hCard About Box ====&lt;br /&gt;
* The [http://redmonk.net/projects/widget_hcard_about/ hCard About Box] widget by [[implementors#Steve_Ivy|Steve Ivy]] supports [[hcard|hCard]].&lt;br /&gt;
&lt;br /&gt;
====GigPress====&lt;br /&gt;
* [http://gigpress.com/ GigPress] is a WordPress plugin that manages and displays concerts and tours for bands or other touring acts, and outputs them with [[hcalendar|hCalendar]] markup.  By [[implementors#Derek_Hogue|Derek Hogue]].&lt;br /&gt;
&lt;br /&gt;
==== VoteBack Plugin ====&lt;br /&gt;
* The [http://redmonk.net/archives/2006/12/21/voteback/ VoteBack plugin for Wordpress] by [[implementors#Steve_Ivy|Steve Ivy]] checks incoming pingbacks and trackbacks for [[votelinks]].&lt;br /&gt;
&lt;br /&gt;
==== Save Microformats Plugin ====&lt;br /&gt;
* [http://notizblog.org/projects/save-microformats/ Save Microformats plugin for Wordpress] - a plugin to save posted Microformats using technorati feeds.&lt;br /&gt;
&lt;br /&gt;
==== WP Themes ====&lt;br /&gt;
* [http://www.plaintxt.org/themes/sandbox/ Sandbox] is a theme for Wordpress that uses [[hatom|hAtom]]. &lt;br /&gt;
** The theme is also available to accounts on the &amp;lt;username&amp;gt;.wordpress.com hosting service.&lt;br /&gt;
* [http://www.jesuscarrera.info/proyectos/startpoint/ StartPoint] A theme for theme developers. A good start point to make your own templates. It supports multiple languages, widgets, contains semantic hAtom microformats, and more.&lt;br /&gt;
* [http://www.whump.com/dropbox/Strangelove.zip Strangelove] is a modification of the default Wordpress theme (Kubrick) with [[hatom|hAtom]] support. &lt;br /&gt;
** It points to the hAtom2Atom proxy service as the link for syndication feeds.&lt;br /&gt;
&lt;br /&gt;
=== X2V ===&lt;br /&gt;
* Brian Suda has created several XSLT files to extract microformats from HTML. From that the [http://suda.co.uk/projects/X2V/ X2V] webservice/favelet emerged. The XSLT and favelet extracts [[hcard|hCard]] and to produces .vcf (vCard) files and [[hcalendar|hCalendar]] to produce .ics (iCal) files. Also in the labs is a universal XMDP validator and a site-wide search spider that recognizes 'no-follow', 'license' and other microformats so they can be used in a more semantic way when displaying search results.&lt;br /&gt;
** by [[implementors#Brian_Suda|Brian Suda]]&lt;br /&gt;
&lt;br /&gt;
=== XWiki ===&lt;br /&gt;
* [http://xwiki.org XWiki] (as of [http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWiki10Beta5 version 10Beta5]) publishes the user profiles using [[hcard | hCard]], the events in the calendar application using [[hCalendar | hCalendar]], the blog entries using [[hAtom | hAtom]] and homepage links using [[rel-home | rel-home]].&lt;br /&gt;
&lt;br /&gt;
=== Yahoo Creative Commons Search ===&lt;br /&gt;
* [http://search.yahoo.com/cc/ Yahoo Creative Commons Search] - supports [[rel-license]] specifically to search for Creative Commons licensed content.&lt;br /&gt;
&lt;br /&gt;
=== Yahoo Local ===&lt;br /&gt;
* [http://local.yahoo.com Yahoo local] supports [[hcard|hCard]], [[hcalendar|hCalendar]], and [[hreview|hReview]].&lt;br /&gt;
&lt;br /&gt;
=== Yahoo Tech ===&lt;br /&gt;
* [http://tech.yahoo.com Yahoo! Tech] supports [[hreview|hReview]].&lt;br /&gt;
&lt;br /&gt;
=== Yahoo UK Movies ===&lt;br /&gt;
* [http://movies.yahoo.co.uk Yahoo! UK Movies] supports [[hreview|hReview]].&lt;br /&gt;
** by Mark Norman Francis&lt;br /&gt;
&lt;br /&gt;
=== Yedda ===&lt;br /&gt;
* [http://yedda.com Yedda] supports [[hcard|hCard]] for exposing users information, [[hatom|hAtom]] for exposing data that is already exposed via feeds (like list of questions and answers) and [[rel-tag|rel-tag]] for every tag used to tag questions and users.&lt;br /&gt;
&lt;br /&gt;
== Validators ==&lt;br /&gt;
This is an alphabetical listing of tools that have been created to validate implementations, and which formats they support.&lt;br /&gt;
&lt;br /&gt;
Please add to this section if you have a validator/checker, no matter which or how many microformats you test for.&lt;br /&gt;
&lt;br /&gt;
=== rel-lint ===&lt;br /&gt;
* [http://tools.microformatic.com/help/xhtml/rel-lint/ rel-lint] supports validation of [[rel-tag|rel-tag]] and [[xfn|XFN]] &lt;br /&gt;
* by [[implementors#Drew_McLellan|Drew McLellan]]&lt;br /&gt;
&lt;br /&gt;
== Companies / Developers / Organizations ==&lt;br /&gt;
&lt;br /&gt;
See [[implementors]]&lt;br /&gt;
&lt;br /&gt;
The following have been moved from the sections above due to problems, stated below:&lt;br /&gt;
&lt;br /&gt;
=== Web Essentials ===&lt;br /&gt;
* [http://we05.com/ Web Essentials] - supports [[hcard|hCard]] and [[hcalendar|hCalendar]], e.g. in their [http://we05.com/presenters.cfm list of presenters] and [http://we05.com/program.cfm program schedule].&lt;br /&gt;
** John McKerrell tried to look at the site on 24th October 2006 but could not access the site, server didn't seem to be up.&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
Some notes on initial thoughts around [[implementation-guidelines|Guidelines and Strategies for Implementing Microformats]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=xfn-clarifications&amp;diff=23878</id>
		<title>xfn-clarifications</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=xfn-clarifications&amp;diff=23878"/>
		<updated>2007-12-16T04:29:42Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: fixed &amp;quot;there&amp;quot; typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; XFN Clarifications &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[xfn|XFN]] is the XHTML Friends Network and is more thoroughly documented on the [http://gmpg.org/xfn/ XFN home page].&lt;br /&gt;
&lt;br /&gt;
This document is for capturing clarifications that should eventually be rolled into the XFN specification.&lt;br /&gt;
&lt;br /&gt;
; Editor/Author: [http://tantek.com Tantek Çelik]&lt;br /&gt;
&lt;br /&gt;
== Clarifications ==&lt;br /&gt;
&lt;br /&gt;
=== me nofollow interaction ===&lt;br /&gt;
&lt;br /&gt;
If a link has the rel value &amp;quot;nofollow&amp;quot;, then a &amp;quot;me&amp;quot; rel value DOES NOT indicate an identity relationship.&lt;br /&gt;
&lt;br /&gt;
That is, only rel attributes ''with'' the value &amp;quot;me&amp;quot;, and ''WITHOUT'' the value &amp;quot;nofollow&amp;quot; indicate an identity relationship assertion.&lt;br /&gt;
&lt;br /&gt;
=== mapping community site &amp;quot;friends&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
On community sites, &amp;quot;friends&amp;quot; aren't necessary as much of a friend as in &amp;quot;real life&amp;quot;.  Social networking sites have watered down the term &amp;quot;friend&amp;quot; quite a bit, especially when you are only given a binary choice, are you my friend yes or no.  It is a known phenomenon that users collect such &amp;quot;friendsters&amp;quot; far more than their &amp;quot;real&amp;quot; set of friends.  See:&lt;br /&gt;
* danah boyd's paper: &amp;quot;[http://www.firstmonday.org/issues/issue11_12/boyd/ Friends, friendsters, and top 8: Writing community into being on social network sites]&amp;quot; for more on this behavior.&lt;br /&gt;
* [http://www.telegraph.co.uk/earth/main.jhtml?xml=/earth/2007/09/10/scisocial110.xml 2007-09-10 Facebook study reveals users 'trophy friends'] by Roger Highfield and Nic Fleming&lt;br /&gt;
* [http://www.computing.co.uk/vnunet/news/2198444/online-friends-aren-close-real 2007-09-11 Online friends 'not as close as real ones'] by Matt Chapman, vnunet.com&lt;br /&gt;
&lt;br /&gt;
==== are you my friend yes or no ====&lt;br /&gt;
&lt;br /&gt;
For community sites which provide only one level of friendship that they call &amp;quot;friend&amp;quot;, use &amp;lt;code&amp;gt;rel=&amp;quot;acquaintance&amp;quot;&amp;lt;/code&amp;gt; as that is much more accurate.&lt;br /&gt;
&lt;br /&gt;
==== friend or contact ====&lt;br /&gt;
&lt;br /&gt;
Some sites (like [http://flickr.com/ Flickr]) provide two levels of friendship, &amp;quot;contact&amp;quot;, and &amp;quot;friend&amp;quot;.  In such cases, use &amp;lt;code&amp;gt;rel=&amp;quot;contact&amp;quot;&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;rel=&amp;quot;acquaintance&amp;quot;&amp;lt;/code&amp;gt; respectively for the same reasons as above.&lt;br /&gt;
&lt;br /&gt;
==== friends acquaintances and contacts ====&lt;br /&gt;
&lt;br /&gt;
Only if the site permits/encourages distinction of acquaintances vs. friends then should the XFN &amp;lt;code&amp;gt;rel=&amp;quot;friend&amp;quot;&amp;lt;/code&amp;gt; value be used. Ironically, [http://myspace.com MySpace] provides an implicit opportunity for this with their &amp;quot;top 8&amp;quot; distinction which could be mapped to &amp;lt;code&amp;gt;rel=&amp;quot;friend&amp;quot;&amp;lt;/code&amp;gt;, as it is ''very'' likely that your top 8 on MySpace are your friends in real life.&lt;br /&gt;
&lt;br /&gt;
==== questions and discussions ====&lt;br /&gt;
&lt;br /&gt;
===== is contact a better lowest common denominator =====&lt;br /&gt;
Q: ''Is rel=&amp;quot;contact&amp;quot; a better lowest commond denominator than rel=&amp;quot;acquaintance&amp;quot; for services that only offer just one level of friending (AKA &amp;quot;are you my friend yes or no&amp;quot;)?''&lt;br /&gt;
&lt;br /&gt;
A: The rel=&amp;quot;contact&amp;quot; XFN relation is the lowest level of the &amp;quot;friendship&amp;quot; axis in XFN, but the semantic both as expressed by their user interfaces, and as implied by users and their usage patterns of social network services is closer to 'acquaintance' than 'contact'.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[xfn]]&lt;br /&gt;
* [[xfn-faq]]&lt;br /&gt;
* [[xfn-implementations]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=to-do&amp;diff=24227</id>
		<title>to-do</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=to-do&amp;diff=24227"/>
		<updated>2007-12-16T04:06:41Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: updated chris messina's todo list&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOC-right}}&lt;br /&gt;
&amp;lt;h1&amp;gt;To Do&amp;lt;/h1&amp;gt;&lt;br /&gt;
&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 recently 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;
* Add [http://verselogic.net/projects/wordpress/wordpress-openid-plugin/ OpenID] to Microformats Blog.&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;
* If it's not being done already, the microformats wiki should really start using Akismet or some other form of automated spam fighting solutions. The admins are wasting far too much time reverting abuse compared with the amount of time creating or pruning good content.&lt;br /&gt;
** I could not find an Akismet extension as of today, but Recaptcha is a useful screen for spambots, for MediaWiki (1.7+). [http://jeffmcneill.com/2007/10/04/blocking-spambots-with-akismet-and-recaptcha/ See instructions here]. Note that this can be configured to display a &amp;quot;captcha&amp;quot; screen on account creation, which would likely stop the current attacks on microformats.org. --[[User:JeffMcNeill|jeffmcneill]] 00:44, 5 Oct 2007 (PDT)&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;
* 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;
=== wiki gardening ===&lt;br /&gt;
* For english pages only: Find British spellings of words and replace them with the US spellings per [[en-US]]. &lt;br /&gt;
** &amp;lt;strong&amp;gt;Note:&amp;lt;/strong&amp;gt; Take care to preserve the canonical spelling of proper nouns  (whether en-UK or en-US), and don't change such instances to en-US spelling unless en-US spelling &amp;lt;em&amp;gt;is&amp;lt;/em&amp;gt; the canonical spelling for the proper noun.&lt;br /&gt;
** Mark such edits as &amp;quot;minor&amp;quot; with the comment: &amp;lt;nowiki&amp;gt;[[en-US]]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Here is a table of searches for words with British spelling that have crept into english microformats wiki pages in the past along with US spellings: &lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! en-UK !! [[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=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=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;
|}&lt;br /&gt;
&lt;br /&gt;
* Find [[:Special:Lonelypages|orphaned]] pages, and add links to them.&lt;br /&gt;
&lt;br /&gt;
== Admins ==&lt;br /&gt;
This section is for any admins to keep track of current to-do items for admins and/or 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;
=== Website Improvements ===&lt;br /&gt;
* OpenID login, on behalf of a request a while ago from [[User:Chris_Messina]] (especially for comments in WordPress). [[User:Chris_Messina]] 16:50, 31 Aug 2007 (PDT)&lt;br /&gt;
* Pibb integration for the #microformats IRC channel. It is relatively simple to [http://janrain.com/blog/2007/08/08/how-to-embed-pibb/ embed the Pibb chat widget] into a webpage that bridges to the #microformats IRC channel. This would allow for greater access and transparency to the IRC discussions as well as allow people to participate using only their web browser.  [[User:Chris_Messina]] 16:50, 31 Aug 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
=== Wiki improvements ===&lt;br /&gt;
* Upgrade the wiki!&lt;br /&gt;
** Listed first since most of the other items on this list (such as OpenID integration) target later versions or will at least be more easily implementable in the case of new development.&lt;br /&gt;
** Since the server hosting this wiki is already running PHP 5, advise upgrading to the highest released version (1.11 at the time of this writing).&lt;br /&gt;
** As a consequence of upgrading, any existing core hacks will have to be removed.  Progressing further, advise not hacking the core as it hinders future upgrades (for reference, Wikipedia runs the HEAD revision from SVN, updated every few days).&lt;br /&gt;
** There are many improvements to the core with each release. Since 1.4 there have been significant improvements to the templating engine including optional parameters, parameter default values, proper parsing of nested template calls, conditional blocks (such as &amp;lt;tt&amp;gt;&amp;amp;lt;noincldue&amp;amp;gt;&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;&amp;amp;lt;includeonly&amp;amp;gt;&amp;lt;/tt&amp;gt;, and &amp;lt;tt&amp;gt;&amp;amp;lt;onlyinclude&amp;amp;gt;&amp;lt;/tt&amp;gt;) --[[User:JimboJW|JimboJW]] 13:38, 25 Sep 2007 (PDT)&lt;br /&gt;
* &amp;quot;Standard&amp;quot; Extensions&lt;br /&gt;
** There are a number of &amp;quot;standard&amp;quot; extensions that are applicable to most documentation wikis.  See Wikipedia's [http://en.wikipedia.org/wiki/Special:Version Version Page] for a list of currently installed extensions on the English Wikipedia.&lt;br /&gt;
** I'd personally advise getting [http://www.mediawiki.org/wiki/Extension:Cite Cite], [http://meta.wikimedia.org/wiki/ParserFunctions ParserFunctions] and [http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi SyntaxHighlight]. --[[User:JimboJW|JimboJW]] 13:38, 25 Sep 2007 (PDT)&lt;br /&gt;
* OpenID login, on behalf of a request a while ago from [[User:DanC]]. [[User:Tantek|Tantek]] 20:50, 20 Jul 2007 (PDT)&lt;br /&gt;
* Install creation template extension(s)(see: http://meta.wikimedia.org/wiki/Inputbox or http://www.mediawiki.org/wiki/Extension:CreateBox or http://www.mediawiki.org/wiki/Extension:CreateArticle) [[User:RobManson]] 14:00, 20 Jul 2007 (AEST)&lt;br /&gt;
* Encourage new users to use the preview feature to prevent a deluge of edit notifications from interrupting IRC discussions. [[User:SignpostMarv|SignpostMarv]] 09:28, 12 Aug 2007 (PDT)&lt;br /&gt;
* Some kind of [http://en.wikipedia.org/wiki/Spam_in_blogs anti-spam] (captcha? recaptcha? reverse turing tests? [http://unknowngenius.com/blog/wordpress/spam-karma/ Spam Karma?]) ~ [[User:WilleRaab|WilleRaab]] 09:43, 12 Aug 2007 (PDT)&lt;br /&gt;
* Add the necessary styling per [http://www.w3.org/2001/06/manual/#RFC W3C Manual of Style guidelines for RFC&amp;amp;#32;2119] (perhaps in a &amp;lt;code&amp;gt;w3cstyleguide.css&amp;lt;/code&amp;gt; file) to our MediaWiki install's CSS, in order to enable removal of in-line styles from our [[rfc-2119#Templates|RFC 2119 Templates]]:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
.RFC2119 {&lt;br /&gt;
  text-transform: lowercase;&lt;br /&gt;
  font-style: italic;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Add an address element, with a &amp;lt;code&amp;gt;class=author&amp;lt;/code&amp;gt; hCard, to the footer of every page, to facilitate the use of hAtom and to &amp;quot;include&amp;quot; in other microformats, based on:&lt;br /&gt;
:&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;address class=&amp;quot;author vcard&amp;quot;&amp;gt;The &amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Microformat community&amp;lt;/span&amp;gt;&amp;lt;/address&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*add a class, &amp;lt;code&amp;gt;noprint&amp;lt;/code&amp;gt; to the site's CSS, so that sections (such as &amp;quot;related pages&amp;quot; footers) can be made non- printing. &lt;br /&gt;
&lt;br /&gt;
===Deletions===&lt;br /&gt;
*Remove [http://microformats.org/wiki?title=Special:Whatlinkshere&amp;amp;target=delete pages awaiting deletion]&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]] 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;
** remove noise from [[Main_Page|the wiki home page]] by simplifying/shortening it&lt;br /&gt;
*** move exploratory discussions to a separate page (think about what to name it)&lt;br /&gt;
*** move exploratory discussions which are failing to follow the process to a separate page from that&lt;br /&gt;
&lt;br /&gt;
=== help publishers ===&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;
* give feedback to Erin, iterate, print more to have on hand, fold, distribute.&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;
&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|hCard spec]] '''next-actions''': &lt;br /&gt;
** continue updated 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]].&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-issues]] and [[hcard-feedback]].  '''next-actions''': resolve all issues and incorporate all feedback.&lt;br /&gt;
* [[hcard-brainstorming]] '''next-actions''': determine which brainstorms proposals to resolve in April, and which later&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;
* 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;
* 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;
* 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 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;
** add explicit explanation and examples for LOCATION [[hcard|hCards]] and ATTENDEE [[hcard|hCards]], perhaps on a separate [[hcalendar-examples]] page.&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;
* need to resolve all outstanding [[hcalendar-issues]] to-do items.&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;
* update rel-me examples on gmpg specifically 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;
* 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;
&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 reoganized 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;
* 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 accordingly&lt;br /&gt;
* Write test cases accordingly&lt;br /&gt;
* Update [[hcard-parsing]] accordingly&lt;br /&gt;
* Draft [[hcalendar-parsing]] accordingly&lt;br /&gt;
* Write [[compound-parsing]] by abstracting commonalities between [[hcard-parsing]] and [[hcalendar-parsing]].&lt;br /&gt;
* Draft *-parsing for all reasonably well adopted microformats: [[hcalendar-parsing]], [[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;
'''Next-action''': work with Ryan, Ernie, Erin, and others who have made concrete helpful suggestions for reorganizing the information architecture / content-order / layout of specs for greater approachability/readability by a broader audience, to design an interative update to spec organizations, in particular, the introduction/boilerplate/headers.  See below notes on hResume experiment in progress.&lt;br /&gt;
&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. [[hreview|hReview]] has some similar improvements, but different.  We need to:&lt;br /&gt;
# Figure out if the new intro/headers structure in [[hresume|hResume]] and/or [[hreview|hReview]] is an improvement, and if it could be better.  Perhaps figure out the requirements for an intro/header section&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;
# 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;
&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;
&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;
* possibly move dead proposals off of homepage?&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;
== 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;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;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.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;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.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&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;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=social-network-portability&amp;diff=23608</id>
		<title>social-network-portability</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=social-network-portability&amp;diff=23608"/>
		<updated>2007-12-02T00:10:25Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added implementation of hcard for ALL PEOPLE and ORG references&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Social Network Portability &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Social network portability is one of several [[user-interface]] ideas and suggestions for working with microformats in the area of [[data-portability]].&lt;br /&gt;
&lt;br /&gt;
== The Problem ==&lt;br /&gt;
Why is it that every single social network community site makes you:&lt;br /&gt;
* re-enter all your [[hcard-supporting-user-profiles|personal profile info]] (name, email, birthday, URL etc.)?&lt;br /&gt;
* re-add all your [[hcard-xfn-supporting-friends-lists|friends]]?&lt;br /&gt;
&lt;br /&gt;
In addition, why do you have to:&lt;br /&gt;
* re-turn off notifications?&lt;br /&gt;
* re-specify privacy preferences?&lt;br /&gt;
* re-[[block]] [http://headrush.typepad.com/creating_passionate_users/2006/04/angrynegative_p.html negative people]?&lt;br /&gt;
&lt;br /&gt;
AKA &amp;quot;social network fatigue problem&amp;quot; and &amp;quot;social network update/maintenance problem&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== The Goals ==&lt;br /&gt;
When you join a new site, you should be able to ''import'' or preferably ''subscribe'' to&lt;br /&gt;
* your profile information&lt;br /&gt;
* your social network&lt;br /&gt;
from any existing profile of yours. &lt;br /&gt;
&lt;br /&gt;
In addition it would be nice if preferences around:&lt;br /&gt;
* notifications&lt;br /&gt;
* [[privacy]]&lt;br /&gt;
also transferred between profiles.&lt;br /&gt;
&lt;br /&gt;
AKA a social internetwork, a network of social networks.&lt;br /&gt;
&lt;br /&gt;
== Design Patterns and Recipes ==&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;How To&amp;quot; for social network profile sites that want to solve the above problems and achieve the above goals.&lt;br /&gt;
&lt;br /&gt;
# Publish microformats in your user profiles:&lt;br /&gt;
## implement [[hcard|hCard]] on user profile pages, including [[xfn]] rel=&amp;quot;me&amp;quot; on hyperlinks to users' blogs or home pages that they specify.  See [[hcard-supporting-profiles]] for sites that have already done this.&lt;br /&gt;
## implement [[hcard|hCard]]+[[xfn|XFN]] on the list of friends on your user profile pages. Use [[xfn]] rel=&amp;quot;me&amp;quot; to link to friends list pages and friends list pagination links too. See [[hcard-xfn-supporting-friends-lists]] for sites that already do this. (e.g. [[http://twitter.com/ Twitter]]).&lt;br /&gt;
## implement [[hcard|hCard]] wherever a user's name is mentioned in lists, in comments, in messages or wherever else it would help to identity that a &amp;quot;person&amp;quot; or &amp;quot;organization&amp;quot; is being referred to. &lt;br /&gt;
# Subscribe to microformats for your user profiles:&lt;br /&gt;
## when signing up a new user:&lt;br /&gt;
### let a user fill out and &amp;lt;em title=&amp;quot;Auto-sync is more than just one-time import, check it and sync-up once a day.&amp;quot;&amp;gt;&amp;quot;auto-sync&amp;quot;&amp;lt;/em&amp;gt; from one of their existing [[hcard-supporting-profiles]], their name, their icon etc.  [http://microformats.org/blog/2007/06/21/microformatsorg-turns-2/ Satisfaction Inc already supports this] ([http://staging.getsatisfaction.com/people/new sign up page]).&lt;br /&gt;
### let a user fill out and &amp;lt;em title=&amp;quot;Auto-sync is more than just one-time import, check it and sync-up once a day.&amp;quot;&amp;gt;&amp;quot;auto-sync&amp;quot;&amp;lt;/em&amp;gt; their list of friends from one of their existing [[hcard-xfn-supporting-friends-lists|hCard+XFN supporting friends lists]]. [http://microformats.org/blog/2007/06/21/microformatsorg-turns-2/ Dopplr.com already supports this] ([http://www.flickr.com/photo_zoom.gne?id=576635008&amp;amp;size=o screenshot]).&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== Groups ===&lt;br /&gt;
* [http://ma.gnolia.com/groups/PSN Ma.gnolia Portable Social Networks group] for aggregated bookmarks around the subject and join the group to share links.&lt;br /&gt;
* [http://upcoming.yahoo.com/group/3601/ Upcoming Social Network Portability group] for events to discuss and implement social network portability.&lt;br /&gt;
=== Open Source ===&lt;br /&gt;
* [[hKit]] - web service and open source PHP for parsing/importing/subscribing to [[hcard-supporting-profiles|hCard open user profiles]].&lt;br /&gt;
* &amp;quot;[http://opensocialgraph.plaxo.com/ Online Identity Consolidator]&amp;quot; rel=&amp;quot;me&amp;quot; web parser/crawler web service and open source Python.&lt;br /&gt;
* &amp;quot;[http://django-psn.googlecode.com/svn/trunk/readme.html Django-PSN (portable social networks)]&amp;quot; open source for a user interface to create links on a social network profile to &amp;quot;other profiles&amp;quot; marked up with rel=&amp;quot;me&amp;quot; naturally.  The code can be seen in action on the [http://pownce.com Pownce] website, e.g. on [http://pownce.com/t/ a Pownce profile page that links to other profiles of the same user]. This is a great complement to the above Plaxo Online Identity Consolidator. What Django-PSN publishes, Plaxo Online Identity Consolidator parses.&lt;br /&gt;
* [http://code.google.com/p/identity-matcher/ identity-matcher] - Rails plugin to match identities and social network information from sites such as GMail, Twitter, Flickr, Facebook and any site supporting appropriate microformats. This code was extracted and contributed from Dopplr.&lt;br /&gt;
* [http://redmonk.net/projects/portable-social-network-lib/ Portable Social Network Lib] is a Ruby library for consuming/providing Portable Social Network services in social web apps, written by Steve Ivy. ([http://redmonk.net/archives/2007/11/07/if-you-love-your-users-set-them-free-portable-social-networks/ More])&lt;br /&gt;
&lt;br /&gt;
=== User Interfaces ===&lt;br /&gt;
* &amp;quot;[http://gerardramos.com/mf/ Social Network Portability with Microformats]&amp;quot; - a user interface that lets you check how portable your social network is across various sites.&lt;br /&gt;
&lt;br /&gt;
== Social Network Portability FAQ ==&lt;br /&gt;
See [[social-network-portability-faq]].&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
*[[events/2007-07-28-portable-social-networks-meetup|2007-07-28 portable social networks initial meeting]] between Daniel Burka, [[User:Tantek|Tantek Çelik]], Eran Globen, Brian Oberkirch at Ritual Coffee Roasters, San Francisco, CA. Discussed portable social networks, simplified and crystalized problem statement (with progressive problems to solve), goals, design patterns, recipes. Created [[social-network-portability]] page.&lt;br /&gt;
* [[events/2007-08-19-social-network-portability-today|2007-08-19 BarCampBlock session on social network portability TODAY]] at Princeton Review offices, High Street, Palo Alto, CA. Reviewed problem statement, how sites can use the [[hcard|hCard]] and [[xfn|XFN]] microformats *today* to become a node on the &amp;quot;open social web&amp;quot; (phrase introduced).&lt;br /&gt;
* [[events/2007-08-28-social-network-portability-today|2007-08-28 Social Network Portability Today]] lunchtime meetup&lt;br /&gt;
* [[events/2007-09-05-dconstruct-microformats-workshop|2007-09-05 d.Construct workshop on microformats]] which covered both [[data-portability]] and [[social-network-portability]].&lt;br /&gt;
* [[events/2007-09-08-social-network-portability|2007-09-08 BarCampBrighton session on social network portability]] at Madgex offices, North Street, Brighton, England.&lt;br /&gt;
* [[events/2007-09-25-social-network-portability|2007-09-25 Portable Social Network Micro Meetup]] at Citizen Space, San Francisco, CA, USA.&lt;br /&gt;
*[[events/2007-09-28-portable-social-networks-meetup-amsterdam|2007-09-28 Portable Social Network Panel]] at PICNIC in Amsterdam, Netherlands&lt;br /&gt;
* &amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2007-10-04&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-10-04-fundamentos-web-social-network-portability|Fundamentos Web: Social Network Portability]]&amp;lt;/span&amp;gt; by Tantek Çelik &amp;amp;mdash; &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Gij&amp;amp;oacute;n&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;Spain&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
See the microformats [[events]] page for upcoming events related to social network portability.&lt;br /&gt;
&lt;br /&gt;
== Articles and blog posts ==&lt;br /&gt;
Note: if you know of or can find earlier mentions on the web of the phrases &amp;quot;portable social network&amp;quot; or &amp;quot;social network portability&amp;quot;, please add the earliest reference elsewhere on the web to this chronology. [[User:Tantek|Tantek]] 08:25, 22 Aug 2007 (PDT).&lt;br /&gt;
&lt;br /&gt;
* 2006-11-15 Jon Hicks: [http://www.flickr.com/photos/hicksdesign/298271647/ The straw that broke this camels back]: &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Thats the last social service that involves me adding all my friends in all over again. Life is too chuffing short.&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;Please, can someone come up with some way of avoiding this repetition of 'buddies'?!&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* &amp;lt;strong&amp;gt;2006-11-15&amp;lt;/strong&amp;gt; [http://twitter.com/drewm/statuses/68199 Drew McLellan on Twitter]: (Perhaps the earliest mention of the concept of social network portability.) &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Thinking that we really need to join the dots with XFN and make social networks portable.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* &amp;lt;strong&amp;gt;2006-11-15&amp;lt;/strong&amp;gt; [http://twitter.com/adactio/statuses/68412 Jeremy Keith on Twitter]: (first known reference to &amp;quot;&amp;lt;strong&amp;gt;portable social networks&amp;lt;/strong&amp;gt;&amp;quot;) &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt; Agreeing with Drew about using XFN to create portable social networks. If we don't, Jon is going to go postal.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt; The mention of Jon is likely a reference to the [http://www.flickr.com/photos/hicksdesign/298271647/ above-mentioned Flickr photo].&lt;br /&gt;
* 2006-11-19 Phil Gyford: [http://www.gyford.com/phil/writing/2006/11/19/your_single_soci.php Your single social network] &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;I really, really want a single service where I can say “these people are my friends” and then when I sign up to any new website I can sync it with my previously-defined social network.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* 2006-11-21 Jeremy Keith: [http://adactio.com/journal/1209/ Twittering]: &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Here’s what I want: when I go to the latest social networking fadsite, I want it to ask for my URL. Then it can go off and fetch my [[hcard|hCard]] and [[xfn|XFN]] list. A pre-filled form for my details and a pre-filled list of potential contacts can then be presented to me.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* 2006-11-21 Derek Featherstone: [http://www.boxofchocolates.ca/archives/2006/11/21/solving-problems-with-social-networking Solving problems with social networking]&lt;br /&gt;
* 2006-11-22 Thomas Vander Wal: [http://www.personalinfocloud.com/2006/11/following_frien.html Following Friends Across Walled Gardens] - first mention of &amp;quot;portable social network&amp;quot; but in reference to quoting Jeremy Keith&lt;br /&gt;
* 2006-11-23 Jeremy Keith: [http://adactio.com/journal/1212/ More thoughts on portable social networks] - describes the process of portability&lt;br /&gt;
* 2006-11-23 Glenn Jones: [http://www.glennjones.net/Post/820/Microformatsandportablesocialnetwork.htm Microformats and portable social network] - talks about portable social networks in the backnetwork&lt;br /&gt;
* 2006-11-23 Velvetsarah has [http://www.velvet.id.au/2006/11/23/portable-social-networks/ posted a screenshot and brainstorm] about how a site could handle importing XFN enabled contacts. See [[social-network-portability-interfaces]] for more.&lt;br /&gt;
* &amp;lt;strong&amp;gt;2006-11-24&amp;lt;/strong&amp;gt; [http://microformats.org/wiki?title=user-interface&amp;amp;diff=10524&amp;amp;oldid=10523 &amp;quot;&amp;lt;strong&amp;gt;social network portability&amp;lt;/strong&amp;gt;&amp;quot; phrase and problem statement introduced to microformats wiki] by [[User:Tantek|Tantek Çelik]] &lt;br /&gt;
* 2007-03-11 Robert Gaal: [http://www.53miles.com/archives/making-openid-your-only-online-profile-alpha-dash Making OpenID your only online profile: Alpha Dash] - An abstract attempt to create one dashboard, to be used as a starting point for all social networks. It contains four elements: identity, ownership, presence and contacts (see comments also)&lt;br /&gt;
* 2007-05-16 [http://2007.xtech.org/public/schedule/paper/69 What is your provenance?] by Gavin Bell for Xtech 2007. Also available on [http://video.google.com/videoplay?docid=-8663100900373306094 Google Video]&lt;br /&gt;
* 2007-06-20 Alper Çuğun: [http://fourstarters.com/2007/06/20/the-future-of-everything-is-social-consolidate-and-take-back-your-social-network/ The Future of Everything is Social: Consolidate and take back your social network]&lt;br /&gt;
* 2007-07-17 Kevin Lawver: [http://www.lawver.net/archive/2007/07/17/h12_portable_social_networks_at_mashup_camp.php A Portable Social Network Prototype] - A simple Ruby on Rails app that uses OpenID + XFN to look for users of the site w/ the same homepage as the href value and allows you to add them as contacts.&lt;br /&gt;
*[http://www.plaxo.com/about/releases/release-20070718 2007-07-17 Plaxo Pushes For &amp;quot;Open Social Web&amp;quot;: Endorses and implements key open standards, OpenID and microformats]&lt;br /&gt;
* 2007-07-18 Jeremiah Owyang: [http://twitter.com/jowyang/statuses/156097392 Twittering]: &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;What if we could port all our friends and family from one social network to another. Why do we have to continue to add people = annoying&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* 2007-07-18 Brian Oberkirch: [http://www.brianoberkirch.com/2007/07/18/highrise-microformats-and-portable-social-networks/ Highrise, microformats and portable social networks]&lt;br /&gt;
* 2007-07-24 Thomas Vander Wal: [http://vanderwal.net/random/entrysel.php?blog=1937 Sharing and Following/Listening in the Social Web]&lt;br /&gt;
* See [[events/2007-07-28-portable-social-networks-meetup#blog_posts|blog posts following up]] from the [[events/2007-07-28-portable-social-networks-meetup|2007-07-28-portable social networks meetup]].&lt;br /&gt;
* 2007-08-01 Jeffrey Zeldman: [http://www.zeldman.com/2007/08/01/social-network-portability/ &amp;quot;InterNetwork&amp;quot; regarding social network portability]&lt;br /&gt;
* 2007-08-02 &lt;br /&gt;
** [http://www.brosbeforeblogs.com/2007/08/identity-crisis.html Identity Crisis part 1] &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;We need to put the ownership of how we define relationships online in the hands of the individual, not the services that utilize them.&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;My theory on how this should be accomplished is based on a marriage of OpenID and an open standard for defining relationships such as the [[XFN]] [http://microformats.org/ Microformat]. &amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
** [http://www.brianoberkirch.com/2007/08/02/deeelightful-making-profile-import-a-snap/ Deeelightful: Making Profile Import a Snap] &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Why not make it simple for them to jumpstart a profile by reusing information they already have on the [[hcard|Web? Some forward thinking Web services are marking up user profile data with hCard, a microformat that]] signifies a person, place or organization is being described.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* 2007-08-08 Brian Oberkirch: [http://www.brianoberkirch.com/2007/08/08/building-blocks-for-portable-social-networks/ Building Blocks for Portable Social Networks]&lt;br /&gt;
* 2007-08-15 [http://news.bbc.co.uk/1/hi/technology/6944653.stm Pull down the walled gardens] Internet law professor Michael Geist says the walled gardens of social networks should be pulled down.&lt;br /&gt;
* 2007-08-16 Stephanie Booth: [http://climbtothestars.org/archives/2007/08/16/we-need-structured-portable-social-networks-spsn/ We Need Structured Portable Social Networks (SPSN)] (links to two more posts on the subject, but not certain they're relevant enough for a separate listing; edit as you see fit)&lt;br /&gt;
* 2007-08-17 [http://bradfitz.com/social-graph-problem/ Thoughts on the Social Graph] by Brad Fitzpatrick.&lt;br /&gt;
* 2007-08-25 [http://www.ignitesocialmedia.com/linking-it-all-%e2%80%93-social-network-portability/ Linking It All-Social Network Portability] by Mike Lotz for Ignite Social Media&lt;br /&gt;
* 2007-09-03 [http://themaninblue.com/writing/perspective/2007/09/03/ There are no social networks] by Cameron Adams&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;If you can't see my friends and let my friends be seen, you'll be washed up and hung out to dry.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
* 2007-09-07 [[User:LynX|Carlo v. Loesch]]: [http://about.psyc.eu/Social_network#But.._why_microformats.3F Privacy and the web? Notification and HTTP? Are you looking at the right technologies!?]&lt;br /&gt;
* 2007-11-21 Sitepoint article [http://www.sitepoint.com/article/social-networks-take-friends Portable Social Networks: Take Your Friends with You] &lt;br /&gt;
&lt;br /&gt;
See [http://ma.gnolia.com/groups/PSN ma.gnolia Portable Social Network Group] for aggregated bookmarks around the subject and join the group to share links.&lt;br /&gt;
&lt;br /&gt;
[http://technorati.com/search/microformats.org/wiki/social-network-portability View blog reactions] to this page.&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
* Beware of and avoid [[social-network-anti-patterns]]!&lt;br /&gt;
* See and add to [[social-network-portability-issues]].&lt;br /&gt;
&lt;br /&gt;
== Alternative Approaches ==&lt;br /&gt;
Non-web based:&lt;br /&gt;
* [http://about.psyc.eu psyc] and [http://www.psyced.org psyced], a decentralized multi-protocol chat and event notification system with [http://about.psyc.eu/Social_Network friendship] and [http://about.psyc.eu/Trust trust] modeling.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[social-network-portability-interfaces]]&lt;br /&gt;
* [[social-network-portability-faq]]&lt;br /&gt;
* [[social-network-portability-issues]]&lt;br /&gt;
* [[social-network-anti-patterns]]&lt;br /&gt;
* [[hcard|hCard]]&lt;br /&gt;
* [[xfn]]&lt;br /&gt;
* [[user-interface]]&lt;br /&gt;
* [[data-portability]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=distributed-conversation-formats&amp;diff=31464</id>
		<title>distributed-conversation-formats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=distributed-conversation-formats&amp;diff=31464"/>
		<updated>2007-11-28T04:53:34Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added description of Atom Threading Extensions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Distributed Conversation Formats =&lt;br /&gt;
&lt;br /&gt;
== Examples of Related Formats ==&lt;br /&gt;
===Email/Usenet===&lt;br /&gt;
Email and Usenet both keep track of discussion threads in a non-central manner using headers and references to message IDs. Some common headers and their use are highlighted in [http://www.faqs.org/rfcs/rfc2076.html RFC2076 - Common Internet Message Headers] section 3.6:&lt;br /&gt;
* In-Reply-To - Reference to message which this message is a reply to.&lt;br /&gt;
* References - In e-mail: reference to other related messages, in Usenet News reference to replied-to-articles.&lt;br /&gt;
* See-Also - References to other related articles in Usenet News.&lt;br /&gt;
* Obsoletes - Reference to previous message being corrected and replaced.&lt;br /&gt;
* Supersedes - Commonly used in Usenet News in  similar ways to the &amp;quot;Obsoletes&amp;quot; header described above. In Usenet News, however, Supersedes causes a full deletion of the replaced article in the server, while &amp;quot;Supersedes&amp;quot; and &amp;quot;Obsoletes&amp;quot; in e-mail is implemented in the client and often does not remove the old version of the text.&lt;br /&gt;
* Article-Updates - Only in Usenet News, similar to &amp;quot;Supersedes:&amp;quot; but does not cause the referenced article to be physically deleted.&lt;br /&gt;
* Article-Names - Reference to specially important articles for a particular Usenet Newsgroup.&lt;br /&gt;
&lt;br /&gt;
===Thread Description Language===&lt;br /&gt;
Thread Description Language - TDL is an RDF vocabulary for describing threaded discussions, such as Usenet, weblogs, bulletin boards, and e-mail conversations.&lt;br /&gt;
* http://www.eyrie.org/~zednenem/2002/web-threads/&lt;br /&gt;
* http://www.eyrie.org/~zednenem/2002/wtprofile/&lt;br /&gt;
TDL v3  defines the following properties:&lt;br /&gt;
* Property tdl:discusses - Relates a Post to a resource it talks about&lt;br /&gt;
* Property tdl:follows - Indicates that this resource comes no earlier than the specified resource&lt;br /&gt;
* Property tdl:inThread - Relates a post to a thread which includes it&lt;br /&gt;
* Property tdl:mentions - Indicates that this resource refers to the specified resource&lt;br /&gt;
* Property tdl:respondsTo - Relates a post to its parent(s) in a discussion&lt;br /&gt;
* Property tdl:respondsNegativelyTo - Relates a post to a parent post which it dissents from or corrects&lt;br /&gt;
* Property tdl:respondsPositivelyTo - Relates a post to a parent post with which it concurs&lt;br /&gt;
&lt;br /&gt;
'''Discussion of TDL'''&lt;br /&gt;
&lt;br /&gt;
# respondsNegativelyTo, respondsPositivelyTo are beyond the scope of this spec. They can both be implemented using vote-links.&lt;br /&gt;
# Without those, respondsTo remains the main connector between posts in a thread.&lt;br /&gt;
# mentions and discusses seem to be splitting hairs. It appears that both of them can be replaced by using the CITE tag.&lt;br /&gt;
# follows seems to be designed for use in a central registry that tracks threads and therefore is useless for a distributed solution.&lt;br /&gt;
&lt;br /&gt;
===IBIS - Issues Based Information Systems===&lt;br /&gt;
Kunz's Issue Based Information Systems (IBIS) provide a framework for collaborative understanding of the major issues and implications surrounding what are described as ``wicked problems'' (problems that lack a definitive formulation). Understanding is achieved by using hypertext components to create structured arguments surrounding the issues. (&amp;lt;cite&amp;gt;[http://www.weblogkitchen.com/wiki.cgi?GraphicalIbis Weblog Kitchen]&amp;lt;/cite&amp;gt;)&lt;br /&gt;
* [http://dannyayers.com/xmlns/ibis/ IBIS vocabulary]&lt;br /&gt;
* [http://collab.blueoxen.net/forums/yak/2003-12/threads.html#00191 How to start an IBIS discussion in Email]&lt;br /&gt;
* [http://www.weblogkitchen.com/wiki.cgi?GraphicalIbis graphical IBIS (gIBIS)]&lt;br /&gt;
  The hypertext model of IBIS consists of three node types:&lt;br /&gt;
   1. issues&lt;br /&gt;
   2. positions&lt;br /&gt;
   3. arguments&lt;br /&gt;
  &lt;br /&gt;
  Eight link types represent the allowable relationships between these nodes:&lt;br /&gt;
   1. generalizes&lt;br /&gt;
   2. specializes&lt;br /&gt;
   3. replaces&lt;br /&gt;
   4. questions&lt;br /&gt;
   5. is_suggested_by&lt;br /&gt;
   6. responds_to&lt;br /&gt;
   7. objects_to&lt;br /&gt;
   8. supports&lt;br /&gt;
&lt;br /&gt;
'''Discussion of IBIS'''&lt;br /&gt;
&lt;br /&gt;
Similar to TDL, IBIS seems to tackle a bigger problem than the one discussed here. &lt;br /&gt;
* The different node types are not necessary for tracking a discussion thread. Tracking the flow of the conversation, the arguments and flow of ideas is a wider more complex issue than just gluing together disparate pieces of an online discussion.&lt;br /&gt;
* Link type such as &amp;quot;generalizes&amp;quot; and &amp;quot;specializes&amp;quot; might be useful but seem to require a lot from the user. If we allow for inheritance of link type they could be used as optional parts of the format but it appears that we can do well enough without them.&lt;br /&gt;
&lt;br /&gt;
=== SIOC - Semantically-Interlinked Online Communities ===&lt;br /&gt;
SIOC (Semantically Interlinked Online Communities) is an ontology for describing discussion forums and posts on topic threads in online community sites. This includes but is not limited to: blogs, bulletin boards, mailing lists, newsgroups, etc.&lt;br /&gt;
* http://sioc-project.org/&lt;br /&gt;
* http://rdfs.org/sioc/spec/&lt;br /&gt;
&lt;br /&gt;
Relevant properties defined under [http://rdfs.org/sioc/spec/ SIOC]:&lt;br /&gt;
* has_reply - This details replies or responses to this Post, which can be used for purposes of display ordering. &lt;br /&gt;
* reply_of - Links to a previous Post, which this Post is a reply of (or to). &lt;br /&gt;
* next_version - Links to the next revision of this Post. &lt;br /&gt;
* previous_version - Links to a previous revision of this Post. &lt;br /&gt;
* has_sibling - A Post may have a sibling or a twin that exists in a different Forum, but the siblings may differ in some small way (for example, language, category, etc.). The sibling of this Post only needs to have the changed information.&lt;br /&gt;
* sibling_of - This Post differs from its sibling in some small way. The other sibling can be used as a source for any missing data. &lt;br /&gt;
* attachment - A URI of the attachment related to a Post. &lt;br /&gt;
* related_to - Related Posts for this Post, perhaps determined implicitly from topics or references. &lt;br /&gt;
* is_closed - Details if this (and any children) is closed. &lt;br /&gt;
&lt;br /&gt;
'''Discussion of SIOC'''&lt;br /&gt;
* We cannot expect the complementary relations (e.g. has_reply) to exist. This would require a more strongly connected system that we do not assume exists. Similarly for is_closed.&lt;br /&gt;
* next_version and previous_version might be an interesting alternative to updates in the case where the author of the updated version has control of the previous version as well. This is not always the case but might happen often enough to include this option.&lt;br /&gt;
* The concept of siblings is an interesting one, although the difference between that and update or forward might be too particular for most users.&lt;br /&gt;
* attachment might be interesting but is it necessary? &lt;br /&gt;
* related_to might be useful in an aggregate environment (think delicious related tags) but otherwise I see those posts use as source citations, so this specific relation type might be pointless.&lt;br /&gt;
&lt;br /&gt;
'''Microformats and SIOC'''&lt;br /&gt;
&lt;br /&gt;
* John Breslin has written a blog post about [http://www.johnbreslin.com/blog/2006/10/02/microformats-and-sioc/ potential connections between mf, cite-rel and SIOC].&lt;br /&gt;
&lt;br /&gt;
== Examples of Use ==&lt;br /&gt;
From Email we get two basic relations between message:&lt;br /&gt;
* Reply - This message is a reply to the referenced message.&lt;br /&gt;
* Forward - This message forwards the referenced message to additional recipients.&lt;br /&gt;
&lt;br /&gt;
From various publications (often of standards) we get:&lt;br /&gt;
* Updates/Obsoletes - This documents contains updates or even replaces the referenced document.&lt;br /&gt;
&lt;br /&gt;
Citation of resources comes in several flavors:&lt;br /&gt;
* Quote&lt;br /&gt;
* Citing a reference&lt;br /&gt;
* Via link/Hat tip (mainly in blogs)&lt;br /&gt;
&lt;br /&gt;
=== Atom Threading Extensions ===&lt;br /&gt;
&lt;br /&gt;
An extension has been created in [http://www.ietf.org/rfc/rfc4685.txt RFC-4685] for Threading, essentially the ability, with Atom, to have cross-site, continuous conversations.&lt;br /&gt;
&lt;br /&gt;
(needs more details)&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=figure-examples&amp;diff=25743</id>
		<title>figure-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=figure-examples&amp;diff=25743"/>
		<updated>2007-11-26T03:56:59Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added link to ALA article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Figure examples&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''This page documents examples of mark up for figures like images, captions and data tables in webpages and the class-names that they've used ''' - [[User:Chris_Messina|Chris Messina]]&lt;br /&gt;
&lt;br /&gt;
== The Problem ==&lt;br /&gt;
There are no HTML tags for identifying or marking up supporting content like illustrative images (as in encyclopaedic references), photographs and their captions, credits or licenses (as in news articles) or data tables. Typically this content can be found in close proximity to the relevant information, but oftentimes mixed with other elements.&lt;br /&gt;
&lt;br /&gt;
The goal of this effort is to document and reflect the real-world needs of such design patterns while paying close attention to the types of data that people are using in this supportive role and also paying close attention to the existing class names and presentational styles that go along with such formats.&lt;br /&gt;
&lt;br /&gt;
== Participants ==&lt;br /&gt;
* [[User:Chris_Messina | Chris Messina]]&lt;br /&gt;
* [[User:EdwardOConnor | Edward O'Connor]]&lt;br /&gt;
* [[User:AaronGustafson | Aaron Gustafson]]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Real-World Examples ==&lt;br /&gt;
&lt;br /&gt;
These are examples and implementations in the wild of various efforts at marking up figures in web pages, blog posts and articles.&lt;br /&gt;
&lt;br /&gt;
=== CNET ===&lt;br /&gt;
&lt;br /&gt;
CNET uses &amp;lt;code&amp;gt;cnet-image-div&amp;lt;/code&amp;gt;, '''&amp;lt;code&amp;gt;float-left&amp;lt;/code&amp;gt;''', &amp;lt;code&amp;gt;cnet-image&amp;lt;/code&amp;gt;,  '''&amp;lt;code&amp;gt;image-credit&amp;lt;/code&amp;gt;''' and '''&amp;lt;code&amp;gt;image-caption&amp;lt;/code&amp;gt;''' to mark up supporting photographs and artwork.&lt;br /&gt;
&lt;br /&gt;
See this example: [http://blogs.cnet.com/8301-13504_1-9758731-15.html?tag=cnetfd.blogs.item Why I recommend the iPhone -- and don't.]&lt;br /&gt;
&lt;br /&gt;
=== HTML5 ===&lt;br /&gt;
&lt;br /&gt;
HTML5 introduces a new tag called [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-embedded.html#figure &amp;quot;figure&amp;quot;], which represents a block-level image, along with a caption:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;figure id=&amp;quot;fig2&amp;quot;&amp;amp;gt;&lt;br /&gt;
  &amp;amp;lt;legend&amp;amp;gt;Figure 2. Install Mozilla XForms dialog&amp;amp;lt;/legend&amp;amp;gt;&lt;br /&gt;
  &amp;amp;lt;img alt=&amp;quot;A Web site is requesting permission to install the following item: &lt;br /&gt;
    Mozilla XForms 0.7 Unsigned&amp;quot; &lt;br /&gt;
    src=&amp;quot;installdialog.jpg&amp;quot; border=&amp;quot;0&amp;quot; height=&amp;quot;317&amp;quot; hspace=&amp;quot;5&amp;quot; vspace=&amp;quot;5&amp;quot; width=&amp;quot;331&amp;quot; /&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;/figure&amp;amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is slightly different from the broader goal of this effort, but nevertheless points to current work on this topic.&lt;br /&gt;
&lt;br /&gt;
== Existing Practices ==&lt;br /&gt;
&lt;br /&gt;
In many cases, classes that are used exclusively for alignment and positioning are documented here in order to have an accurate sense for how people mark up this kind of content in practice.&lt;br /&gt;
&lt;br /&gt;
=== [http://factoryjoe.com/blog FactoryCity Blog] ===&lt;br /&gt;
&lt;br /&gt;
* uses a series of &amp;lt;code&amp;gt;figure&amp;lt;/code&amp;gt; classes to markup figures. &lt;br /&gt;
* the approach used is to mark up block level figures with both &amp;lt;code&amp;gt;figure&amp;lt;/code&amp;gt; and either &amp;lt;code&amp;gt;figure-a&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;figure-c&amp;lt;/code&amp;gt; classes.&lt;br /&gt;
* &amp;lt;code&amp;gt;figure-b&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;figure-d&amp;lt;/code&amp;gt; are used for inline figures aligned right and left, respectively&lt;br /&gt;
* the a, b, c, d pattern is modeled after the top, right, bottom, left order of CSS attribute values&lt;br /&gt;
* Paul Wilkins [http://microformats.org/discuss/mail/microformats-discuss/2007-August/010421.html suggested more semantic names for these classes on µf-discuss]&lt;br /&gt;
&lt;br /&gt;
=== [http://getk2.com K2 WordPress Theme] ===&lt;br /&gt;
&lt;br /&gt;
* The K2 [http://kaytwo.googlecode.com/svn/trunk/style.css stylesheet] includes the following figure-related CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
.center {&lt;br /&gt;
	text-align: center;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
.alignright {&lt;br /&gt;
	float: right;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
.alignleft {&lt;br /&gt;
	float: left&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
img.center, img[align=&amp;quot;center&amp;quot;] {&lt;br /&gt;
	display: block;&lt;br /&gt;
	margin-left: auto;&lt;br /&gt;
	margin-right: auto;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
img.alignright, img[align=&amp;quot;right&amp;quot;] {&lt;br /&gt;
	padding: 4px;&lt;br /&gt;
	margin: 0 0 2px 7px;&lt;br /&gt;
	display: inline;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
img.alignleft, img[align=&amp;quot;left&amp;quot;] {&lt;br /&gt;
	padding: 4px;&lt;br /&gt;
	margin: 0 7px 2px 0;&lt;br /&gt;
	display: inline;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
img.noborder {&lt;br /&gt;
	border: none !important;&lt;br /&gt;
	}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [http://code.google.com/p/habari/ Habari K2 Theme] ===&lt;br /&gt;
&lt;br /&gt;
Similar to K2, the [http://habari.googlecode.com/svn/trunk/htdocs/user/themes/k2/style.css Habari K2] instance supports the following classes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
.center {&lt;br /&gt;
	text-align: center;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
.alignright {&lt;br /&gt;
	float: right;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
.alignleft {&lt;br /&gt;
	float: left&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
img.center, img[align=&amp;quot;center&amp;quot;] {&lt;br /&gt;
	display: block;&lt;br /&gt;
	margin-left: auto;&lt;br /&gt;
	margin-right: auto;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
img.alignright, img[align=&amp;quot;right&amp;quot;] {&lt;br /&gt;
	padding: 4px;&lt;br /&gt;
	margin: 0 0 2px 7px;&lt;br /&gt;
	display: inline;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
img.alignleft, img[align=&amp;quot;left&amp;quot;] {&lt;br /&gt;
	padding: 4px;&lt;br /&gt;
	margin: 0 7px 2px 0;&lt;br /&gt;
	display: inline;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
img.noborder {&lt;br /&gt;
	border: none !important;&lt;br /&gt;
	}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [http://webrevolutionary.com/coldblue ColdBlue WordPress Theme] ===&lt;br /&gt;
&lt;br /&gt;
* includes the classes &amp;lt;code&amp;gt;float-left&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;float-right&amp;lt;/code&amp;gt; for aligning figures&lt;br /&gt;
&lt;br /&gt;
=== [http://edward.oconnor.cx/ Edward O'Connor's blog] ===&lt;br /&gt;
&lt;br /&gt;
* POSH figure markup, based on several inputs:&lt;br /&gt;
** HTML5's figure element&lt;br /&gt;
** RFC 2629's figure element&lt;br /&gt;
** [http://microformats.org/discuss/mail/microformats-discuss/2007-August/010421.html Paul Wilkins' class names]&lt;br /&gt;
* Documented in [http://edward.oconnor.cx/2007/04/marking-up-figures Marking up figures], [http://edward.oconnor.cx/2007/08/figure-markup-redux Figure markup redux], and described in [http://edward.oconnor.cx/profiles/figures XMDP]&lt;br /&gt;
&lt;br /&gt;
=== Revenue Watch Institute (website forthcoming) ===&lt;br /&gt;
&lt;br /&gt;
During the development of the new website for Revenue Watch, this was what we came up with to handle figures:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;figure&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;img src=&amp;quot;/path/to/img.jpg&amp;quot; alt=&amp;quot;&amp;quot; /&amp;gt;&lt;br /&gt;
  &amp;lt;p class=&amp;quot;credit&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;type&amp;quot; title=&amp;quot;Phtotograph&amp;quot;&amp;gt;Photo&amp;lt;/abbr&amp;gt; by &amp;lt;cite&amp;gt;Bob Johnson&amp;lt;/cite&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;p class=&amp;quot;caption&amp;quot;&amp;gt;&amp;lt;em class=&amp;quot;title&amp;quot;&amp;gt;Figure 1&amp;lt;/em&amp;gt; Cras rutrum, enim at placerat varius, nisi massa consectetuer.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Figures can be categorized as types using the &amp;quot;type&amp;quot; &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; (here type is embedded in the credit line, using [[abbr-design-pattern|the &amp;lt;code&amp;gt;ABBR&amp;lt;/code&amp;gt; design pattern]]) - current recommendations: &amp;quot;photograph&amp;quot; or &amp;quot;illustration&amp;quot; (these could possibly be extended to include other options such as &amp;quot;chart,&amp;quot; &amp;quot;line-art&amp;quot;, etc.) (optional)&lt;br /&gt;
* The &amp;quot;title&amp;quot; &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; can be added to any element within the figure (optional)&lt;br /&gt;
* Credit for the figure is denoted with the &amp;quot;credit&amp;quot; &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; (optional)&lt;br /&gt;
* A caption is also available (optional)&lt;br /&gt;
&lt;br /&gt;
Default styles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
.figure {&lt;br /&gt;
  margin: 0 0 1.5em;&lt;br /&gt;
}&lt;br /&gt;
.figure p {&lt;br /&gt;
  margin: 0;&lt;br /&gt;
  width: auto;&lt;br /&gt;
}&lt;br /&gt;
.figure .credit {&lt;br /&gt;
  font-size: .8em;&lt;br /&gt;
  text-align: right;&lt;br /&gt;
}&lt;br /&gt;
.figure .credit cite {&lt;br /&gt;
  font-style: inherit;&lt;br /&gt;
}&lt;br /&gt;
.figure .caption {&lt;br /&gt;
  font-style: italic;&lt;br /&gt;
  font-size: 1.1em;&lt;br /&gt;
}&lt;br /&gt;
.figure .title {&lt;br /&gt;
  font-style: normal;&lt;br /&gt;
  font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
.figure .title:after {&lt;br /&gt;
  content: &amp;quot;:&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
No presentational information is added to the figures. The presentation is determined via script as a progressive enhancement ([http://www.alistapart.com/articles/figurehandler ALA article]).&lt;br /&gt;
&lt;br /&gt;
Tables receive no figure-related styles, but graphs, charts, and maps do.&lt;br /&gt;
&lt;br /&gt;
====Comments====&lt;br /&gt;
Why is &amp;quot;credit&amp;quot; not an hCard? Also, for pictures of places any geo/ hcard microformat included in the caption should be understood to be associated with the figure. There is debate elsewhere, about whether coordinates should be for the camera position, or the object photographed; with consensus coming down on the side of the former [http://commons.wikimedia.org/wiki/Commons_talk:Geocoding#Geotagging_the_camera_or_the_Objekt], [http://commons.wikimedia.org/wiki/Commons_talk:Geocoding#Camera_vs_object_location]. That said, the whole &amp;quot;figure&amp;quot; div could be an hcard, with the picture being part of that; and a separate hCard for the photographer included. Complex... [[User:AndyMabbett|Andy Mabbett]] 16:52, 21 Aug 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
I like the idea of the hCard &amp;lt;em&amp;gt;if&amp;lt;/em&amp;gt; there is more information available other than just the name. If you are just putting the person's name, I still don't see the point of making that an hCard. Add some additional data (a link, email address, etc.) and I think you have an argument. Otherwise I think it's a waste of markup and simply clutters the results of whatever hCards might exist elsewhere on the page. As for geo-data, I think that sort of information may be useful, but I think I'd prefer to see that embedded within a &amp;lt;code&amp;gt;longdesc&amp;lt;/code&amp;gt; page with more info on the image. Inside an article it seems superfluous to me. A &amp;lt;code&amp;gt;longdesc&amp;lt;/code&amp;gt; page for an image could include much more data about where it was taken, by whom (possibly even a full hCard of the creator), etc. &lt;br /&gt;
[[User:AaronGustafson|Aaron Gustafson]] 18:24, 22 Aug 2007 (EDT)&lt;br /&gt;
&lt;br /&gt;
=== [http://www.contentwithstyle.co.uk/ Content with Style] ===&lt;br /&gt;
&lt;br /&gt;
In an attempt to bring together some of the ideas suggested, an addition to the Revenue Watch example was made. [http://www.contentwithstyle.co.uk/Articles/161/figure-microformats/ This solution] is based on&lt;br /&gt;
* Edward O'Connor's [http://edward.oconnor.cx/2007/08/figure-markup-redux Figure markup redux]&lt;br /&gt;
* the [[#Revenue Watch Institute(website forthcoming)|Revenue Watch example]] and&lt;br /&gt;
* [[#HTML5|HTML5's figure element]] above&lt;br /&gt;
&lt;br /&gt;
The idea was to group meta information about the image in a legend container, just like HTML5 does. This leads to more freedom when styling the figure block, as the information can be grouped or treated separately.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;figure&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;p class=&amp;quot;image&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/path/to/img.jpg&amp;quot; width=&amp;quot;400&amp;quot; height=&amp;quot;602&amp;quot; alt=&amp;quot;Lorem ipsum dolor sit amet&amp;quot; /&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;legend&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;p class=&amp;quot;caption&amp;quot;&amp;gt;Lorem ipsum dolor sit amet.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p class=&amp;quot;credit&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;abbr class=&amp;quot;type&amp;quot; title=&amp;quot;Photograph&amp;quot;&amp;gt;Photo&amp;lt;/abbr&amp;gt;&lt;br /&gt;
      &amp;amp;amp;copy; &amp;lt;cite&amp;gt;John Doe&amp;lt;/cite&amp;gt;&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Further discussion ==&lt;br /&gt;
&lt;br /&gt;
A few blog posts capture the essence of this discussion well:&lt;br /&gt;
&lt;br /&gt;
* [http://factoryjoe.com/blog/2007/02/26/a-design-pattern-for-image-and-figure-alignment/ A design pattern for image and figure alignment]&lt;br /&gt;
* [http://edward.oconnor.cx/2007/04/marking-up-figures Marking up figures]&lt;br /&gt;
* [http://www.css3.info/styling-figures-with-css3/ Styling figures with CSS3]&lt;br /&gt;
* [http://www.simplebits.com/notebook/2005/07/10/figures.html When Floated Figures Attack!]&lt;br /&gt;
* [http://www.pearsonified.com/2007/06/how-to-format-images-for-feed-readers.php How to Format Images for Feed Readers]&lt;br /&gt;
* [http://www.alistapart.com/articles/figurehandler If I Told You You Had a Beautiful Figure...] by AARON GUSTAFSON&lt;br /&gt;
* [http://www.contentwithstyle.co.uk/Articles/161/figure-microformats/ Figure Microformats]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=user-interface&amp;diff=23869</id>
		<title>user-interface</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=user-interface&amp;diff=23869"/>
		<updated>2007-11-24T07:36:05Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; User Interface &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Recently there have been many really good user interface ideas and suggestions for working with microformats.  This page serves to collect and document them so that we may be inspired by and iterate on each others' works.&lt;br /&gt;
&lt;br /&gt;
== Design Guidelines ==&lt;br /&gt;
These are some suggested design guidelines for Web designers and developers by [http://blog.mozilla.com/faaborg/ Alex Faaborg], a user experience designer at Mozilla:&lt;br /&gt;
*Design based on actions, not data.  A button that says &amp;quot;Send to Calendar&amp;quot; is considerably more useable than a green button that simply says &amp;quot;hCalendar&amp;quot;&lt;br /&gt;
*Use iconic images instead of acronyms.  In addition to being more descriptive, they localize better.  Here are some I've been showing in various talks: [http://people.mozilla.com/~faaborg/files/20061213-fundamentalTypes/fundamentalTypesStatic.jpg_large.jpg microformat icons].  These are still very preliminary. Mozilla will likely release all of the source artwork for our microformat icons under a creative commons license around the launch of Firefox 3.  This will enable Web designers to integrate the icons into their sites, and other Web browsers can consider using a similar set of icons.&lt;br /&gt;
&lt;br /&gt;
== Design Challenges ==&lt;br /&gt;
* Chris Messina: &amp;quot;What kind of solutions can we come up with that are single click only?&amp;quot;&lt;br /&gt;
* Alex Faaborg: Mozilla has had inquiries from reporters in the mainstream media (Wired and Business Week) who wanted to cover microformats in stories about the future of the Web browser, but they then later backed out because they felt the term &amp;quot;microformats&amp;quot; would only appeal to developers, and not the average reader.  These types of mainstream stories need to focus on the user experience, and not the underlying technology, but what term should reporters use to describe the overall feature?&lt;br /&gt;
** I think we should stick with the term &amp;quot;microformats&amp;quot; until someone comes up with a better term that doens't &amp;quot;only appeal to developers&amp;quot;. Note that we should avoid terms which are either overloaded, or dilute the concepts, or are just another form of made-up jargon. [[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
== Social Network Portability ==&lt;br /&gt;
See the separate [[social-network-portability]] page.&lt;br /&gt;
&lt;br /&gt;
== Browser Integration ==&lt;br /&gt;
From visions to screenshot brainstorms to working plugins to shipping implementations, there is a lot going on with browser integration of microformats support. &lt;br /&gt;
&lt;br /&gt;
=== Currently ===&lt;br /&gt;
* &amp;lt;del&amp;gt;The [[Flock]] browser ships with microformats support built-in.&amp;lt;/del&amp;gt; - This has not been confirmed. -- Chris Messina.&lt;br /&gt;
* The [[Operator]] plug-in adds microformats detection and integration to [[Firefox]] version 1.5-2, and [[Netscape Navigator]] versions 9+ &amp;lt;br /&amp;gt; [http://notizblog.org/2007/10/21/operator-unter-navigator-90/ http://notizblog.org/wp-content/uploads/2007/10/micro-netscape.png]&lt;br /&gt;
* A [[Safari|Safari microformats plugin]] has been implemented (requires OSX10.5+) based on Jon Hicks's mockup: &amp;lt;br /&amp;gt; [http://microformats.org/wiki/safari http://farm3.static.flickr.com/2309/2036669631_6e99870645.jpg]&lt;br /&gt;
&lt;br /&gt;
=== Soon ===&lt;br /&gt;
* [[Firefox]] version 3.0 has support similar to Operator built-in.  See the [[Firefox]] page for details.&lt;br /&gt;
&lt;br /&gt;
=== Vision ===&lt;br /&gt;
&amp;lt;span style=&amp;quot;float:left&amp;quot;&amp;gt;[http://blog.mozilla.com/faaborg/2006/12/13/microformats-part-2-the-fundamental-types/ http://people.mozilla.com/~faaborg/files/20061213-fundamentalTypes/informationBroker.jpg]&amp;lt;/span&amp;gt;Web Browser as Information Broker - part of a [http://blog.mozilla.com/faaborg/2006/12/13/microformats-part-2-the-fundamental-types/ blogpost by Alex Faaborg on Microformats - The Fundamental Types]&amp;lt;br style=&amp;quot;clear:both&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== In General ===&lt;br /&gt;
Browser support for microformats consists of three things in general:&lt;br /&gt;
# Automatically detect the presence of microformats on a page&lt;br /&gt;
# Parse them into a set of microformats for that page (preferably maintaining their relative relationships perhaps within a tree structure).&lt;br /&gt;
# Do something useful with them&lt;br /&gt;
&lt;br /&gt;
=== Do something useful ===&lt;br /&gt;
Do something useful could be any or all of:&lt;br /&gt;
* User interface: Indicate the presence of microformats, and provide the user with an additional user interface for common actions to take with those microformats&lt;br /&gt;
* API: Provide an API (DOM extensions on &amp;quot;document&amp;quot; object?) to access those microformats for browser extension developers.&lt;br /&gt;
* Cache: cache that set/tree of parsed microformats along with the URL/Title/date-accessed of the page in the browser navigation &amp;quot;History&amp;quot; or even page cache, and then use that set of objects for various auto-complete/auto-fill uses and other enhancements to existing browser features.&lt;br /&gt;
&lt;br /&gt;
=== Indicate presence of microformats ===&lt;br /&gt;
Browsers can indicate the presence of microformats on a page in several ways.&lt;br /&gt;
* one or more icons&lt;br /&gt;
** either a generic microformats icon, or&lt;br /&gt;
** an icon for each type of microformat present&lt;br /&gt;
** in the toolbar, in the footerbar, or perhaps on the margins of the page&lt;br /&gt;
* a special cursor when hovering over&lt;br /&gt;
** See [http://wiki.mozilla.org/ContentHandling:User_Interface/Preferences_Microformats mozilla wiki: ContentHandling:User Interface/Preferences Microformats]&lt;br /&gt;
&lt;br /&gt;
Discussion and mockups / &amp;lt;span id=&amp;quot;Screen_Shots&amp;quot;&amp;gt;screenshots&amp;lt;/span&amp;gt; of indicating the presence of microformats:&lt;br /&gt;
&lt;br /&gt;
* [http://blog.mozilla.com/faaborg/2007/02/04/microformats-part-4-the-user-interface-of-microformat-detection/ Conceptual Mockups of Microformat Detection in Firefox 3]&lt;br /&gt;
* [http://ben-ward.co.uk/journal/microformats-ui/ Ben Ward: Microformats in Web Browsers] &amp;lt;br /&amp;gt; [http://ben-ward.co.uk/journal/microformats-ui/ http://ben-ward.co.uk/res/posts/uf-web-browser/autodiscovery.png]&lt;br /&gt;
* [http://glazkov.com/blog/margin-marks/ Margin Marks UI Concept], [http://flickr.com/photos/dglazkov/sets/72157601860335196/ Margin Marks Comps on Flickr] &amp;lt;br /&amp;gt; [http://glazkov.com/blog/margin-marks/ http://farm2.static.flickr.com/1098/1323814472_819bdd6373_m.jpg]&lt;br /&gt;
&lt;br /&gt;
=== Additional user interface ===&lt;br /&gt;
Some examples of additional user interface for common actions to take with microformats found in pages, grouped by specific microformat. Note that most of these use cases should be applicable to all instances of the microformat on the page at once (e.g. export all contacts), or for a selection of instances (e.g. export selected contacts), or one just one specific instance (e.g. export contact XYZ).&lt;br /&gt;
&lt;br /&gt;
* [[hcard|hCard]] - see [[hcard-user-interface#Additional_user_interface|Additional hCard user interfaces]]&lt;br /&gt;
* [[hcalendar|hCalendar]]:&lt;br /&gt;
** &amp;quot;Add to Calendar&amp;quot; (convert the hCalendar events to iCalendar vEvents (.ics) and pass them onto the OS to automatically open/incorporate into the user's preferred local calendaring application).&lt;br /&gt;
** add to gCalendar, Yahoo Calendar, Upcoming, Eventful (etc.)&lt;br /&gt;
** &amp;quot;Subscribe to Calendar&amp;quot; - construct and pass on a conversion URL (e.g. using X2V, or prefixing the URL to the current page (or to the specific event within using a fragment identifier) with webcal://feeds.technorati.com/events/ ) and pass it onto the OS to get the OS to pass the URL onto the user's preferred local calendaring application for that app to subscribe to.&lt;br /&gt;
** export as text/ [[csv|comma-separated-variables]] (CSV) to allow editing, sorting and/ or import into spreadsheets/ databases, etc. (or concatenate to existing file).&lt;br /&gt;
*[[geo|Geo]]&lt;br /&gt;
** find on map of user's choosing&lt;br /&gt;
** find pictures, nearest hotel, nearest restaurant, etc, using site of user's choosing  &lt;br /&gt;
** export as [[KML]]/ [[GPX]] file; or concatenate to existing file&lt;br /&gt;
** export as text/ CSV as above&lt;br /&gt;
** send (in suitable format) via bluetooth to GPS device.&lt;br /&gt;
* [[hreview|hReview]]&lt;br /&gt;
**If the item is a book, look up on library site(s) of user's choosing&lt;br /&gt;
**If the item is a book, generate COinS or other standard citation mark-up&lt;br /&gt;
**If the item is a book, film/ DVD, CD, etc., look up on shopping site(s) of user's choosing&lt;br /&gt;
* [[hresume|hResume]]&lt;br /&gt;
** ???&lt;br /&gt;
&lt;br /&gt;
Discussion and mockups / screenshots of additional user interface for microformats (some screenshots are only available at the destination links, please click through).&lt;br /&gt;
&lt;br /&gt;
* [http://blog.wilsonet.com/archives/2006/04/30/microformats-in-flock/ Microformats in Flock]&lt;br /&gt;
* NetNewsWire [http://flickr.com/photos/factoryjoe/454706107/in/photostream/ detects] and then [http://flickr.com/photos/factoryjoe/454705203/ converts hcard and hcalendar data] in feed entries:&amp;lt;br /&amp;gt;[http://flickr.com/photos/factoryjoe/454705203/ http://farm1.static.flickr.com/183/454705203_33f9b8d7c6_o.png]&lt;br /&gt;
* [http://www.hicksdesign.co.uk/journal/a-proposal-for-a-safari-microformats-plugin Jon Hicks: Proposal for a Safari Microformats plugin] &lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
See [[implementations]], and document examples of good UI from there, here.&lt;br /&gt;
&lt;br /&gt;
=== Plugins ===&lt;br /&gt;
* [[Operator]] Firefox extension&lt;br /&gt;
* [https://addons.mozilla.org/firefox/2240/ Tails Export] (Firefox extension) by Robert de Bruin can display and export some microformats.&lt;br /&gt;
&lt;br /&gt;
=== Greasemonkey user scripts ===&lt;br /&gt;
* http://greasemonkey.makedatamakesense.com/callto_tel/ by Scott Reynen&lt;br /&gt;
* Some [[Greasemonkey]] scripts use a separate iFrame for microformat content&lt;br /&gt;
* Other [[Greasemonkey]] scripts insert an icon inline into the page&lt;br /&gt;
&lt;br /&gt;
=== Browser buttons ===&lt;br /&gt;
* [[Miffy]] inserts a green square into the document to represent the presence of microformat&lt;br /&gt;
&lt;br /&gt;
=== CSS user stylesheets ===&lt;br /&gt;
* Jon Hicks has written [http://www.hicksdesign.co.uk/journal/highlight-microformats-with-css a user stylesheet for Mac browsers] that highlights hCard and hCalendar data.&lt;br /&gt;
&lt;br /&gt;
=== Planning and Discussion ===&lt;br /&gt;
*[http://wiki.mozilla.org/Microformats Discussion of microformat detection in Firefox 3]&lt;br /&gt;
*[http://wiki.mozilla.org/Microformats/UE/ideas UI brainstorming on the Mozilla Wiki]&lt;br /&gt;
* The [http://wiki.caminobrowser.org/Development:Planning:Microformats Camino Wiki has a page] where future microformats support is being discussed and organized&lt;br /&gt;
&lt;br /&gt;
== Simpler Markup Languages ==&lt;br /&gt;
There are plenty of [[wiki-formats]] that attempt to make it easier for more people author semantic markup, often with textually decorative punctuation.&lt;br /&gt;
&lt;br /&gt;
As these simpler markup languages are something that *users* are expected to type, they are user interface.&lt;br /&gt;
&lt;br /&gt;
=== Markdown extension for hCalendar ===&lt;br /&gt;
See [http://article.gmane.org/gmane.text.markdown.general/2027 Markdown and the hCal microformat] which proposes an extension to the Markdown text markup language to capture and represent hCalendar event semantics in a human editable form.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[browsers]]&lt;br /&gt;
* [[hcard-user-interface]]&lt;br /&gt;
* [[data-portability]]&lt;br /&gt;
* [[social-network-portability]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=why-using-existing-matters&amp;diff=33785</id>
		<title>why-using-existing-matters</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=why-using-existing-matters&amp;diff=33785"/>
		<updated>2007-11-24T07:27:47Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: formatting touch ups&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Why using existing microformats matters&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When many folks first hear of [[microformats]], they are quite inspired by the possibilities and potential that microformats present.&lt;br /&gt;
&lt;br /&gt;
Nearly everyone seems to have a problem in the back of their minds, or specific to their application, site, or service which could benefit from a microformat to represent the information.&lt;br /&gt;
&lt;br /&gt;
Thus immediately there is a desire to jump to creating a new such microformat, perhaps seduced by the ease of use of existing microformats.  It's easy to misconclude from the simplicity of existing microformats that it is also simple to create microformats. Ironically, the opposite is true.  As with many things, it's actually quite challenging and difficult to make simple, easy to use things.  This is a known axiom in [[user-interface]] design circles. It's no different with formats.  See [[why-are-content-standards-hard]] for some general thoughts on why good and simple formats are actually quite difficult to create.&lt;br /&gt;
&lt;br /&gt;
The motivation to create a new microformat might lead some here, to the microformats [[Main_Page|wiki]] or perhaps even the [[process]] page before proceeding.&lt;br /&gt;
&lt;br /&gt;
Thus the process page encourages the reader to:&lt;br /&gt;
&lt;br /&gt;
* Add &amp;lt;em&amp;gt;existing&amp;lt;/em&amp;gt; microformats to your sites like [[hcard|hCard]] for your contact info etc., [[hcalendar|hCalendar]] for your events, [[hatom|hAtom]] for your episodic content (e.g. blogs).  See [[get-started]] for more specific examples of adding microformats to your sites.&lt;br /&gt;
* This will help familiarize you with how [[POSH]] and [[microformats]] currently work. Such &amp;quot;real world&amp;quot; experience will greatly help you with the development a new microformat.  For more on this see [[why-using-existing-matters]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Success in developing microformats requires both creation but more importantly adoption; any effort to create new schema depends upon your prior support for and implementation of existing formats.&lt;br /&gt;
&lt;br /&gt;
One rhetorical question to consider about using existing microformats vs. creating a new one: ''How can you have a chance of convincing others to use a ''new'' microformat (that you would develop) on their sites, if you can't convince yourself to use ''existing'' microformats on your sites?''&lt;br /&gt;
&lt;br /&gt;
Or put in a more positive light: ''If you adopt microformats and develop your own with the microformats process, you have a greater chance of being successful, whereas, if you develop your own format without implementing prior formats, you are more likely to fail.''  &lt;br /&gt;
&lt;br /&gt;
Failures may even take strange forms that are hard to recognize until it is too late.  I.e. if you don't first familiarize yourself with existing microformats (most of all, by using them in actual production sites), you're likely to make lots of mistakes while developing your own format.  It's likely to take a lot longer for you to develop your microformat. It's likely your microformat will be needlessly complicated. And because you won't be familiar with both whole existing microformats and their vocabularies, you will more than likely re-invent chunks of microformats and terms, rather than re-use from existing microformats.&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [[get-started]]&lt;br /&gt;
* [[why-are-content-standards-hard]]&lt;br /&gt;
* [[principles]]&lt;br /&gt;
* [[process]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=downloads-examples&amp;diff=33318</id>
		<title>downloads-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=downloads-examples&amp;diff=33318"/>
		<updated>2007-11-18T05:23:47Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added download.com&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Downloads examples&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--alpahbetical by surname--&amp;gt;&lt;br /&gt;
* [[User:DenisDefreyne|Denis Defreyne]]&lt;br /&gt;
* [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [[User:Chris_Messina|Chris Messina]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Download.com===&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the application&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Current Version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Version of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tagline&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A short description of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to application download.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;File size&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Approximate size of download in MB.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;License&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;License for software. May include price.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Editor's Rating&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Editor's rating out of five stars.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Average User Rating&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Rating out of five stars.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Downloads&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Total number of downloads.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Requirements&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A list of compatible operating systems.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Limitations&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Restrictions on use of the software.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Date added&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The date when download.com started listing the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Product description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Long form description of application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshots&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Links to screenshots of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Mozilla Addons===&lt;br /&gt;
&lt;br /&gt;
*Extension (single instance) e.g. [https://addons.mozilla.org/en-US/firefox/addon/722 NoScript]&lt;br /&gt;
**Extension version history (multiple instances of one app) e.g. [https://addons.mozilla.org/en-US/firefox/addons/versions/722 NoScript history]&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Extension name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The name of the extension.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Extension version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A numerical version number.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Extension author&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Who created the extension with a link to their Addons profile.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Works with&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Compatibility listing of browser(s) the plugin should work with.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Preview/Logo&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An icon or screenshot(s) for the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Install now&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to XPI file for installation (Mozilla browsers only).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer comments&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Description of the plugin or installation instructions.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version History&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;List of plugin releases with version numbers and release dates (with a link to complete revision history).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Reviews&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A list of user-submitted reviews.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Discussions&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A list of user-created discussions.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===iusethis===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://osx.iusethis.com/app/peek-a-boo&lt;br /&gt;
** Version history or release notes&lt;br /&gt;
** Lists older downloads when you click on the current version number.&lt;br /&gt;
* [http://blog.iusethis.com/ Supports auto-updating its database with appcasts], also generates appcasts, e.g. http://osx.iusethis.com/appcast/igtd&lt;br /&gt;
** Every download page has a related appcast RSS feed (with autodiscovery)&lt;br /&gt;
&lt;br /&gt;
iusethis provides RSS appcasts with Sparkle extensions. For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;rss xmlns:blogChannel=&amp;quot;http://backend.userland.com/blogChannelModule&amp;quot;&lt;br /&gt;
     xmlns:iusethis=&amp;quot;http://osx.iusethis.com/ns/rss&amp;quot;&lt;br /&gt;
     xmlns:content=&amp;quot;http://purl.org/rss/1.0/modules/content/&amp;quot;&lt;br /&gt;
     xmlns:sparkle=&amp;quot;http://www.andymatuschak.org/xml-namespaces/sparkle&amp;quot;&lt;br /&gt;
     version=&amp;quot;2.0&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;channel&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Appcast for iGTD&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;link&amp;gt;http://osx.iusethis.com/app/igtd&amp;lt;/link&amp;gt;&lt;br /&gt;
    &amp;lt;description&amp;gt;version history with a sparkle via iusethis.com&amp;lt;/description&amp;gt;&lt;br /&gt;
    &amp;lt;language&amp;gt;en-us&amp;lt;/language&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:universal&amp;gt;1&amp;lt;/iusethis:universal&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:homepage&amp;gt;http://bargiel.home.pl/iGTD/&amp;lt;/iusethis:homepage&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:developer&amp;gt;bartek:bargiel&amp;lt;/iusethis:developer&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:usecount&amp;gt;517&amp;lt;/iusethis:usecount&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:tags&amp;gt;GTD productivity get things done&amp;lt;/iusethis:tags&amp;gt;&lt;br /&gt;
    &amp;lt;sparkle:appLicense&amp;gt;Freeware&amp;lt;/sparkle:appLicense&amp;gt;&lt;br /&gt;
    &amp;lt;item&amp;gt;&lt;br /&gt;
      &amp;lt;title&amp;gt;iGTD 1.4.5.5&amp;lt;/title&amp;gt;&lt;br /&gt;
      &amp;lt;link&amp;gt;http://osx.iusethis.com/app/versions/7961#ver_35136&amp;lt;/link&amp;gt;&lt;br /&gt;
      &amp;lt;description&amp;gt;&amp;lt;![CDATA[&amp;lt;p&amp;gt;... appcast description goes here ...&amp;lt;/p&amp;gt;]]&amp;gt;&amp;lt;/description&amp;gt;&lt;br /&gt;
      &amp;lt;guid isPermaLink=&amp;quot;false&amp;quot;&amp;gt;35136&amp;lt;/guid&amp;gt;&lt;br /&gt;
      &amp;lt;pubDate&amp;gt;Thu, 09 Aug 2007 09:31:55 -0000&amp;lt;/pubDate&amp;gt;&lt;br /&gt;
      &amp;lt;enclosure url=&amp;quot;http://bargiel.home.pl/downloads/iGTD.dmg&amp;quot; type=&amp;quot;application/octet-stream&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;sparkle:shortVersionString&amp;gt;1.4.5.5&amp;lt;/sparkle:shortVersionString&amp;gt;&lt;br /&gt;
    &amp;lt;/item&amp;gt;&lt;br /&gt;
    &amp;lt;!-- ... more appcast items go here .. --&amp;gt;&lt;br /&gt;
  &amp;lt;/channel&amp;gt;&lt;br /&gt;
&amp;lt;/rss&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some notes about the RSS appcast:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;sparkle:appLicense&amp;lt;/code&amp;gt; is something iusethis-specific, something the iusethis team seems to have made up. No idea why they are using the sparkle namespace here...&lt;br /&gt;
* &amp;lt;code&amp;gt;sparkle:shortVersionString&amp;lt;/code&amp;gt; seems to be used instead of &amp;lt;code&amp;gt;sparkle:version&amp;lt;/code&amp;gt;, and I'm not sure why.&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the application&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Homepage URL&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to homepage&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download URL&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to file download&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Appcast (Optional)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to Sparkle-RSS feed.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer (optional)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;License&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Dropdown list of these options: Freeware, Shareware, GPL, LGPL, BSD License, Charityware, Other Open Source, Commercial with demo&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Keywords&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Comma-separated list of keywords.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Description of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Universal binary&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;True/False for Intel/PPC compatibility.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Icon&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;32x32 pixel application icon.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshot&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Image of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===VersionTracker===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://www.versiontracker.com/dyn/moreinfo/macosx/3410&lt;br /&gt;
** Does not have a direct download link, but a link to a separate page that starts the download&lt;br /&gt;
** Has a version history section&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** Has a system requirements section&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the application&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Icon&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the application&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tagline&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A short description of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Current Version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Version of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to developer homepage.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of application developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Rating&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Rating out of five stars (per version).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Release date&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Date of software release.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;License&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;License for software.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Price&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Price of software.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Downloads&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Downloads listed separately for current version and overall.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to application download.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;File size&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Approximate size of download in MB.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Product description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Long form description of application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;What's new in this version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Unordered list of changes in the current version.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Operating system requirements&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An unordered list of compatible operating systems.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshots&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Links to screenshots of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===MySQL Downloads===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://dev.mysql.com/downloads/mysql/5.0.html&lt;br /&gt;
** Very big page with downloads with different applications, architectures, OSes, etc&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** No version history or release notes&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===MacUpdate===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://macupdate.com/info.php/id/10225/yum&lt;br /&gt;
** Has a version history section&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** Has a direct download link&lt;br /&gt;
** Has a system requirements section&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Title&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Icon&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Icon for the application (64x64px).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Version of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version history&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Description of previous versions of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to application download.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Short description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Short description of application (one-line).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Long form description of application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Requirements&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An unordered list of compatible operating systems.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Keywords&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;List of keywords for the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Category&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Single-selection from a rather extensive list of categories.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;License&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;License for software; values: free, demo, shareware, commercial, updater.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Price&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Price of software (USD).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;OS&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Classic OS and/or OS X.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Architecture (aka Platform)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;PPC and/or Intel&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of application developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to developer homepage.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Product URL&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to external application homepage.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Email&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Email address of application developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Phone&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Phone number of application developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshot&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Links to a screenshot of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Downloads&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Downloads listed separately for current version and overall.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;File size&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Approximate size of download.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Release date&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Date of software release.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Rating&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Rating out of five stars (per version).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===WordPress Plugins===&lt;br /&gt;
&lt;br /&gt;
WordPress generates plugin pages from a [http://wordpress.org/extend/plugins/about/readme.txt readme.txt] file included with the plugin. It has its own [http://wordpress.org/extend/plugins/about/validator/ validator] and format standards.&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Plugin name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The name of the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Authors&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Author field from the plugin file and Contributors field from the readme file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Version field from the plugin file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tags (as in categories)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Tags field from the readme file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Last updated time&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Time of last check in to the appropriate directory (trunk/ or the stable tag directory) after a version number change.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Creation time&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Time of first check in.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Rating&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A rating up to five stars.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The URL to download the plugin zip file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The description of the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''From readme.txt'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Contributors&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;WordPress.org usernames of contributors.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Donate link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link for receiving donations.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tags&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Comma-separated list of keywords.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Requires at least&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;WordPress version requirements.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tested up to&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The latest version of WordPress the plugin was tested against.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Stable tag&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The stable branch of the plugin to use.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;This is the long description.  No limit, and you can use Markdown.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Installation&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;This section describes how to install the plugin and get it working. Typically an ordered list.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Frequently Asked Questions&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Questions and answers about the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshots&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An ordered list of screenshot descriptions; screenshot image files should be located in the same directory as readme.txt and named screenshot-#.(png|jpg|jpeg|gif).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
&lt;br /&gt;
* [[downloads]]&lt;br /&gt;
* [[downloads-brainstorming]]&lt;br /&gt;
* [[downloads-formats]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=downloads-examples&amp;diff=23392</id>
		<title>downloads-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=downloads-examples&amp;diff=23392"/>
		<updated>2007-11-18T05:17:31Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: adding attributes for versiontracker and macupdate&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Downloads examples&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--alpahbetical by surname--&amp;gt;&lt;br /&gt;
* [[User:DenisDefreyne|Denis Defreyne]]&lt;br /&gt;
* [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [[User:Chris_Messina|Chris Messina]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Mozilla Addons===&lt;br /&gt;
&lt;br /&gt;
*Extension (single instance) e.g. [https://addons.mozilla.org/en-US/firefox/addon/722 NoScript]&lt;br /&gt;
**Extension version history (multiple instances of one app) e.g. [https://addons.mozilla.org/en-US/firefox/addons/versions/722 NoScript history]&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Extension name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The name of the extension.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Extension version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A numerical version number.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Extension author&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Who created the extension with a link to their Addons profile.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Works with&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Compatibility listing of browser(s) the plugin should work with.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Preview/Logo&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An icon or screenshot(s) for the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Install now&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to XPI file for installation (Mozilla browsers only).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer comments&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Description of the plugin or installation instructions.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version History&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;List of plugin releases with version numbers and release dates (with a link to complete revision history).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Reviews&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A list of user-submitted reviews.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Discussions&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A list of user-created discussions.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===iusethis===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://osx.iusethis.com/app/peek-a-boo&lt;br /&gt;
** Version history or release notes&lt;br /&gt;
** Lists older downloads when you click on the current version number.&lt;br /&gt;
* [http://blog.iusethis.com/ Supports auto-updating its database with appcasts], also generates appcasts, e.g. http://osx.iusethis.com/appcast/igtd&lt;br /&gt;
** Every download page has a related appcast RSS feed (with autodiscovery)&lt;br /&gt;
&lt;br /&gt;
iusethis provides RSS appcasts with Sparkle extensions. For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;rss xmlns:blogChannel=&amp;quot;http://backend.userland.com/blogChannelModule&amp;quot;&lt;br /&gt;
     xmlns:iusethis=&amp;quot;http://osx.iusethis.com/ns/rss&amp;quot;&lt;br /&gt;
     xmlns:content=&amp;quot;http://purl.org/rss/1.0/modules/content/&amp;quot;&lt;br /&gt;
     xmlns:sparkle=&amp;quot;http://www.andymatuschak.org/xml-namespaces/sparkle&amp;quot;&lt;br /&gt;
     version=&amp;quot;2.0&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;channel&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Appcast for iGTD&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;link&amp;gt;http://osx.iusethis.com/app/igtd&amp;lt;/link&amp;gt;&lt;br /&gt;
    &amp;lt;description&amp;gt;version history with a sparkle via iusethis.com&amp;lt;/description&amp;gt;&lt;br /&gt;
    &amp;lt;language&amp;gt;en-us&amp;lt;/language&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:universal&amp;gt;1&amp;lt;/iusethis:universal&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:homepage&amp;gt;http://bargiel.home.pl/iGTD/&amp;lt;/iusethis:homepage&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:developer&amp;gt;bartek:bargiel&amp;lt;/iusethis:developer&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:usecount&amp;gt;517&amp;lt;/iusethis:usecount&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:tags&amp;gt;GTD productivity get things done&amp;lt;/iusethis:tags&amp;gt;&lt;br /&gt;
    &amp;lt;sparkle:appLicense&amp;gt;Freeware&amp;lt;/sparkle:appLicense&amp;gt;&lt;br /&gt;
    &amp;lt;item&amp;gt;&lt;br /&gt;
      &amp;lt;title&amp;gt;iGTD 1.4.5.5&amp;lt;/title&amp;gt;&lt;br /&gt;
      &amp;lt;link&amp;gt;http://osx.iusethis.com/app/versions/7961#ver_35136&amp;lt;/link&amp;gt;&lt;br /&gt;
      &amp;lt;description&amp;gt;&amp;lt;![CDATA[&amp;lt;p&amp;gt;... appcast description goes here ...&amp;lt;/p&amp;gt;]]&amp;gt;&amp;lt;/description&amp;gt;&lt;br /&gt;
      &amp;lt;guid isPermaLink=&amp;quot;false&amp;quot;&amp;gt;35136&amp;lt;/guid&amp;gt;&lt;br /&gt;
      &amp;lt;pubDate&amp;gt;Thu, 09 Aug 2007 09:31:55 -0000&amp;lt;/pubDate&amp;gt;&lt;br /&gt;
      &amp;lt;enclosure url=&amp;quot;http://bargiel.home.pl/downloads/iGTD.dmg&amp;quot; type=&amp;quot;application/octet-stream&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;sparkle:shortVersionString&amp;gt;1.4.5.5&amp;lt;/sparkle:shortVersionString&amp;gt;&lt;br /&gt;
    &amp;lt;/item&amp;gt;&lt;br /&gt;
    &amp;lt;!-- ... more appcast items go here .. --&amp;gt;&lt;br /&gt;
  &amp;lt;/channel&amp;gt;&lt;br /&gt;
&amp;lt;/rss&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some notes about the RSS appcast:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;sparkle:appLicense&amp;lt;/code&amp;gt; is something iusethis-specific, something the iusethis team seems to have made up. No idea why they are using the sparkle namespace here...&lt;br /&gt;
* &amp;lt;code&amp;gt;sparkle:shortVersionString&amp;lt;/code&amp;gt; seems to be used instead of &amp;lt;code&amp;gt;sparkle:version&amp;lt;/code&amp;gt;, and I'm not sure why.&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the application&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Homepage URL&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to homepage&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download URL&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to file download&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Appcast (Optional)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to Sparkle-RSS feed.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer (optional)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;License&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Dropdown list of these options: Freeware, Shareware, GPL, LGPL, BSD License, Charityware, Other Open Source, Commercial with demo&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Keywords&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Comma-separated list of keywords.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Description of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Universal binary&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;True/False for Intel/PPC compatibility.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Icon&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;32x32 pixel application icon.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshot&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Image of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===VersionTracker===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://www.versiontracker.com/dyn/moreinfo/macosx/3410&lt;br /&gt;
** Does not have a direct download link, but a link to a separate page that starts the download&lt;br /&gt;
** Has a version history section&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** Has a system requirements section&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the application&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Icon&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the application&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tagline&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A short description of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Current Version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Version of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to developer homepage.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of application developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Rating&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Rating out of five stars (per version).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Release date&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Date of software release.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;License&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;License for software.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Price&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Price of software.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Downloads&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Downloads listed separately for current version and overall.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to application download.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;File size&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Approximate size of download in MB.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Product description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Long form description of application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;What's new in this version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Unordered list of changes in the current version.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Operating system requirements&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An unordered list of compatible operating systems.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshots&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Links to screenshots of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===MySQL Downloads===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://dev.mysql.com/downloads/mysql/5.0.html&lt;br /&gt;
** Very big page with downloads with different applications, architectures, OSes, etc&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** No version history or release notes&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===MacUpdate===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://macupdate.com/info.php/id/10225/yum&lt;br /&gt;
** Has a version history section&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** Has a direct download link&lt;br /&gt;
** Has a system requirements section&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Title&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Icon&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Icon for the application (64x64px).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Version of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version history&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Description of previous versions of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to application download.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Short description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Short description of application (one-line).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Long form description of application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Requirements&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An unordered list of compatible operating systems.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Keywords&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;List of keywords for the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Category&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Single-selection from a rather extensive list of categories.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;License&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;License for software; values: free, demo, shareware, commercial, updater.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Price&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Price of software (USD).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;OS&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Classic OS and/or OS X.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Architecture (aka Platform)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;PPC and/or Intel&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of application developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to developer homepage.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Product URL&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to external application homepage.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Email&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Email address of application developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer Phone&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Phone number of application developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshot&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Links to a screenshot of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Downloads&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Downloads listed separately for current version and overall.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;File size&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Approximate size of download.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Release date&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Date of software release.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Rating&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Rating out of five stars (per version).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===WordPress Plugins===&lt;br /&gt;
&lt;br /&gt;
WordPress generates plugin pages from a [http://wordpress.org/extend/plugins/about/readme.txt readme.txt] file included with the plugin. It has its own [http://wordpress.org/extend/plugins/about/validator/ validator] and format standards.&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Plugin name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The name of the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Authors&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Author field from the plugin file and Contributors field from the readme file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Version field from the plugin file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tags (as in categories)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Tags field from the readme file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Last updated time&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Time of last check in to the appropriate directory (trunk/ or the stable tag directory) after a version number change.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Creation time&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Time of first check in.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Rating&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A rating up to five stars.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The URL to download the plugin zip file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The description of the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''From readme.txt'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Contributors&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;WordPress.org usernames of contributors.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Donate link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link for receiving donations.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tags&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Comma-separated list of keywords.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Requires at least&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;WordPress version requirements.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tested up to&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The latest version of WordPress the plugin was tested against.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Stable tag&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The stable branch of the plugin to use.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;This is the long description.  No limit, and you can use Markdown.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Installation&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;This section describes how to install the plugin and get it working. Typically an ordered list.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Frequently Asked Questions&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Questions and answers about the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshots&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An ordered list of screenshot descriptions; screenshot image files should be located in the same directory as readme.txt and named screenshot-#.(png|jpg|jpeg|gif).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
&lt;br /&gt;
* [[downloads]]&lt;br /&gt;
* [[downloads-brainstorming]]&lt;br /&gt;
* [[downloads-formats]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=downloads-examples&amp;diff=23391</id>
		<title>downloads-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=downloads-examples&amp;diff=23391"/>
		<updated>2007-11-18T03:29:12Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: fleshing out iusethis, mozilla addons and tweaking the wordpress listing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Downloads examples&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--alpahbetical by surname--&amp;gt;&lt;br /&gt;
* [[User:DenisDefreyne|Denis Defreyne]]&lt;br /&gt;
* [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [[User:Chris_Messina|Chris Messina]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Mozilla Addons===&lt;br /&gt;
&lt;br /&gt;
*Extension (single instance) e.g. [https://addons.mozilla.org/en-US/firefox/addon/722 NoScript]&lt;br /&gt;
**Extension version history (multiple instances of one app) e.g. [https://addons.mozilla.org/en-US/firefox/addons/versions/722 NoScript history]&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Extension name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The name of the extension.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Extension version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A numerical version number.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Extension author&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Who created the extension with a link to their Addons profile.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Works with&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Compatibility listing of browser(s) the plugin should work with.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Preview/Logo&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An icon or screenshot(s) for the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Install now&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to XPI file for installation (Mozilla browsers only).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer comments&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Description of the plugin or installation instructions.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version History&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;List of plugin releases with version numbers and release dates (with a link to complete revision history).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Reviews&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A list of user-submitted reviews.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Discussions&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A list of user-created discussions.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===iusethis===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://osx.iusethis.com/app/peek-a-boo&lt;br /&gt;
** Version history or release notes&lt;br /&gt;
** Lists older downloads when you click on the current version number.&lt;br /&gt;
* [http://blog.iusethis.com/ Supports auto-updating its database with appcasts], also generates appcasts, e.g. http://osx.iusethis.com/appcast/igtd&lt;br /&gt;
** Every download page has a related appcast RSS feed (with autodiscovery)&lt;br /&gt;
&lt;br /&gt;
iusethis provides RSS appcasts with Sparkle extensions. For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;rss xmlns:blogChannel=&amp;quot;http://backend.userland.com/blogChannelModule&amp;quot;&lt;br /&gt;
     xmlns:iusethis=&amp;quot;http://osx.iusethis.com/ns/rss&amp;quot;&lt;br /&gt;
     xmlns:content=&amp;quot;http://purl.org/rss/1.0/modules/content/&amp;quot;&lt;br /&gt;
     xmlns:sparkle=&amp;quot;http://www.andymatuschak.org/xml-namespaces/sparkle&amp;quot;&lt;br /&gt;
     version=&amp;quot;2.0&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;channel&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Appcast for iGTD&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;link&amp;gt;http://osx.iusethis.com/app/igtd&amp;lt;/link&amp;gt;&lt;br /&gt;
    &amp;lt;description&amp;gt;version history with a sparkle via iusethis.com&amp;lt;/description&amp;gt;&lt;br /&gt;
    &amp;lt;language&amp;gt;en-us&amp;lt;/language&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:universal&amp;gt;1&amp;lt;/iusethis:universal&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:homepage&amp;gt;http://bargiel.home.pl/iGTD/&amp;lt;/iusethis:homepage&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:developer&amp;gt;bartek:bargiel&amp;lt;/iusethis:developer&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:usecount&amp;gt;517&amp;lt;/iusethis:usecount&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:tags&amp;gt;GTD productivity get things done&amp;lt;/iusethis:tags&amp;gt;&lt;br /&gt;
    &amp;lt;sparkle:appLicense&amp;gt;Freeware&amp;lt;/sparkle:appLicense&amp;gt;&lt;br /&gt;
    &amp;lt;item&amp;gt;&lt;br /&gt;
      &amp;lt;title&amp;gt;iGTD 1.4.5.5&amp;lt;/title&amp;gt;&lt;br /&gt;
      &amp;lt;link&amp;gt;http://osx.iusethis.com/app/versions/7961#ver_35136&amp;lt;/link&amp;gt;&lt;br /&gt;
      &amp;lt;description&amp;gt;&amp;lt;![CDATA[&amp;lt;p&amp;gt;... appcast description goes here ...&amp;lt;/p&amp;gt;]]&amp;gt;&amp;lt;/description&amp;gt;&lt;br /&gt;
      &amp;lt;guid isPermaLink=&amp;quot;false&amp;quot;&amp;gt;35136&amp;lt;/guid&amp;gt;&lt;br /&gt;
      &amp;lt;pubDate&amp;gt;Thu, 09 Aug 2007 09:31:55 -0000&amp;lt;/pubDate&amp;gt;&lt;br /&gt;
      &amp;lt;enclosure url=&amp;quot;http://bargiel.home.pl/downloads/iGTD.dmg&amp;quot; type=&amp;quot;application/octet-stream&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;sparkle:shortVersionString&amp;gt;1.4.5.5&amp;lt;/sparkle:shortVersionString&amp;gt;&lt;br /&gt;
    &amp;lt;/item&amp;gt;&lt;br /&gt;
    &amp;lt;!-- ... more appcast items go here .. --&amp;gt;&lt;br /&gt;
  &amp;lt;/channel&amp;gt;&lt;br /&gt;
&amp;lt;/rss&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some notes about the RSS appcast:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;sparkle:appLicense&amp;lt;/code&amp;gt; is something iusethis-specific, something the iusethis team seems to have made up. No idea why they are using the sparkle namespace here...&lt;br /&gt;
* &amp;lt;code&amp;gt;sparkle:shortVersionString&amp;lt;/code&amp;gt; seems to be used instead of &amp;lt;code&amp;gt;sparkle:version&amp;lt;/code&amp;gt;, and I'm not sure why.&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Application Name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the application&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Homepage URL&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to homepage&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download URL&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to file download&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Appcast (Optional)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link to Sparkle-RSS feed.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Developer (optional)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Name of the developer.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;License&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Dropdown list of these options: Freeware, Shareware, GPL, LGPL, BSD License, Charityware, Other Open Source, Commercial with demo&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Keywords&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Comma-separated list of keywords.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Description of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Universal binary&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;True/False for Intel/PPC compatibility.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Icon&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;32x32 pixel application icon.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshot&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Image of the application.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===VersionTracker===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://www.versiontracker.com/dyn/moreinfo/macosx/3410&lt;br /&gt;
** Does not have a direct download link, but a link to a separate page that starts the download&lt;br /&gt;
** Has a version history section&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** Has a system requirements section&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===MySQL Downloads===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://dev.mysql.com/downloads/mysql/5.0.html&lt;br /&gt;
** Very big page with downloads with different applications, architectures, OSes, etc&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** No version history or release notes&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===MacUpdate===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://macupdate.com/info.php/id/10225/yum&lt;br /&gt;
** Has a version history section&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** Has a direct download link&lt;br /&gt;
** Has a system requirements section&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===WordPress Plugins===&lt;br /&gt;
&lt;br /&gt;
WordPress generates plugin pages from a [http://wordpress.org/extend/plugins/about/readme.txt readme.txt] file included with the plugin. It has its own [http://wordpress.org/extend/plugins/about/validator/ validator] and format standards.&lt;br /&gt;
&lt;br /&gt;
====Attributes====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Plugin name&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The name of the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Authors&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Author field from the plugin file and Contributors field from the readme file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Version field from the plugin file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tags (as in categories)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Tags field from the readme file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Last updated time&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Time of last check in to the appropriate directory (trunk/ or the stable tag directory) after a version number change.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Creation time&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Time of first check in.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Rating&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;A rating up to five stars.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Download link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The URL to download the plugin zip file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The description of the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''From readme.txt'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Contributors&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;WordPress.org usernames of contributors.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Donate link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link for receiving donations.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tags&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Comma-separated list of keywords.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Requires at least&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;WordPress version requirements.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tested up to&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The latest version of WordPress the plugin was tested against.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Stable tag&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The stable branch of the plugin to use.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;This is the long description.  No limit, and you can use Markdown.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Installation&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;This section describes how to install the plugin and get it working. Typically an ordered list.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Frequently Asked Questions&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Questions and answers about the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshots&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An ordered list of screenshot descriptions; screenshot image files should be located in the same directory as readme.txt and named screenshot-#.(png|jpg|jpeg|gif).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
&lt;br /&gt;
* [[downloads]]&lt;br /&gt;
* [[downloads-brainstorming]]&lt;br /&gt;
* [[downloads-formats]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=downloads-examples&amp;diff=23390</id>
		<title>downloads-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=downloads-examples&amp;diff=23390"/>
		<updated>2007-11-18T02:35:12Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: adding wordpress.org plugins&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Downloads examples&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--alpahbetical by surname--&amp;gt;&lt;br /&gt;
* [[User:DenisDefreyne|Denis Defreyne]]&lt;br /&gt;
* [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [[User:Chris_Messina|Chris Messina]]&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Mozilla Firefox===&lt;br /&gt;
&lt;br /&gt;
*Extension (single instance) e.g. [https://addons.mozilla.org/en-US/firefox/addon/722 NoScript]&lt;br /&gt;
**Extension version history (multiple instances of one app) e.g. [https://addons.mozilla.org/en-US/firefox/addons/versions/722 NoScript history]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===iusethis===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://osx.iusethis.com/app/peek-a-boo&lt;br /&gt;
** No version history or release notes&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
* Appcast, e.g. http://osx.iusethis.com/appcast/igtd&lt;br /&gt;
** Every download page has a related appcast RSS feed (with autodiscovery)&lt;br /&gt;
&lt;br /&gt;
iusethis provides RSS appcasts with Sparkle extensions. For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;rss xmlns:blogChannel=&amp;quot;http://backend.userland.com/blogChannelModule&amp;quot;&lt;br /&gt;
     xmlns:iusethis=&amp;quot;http://osx.iusethis.com/ns/rss&amp;quot;&lt;br /&gt;
     xmlns:content=&amp;quot;http://purl.org/rss/1.0/modules/content/&amp;quot;&lt;br /&gt;
     xmlns:sparkle=&amp;quot;http://www.andymatuschak.org/xml-namespaces/sparkle&amp;quot;&lt;br /&gt;
     version=&amp;quot;2.0&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;channel&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Appcast for iGTD&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;link&amp;gt;http://osx.iusethis.com/app/igtd&amp;lt;/link&amp;gt;&lt;br /&gt;
    &amp;lt;description&amp;gt;version history with a sparkle via iusethis.com&amp;lt;/description&amp;gt;&lt;br /&gt;
    &amp;lt;language&amp;gt;en-us&amp;lt;/language&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:universal&amp;gt;1&amp;lt;/iusethis:universal&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:homepage&amp;gt;http://bargiel.home.pl/iGTD/&amp;lt;/iusethis:homepage&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:developer&amp;gt;bartek:bargiel&amp;lt;/iusethis:developer&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:usecount&amp;gt;517&amp;lt;/iusethis:usecount&amp;gt;&lt;br /&gt;
    &amp;lt;iusethis:tags&amp;gt;GTD productivity get things done&amp;lt;/iusethis:tags&amp;gt;&lt;br /&gt;
    &amp;lt;sparkle:appLicense&amp;gt;Freeware&amp;lt;/sparkle:appLicense&amp;gt;&lt;br /&gt;
    &amp;lt;item&amp;gt;&lt;br /&gt;
      &amp;lt;title&amp;gt;iGTD 1.4.5.5&amp;lt;/title&amp;gt;&lt;br /&gt;
      &amp;lt;link&amp;gt;http://osx.iusethis.com/app/versions/7961#ver_35136&amp;lt;/link&amp;gt;&lt;br /&gt;
      &amp;lt;description&amp;gt;&amp;lt;![CDATA[&amp;lt;p&amp;gt;... appcast description goes here ...&amp;lt;/p&amp;gt;]]&amp;gt;&amp;lt;/description&amp;gt;&lt;br /&gt;
      &amp;lt;guid isPermaLink=&amp;quot;false&amp;quot;&amp;gt;35136&amp;lt;/guid&amp;gt;&lt;br /&gt;
      &amp;lt;pubDate&amp;gt;Thu, 09 Aug 2007 09:31:55 -0000&amp;lt;/pubDate&amp;gt;&lt;br /&gt;
      &amp;lt;enclosure url=&amp;quot;http://bargiel.home.pl/downloads/iGTD.dmg&amp;quot; type=&amp;quot;application/octet-stream&amp;quot;/&amp;gt;&lt;br /&gt;
      &amp;lt;sparkle:shortVersionString&amp;gt;1.4.5.5&amp;lt;/sparkle:shortVersionString&amp;gt;&lt;br /&gt;
    &amp;lt;/item&amp;gt;&lt;br /&gt;
    &amp;lt;!-- ... more appcast items go here .. --&amp;gt;&lt;br /&gt;
  &amp;lt;/channel&amp;gt;&lt;br /&gt;
&amp;lt;/rss&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some notes about the RSS appcast:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;sparkle:appLicense&amp;lt;/code&amp;gt; is something iusethis-specific, something the iusethis team seems to have made up. No idea why they are using the sparkle namespace here...&lt;br /&gt;
* &amp;lt;code&amp;gt;sparkle:shortVersionString&amp;lt;/code&amp;gt; seems to be used instead of &amp;lt;code&amp;gt;sparkle:version&amp;lt;/code&amp;gt;, and I'm not sure why.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===VersionTracker===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://www.versiontracker.com/dyn/moreinfo/macosx/3410&lt;br /&gt;
** Does not have a direct download link, but a link to a separate page that starts the download&lt;br /&gt;
** Has a version history section&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** Has a system requirements section&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===MySQL Downloads===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://dev.mysql.com/downloads/mysql/5.0.html&lt;br /&gt;
** Very big page with downloads with different applications, architectures, OSes, etc&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** No version history or release notes&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===MacUpdate===&lt;br /&gt;
&lt;br /&gt;
* Download page, e.g. http://macupdate.com/info.php/id/10225/yum&lt;br /&gt;
** Has a version history section&lt;br /&gt;
** Does not list older downloads&lt;br /&gt;
** Has a direct download link&lt;br /&gt;
** Has a system requirements section&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===WordPress Plugins===&lt;br /&gt;
&lt;br /&gt;
WordPress generates plugin pages from a http://wordpress.org/extend/plugins/about/readme.txt readme.txt] file included with the plugin. It has its own parser and format standards.&lt;br /&gt;
&lt;br /&gt;
'''Attributes:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Authors&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Author field from the plugin file and Contributors field from the readme file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Version&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Version field from the plugin file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tags (as in categories)&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Tags field from the readme file.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Last updated time&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Time of last check in to the appropriate directory (trunk/ or the stable tag directory) after a version number change.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Creation time&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Time of first check in.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''From readme.txt'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Contributors&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;WordPress.org usernames of contributors.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Donate link&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Link for receiving donations.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tags&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Comma-separated list of keywords.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Requires at least&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;WordPress version requirements.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Tested up to&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The latest version of WordPress the plugin was tested against.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Stable tag&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;The stable branch of the plugin to use.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Description&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;This is the long description.  No limit, and you can use Markdown.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Installation&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;This section describes how to install the plugin and get it working. Typically an ordered list.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Frequently Asked Questions&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;Questions and answers about the plugin.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;Screenshots&amp;lt;/dt&amp;gt;&amp;lt;dd&amp;gt;An ordered list of screenshot descriptions; screenshot image files should be located in the same directory as readme.txt and named screenshot-#.(png|jpg|jpeg|gif).&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
&lt;br /&gt;
* [[downloads]]&lt;br /&gt;
* [[downloads-brainstorming]]&lt;br /&gt;
* [[downloads-formats]]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=openid-brainstorming&amp;diff=23168</id>
		<title>openid-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=openid-brainstorming&amp;diff=23168"/>
		<updated>2007-11-06T00:36:27Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; OpenId + microformats Brainstorming &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
This is a public space for capturing some ideas on how [[OpenID]] and Microformats can work together.&lt;br /&gt;
&lt;br /&gt;
== Relevant Microformats ==&lt;br /&gt;
&lt;br /&gt;
* [[hcard|hCard]] - for profiles&lt;br /&gt;
** Will Norris on [http://willnorris.com/2007/11/hcard-is-not-a-provisioning-engine-for-private-data privacy issues in using hcard for data provisioning.]&lt;br /&gt;
* [[xfn|XFN]] &lt;br /&gt;
** rel=&amp;quot;friend&amp;quot; etc. for marking up relationships between profiles&lt;br /&gt;
** rel=&amp;quot;me&amp;quot; for [http://gmpg.org/xfn/and/#idconsolidation identity consolidation] among profiles&lt;br /&gt;
*** Should Yadis be extended to support rel=&amp;quot;me&amp;quot;? &lt;br /&gt;
&lt;br /&gt;
== Ideas for use ==&lt;br /&gt;
&lt;br /&gt;
* Identity providers could provide hCard marked up profile pages&lt;br /&gt;
* re-use [[hcard|hCard]] (vCard) vocabulary for HTTP query based key-value pairs of information requested and returned&lt;br /&gt;
&lt;br /&gt;
== Microformats outside HTML ==&lt;br /&gt;
&lt;br /&gt;
* JSON representations of hCard etc.&lt;br /&gt;
&lt;br /&gt;
== OpenID whitelist authentication for private [[hcard|hCard]] ==&lt;br /&gt;
A possible design pattern is to use OpenID to allow a person to login to, say, a blog and find out more information. You could build the whitelist of OpenID's by parsing data out of a social network API or a list of XFN friends (following the ideas on [[social-network-portability]]).&lt;br /&gt;
&lt;br /&gt;
[[User:TomMorris|Tom Morris]] has implemented this on [http://tommorris.org/blog his blog], and on a &amp;quot;family extranet&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[http://en.wikipedia.org/wiki/OpenID OpenID on Wikipedia]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=openid-brainstorming&amp;diff=23167</id>
		<title>openid-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=openid-brainstorming&amp;diff=23167"/>
		<updated>2007-11-06T00:13:21Z</updated>

		<summary type="html">&lt;p&gt;Chris Messina: added a link to Will Norris' post&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; OpenId + microformats Brainstorming &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
This is a public space for capturing some ideas on how [[OpenId]] and Microformats can work together.&lt;br /&gt;
&lt;br /&gt;
== Relevant Microformats ==&lt;br /&gt;
&lt;br /&gt;
* [[hcard|hCard]] - for profiles&lt;br /&gt;
** Will Norris on [http://willnorris.com/2007/11/hcard-is-not-a-provisioning-engine-for-private-data privacy issues in using hcard for data provisioning.]&lt;br /&gt;
* [[xfn|XFN]] &lt;br /&gt;
** rel=&amp;quot;friend&amp;quot; etc. for marking up relationships between profiles&lt;br /&gt;
** rel=&amp;quot;me&amp;quot; for [http://gmpg.org/xfn/and/#idconsolidation identity consolidation] among profiles&lt;br /&gt;
*** Should Yadis be extended to support rel=&amp;quot;me&amp;quot;? &lt;br /&gt;
&lt;br /&gt;
== Ideas for use ==&lt;br /&gt;
&lt;br /&gt;
* Identity providers could provide hCard marked up profile pages&lt;br /&gt;
* re-use [[hcard|hCard]] (vCard) vocabulary for HTTP query based key-value pairs of information requested and returned&lt;br /&gt;
&lt;br /&gt;
== Microformats outside HTML ==&lt;br /&gt;
&lt;br /&gt;
* JSON representations of hCard etc.&lt;br /&gt;
&lt;br /&gt;
== OpenID whitelist authentication for private [[hcard|hCard]] ==&lt;br /&gt;
A possible design pattern is to use OpenID to allow a person to login to, say, a blog and find out more information. You could build the whitelist of OpenID's by parsing data out of a social network API or a list of XFN friends (following the ideas on [[social-network-portability]]).&lt;br /&gt;
&lt;br /&gt;
[[User:TomMorris|Tom Morris]] has implemented this on [http://tommorris.org/blog his blog], and on a &amp;quot;family extranet&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[http://en.wikipedia.org/wiki/OpenID OpenID on Wikipedia]&lt;/div&gt;</summary>
		<author><name>Chris Messina</name></author>
	</entry>
</feed>