<?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=AmeerDawood</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=AmeerDawood"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/Special:Contributions/AmeerDawood"/>
	<updated>2026-04-23T14:50:30Z</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=39233</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=39233"/>
		<updated>2009-06-24T14:15:46Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Machine-data in class */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Datetime Design Pattern &amp;lt;/h1&amp;gt;&lt;br /&gt;
This is a page for exploring a datetime design pattern.&lt;br /&gt;
&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
* Use the [[datetime-design-pattern]] to make datetimes that are human readable also formally machine readable.&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;
==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 foo 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;
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([http://www.webstandards.org/2007/04/27/haccessibility/]) with Datetime Design Pattern, and concerns that its use could breach WCAG accessibility guidelines, that are being addressed as part of the [[abbr-design-pattern-issues]] discussion. Possible change recommendations may follow after the accessibility testing is complete. &lt;br /&gt;
&lt;br /&gt;
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;
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>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-brainstorming-fr&amp;diff=39232</id>
		<title>hcard-brainstorming-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-brainstorming-fr&amp;diff=39232"/>
		<updated>2009-06-24T14:15:17Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Problèmes clé/points de discussion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; hCard Brainstorming &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Cette page est pour brainstormer sur les différentes utilisation et les détails de [[hcard-fr|hCard]].&lt;br /&gt;
Cette page contient des &amp;lt;em&amp;gt;propositions&amp;lt;/em&amp;gt;. Pour l'état actuel, regardez svp [[hcard-fr|hCard]].&lt;br /&gt;
== Auteurs ==&lt;br /&gt;
* [http://suda.co.uk/ Brian Suda]&lt;br /&gt;
* [http://tantek.com/log/ Tantek Çelik], précédemment chez [http://technorati.com Technorati, Inc]&lt;br /&gt;
&lt;br /&gt;
== Contributeurs ==&lt;br /&gt;
* [[User:Atamido|Atamido]]&lt;br /&gt;
* [[User:ChrisMessina|ChrisMessina]]&lt;br /&gt;
* [[User:DimitriGlazkov|DimitriGlazkov]]&lt;br /&gt;
* [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* ... et bien d'autres&lt;br /&gt;
(Traduction en cours [[Christophe Ducamp]])&lt;br /&gt;
&lt;br /&gt;
== Problèmes Etant Résolus ==&lt;br /&gt;
Quelques-uns des problèmes que [[hcard-fr|hCard]] aide à résoudre :&lt;br /&gt;
* devoir saisir les cartes de visite qui deviennent obsolètes (s'abonner à la place à la [[hcard-fr|hCard]] syndiquée de quelqu'un).&lt;br /&gt;
* &amp;quot;mise à jour de votre info de contact email&amp;quot; ennuyeuse à partir de différents services d'informations de contacts centralisés.&lt;br /&gt;
* [[social-network-portability-fr|portabilité de réseau social]] à travers l'utilisation de [[hcard-supporting-user-profiles-fr|hCard supportant les profils utilisateur]] et [[hcard-xfn-supporting-friends-lists-fr|hCard+XFN supportant les listes d'amis]]&lt;br /&gt;
&lt;br /&gt;
== Endroits nommés ==&lt;br /&gt;
La plupart des hcards contiennent de l'information de contact pour les personnes et organisations. Mais les lieux qui se sont pas des organisations méritent aussi leurs propres hCards (par ex la maison ou l'appartement de quelqu'un). Cette situation peut être représentée en combinant &amp;quot;fn&amp;quot; et &amp;quot;extended-address&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== combinaison de &amp;quot;fn&amp;quot; et &amp;quot;extended-address&amp;quot;===&lt;br /&gt;
&lt;br /&gt;
'''Proposition''' : De la même manière que l'[[hcard-fr#Info_Contact_Organisation|information de contact de l'organisation]], si la propriété &amp;quot;fn&amp;quot; et une propriété &amp;quot;extended-address&amp;quot; ont la même valeur exacte (généralement elles sont réglées sur le même élément, c'est à dire &amp;lt;code&amp;gt;class=&amp;quot;fn extended-address&amp;quot;&amp;lt;/code&amp;gt;), alors : &lt;br /&gt;
&lt;br /&gt;
# La hCard représente l'information de contact pour un endroit et DEVRAIT être traitée en tant que tel.&lt;br /&gt;
# L'auteur aussi NE DOIT PAS régler la propriété &amp;quot;N&amp;quot; ou la régler (et toutes ses sous-propriétés) expicitement vers la chaîne vide.&lt;br /&gt;
# Les parseurs DEVRAIENT gérer la propriété &amp;quot;n&amp;quot; manquante en supposant des valeurs vides pour toutes les sous-propriétés &amp;quot;n&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Proposition plus poussée''' : Imaginez aussi une hCard pour une ville, &amp;quot;Birmingham, England&amp;quot; : Birmingham peut être le &amp;quot;fn&amp;quot; et la &amp;quot;locality&amp;quot;, mais ce n'est pas une &amp;quot;extended-address&amp;quot;. Peut-être que la règle devrait être que la hCard est pour l'endroit si le &amp;quot;fn&amp;quot; est sur n'importe quel compsant de l'adresse (c'est à dire &amp;quot;fn&amp;amp;nbsp;locality&amp;quot; ou &amp;quot;fn&amp;amp;nbsp;street-address&amp;quot;) ?&lt;br /&gt;
&lt;br /&gt;
=== Exemples dans la jungle ===&lt;br /&gt;
&lt;br /&gt;
* Le lieu nommé &amp;quot;Picnic benches&amp;quot; dan l'adresse &amp;quot;Picnic benches, South Park, San Francisco, California&amp;quot; dns [http://adactio.com/journal/1364/ un billet de blog sur adactio.com].&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;adr&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;fn extended-address&amp;quot;&amp;gt;Picnic benches&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;South Park&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Exemples potentiels dans la jungle ====&lt;br /&gt;
&lt;br /&gt;
* Le lieu &amp;quot;Phone Boxes by the Sealife Centre&amp;quot; [http://upcoming.yahoo.com/venue/5668/ sur Upcoming] est actuellement marqué sous  &amp;quot;fn org&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;fn org&amp;quot;&amp;gt;Phone Boxes by the Sealife Centre&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;adr&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;Marine Parade&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Brighton &amp;amp;amp; Hove&amp;lt;/span&amp;gt;,&lt;br /&gt;
   &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;England&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;BN2 1TB&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;country&amp;quot;&amp;gt;United Kingdom&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;01273 606674&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;Just a meeting place, in case the venue changes.&amp;lt;/div&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;
Ceci pourrait être marqué comme : &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;adr&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;fn extended-address&amp;quot;&amp;gt;Phone Boxes by the Sealife Centre&amp;lt;/div&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;Marine Parade&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Brighton &amp;amp;amp; Hove&amp;lt;/span&amp;gt;,&lt;br /&gt;
   &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;England&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;BN2 1TB&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;country&amp;quot;&amp;gt;United Kingdom&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;01273 606674&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;Just a meeting place, in case the venue changes.&amp;lt;/div&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;
===Problématiques===&lt;br /&gt;
L'exemple au-dessus semble être une solution élégante, mais une variété plus grande d'exemples de pages publiées de la sorte sont demandées, pour être certain que cela croise tous les scénarios communs. Ceux-ci devraient inclure des cas dans lesquels &amp;quot;adr&amp;quot; n'est pas déjà utilisé ; remarquez que dans ce cas un niveau supplémentaire d'imrication est exigé. Les implications de cela, pour les hcards déjà publiés, devraient être prises en considération.&lt;br /&gt;
&lt;br /&gt;
Aussi, que penser des hcards pour les endroits publiés, qui incluent déjà une &amp;quot;extended address&amp;quot; ? &lt;br /&gt;
&lt;br /&gt;
par ex. &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;vcard&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Powell's Pool&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;Sutton Park&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Birmingham&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;England&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:AndyMabbett|Andy Mabbett]] 05:40, 15 Dec 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
=== formats location nommés ===&lt;br /&gt;
Les efforts précédents sur les formats de lieux nommés :&lt;br /&gt;
&lt;br /&gt;
==== Simple GeoRSS featurename ====&lt;br /&gt;
Le vocabulaire [http://georss.org/simple GeoRSS simple] contient l'exemple suivant de lieu nommé dans la section &amp;quot;Additional Properties&amp;quot; qui référence un &amp;lt;strong&amp;gt;&amp;lt;code&amp;gt;featurename&amp;lt;/code&amp;gt;&amp;lt;/strong&amp;gt; tag.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;h3&amp;gt;Feature Type, Feature Name, and Relationship Tags&amp;lt;/h3&amp;gt;&amp;lt;p&amp;gt;The Feature Type, Feature Name, and Relationship tags are specified as GeoRSS elements.&amp;lt;/p&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
    &amp;amp;lt;georss:point&amp;amp;gt;45.256 -110.45&amp;amp;lt;/georss:point&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;georss:featuretypetag&amp;amp;gt;city&amp;amp;lt;/georss:featuretypetag&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;amp;lt;georss:relationshiptag&amp;amp;gt;is-centered-at&amp;amp;lt;/georss:relationshiptag&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;amp;lt;georss:featurename&amp;amp;gt;Podunk&amp;amp;lt;/georss:featurename&amp;amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Une [http://www.google.com/search?q=site%3Ageorss.org%20featurename recherche sur featurename sur georss.org] échoue pour trouver d'autres références, y compris une définition.&lt;br /&gt;
&lt;br /&gt;
Un [http://lists.eogeo.org/pipermail/georss/2006-December/000895.html email sur la liste georss datant de déc 2006] fait apparaître le fil de notes &amp;quot;featurename, other missing bits from the site&amp;quot; qu'il existe &amp;quot;there is some updating to do&amp;quot; en réponse à la problématique que ces descriptions de &amp;quot;featurename&amp;quot; ne sont pas présentes sur le GeoRSS Simple et sur le Modèle  GeoRSS. GeoRSS GML ne fait aucune mention des propriétés non-géométriques.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== FN sémantique pseudo ==&lt;br /&gt;
Il existe beaucoup de sites (par ex. [http://flickr.com Flickr], [http://consumating.com/ Consumating]) qui permettent à l'utilisateur d'avoir '''à la fois''' un login/handle/alias en plusieurs mots, '''et''' de ne pas montrer son ''vrai'' noms (fn, n, given-name, family-name etc.).&lt;br /&gt;
&lt;br /&gt;
Pour les personnes représentées par les pages profil de ces sites, le mieux que nous puissions faire est de baliser leurs login/handle/alias sous leurs &amp;quot;nickname&amp;quot;. Initialement, nous avions pensé que de tels pseudos etc. n'étaient que des mots uniques et de ce fait nous avons créé [[hcard-fr#Optimisation_implicite_du_.22nickname.22|l'optimisation implicite du nickname]] en rapport, où vous pouvez baliser le pseudo sous un &amp;quot;fn&amp;quot; et faire qu'il soit automatiquement réglé comme une valeur de propriété &amp;quot;nickname&amp;quot;, et des valeurs vides poiur toutes les sous-valeurs &amp;quot;n&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Afin de gérer les pseudos en plusieurs mots, similaire à [[hcard-fr#Info_Contact_Organisation|l'information de l'information dans la hCard]] la méthode suivante est proposée :&lt;br /&gt;
&lt;br /&gt;
=== combinaison du &amp;quot;fn&amp;quot; et &amp;quot;nickname&amp;quot; ===&lt;br /&gt;
Du fait de l'utilisation potentielle de nicknames/handles/nomsutilisateurs en plusieurs mots dans le contenu publiés sur le Web (par ex. sur des sites comme [http://flickr.com Flickr] et [http://consumating.com/ Consumating]), hCard a un mécanisme pour spécifier un &amp;quot;fn&amp;quot; en plusieurs mots qui est aussi un &amp;quot;nickname&amp;quot; sans affecter toutes les sous-propriétés &amp;quot;n&amp;quot; qui sont spécifiées autrement, et sous-entendant explicitement des valeurs par défaut pour les sous-propriétés &amp;quot;n&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Similaire à [[hcard-fr#Optimisation_implicite_du_.22nickname.22|l'optimisation implicite du nickname]], si la propriété &amp;quot;fn&amp;quot; et une propriété &amp;quot;nickname&amp;quot; ont la même valeur exacte (typiquement parce qu'elles sont réglées sur le même élément, par ex.  &amp;lt;code&amp;gt;class=&amp;quot;fn nickname&amp;quot;&amp;lt;/code&amp;gt;), alors&lt;br /&gt;
&lt;br /&gt;
# Le contenu &amp;quot;fn&amp;quot; est traité comme la valeur de propriété &amp;quot;nickname&amp;quot;.&lt;br /&gt;
# Les parseurs devraient gérer la propriété &amp;quot;n&amp;quot; manquante en sous-entendant les valeurs vides pour toutes les sous-propriétés &amp;quot;n&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== FN implicite à partir de N ==&lt;br /&gt;
Parce que la propriété &amp;quot;n&amp;quot; est plus détaillée et structurée que la propriété &amp;quot;fn&amp;quot;, et parce que les [[hcard-examples-in-wild-fr|exemples dans la jungle]] ont montré que très souvent ce qui est spécifié pour les sous-propriétés &amp;quot;n&amp;quot; est aussi spécifié pour la propriété &amp;quot;fn&amp;quot;, nous pourrions ajouter l'optimisation implicite suivante qui permettrait aux sites de n'utiliser que &amp;quot;n&amp;quot; et ses sous-propriétés.&lt;br /&gt;
&lt;br /&gt;
En outre, quelque sites n'ont pas du texte contigu et ininterrompu qui représente la valeur désirée &amp;quot;fn&amp;quot;, et aurait plutôt le &amp;quot;fn&amp;quot; implicite à partir des sous-propriétés &amp;quot;n&amp;quot;. Par exemple, &amp;quot;Citizen Space Citizens&amp;quot; sur [[hcard-examples-in-wild-fr|hCard-exemples-dans-la-jungle]].&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;fn&amp;quot; implicite à partir de l'optimisation de &amp;quot;n&amp;quot; ===&lt;br /&gt;
Si une hCard n'a pas de &amp;quot;fn&amp;quot;, et dispose d'une propriété &amp;quot;n&amp;quot; avec une ou plusieurs sous-propriétés, alors la valeur de la propriété &amp;quot;fn&amp;quot; peut être tirée implicitement en concaténant les valeurs de la sous-propriété &amp;quot;n&amp;quot; comme suit, avec un espace entre chaque valeur de sous-propriétés, et plusieurs instances de sous-propriété.&lt;br /&gt;
&lt;br /&gt;
* 'honorific-prefix'es (comme trouvé dans l'ordre du document)&lt;br /&gt;
* 'given-name'&lt;br /&gt;
* 'additional-name's (comme trouvé dans l'ordre du document)&lt;br /&gt;
* 'family-name'&lt;br /&gt;
* 'honorific-suffix'es (comme trouvé dans l'ordre du document)&lt;br /&gt;
	&lt;br /&gt;
== N Implicite provenant de ses sous-propriétés ==&lt;br /&gt;
Le fait que les sous-propriétés &amp;quot;n&amp;quot; soient nommées suffisamment uniquement (ce qui veut dire, elles ne sont pas utilisées par toute  autre propriété hCard), et que &amp;quot;n&amp;quot; est l'une des [[hcard-singular-properties-fr|propriétés singulières hcard]], il est possible de considérérer d'abandonner la propriété en elle-même &amp;quot;n&amp;quot; pour la hCard et simplement la rediriger en utilisant les sous-propriétés, telles que les propriétés de la hCard.&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;n&amp;quot; implicite à partir de ses sous-propriétés===&lt;br /&gt;
Si une hCard n'a ni propriétés &amp;quot;fn&amp;quot; ni &amp;quot;n&amp;quot;, alors le champ entier de la hCard est considéré pour être à l'intérieur et une propriété implicite &amp;quot;n&amp;quot;.&lt;br /&gt;
	&lt;br /&gt;
par ex. ce marquage : &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;given-name&amp;quot;&amp;gt;Tantek&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Çelik&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;
serait traité du point de vue d'un parsage comme : &lt;br /&gt;
&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;&amp;lt;span class=&amp;quot;n&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;given-name&amp;quot;&amp;gt;Tantek&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Çelik&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
Ce qui veut dire, avec l'optimisation '''&amp;quot;fn&amp;quot; implicite à partir de optimisation &amp;quot;n&amp;quot; ''', serait alors en fait traitée comme : &lt;br /&gt;
&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;&amp;lt;span class=&amp;quot;fn n&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;given-name&amp;quot;&amp;gt;Tantek&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Çelik&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* une requête en rapport tirée de la liste de diffusion : http://microformats.org/discuss/mail/microformats-discuss/2007-September/010791.html&lt;br /&gt;
&lt;br /&gt;
== Exemples ==&lt;br /&gt;
* Voir [[hcard-examples-fr|exemples hCard]], qui fournit plusieurs exemples illustrés instructifs, tout comme des exemples de hCard 1:1 pour chaque exemple dans la [http://www.ietf.org/rfc/rfc2426.txt RFC 2426].&lt;br /&gt;
&lt;br /&gt;
=== Utiliser la RFC2806 avec hCard ===&lt;br /&gt;
La [http://www.ietf.org/rfc/rfc2806.txt RFC 2806] définit le schéma téléphone &amp;quot;tel:&amp;quot;, &amp;quot;fax:&amp;quot; et &amp;quot;modem:&amp;quot; pour gérer les communications téléphoniques avec des URIs de la même façon que &amp;quot;mailto:&amp;quot; est défini pour l'email. Cela fait partie de la liste des schémas enregistrés par IANA : [http://www.iana.org/assignments/uri-schemes Uniform Resource Identifier (URI) SCHEMES]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
tel   telephone [RFC2806]&lt;br /&gt;
fax   fax       [RFC2806]&lt;br /&gt;
modem modem     [RFC2806]&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Il est pratique d'écrire votre numéro de téléphone comme ceci.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a class=&amp;quot;tel&amp;quot; href=&amp;quot;tel:+1-919-555-7878&amp;quot;&amp;gt;+1-919-555-7878&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ou même : &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a class=&amp;quot;tel&amp;quot; href=&amp;quot;tel:+1-919-555-7878&amp;quot;&amp;gt;Le téléphone de Monsieur Bloïc&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Vous pouvez ajouter du support pour le &amp;quot;tel:&amp;quot; vers votre bureau et vers votre navigateur&lt;br /&gt;
&lt;br /&gt;
* Pour Gnome, edit ~/.gnome/Gnome et ajoutez quelque chose à la section vers les gestionnaires URL. (Dan Connolly utilise ça pour recevoir galeon afin de lancer telnum à partir de  [http://dev.w3.org/cvsweb/2001/telagent/ sources telagent] pour des URIs tel)&lt;br /&gt;
* Dans Mozilla, [http://dizzy.mozdev.org/ Dizzy]&lt;br /&gt;
* Dans Internet Explorer, [http://msdn.microsoft.com/workshop/networking/pluggable/overview/overview.asp Asynchronous Pluggable Protocols]&lt;br /&gt;
&lt;br /&gt;
Sur le front CSS... Vous pourriez ajouter par exemple automagiquement une icône. J'ai mis la propriété !important pour ceux qui veulent l'ajouter à leurs propres feuilles de style dans leurs navigateurs, ainsi ils connaissent les types de liens au moment de naviguer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
a[href^=&amp;quot;tel:&amp;quot;]:before {&lt;br /&gt;
    content: '\260f  ' !important;&lt;br /&gt;
    padding-left: 20px !important; }&lt;br /&gt;
&lt;br /&gt;
a[href^=&amp;quot;mailto:&amp;quot;]:before {&lt;br /&gt;
    content: '\2709  ' !important;&lt;br /&gt;
    padding-left: 20px !important; }&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Encoder des attributs &amp;quot;modernes&amp;quot;  ==&lt;br /&gt;
Depuis que la vCard a été initialisée, différentes technologies interactives et schémas d'adressage ont été largement adoptés. Bien qu'il n'y ait pas de propriétés spécifiques pour ces technologies / schémas d'adressage, elles peuvent être capturées sous des URLs ou des adresses email.&lt;br /&gt;
&lt;br /&gt;
Ceci a été désormais couché pour la plupart. Voir : &lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/hcard-examples-fr#Nouveaux_Types_d.27Information_de_Contact&lt;br /&gt;
&lt;br /&gt;
Restent à régler : &lt;br /&gt;
&lt;br /&gt;
* les adresses iChat mac.com , stocker simplement  &amp;quot;@mac.com&amp;quot; email addresses, par ex.&lt;br /&gt;
** &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;amp;lt;a class=&amp;quot;email&amp;quot; href=&amp;quot;mailto:loic@mac.com&amp;quot;&amp;amp;gt;...&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* MSN Instant Messenger, vous pouvez stocker de simples adresses email &amp;quot;@hotmail.com&amp;quot; ou &amp;quot;@msn.com&amp;quot; ou &amp;quot;@passport.com&amp;quot; email addresses.&lt;br /&gt;
* Internet Relay Chat (IRC), utilisez &amp;quot;irc:&amp;quot; URLs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Auto-Découverte ==&lt;br /&gt;
=== découverte hCard représentative ===&lt;br /&gt;
Compte tenu d'une page comportant une ou plusieurs hCards, quelle hCard est la hCard représentative pour la page ?&lt;br /&gt;
&lt;br /&gt;
Voir [[representative-hcard-fr|hCard-représentative]]&lt;br /&gt;
&lt;br /&gt;
=== relations hCard vers hCard  ===&lt;br /&gt;
Il existe plusieurs types de relations hCard vers hCard, ce qui veut dire, une hCard faisant un hyperlien vers une autre hCard qui pourrait bénéficier des valeurs rel explicites qui ont décrit la relation spécifique.&lt;br /&gt;
&lt;br /&gt;
==== home page vers page contact ====&lt;br /&gt;
Bon nombre d'individus et d'organisations s'identifient eux-mêmes à travers leurs URLs, et puis incluent une page séparée pour leur information de contact. Ceci est une pratique existante qui pourrait être représentée avec des microformats.&lt;br /&gt;
&lt;br /&gt;
Exemples : &lt;br /&gt;
* Ryan King, http://theryanking.com/ , http://theryanking.com/contact/&lt;br /&gt;
* Tantek Çelik, http://tantek.com/ , http://tantek.pbwiki.com/ContactCard/&lt;br /&gt;
* Google, http://www.google.com/ , http://www.google.com/intl/fr/contact/index.html&lt;br /&gt;
&lt;br /&gt;
Ces exemples pourraient être traités par le brainstorming suivant mini hCard vers hCard étendue.&lt;br /&gt;
&lt;br /&gt;
==== mini hCard vers hCard étendue ====&lt;br /&gt;
Peut-être que le type le plus commun du lien de hCard vers hCard, par ex. d'une page personnelle ou blog vers la page de contact de la personne/à propos, peut-être constituée de seulement un nom et un URL, qui pointe vers une hCard étendue. Exemples dans la junge :&lt;br /&gt;
&lt;br /&gt;
Dans cette instance, les valeurs rel possibles pourraient comprendre : &lt;br /&gt;
* rel=&amp;quot;expanded&amp;quot;&lt;br /&gt;
* rel=&amp;quot;definitive&amp;quot; - le problème avec ça est que la hCard étendue n'est pas nécessairement une version définitive.&lt;br /&gt;
* rel=&amp;quot;canonical&amp;quot; - de la même façon, la hCard étendue n'est pas nécesairement un URL canonique. Ce peut simplement être *une* version étendue, pas *la* version étendue.&lt;br /&gt;
&lt;br /&gt;
Les valeurs rel qui suivent ont été suggérées, mais ne sont vraiment pas une bonne idée du fait qu'elle sous-tendent une dépendance pour ajouter une nouvelle valeur rel pour n'importe quel nouveau microformat qui pourrait avoir une mini version pointant vers une version plus étendue :&lt;br /&gt;
* rel=&amp;quot;author&amp;quot;&lt;br /&gt;
* rel='contact'&lt;br /&gt;
* rel=&amp;quot;contactinfo&amp;quot;&lt;br /&gt;
* rel='hcard'&lt;br /&gt;
* rel='person'&lt;br /&gt;
&lt;br /&gt;
Voici quelques valeurs plus génériques qui ont été suggérées et qui peut-être font encore moins de sens : &lt;br /&gt;
* rel='microformat' - ceci ne fait aucun sens quand vous imaginez un monde où presque chaque page contiendra des microformats.&lt;br /&gt;
* rel='about' - qu'est-ce que &amp;quot;about&amp;quot; à à faire à propos d'une personne ou même de la paternité d'auteur ?&lt;br /&gt;
* rel=&amp;quot;profile&amp;quot; - devrait être réservé pour signifier qu'il y a ici un profil [[xmdp|XMDP]] pour la page en cours.&lt;br /&gt;
* rel='PIM' - pas sûr de la manière dont cela puisse faire quelque sens.&lt;br /&gt;
&lt;br /&gt;
==== mini hCard vers site distant ====&lt;br /&gt;
Selon les instructions trouvées dans [[hcard-examples-fr|hCard-exemples]] pour  [[hcard-examples-fr# Références_aux_Personnes_dans_les_Blogrolls|baliser les personnes dans les blogrolls]], vous pourriez avoir une hCard de votre site pour une autre personne qui lie ensuite vers le site web de cette autre personne. Devrait-il y avoir une valeur rel qui indique cette &amp;quot;mini-hcard&amp;quot; pour la relation &amp;quot;person&amp;quot; ?&lt;br /&gt;
&lt;br /&gt;
==== mini hCards et liens hCard étendus à proximité ====&lt;br /&gt;
Quelques auteurs incluent des mini-hCards sur leurs pages personnelles (par ex. dans leurs billets de blogs) et à cette heure ces mini-hcards ne pointent pas vraiment vers des versions étendues. Néanmoins, parfois elles sont un lien séparé mais à proximité sur la même page comme &amp;quot;à propos&amp;quot; ou &amp;quot;contact&amp;quot; qui lie vraiment vers une hCard étendue.&lt;br /&gt;
&lt;br /&gt;
Par ex. sur [http://factoryjoe.com/blog/ FactoryCity], les billets de blogs ont des mini-hcards pour &amp;quot;published by&amp;quot;, à savoir (espace blanc ajouté pour la lisibilité) :&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Published by &lt;br /&gt;
&amp;lt;span class=&amp;quot;vcard author&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;a href=&amp;quot;http://factoryjoe.com/blog/author/factoryjoe/&amp;quot; class=&amp;quot;url fn&amp;quot;&amp;gt;&lt;br /&gt;
  Chris Messina&lt;br /&gt;
 &amp;lt;/a&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;
Sur ces même pages de blogs, il y a un lien étiqueté &amp;quot;Contact Information&amp;quot; qui lie vers http://factoryjoe.com/blog/hcard/ qui a une hCard avec plus d'informations comme le numéro de téléphone, l'anniversaire, etc.&lt;br /&gt;
&lt;br /&gt;
=== Auto-Découverte pour XFN ===&lt;br /&gt;
Un auteur publiera généralement son information XFN sur une page spécifique, plutôt que sur toutes les pages. En particulier, une page spécifique à partir de la page d'accueil de son blog et par conséquent ce serait utile d'avoir une valeur rel explicite pour aider à l'auto-découverte de l'information XFN.&lt;br /&gt;
&lt;br /&gt;
Ceci fût suggéré par Jens Alfke le 20050606 durant le dîner des blogueurs WWDC.&lt;br /&gt;
&lt;br /&gt;
=== auto-découverte lien vCard rel  ===&lt;br /&gt;
Une possibilité similaire est un lien d'auto-découverte dans l'en-tête du document qui pourrait pointer vers une URL (peut-être avac transformation) vers une version vCard de la hCard représentative.&lt;br /&gt;
&lt;br /&gt;
Sur la page avec l'encodage hCard, le meilleur lien serait comme suit : &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt; &amp;lt;link rel=&amp;quot;alternate&amp;quot; type=&amp;quot;text/directory&amp;quot; href=&amp;quot;...&amp;quot; /&amp;gt; &amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
cette page HTML est une vue alternative de la vCard.  &lt;br /&gt;
&lt;br /&gt;
Le [http://www.iana.org/assignments/media-types/text/ type approprié et enregistré] pour les entités vCard est “text/directory”, comme défini dans la RFC 2425 Internet “[http://www.rfc-editor.org/rfc/rfc2425.txt A MIME Content-Type for Directory Information]”. RFC 2426, “[http://www.rfc-editor.org/rfc/rfc2425.txt vCard MIME Directory Profile]”, spécifie le profil vCard pour les entités “text/directory” entities, que le profil champ header MIME/HTTP “Content-Type” indiquerait avec un paramètre “profile” quelle valeur est “VCARD”. &lt;br /&gt;
&lt;br /&gt;
Il n'est pas clair si l'attribut HTML/XHTML “type” permet des valeurs avec les paramètres. Le  2004-05-23, [http://bjoern.hoehrmann.de/ Björn Höhrmann] a envoyé au [http://www.w3.org/2002/05/html/charter HTML Working Group] une [http://www.w3.org/mid/40ccdc4d.97400945@smtp.bjoern.hoehrmann.de demande de clarification] sur la problématique.&lt;br /&gt;
&lt;br /&gt;
Quand on est sur une page différente, référencer cette page encodée dans le href ne serait ''pas'' une vue alternative de la page en cours. Par conséquent rel=&amp;quot;alternate&amp;quot; peut ne pas être approprié. Le problème de la valeur rel à utiliser est plus grand que les liens vers les vCards.&lt;br /&gt;
&lt;br /&gt;
== Améliorations geo ==&lt;br /&gt;
voir [[geo-brainstorming-fr|geo-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
== Autres cas d'utilisation ==&lt;br /&gt;
Ajoutez svp vos suggestions !&lt;br /&gt;
Le microformat hCard pourraient être utilisé pour : &lt;br /&gt;
* Calculer et afficher l'âge du sujet &amp;quot;à la date du jour&amp;quot;&lt;br /&gt;
J'ai (Tantek) vu des exemples où il y a une présentation visualisable / cliquable d'un point sur une carte et le désir d'inclure l'information geo lisible par la machine avec le même élément, par ex. quelque chose comme : &lt;br /&gt;
* Calculer et afficher l'âge du sujet à sa mort (si une [[hcard-date-of-death-fr|Date de Décès]] est disponible) &lt;br /&gt;
* Générer un iCal récurrent pour un anniversaire de sujet vivant&lt;br /&gt;
* Générer un iCal récurrent pour un &amp;quot;anniversaire de naissance&amp;quot; d'un sujet décédé (si une [[hcard-date-of-death-fr|Date de Décès]] est disponible) &lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
== Problématiques avec les Applications vCard ==&lt;br /&gt;
Voir [[vcard-implementations-fr|vcard-implémentations]].&lt;br /&gt;
&lt;br /&gt;
== Questions Ouvertes ==&lt;br /&gt;
&lt;br /&gt;
Q : parce que beaucoup des composants utiliseraient des classes CSS pour encoder les données, il est possible de MIXER deux profils différents. (par ex. hCard et XFN). Il n'y a pas de véritables contraintes sur où/comment exécuter les noms de classes, ceux-ci sont basés sur le profil html, parce qu'il est difficile d'associer le texte dans l'attribut vers un profil spécifique.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;a href=&amp;quot;mailto:jean.dupont@exemple.com&amp;quot; class=&amp;quot;fn&amp;quot; rel=&amp;quot;met&amp;quot;&amp;gt;Jean Dupont&amp;lt;/a&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-- [http://suda.co.uk/ Brian Suda]&lt;br /&gt;
&lt;br /&gt;
Q : Préserver l'Espace Blanc ? Les applications qui transforment devraient-elles préserver les caractères espaces blancs supplémentaires ? Par exemple : &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://monsiteweb.com/&amp;quot; class=&amp;quot;fn n&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;given-name&amp;quot;&amp;gt;Jean&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;other-names&amp;quot;&amp;gt;Q.&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Public&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Quand c'est transformé en une vCard, la propriété N piochera à part les tags span et créera la valeur pour le N séparée correctement par des signes deux points (:). La propriété FN prendra une chaîne et l'affichera simplement. Il existe deux restitutions possibles pour FN : &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Jean Q. Public&lt;br /&gt;
&lt;br /&gt;
    Jean&lt;br /&gt;
    Q.&lt;br /&gt;
    Public&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Soit l'espace blanc est préservé ou il ne l'est pas. Qu'est-ce que devraient restituter les applications transformates ?&lt;br /&gt;
&lt;br /&gt;
-- [http://suda.co.uk/ Brian Suda]&lt;br /&gt;
&lt;br /&gt;
R : L'application de parsage devrait suivre les règles d'éclatement de l'espace blanc du type mime qu'elle retrouve. Par ex. si elle trouve un document &amp;quot;text/html&amp;quot;, elle devrait faire de la suppression d'espace blanc HTML.&lt;br /&gt;
&lt;br /&gt;
-- [http://tantek.com/log/ Tantek]&lt;br /&gt;
&lt;br /&gt;
Bon nombre des Questions et Réponses sont pertinentes pour à la fois [&amp;quot;hCal&amp;quot;] et hCard.&lt;br /&gt;
&lt;br /&gt;
Q : Qu'est ce qui serait approprié pour emballer le nom du propriétaire de vCard avec &amp;lt;dfn/&amp;gt; ? Ceci peut donner à la hCard quelque valeur ajoutée sémantique à l'intérieur du document XHTML.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;agent&amp;quot;&amp;gt; &lt;br /&gt;
 &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;email&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;a class=&amp;quot;internet&amp;quot; href=&amp;quot;mailto:jeanvendredi@truc.com&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;dfn&amp;gt;&lt;br /&gt;
       &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Jean Vendredi&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;/dfn&amp;gt;&lt;br /&gt;
   &amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;+1-919-555-7878&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;title&amp;quot;&amp;gt;Administrateur Aire, Assistant&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
-- [http://www.ben-ward.co.uk/ Ben Ward]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Si la réponse à la question Q au-dessus est &amp;quot;oui&amp;quot;, pouquoi ne pas utiliser ce qui suit ?&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;dfn class=&amp;quot;fn&amp;quot;&amp;gt;Joe Friday&amp;lt;/dfn&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
ou&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;agent&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;dfn class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;email&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;a class=&amp;quot;internet&amp;quot; href=&amp;quot;mailto:jfriday@host.com&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Joe Friday&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;+1-919-555-7878&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;title&amp;quot;&amp;gt;Area Administrator, Assistant&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/dfn&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;
Ceci marquerait la hCard entière comme l'&amp;quot;instance de définition&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[User:Bob Jonkman|Bob Jonkman]] 10:07, 13 Jul 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Les Applications qui sont conscientes des hCards ou qui peuvent convertir les hCards en formats vCard.&lt;br /&gt;
&lt;br /&gt;
=== favelet(s) de copie hCards ===&lt;br /&gt;
* Je pense qu'un Favelet fonctionnerait bien ici. Quand vous trouvez une page qui est compatible hCard, vous cliquez sur le favlet et vous obtenez vous-même une vCard. C'est fait ! Voir X2V dans la section des implémentations de la spec [[hcard-fr|hCard]].&lt;br /&gt;
&lt;br /&gt;
=== Icônes distribuées de commentateurs ===&lt;br /&gt;
''L'URL en référence dans cette section n'est plus disponible. Les idées sur l'utilisation d'icônes sont néanmons toujours pertinentes.&amp;quot;'' [[User:WilleRaab|WilleRaab]] 16:55, 23 Jul 2007 (PDT)&lt;br /&gt;
* Voir [http://thedredge.org/2005/06/using-hcards-in-your-blog/ using hCards in your blog] pour un exemple de hCards utilisées pour les auteurs des commentaires (commentateurs). Le système utilisé là, &amp;quot;Gravatars&amp;quot;, est un site centralisé qui sert les icônes de commentateurs qui exige un login, etc.&lt;br /&gt;
&lt;br /&gt;
Et si nous donnions à chaque commentateur l'option d'héberger sa propre icône ?&lt;br /&gt;
&lt;br /&gt;
Une implémentation d'icône de commentateur distribué pourrait fonctionner comme ça : &lt;br /&gt;
&lt;br /&gt;
# Vu l'URL d'un commentateur, chercher un élément &amp;lt;code&amp;gt;&amp;lt;address&amp;gt;&amp;lt;/code&amp;gt; avec le nom de classe  &amp;quot;vcard&amp;quot; sur l'URL du commentateut.  L'élément &amp;lt;code&amp;gt;&amp;lt;address&amp;gt;&amp;lt;/code&amp;gt; est supposé être l'information de contact pour la page. (voir [[hcard-faq-fr|hCard FAQ]] pour plus d'infos), aussi cela fait du sens.&lt;br /&gt;
# Puis, chercher le premier élément dans cette hCard qui ait un nom de classe de &amp;quot;logo&amp;quot;.&lt;br /&gt;
# En espérant que cet élément soit un &amp;lt;code&amp;gt;&amp;lt;img&amp;gt;&amp;lt;/code&amp;gt;, et si oui, utiliser son src pour recevoir l'icone du commentateur.&lt;br /&gt;
# Basta.  Vous avez des icônes de commentateurs distribuées !&lt;br /&gt;
&lt;br /&gt;
== Prévention du Spam ==&lt;br /&gt;
hCard utilise les liens &amp;lt;code&amp;gt;mailto:&amp;lt;/code&amp;gt; et par conséquent, il hérite automatiquement des inconvénients des liens &amp;lt;code&amp;gt;mailto:&amp;lt;/code&amp;gt; :&lt;br /&gt;
Ces liens peuvent être facilement détectés par les spiders d'email (utilisé par les spammeurs).&lt;br /&gt;
&lt;br /&gt;
Les adresses email sont piochées comme toute autre lien crawlé par un moteur de recherche et les crawleurs de confiance peuvent être dissuadés d'ajouter de l'emphase tout en indexant ces liens en incluant rel=&amp;quot;nofollow&amp;quot; (Voir [[rel-nofollow-fr|rel-nofollow]]). Néanmoins, les adresses email utilisées pour le spam sont crawlées par les spiders d'email qui ignoreront probablement cet attribut.&lt;br /&gt;
&lt;br /&gt;
Il existe des moyens d'empêcher la détection d'adresses email par les simples spiders d'email, tout en retenant une totale compatibilité avec les applications (X)HTML.&lt;br /&gt;
Un moyen commun est d'&amp;quot;encoder&amp;quot; le &amp;quot;m&amp;quot; de &amp;quot;mail&amp;quot; et &amp;quot;@&amp;quot; avec des entités caractères, à ce stade c'est imprudent de suivre une convention de seulement encoder les caractères spécifiques parce que les spiders email peuvent aussi piocher ça : &lt;br /&gt;
&lt;br /&gt;
Exemple de lien original :&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a class=&amp;quot;email&amp;quot; href=&amp;quot;mailto:john.smith@example.com&amp;quot;&amp;gt;john.smith@example.com&amp;lt;/a&amp;gt; &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Exemple de lien &amp;quot;encodé&amp;quot; (avec l'ajout de rel-nofollow) :&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a class=&amp;quot;e&amp;amp;amp;#109;ail&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;&amp;amp;amp;#109;ailto:john.smith&amp;amp;amp;#064;exemple.com&amp;quot;&amp;gt;john.smith&amp;amp;amp;#064;exemple.com&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Les simples spiders email qui ne font pas le décodage d'entité caractère ne pourront par conséquent pas trouver votre adresse email.&lt;br /&gt;
&lt;br /&gt;
''Note :'' Peut-être qu'il y a ou aura des spiders email qui peuvent décoder les entités, ainsi cette technique n'aidera que pour les spiders email de mauvaise qualité.&lt;br /&gt;
&lt;br /&gt;
(Voir aussi : http://rbach.priv.at/Misc/2005/EmailSpiderTest)&lt;br /&gt;
&lt;br /&gt;
=== Autres méthodes de prévention à considérer ===&lt;br /&gt;
* Utiliser un code côté serveur pour implémenter les entités caractères au hasard&lt;br /&gt;
* Afficher l'adresse d'une façon pensée pour n'être lisible que par des humains (de ce fait cassant le lien):&lt;br /&gt;
** Utiliser une image plutôt que du texte (pourrait être encore lu par les machines en utilisant un OCR)&lt;br /&gt;
** Utiliser un texte lisible par une machine qui charrie le besoin de l'éditer avant utilisation (par ex. SVP_PASDESPAM_nom@exemple_PASDESPAM.com)&lt;br /&gt;
* Utiliser un décryptage javascript côté client d'une adresse cryptée (oblige à avoir javascript)&lt;br /&gt;
* Pointer vers un formulaire email ou toute autre URL au lieu d'une adresse email&lt;br /&gt;
&lt;br /&gt;
== Tutoriels ==&lt;br /&gt;
* Comment encoder les entrées hCard dans les logiciels de blogs connus.&lt;br /&gt;
* Bonnes raisons de publier votre hCard&lt;br /&gt;
** en tant qu'entreprise, faire que les personnes vous placent dans leurs carnets d'adresses, ainsi elles vous trouveront plus tard.&lt;br /&gt;
** en tant qu'entreprise avec une liste d'emails, faire que les personnes vous ajoutent (avec l'adresse email) à leurs carnets d'adresses de façon à ce que leurs listes d'emails fonctionne via le carnet d'adresses.&lt;br /&gt;
&lt;br /&gt;
[http://www.elanceur.org/MicroFormats/StylezvoshCardsavecCSS.html Stylisez les hCards avec CSS] est un texte sur la manière d'utiliser CSS pour faire une présentation améliorée de contenus des hCards.&lt;br /&gt;
&lt;br /&gt;
== Parsage ==&lt;br /&gt;
Voir la page séparée [[hcard-parsing-fr|hCard parsage]] pour les règles actuelles de parsage de la hCard.&lt;br /&gt;
&lt;br /&gt;
Ajoutez idées/propositions pour améliorer/ajouter au parsage hCard ici de cette section du brainstorming hCard, et assurez-vous d'inclure des URLs vers des exemples de hCards dans la jungle qui pourraient bénéficier des changements de règles de parsage.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Gestion HTML Sémantique Supplémentaire ===&lt;br /&gt;
==== gestion élément &amp;lt;code&amp;gt;acronym&amp;lt;/code&amp;gt; ====&lt;br /&gt;
Choix : &lt;br /&gt;
* Traiter explicitement &amp;lt;code&amp;gt;acronym&amp;lt;/code&amp;gt; comme le même que &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt;, selon la sémantique de l'attribut  '&amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt;' sur &amp;lt;code&amp;gt;acronym&amp;lt;/code&amp;gt; en particulier, comme défini dans HTML4.01.&lt;br /&gt;
* Traiter explictement &amp;lt;code&amp;gt;acronym&amp;lt;/code&amp;gt; comme le même que &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt;, et décourager l'usage de &amp;lt;code&amp;gt;acronym&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;code&amp;gt;input&amp;lt;/code&amp;gt; element handling ====&lt;br /&gt;
Dans [[hcard-parsing-fr|parsage hCard]], j'ai défini de la gesion de cas spéciaux pour plusieurs éléments selon [[hcard-parsing-fr#plus_d'exceptions_sémantiques|plus d'exceptions sémantiques]], par ex. les propriétés textuelles sur l'élément &amp;lt;code&amp;gt;img&amp;lt;/code&amp;gt; utilisent l'attribut 'alt'.&lt;br /&gt;
&lt;br /&gt;
Un élément que j'ai oublié à cette heure était l'élément &amp;lt;code&amp;gt;input&amp;lt;/code&amp;gt;, spécifiquement &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. Un autre que j'ai oublié était l'élément &amp;lt;code&amp;gt;textarea&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
La suggestion simple est d'ajouter le [[hcard-parsing-fr|parsage hCard]] suivant, spécifiquement à la sous-section [[hcard-parsing-fr#toutes_propriétés|toutes propriétés]] :&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;...&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt;: utilise la valeur de l'attribut 'value'. S'il n'y a pas d'attribut 'value' alors traiter la valeur comme vide. Les agents-utilisateurs interactifs {{must-fr}} utiliser la [http://www.w3.org/TR/html4/interact/forms.html#current-value valeur en cours] de l'élément.&lt;br /&gt;
** considérer d'autres saisies de types aussi (par ex. checkbox, radio, hidden) et spécifiez comme les parser.&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;amp;lt;textarea&amp;amp;gt;&amp;lt;/code&amp;gt; :utilise les contenus texte de l'élément. Les agents-utilisateurs interactifs {{must-fr}} utiliser la the [http://www.w3.org/TR/html4/interact/forms.html#current-value valeur en cours] de l'élément.&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
==== auto-remplissage formulaires ====&lt;br /&gt;
Si vous allez sur un site qui a besoin de votre information de contact pour quelque chose, disons un site d'ecommerce pour l'encaissement, et si les champs de formulaire sont marqués avec la sémantique hCard comme au-dessus, alors peut-être que nous pourrions considérer faire que cela puisse signifier &amp;quot;insérer ici votre hCard&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Les agents utilisateurs interactifs (par ex. [[operator-fr|Operator]] sur [[firefox-fr|Firefox]]) pourrait détecter une telle sémantique &amp;quot;insérer ici votre hCard&amp;quot; dans les formulaires sur les pages, et vous laisser &amp;quot;pré-remplir&amp;quot; avec votre info de hcard, et puis immédiatement, nous avons un standard pour les auto-remplissages de formulaires, plutôt que tous les hacks qui sont rentrés dans les navigateurs depuis 1999 (à commencer par IE4.5/Mac qui j'en suis vraiment certain fût le premier à produire des auto-remplisseurs de formulaire d'un formulaire complet avec un seul bouton à presser - pas juste auto-compléter individuellement chaque champ de formulaire).&lt;br /&gt;
&lt;br /&gt;
Evidemment cela ferait sens de construire dans des formulaires *existants* des fonctionnalités d'auto-remplissage dans [[Firefox-fr|Firefox]] et [[IE-fr|IE]] et tout autre navigateur qui le supporte.&lt;br /&gt;
&lt;br /&gt;
Pour en savoir plus à ce propos, regardez le billet de blog 2007 [http://dbaron.org/log/2007-08#e20070818a hCard autofill?] par David Baron, un employé chez Mozilla.&lt;br /&gt;
&lt;br /&gt;
De cette manière les nouveaux sites pourraient simplement se conformer au standard, plutôt que de s'appuyer sur des hacks qui persent les valeurs label etc. et sous-tendent des choses et se trompent eux-mêmes parfois.&lt;br /&gt;
&lt;br /&gt;
'''Avantages [[i18n-fr|i18n]]''' : les saisies de formulaires hCard seraient aussi plus internationaux, évitant de ce fait pour chaque navigateur à supposer quel est le champ &amp;quot;name&amp;quot; et &amp;quot;telephone&amp;quot; dans chaque langeu, ainsi ils peuvent produire des auto-remplissages de formulaires sur n'importe quel site quelle que soit la langue, pas juste l'anglais.&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]] 16:24, 23 Jul 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
==== Discussion historique: ====&lt;br /&gt;
&lt;br /&gt;
Fils clé :&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2006-September/005951.html&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2006-October/006132.html&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2007-January/008312.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Quelque part en rapport &lt;br /&gt;
* http://microformats.org/wiki/rest/forms-brainstorming &lt;br /&gt;
* http://microformats.org/wiki/rest/forms-examples&lt;br /&gt;
&lt;br /&gt;
Un résumé clé :&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2006-October/006172.html &lt;br /&gt;
&lt;br /&gt;
Les options discutées dans un système de saisie hypothétique de hCard apparaît cette heure être : &lt;br /&gt;
&lt;br /&gt;
1) create a new root class other than vcard to indicate a form that's&lt;br /&gt;
fillable with hCard data.&lt;br /&gt;
&lt;br /&gt;
Proposed markup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;form class=&amp;quot;vcard-input&amp;quot; ...&amp;gt;&lt;br /&gt;
   &amp;lt;fieldset class=&amp;quot;fn&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;given-name&amp;quot; name=&amp;quot;first_name&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;family-name&amp;quot; name=&amp;quot;last_name&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/fieldset&amp;gt;&lt;br /&gt;
   ...&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  Benefits:&lt;br /&gt;
      Doesn't overcomplicate hCard with new parsing rules,&lt;br /&gt;
      doesn't require rewrite of existing parsers to ignore 'unparsable' data.&lt;br /&gt;
  Drawbacks:&lt;br /&gt;
      Requires completely new parsers to be written.&lt;br /&gt;
      Existing parsers would ignore data even if a valid hCard could be extracted.&lt;br /&gt;
&lt;br /&gt;
2) extend hCard's parsing rules to cover form elements and relying on&lt;br /&gt;
the FORM/INPUT semantics to indicate that stuff is inputtable.&lt;br /&gt;
&lt;br /&gt;
Proposed markup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;form ...&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;fieldset class=&amp;quot;fn&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;given-name&amp;quot; name=&amp;quot;first_name&amp;quot; value=&amp;quot;Rob&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;family-name&amp;quot; name=&amp;quot;last_name&amp;quot; value=&amp;quot;Manson&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/fieldset&amp;gt;&lt;br /&gt;
   ...&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;fieldset class=&amp;quot;fn&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;given-name&amp;quot; name=&amp;quot;first_name&amp;quot; value=&amp;quot;Scott&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;family-name&amp;quot; name=&amp;quot;last_name&amp;quot; value=&amp;quot;Reynen&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/fieldset&amp;gt;&lt;br /&gt;
   ...&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  Benefits:&lt;br /&gt;
      Small addition to existing format rather than new one.&lt;br /&gt;
      Semantics of an input form and the eventual display format are the same.&lt;br /&gt;
  Drawbacks:&lt;br /&gt;
      Existing parsers would/could parse forms as invalid hCards, would need re-writing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Broader question:&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2005-September/001059.html&lt;br /&gt;
Should this be extended beyond just hCard?&lt;br /&gt;
&lt;br /&gt;
==== Problèmes clé/points de discussion ====&lt;br /&gt;
* Extending parsing rules to extract value attributes from &amp;lt;input type=&amp;quot;text|hidden&amp;quot;&amp;gt; fields&lt;br /&gt;
  - ''Negative'' : this require adding a bit of special case to existing parsers to handle these elements&lt;br /&gt;
  - ''Positive'' : this could help to enable uf based auto form filling&lt;br /&gt;
  - ''Negative'' : this could help to enable uf based auto form filling (e.g. spam automation)&lt;br /&gt;
* Existing server side and client side scripts use non-hCard field names so class is the most seamless extension point&lt;br /&gt;
  - ''Positive'' : this is in line with the current parsing model&lt;br /&gt;
* Many parsers (e.g. [[Operator]]) parse the loaded html not the dynamic DOM&lt;br /&gt;
  - ''Negative'' : parser doesn't pickup any updated form data after the page has loaded&lt;br /&gt;
  - e.g. even though textarea appears to parse ok - it's only ever the initially loaded value that can be exported&lt;br /&gt;
* Forms may contain more than one hCard so using &amp;lt;FORM class=&amp;quot;vcard&amp;quot;&amp;gt; should not be required&lt;br /&gt;
  - ''Positive'' : this minimizes the changes to current parsing rules&lt;br /&gt;
* Empty values should be ignored when extracting hCards&lt;br /&gt;
* hCards with all empty values should be ignored when listing/extracting hCards&lt;br /&gt;
* Which form elements should be supported beyond input fields&lt;br /&gt;
  - ''Examples''&lt;br /&gt;
    - title select that lists mr/mrs/ms/dr/etc.&lt;br /&gt;
    - checkboxes to choose which addresses to use&lt;br /&gt;
  - ''Option'' : simplify extension to only support input fields and recommend that select's, radio buttons and checkboxes update related hidden input fields with simple javascript (e.g. onChange/Click=&amp;quot;this.form.elements[this.className].value = this.value&amp;quot;)&lt;br /&gt;
    - Unworkable.  Cannot require clientside javascript.&lt;br /&gt;
  - ''Positive'' : this would simplify parsing and server side form processing as only single input fields for each value need to be used/validated&lt;br /&gt;
  - ''Negative'' : hCard forms then require javascript if they use form elements other than basic &amp;lt;input type=&amp;quot;text|hidden&amp;quot;&amp;gt;&lt;br /&gt;
  - ''Comment'' : either way any auto form filling will be more complex beyond simple &amp;lt;input type=&amp;quot;text|hidden&amp;quot;&amp;gt; fields&lt;br /&gt;
    - hypothetical comment assuming more complexity beyond.&lt;br /&gt;
&lt;br /&gt;
[[User:RobManson|RobManson]]&lt;br /&gt;
&lt;br /&gt;
=== multiple type parsing ===&lt;br /&gt;
* Multiple Type parsing / Type Optimization : La spec le permet, et la [[hcard-authoring-fr#Num.C3.A9ros_de_T.C3.A9l.C3.A9phone|publication de hCard]] démontre l'usage de plusieurs désignations de types pour une valeur unique de tel. La syntaxe utilisée dans les exemples de publication où chacun semble comme s'il pouvait devenir encombrant. Du fait qeu ces désignations de type soient toutes des chaînes uniques de 'mot' il peut être possible d'implémenter des règles supplémentaires de parsage pour plusieurs types dans le même élément HTML. Gérer les délimiteurs peut être un problème [espace, virgule, etc?], et quelques-un des usages dans-la-jungle de plusieurs types auraient besoin d'être repérés et examinés avant de considérer quelques règles supplémentaires de parsage le long de ces lignes [ [[User:ChrisCasciano|ChrisCasciano]] 10:21, 16 Apr 2007 (PDT) ]&lt;br /&gt;
&lt;br /&gt;
=== parsage hyperlien fax et modem ===&lt;br /&gt;
For the &amp;quot;tel&amp;quot; property in particular, when the element is:&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;amp;lt;a href=&amp;quot;fax:...&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; OR &amp;lt;code&amp;gt;&amp;amp;lt;area href=&amp;quot;fax:...&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; : parse the value of the 'href' attribute, omitting the &amp;quot;fax:&amp;quot; prefix and any &amp;quot;?&amp;quot; query suffix (if present), in the attribute. For details on the &amp;quot;fax:&amp;quot; URL scheme, see RFC 2806. In addition, treat this 'tel' property instance as having subproperty type &amp;quot;fax&amp;quot; in addition to any explicit subproperty type specified on the 'tel' property.&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;amp;lt;a href=&amp;quot;modem:...&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; OR &amp;lt;code&amp;gt;&amp;amp;lt;area href=&amp;quot;modem:...&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; : parse the value of the 'href' attribute, omitting the &amp;quot;modem:&amp;quot; prefix and any &amp;quot;?&amp;quot; query suffix (if present), in the attribute. For details on the &amp;quot;modem:&amp;quot; URL scheme, see RFC 2806.  In addition, treat this 'tel' property instance as having subproperty type &amp;quot;modem&amp;quot; in addition to any explicit subproperty type specified on the 'tel' property.&lt;br /&gt;
&lt;br /&gt;
=== composants nom ambigus ===&lt;br /&gt;
&lt;br /&gt;
When automatically publishing hCards from pre-existing data, it's not necessarily possible to tell which words in a name map to which hCard properties. When the structure of a name is unknown, it is hard to ensure an automatically published hCard remains valid.&lt;br /&gt;
&lt;br /&gt;
There's currently no easy answer to this.&lt;br /&gt;
&lt;br /&gt;
One implementation suggestion is a 'best-guess' algorithm, something along the lines of:&lt;br /&gt;
&lt;br /&gt;
# If the name is one word, attempt [[hcard#Implied_.22nickname.22_Optimization|implied nickname optimization]]&lt;br /&gt;
# If the name is two words, attempt [[hcard#Implied_.22n.22_Optimization|implied n optimization]]&lt;br /&gt;
# For three or more words&lt;br /&gt;
## Perform a lookup against known sub-name combinations (e.g. 'Sarah Jane', 'Vander Wal')&lt;br /&gt;
## Apply the grammar &amp;quot;given-name additional-name(s) family-name&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The principal behind this suggestion is that it's better to make a good guess and potentially miscategorize an ambiguous name component than to generate an invalid hCard.&lt;br /&gt;
&lt;br /&gt;
===ADR sans enfants===&lt;br /&gt;
Les parseurs (Operator, Tails, Presque Tous les Parseurs Universels de Microformats) s'attendent actuellement à ce que &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt; ait une ou plusieurs sous-propriétés. Il n'est pas clair en partant de la spec hCard de savoir ce qui est obligatoire (bien que la RFC vCard l'exige) ; ni qu'il ne soit toujours possible pour un champ address dans un site web modélisé (ou un CMS) d'être défini avec une telle granularité.&lt;br /&gt;
&lt;br /&gt;
Regardez Wikipedia dont les gabarits ont souvent un champ &amp;quot;locale&amp;quot; ou &amp;quot;place&amp;quot; utilisés par exemple sur les gares de chemin de fer : &lt;br /&gt;
&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Old_Street_station Old Street]&lt;br /&gt;
**&amp;quot;Place&amp;quot; (&amp;quot;locale&amp;quot; dans le modèle) est une '''street'''&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Hamstead_railway_station Hamstead]&lt;br /&gt;
**&amp;quot;Place&amp;quot; est un '''local district'''&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Inverness_railway_station Inverness]&lt;br /&gt;
**&amp;quot;Place&amp;quot; est une '''city'''&lt;br /&gt;
&lt;br /&gt;
De la même manière, le modèle Wikipedia pour les organisations, dans lequel une adresse de siège social &amp;quot;headquarters&amp;quot; (pour une entreprise par exemple) peut contenir une adresse postale partielle, ou juste une paire &amp;quot;city/county&amp;quot; ou &amp;quot;city/country&amp;quot; : &lt;br /&gt;
&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Tesco Tesco]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/BP BP]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Google Google]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Blue_Coat_Systems Blue Coat Systems]&lt;br /&gt;
&lt;br /&gt;
==== sous-propriété adr unique implicite ====&lt;br /&gt;
I propose that, where &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt; has content, but no explicit sub-properties, there should be a default sub-property to which that content is allocated, in order that it is captured by user agents, and can later be manually tweaked (in, say, an address book programme) by users if so desired. This would satisfy the vCard requirement for child-of-adr, and adhere to the general principle to &amp;quot;[[be-strict|be strict in what you send but generous in what you receive]]&amp;quot;. &lt;br /&gt;
*Note that there may be other reasons to consider this suggestion, such as &amp;quot;ease of authoring&amp;quot;. Another way of looking at this suggestion is as a &amp;quot;adr/extended-address shorthand&amp;quot;. [[User:Tantek|Tantek]] 08:28, 26 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
* there is also a LABEL property which is NOT structured data, but purely a text string to be used when labeling. LABEL purpose: To specify the formatted text corresponding to delivery address of the object the vCard represents. [[User:Brian|Brian]] 13:18, 30 Mar 2007 (UTC)&lt;br /&gt;
**On re-reading this, it seems that none of the adressess given in my examples meet the criteria of being &amp;quot;''formatted text corresponding to delivery address''&amp;quot;. [[User:AndyMabbett|Andy Mabbett]] 03:35, 17 Apr 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Of the available sub-property options:&lt;br /&gt;
&lt;br /&gt;
*street-address&lt;br /&gt;
*extended-address&lt;br /&gt;
*region&lt;br /&gt;
*locality&lt;br /&gt;
&lt;br /&gt;
I suggest that &amp;quot;extended-address&amp;quot; is the most sensible sub-property to use, for this purpose. [[User:AndyMabbett|Andy Mabbett]] 03:57, 26 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
==== sous propriétés adr implicites ====&lt;br /&gt;
Il peut être possible pour les parseurs de parser les sous-propriétés adr à partir d'une chaîne contigue adr. Ce serait une optimisation pour à la fois [[adr-fr|adr]] et [[hcard-fr|hCard]].&lt;br /&gt;
&lt;br /&gt;
Ce peut être aussi bien trop difficile/complexe pour être fiable ou inter-opérable, mais ça vaut la peine au moins de documenter ici nos considération et analyses.&lt;br /&gt;
&lt;br /&gt;
Exemples :&lt;br /&gt;
&lt;br /&gt;
L'[http://www.ibm.com/contact/employees/us/ Annuaire des Employés d'IBM] cherche les [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 retours de hCards avec la propriété &amp;quot;adr&amp;quot;] qui contient les données &amp;quot;locality&amp;quot; et &amp;quot;country-name&amp;quot; mais malheureusement sans être marquée ainsi, par ex : &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;td class=&amp;quot;adr&amp;quot;&amp;gt;Austin, USA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nous pourrions d'abord définir un ordre canonnique sur la façon de parser les sous propriétés séparées par des virgules (et peut-être dans certains cas les espaces) dans une chaîne adr par ex : &lt;br /&gt;
&lt;br /&gt;
* 'post-office-box'&lt;br /&gt;
* 'street-address'&lt;br /&gt;
* 'extended-address'&lt;br /&gt;
* 'locality'&lt;br /&gt;
* 'region'&lt;br /&gt;
* 'postal-code'&lt;br /&gt;
* 'country-name'&lt;br /&gt;
&lt;br /&gt;
Given a dictionary of country names and abbreviations, it may be feasible to parse for a country name at the end of the adr string, and then apply country/locale specific parsing rules to the rest of the adr string.&lt;br /&gt;
&lt;br /&gt;
E.g.&lt;br /&gt;
* from a theoretical dictionary of country names:&lt;br /&gt;
** US|USA|United States|United States of America|Etats-Unis d'Amerique&lt;br /&gt;
* parse the remainder of the adr string backwards as follows:&lt;br /&gt;
** preceding that, look for a 5 or 9 digit (with optional dash '-' separator between digits 5 and 6) postal-code, and if found use it for the 'postal-code'&lt;br /&gt;
** preceding that, look for the name of a US state (e.g. California or any of the other states or territories available from a canonical list) or 2 letter state abbreviation (e.g. CA), and if found use it for the 'region' subproperty&lt;br /&gt;
** preceding that, look for the name of a US city (e.g. San Francisco, Los Angeles or any other US city available from a canonical list) or common city abbreviation (e.g. SF, LA), and if found use it for the 'locality'&lt;br /&gt;
** preceding that, look for common extended address details, such as: #|apt|apartment|suite|ste followed by a word consisting of letters and numbers, and if found use it for the 'extended-address'&lt;br /&gt;
** preceding that, look for a common street name bracketed by the street number (an integer with optional fraction and/or letter), and an optional street type (av|ave|avenue|blvd|boulevard|cir|circle|pl|place|st|street), and if found use it for the 'street-address'&lt;br /&gt;
** preceding that, look for a common post office box, with the pobox literal string: pob|pobox|PO Box followed by a word consisting of numbers and letters, and if found use it for the 'post-office-box'&lt;br /&gt;
* ... other countries&lt;br /&gt;
&lt;br /&gt;
The above heuristic (not quite well specified enough to be an algorithm, yet) would allow parsing of the IBM Employee Directory result documented above.&lt;br /&gt;
&lt;br /&gt;
There are a lot of existing geocoder APIs that turn unstructured addresses into structured ones - we should examine these for patterns and best practices. eg [http://www.google.com/apis/maps/documentation/#Geocoding_Structured Google's geocoder] [http://exogen.case.edu/projects/geopy/ geopy calls multiple ones]&lt;br /&gt;
&lt;br /&gt;
==== adr sans enfants FAQ ====&lt;br /&gt;
I think for now the simplest and most interoperable (and what I think implementations already do) is to make this an FAQ (because the spec already doesn't say to do anything with adr without any subproperty)&lt;br /&gt;
&lt;br /&gt;
Q: What should a parser do with an &amp;quot;adr&amp;quot; property lacking any subproperties?&lt;br /&gt;
&lt;br /&gt;
A: A parser SHOULD do nothing with such an &amp;quot;adr&amp;quot; property.  A parser MAY provide the text content of such an &amp;quot;adr&amp;quot; property in the results of its parsing as a freeform value of the &amp;quot;adr&amp;quot; property.  Note that the vCard standard does not allow for any such freeform value of its &amp;quot;adr&amp;quot; property (in vCard the &amp;quot;adr&amp;quot; property MUST be structured) and thus that MAY suggestion to parsers only applies in situations (such as APIs, JSON return values) where it is possible to return a freeform value for the &amp;quot;adr&amp;quot; property.&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]] 09:20, 2 Aug 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Rappels Anniversaire ==&lt;br /&gt;
*Les consommateurs de hCard pourraient calculer l'âge en cours des sujets hCard, à partir de la date de naissance. [[User:AndyMabbett|Andy Mabbett]] 07:47, 20 Apr 2007 (PDT)&lt;br /&gt;
*pour les hCards avec Date de Naissance, les clients hCard pourraient générer et exporter un hCalendar récurrent. [[User:AndyMabbett|Andy Mabbett]] 08:06, 20 Apr 2007 (PDT)&lt;br /&gt;
**SI /quand la [[hcard-date-of-death-fr|Date de Décès]] est ajoutée à hCard, les parseurs pourraient générer à la place un hCalendar récurrent &amp;quot;anniversaire de la mort&amp;quot;. [[User:AndyMabbett|Andy Mabbett]] 08:08, 20 Apr 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Ajouts Post vCard ==&lt;br /&gt;
Conserver les propriétés et valeurs de la hCard comme une représentaiton 1:1 des propriétés et valeurs de la vCard a de nombreux avantages comme la simplicité, la stabilité, l'interopérabilité avec le grand nombre d'applications vCard existantes etc.&lt;br /&gt;
			&lt;br /&gt;
Néanmoins certains ont trouvé la vCard limitée en termes de données/propriétés/champs qu'ils veulent exprimer dans l'information de contact. Quelques implémentations utilisent les extensions vCard pour exprimer une telle information (citation demandée).&lt;br /&gt;
			&lt;br /&gt;
Cette section est pour documenter de telles additions suggérées. L'évidence empirique d'exemples véritables venant du *vrai monde* sur le Web de personnes publiant cette information serait un bon pas en avant pour de considérer de tels ajouts/extensions.&lt;br /&gt;
&lt;br /&gt;
* '''altitude'''. En provenance [[hcard-issues-fr|problématiques hCard]].&lt;br /&gt;
**Voir [[geo-elevation-examples-fr]]&lt;br /&gt;
* '''vat-number''' : pour les numéros de TVA des sociétés, qui sont beaucoup utilisés en Europe et ont besoin d'être publiés sur les publications belges (y compris les sites web).&lt;br /&gt;
&lt;br /&gt;
* '''gender''' &lt;br /&gt;
** Voir [[vcard-suggestions-fr#Genre]]&lt;br /&gt;
&lt;br /&gt;
* '''date-of-death'''&lt;br /&gt;
** Voir [[hcard-date-of-death-fr|Date de Décès]]&lt;br /&gt;
&lt;br /&gt;
par conséquent regarder (et ajouter à): [[vcard-suggestions-fr|vcard-suggestions]]&lt;br /&gt;
&lt;br /&gt;
Un autre chemin à considérer est le développement d'un autre microformat qui inclut une hCard et puis l'augmente avec des propriétés supplémentaires pour un domaine particulier. Dans beaucoup de sens [[hresume-fr|hResume]] a déjà fait ça. D'autres efforts en rapport : &lt;br /&gt;
* [[genealogy-fr|genealogy]]&lt;br /&gt;
* [[profile-fr|profile]]&lt;br /&gt;
&lt;br /&gt;
Utiliser la hCard comme un bloc de construction stabel pour des microformats supplémentaires peut sembler plus souhaitable que de faire croître incrémentalement la hCard elle-même.&lt;br /&gt;
&lt;br /&gt;
Bien sûr si la vCard était étendue en elle-même, ceci peut fournir l'impulsion pour ajouter de telles extensions à hCard afin de de maintenir l'équivalence 1:1 de la représentation des propriétés/valeurs.&lt;br /&gt;
&lt;br /&gt;
==Données de Personnes de Wikipedia==&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:Persondata Persondata] sur la Wikipedia anglo-saxonne est très proche de hCard, mais a des champs supplémentaires de dates et lieux de naissance. [[User:AndyMabbett|Andy Mabbett]] 13:02, 28 Jan 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== TODO ==&lt;br /&gt;
* Le [[hcard-profile-fr|hCard-profil]] a besoin de vérification et peut-être d'une URL pour retrouver le XMDP véritable, plutôt qu'un texte sous &amp;amp;lt;pre&amp;amp;gt; sur une page wiki.&lt;br /&gt;
* Complétez la traduction des exemples provenant de la spec vCard en hCard, et placez les sur une page séparée d'exemples.&lt;br /&gt;
* Créer un exemple &amp;quot;riche&amp;quot; mais réaliste de hCard, disons par exmple pour un vendeur, qui veut placer tout un paquet d'information de contacts sur son site web afin de pouvoir les retrouver/contacter aisément.&lt;br /&gt;
* Fournir des exemples sur la manière d'encode les comptes de Messagerie Instantanée. Imaginer ce que serait les URLs mailto: ou aim: dans la hCard et comment cela apparaîtra dans la vCard. Et jetez un oeil à ce que les appliations vCard font aujourd'hui des messageries instantanées.&lt;br /&gt;
* Clarifier les déclarations contradictoires de copyright, selon http://microformats.org/discuss/mail/microformats-discuss/2007-July/010243.html&lt;br /&gt;
&lt;br /&gt;
== Styles CSS ==&lt;br /&gt;
Non seulement vous pouvez créer de la sémantique avec les valeurs hCard, mais pouvez y ajouter des styles CSS à volonté. Vous êtes libre de styler les termes comme vous voulez, mais ici nous pouvons lister quelques idées sur la façon de styler les termes.&lt;br /&gt;
&lt;br /&gt;
Si vous voulez encoder des données hCard, mais ne voulez PAS l'afficher dans le code HTML (ATTENTION : ceci est vraiment NON RECOMMANDE, et généralement contre le principe microformats de marque de la donnée visible), alors vous pouvez cacher ce tag en CSS avec le code suivant : &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: none&amp;quot;&amp;gt;Donnée Cachée&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Les applications de transformation trouveront encore la donnée et l'utiliseront au moment de convertir les hCards en vCards.&lt;br /&gt;
&lt;br /&gt;
== Autres Implémentations/Idées ==&lt;br /&gt;
* [http://www.w3.org/TR/2001/NOTE-vcard-rdf-20010222/ Representing vCard Objects in RDF/XML] This could allow conversion of vCard data from XHTML to RDF and from RDF to XHTML&lt;br /&gt;
* It would also be possible to convert XFN and hCard to FoaF.&lt;br /&gt;
* [http://microid.org/ MicroID in hCard]&lt;br /&gt;
&lt;br /&gt;
== Suggestions Acceptées ==&lt;br /&gt;
&lt;br /&gt;
=== Encoder les données de Sociétés sous une Business Card ===&lt;br /&gt;
&lt;br /&gt;
( Accepté [[hcard-fr#Info_Contact_Organisation|hCard Info Contact Organisation]] )&lt;br /&gt;
&lt;br /&gt;
In the wild there are several hCards that do not currently validate because they are businesses that have omitted the &amp;quot;fn&amp;quot; property in favor of the &amp;quot;org&amp;quot; property.&lt;br /&gt;
&lt;br /&gt;
Proposal: hCards representing a business or organization MUST set fn AND org to the same value.  Parsers may then use this equivalence, if detected, to treat an hCard as the contact info for a business or organization rather than an individual.&lt;br /&gt;
&lt;br /&gt;
Note that [http://microformats.org/wiki/vcard-implementations#organization_vs._individual Apple Address Book supports this semantic when importing vCards].&lt;br /&gt;
&lt;br /&gt;
See the [http://technorati.com/about/contact.html Technorati Contact Info] for an example.&lt;br /&gt;
&lt;br /&gt;
=== Optimisation Implicite &amp;quot;FN et N&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
A cette heure, un parseur cherche d'abord un élément &amp;quot;n&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Et ensuite si &amp;quot;n&amp;quot; n'est pas présent, il chercher un élement &amp;quot;fn&amp;quot; à utiliser pour tirer implicitement un élément &amp;quot;n&amp;quot; selon les règles de la &amp;quot;propriété n implicite&amp;quot; dans la spéc.&lt;br /&gt;
&lt;br /&gt;
HISTORIQUE :&lt;br /&gt;
&lt;br /&gt;
Du fait de la prévalence de l'usage de &amp;quot;nicknames&amp;quot; ou &amp;quot;pseudos&amp;quot; sur le Web, dans le véritable contenu publié sur le Web (par ex. les auteurs de critiques), il y a eu une discussion à propos de l'ajout d'un raccourci &amp;quot;fn&amp;quot; au raccourci &amp;quot;n&amp;quot; qui utilisait le &amp;quot;nickname&amp;quot; comme solution de repli.&lt;br /&gt;
&lt;br /&gt;
PROPOSITION :&lt;br /&gt;
&lt;br /&gt;
Nous devrions imaginer ajouter une ou plusieurs optimisations implicites après les étapes documentés au-dessus et c'est :&lt;br /&gt;
&lt;br /&gt;
Si aucun &amp;quot;fn&amp;quot; n'est présent, alors chercher un élément &amp;quot;nickname&amp;quot; à utiliser pour sous-tendre à la fois le &amp;quot;fn&amp;quot; et le &amp;quot;n/given-name&amp;quot;, en laissant vide le &amp;quot;n/family-name&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Ceci permettrait des hCards uniquement avec &amp;quot;nickname&amp;quot; pour indiquer l'individu sur un site web, ce qui est tout à fait commun sur les blogs et critiques publiés sur le web.&lt;br /&gt;
* +1 [[User:Atamido|Atamido]]&lt;br /&gt;
* +1 [[User:ChrisMessina|ChrisMessina]] - note : plusieurs nicknames alternatifs devraient être aussi permis&lt;br /&gt;
* +1 [[User:DimitriGlazkov|DimitriGlazkov]]&lt;br /&gt;
&lt;br /&gt;
== tel work implicite ==&lt;br /&gt;
&lt;br /&gt;
=== Problème ===&lt;br /&gt;
&lt;br /&gt;
Some phone numbers are not always documented of type 'work'. The type 'work' is usually implied from context.&lt;br /&gt;
&lt;br /&gt;
=== Exemples dans la jungle ===&lt;br /&gt;
&lt;br /&gt;
[[http://www.nvidia.com/page/contact_information.html NVidia contact information]]&lt;br /&gt;
&lt;br /&gt;
Only 'Tel' is specified. The fact that it is of type 'work' can be assumed from the context: the name of an organization is present.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;P&amp;gt;&amp;lt;B&amp;gt;NVIDIA CORPORATE OFFICE:&amp;lt;/B&amp;gt; &amp;lt;BR&amp;gt;&lt;br /&gt;
          2701 San Tomas Expressway&amp;lt;BR&amp;gt;&lt;br /&gt;
          Santa Clara, CA 95050&amp;lt;BR&amp;gt;&lt;br /&gt;
          Tel: 408-486-2000&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
          Fax: 408-486-2200&amp;lt;BR&amp;gt;&lt;br /&gt;
          ...&lt;br /&gt;
        &amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[http://www.supermarketguru.com/page.cfm/369 Supermarketguru.com]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
   &amp;lt;p&amp;gt;&lt;br /&gt;
      &amp;lt;font face=&amp;quot;Verdana, Helvetica, Arial&amp;quot; size=2&amp;gt;&lt;br /&gt;
        &amp;lt;b&amp;gt;Phil Lempert:&amp;lt;/b&amp;gt; &amp;lt;a href=&amp;quot;mailto:plempert@supermarketguru.com&amp;quot;&amp;gt;plempert@supermarketguru.com&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
      &amp;lt;/font&amp;gt;&lt;br /&gt;
      &amp;lt;font face=&amp;quot;Verdana, Helvetica, Arial, sans-serif&amp;quot; size=2&amp;gt;SupermarketGuru.com&amp;lt;br&amp;gt;&lt;br /&gt;
          3015 Main Street, Suite 320&amp;lt;BR&amp;gt;Santa Monica, California 90405&amp;lt;br&amp;gt;&lt;br /&gt;
          Telephone: 323-860-3070 &lt;br /&gt;
      &amp;lt;/font&amp;gt;&lt;br /&gt;
   &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here only 'Telephone:' is specified, a FN is present ('Phil Lempert') but because an ORG is present ('SupermarketGuru.com'), it can be safely implied that '323-860-3070' is a tel or type work.&lt;br /&gt;
&lt;br /&gt;
=== Proposition ===&lt;br /&gt;
&lt;br /&gt;
If an ORG is present in a VCARD, a TEL with no TYPE has an implied TYPE 'work'&lt;br /&gt;
&lt;br /&gt;
==== Commentaires ====&lt;br /&gt;
* Though it may be safe to make that assumption for the given example (and though it might have been wise to make this rule from the outset), we now can't know that it will alwyas be safe to do so, for all pre-existing hCards. Consider people whose organisation represents voluntary work, honorary roles and so forth. [[User:AndyMabbett|Andy Mabbett]] 00:33, 8 Jan 2008 (PST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Suggestions rejetées ==&lt;br /&gt;
&lt;br /&gt;
Suggestion : ''L'utilisation de class=&amp;quot;url&amp;quot; sur une balise &amp;lt;a&amp;gt; pour représenter une propriété URL hCard est redondante. Par la vertu de la balise &amp;lt;a&amp;gt; vous savez que c'est une URL.''&lt;br /&gt;
&lt;br /&gt;
Rejeté.  Ceci est une mauvaise suggestion du fait que bien qu'elle semble réduire la redondance et garder les choses plus propres, elle crée aussi quelques problèmes. Sans faire remarquer explicitement que c'est une URL alors n'importe quels tags &amp;lt;a&amp;gt; dans une 'vcard' seraient considérées comme une URL, par exemple : &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;
...&lt;br /&gt;
&amp;lt;ul class=&amp;quot;categories&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;http://w3c.org&amp;quot;&amp;gt;W3C&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&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;
Il n'y a pas moyen de &amp;quot;désactiver&amp;quot; l'encodage de l'URL W3C, tandis que si &amp;quot;url&amp;quot; requis avait beoin d'être listé explicitement dans liste d'attribut de classe, alors en ne listant PAS elle pourrait être en fait désactivée..&lt;br /&gt;
&lt;br /&gt;
== Références ==&lt;br /&gt;
=== Références Normatives ===&lt;br /&gt;
* [http://www.ietf.org/rfc/rfc2426.txt RFC 2426] vCard RFC&lt;br /&gt;
* [http://www.ietf.org/rfc/rfc2397 RFC 2397] data URI RFC&lt;br /&gt;
* [http://gmpg.org/xmdp/ XMDP]&lt;br /&gt;
&lt;br /&gt;
=== Références Informatives ===&lt;br /&gt;
* [http://www.imc.org/pdi/ Personal Data Interchange (PDI) at the Internet Mail Consortium]&lt;br /&gt;
* [http://tantek.com/log/2004/07.html#d27t1049 Markup language design notes]&lt;br /&gt;
* [http://tantek.com/log/2002/12.html#L20021216t2238 A Touch of Class]&lt;br /&gt;
* [http://www.icao.int/mrtd/download/technical.cfm ICAO - Machine Readable Travel Documents format]&lt;br /&gt;
&lt;br /&gt;
== Pages en rapport ==&lt;br /&gt;
{{hcard-related-pages-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=comments-formats&amp;diff=39231</id>
		<title>comments-formats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=comments-formats&amp;diff=39231"/>
		<updated>2009-06-24T14:13:44Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Examples from the wild */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== Discussion Participants ==&lt;br /&gt;
&lt;br /&gt;
=== Authors ===&lt;br /&gt;
* [http://blog.factoryjoe.com/ Chris Messina], [http://roundtwo.com Round Two, Inc.]&lt;br /&gt;
* [http://climbtothestars.org Stephanie Booth], [http://cocomment.com coComment] (hope I'm not messing things up by putting them here, please let me know if they should go elsewhere)&lt;br /&gt;
&lt;br /&gt;
= Current Comments Formats =&lt;br /&gt;
There have been several efforts to define data formats for posting &amp;quot;comments&amp;quot; on the Web.&lt;br /&gt;
&lt;br /&gt;
This page serves to document the current list of comment schemas, formats, and efforts as background for the design of a simple comments MicroFormat.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples from the wild ==&lt;br /&gt;
&lt;br /&gt;
* brianstorms (movable type) (from http://www.brianstorms.com/archives/000580.html)&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;comments-body&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Congratulations!  Any list that includes Molly Holzschlag and Wil Wheaton is certainly something... &lt;br /&gt;
and that's just the Honorable Mentions.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;Now to scrape the links of all the rest of those &amp;quot;people you may not know but probably should&amp;quot;...&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;comments-post&amp;quot;&amp;gt;Posted by: &lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.brianstorms.com/mt/mt-comments.cgi?__mode=red&amp;amp;amp;id=3826&amp;quot;&amp;gt;Chris&amp;lt;/a&amp;gt; &lt;br /&gt;
at June 21, 2005 08:53 PM&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;
* mfComment &amp;quot;small&amp;quot; example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 &amp;amp;lt;div class=&amp;quot;mfcomment&amp;quot;&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;a class=&amp;quot;url&amp;quot; rel=&amp;quot;target&amp;quot; href=&amp;quot;http://an9.org/devdev/shdh2/&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;span class=&amp;quot;commenter&amp;quot;&amp;amp;gt;anonymous&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;abbr class=&amp;quot;dtcommented&amp;quot; title=&amp;quot;20050612T21:30-0700&amp;quot;&amp;amp;gt;June 12th, 2005&amp;amp;lt;/abbr&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;div class=&amp;quot;description&amp;quot;&amp;amp;gt;&lt;br /&gt;
        &amp;amp;lt;p&amp;amp;gt;Gosh, this is neat.&amp;amp;lt;/p&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;a class=&amp;quot;url&amp;quot; rel=&amp;quot;self bookmark&amp;quot; href=&amp;quot;http://sxore.com/comment/view/14&amp;quot;&amp;amp;gt;link to this comment&amp;amp;lt;/a&amp;amp;gt;&lt;br /&gt;
 &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* CommentAPI&lt;br /&gt;
http://wellformedweb.org/story/9 Granted, this is not XHTML, but still should be useful as an example of expressing comments structurally.&lt;br /&gt;
&lt;br /&gt;
* [http://blogxoxo.blogspot.com/2006/01/xoxo-blog-format.html XOXO Blog Format] (comment subset and suggested extension to [[hatom]])&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 &amp;amp;lt;ul class=&amp;quot;xoxo comments&amp;quot;&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;li id=&amp;quot;c836428&amp;quot;&amp;amp;gt;&lt;br /&gt;
       Posted on &amp;amp;lt;a href=&amp;quot;COMMENT PERMALINK&amp;quot; title=&amp;quot;COMMENT TIMESTAMP (unix timestamp in seconds or nanoseconds)&amp;quot;&amp;amp;gt;COMMENT DATE POSTED&amp;amp;lt;/a&amp;amp;gt;&lt;br /&gt;
   by &amp;amp;lt;a href=&amp;quot;AUTHOR URL&amp;quot;&amp;amp;gt;AUTHOR NAME&amp;amp;lt;/a&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;dl&amp;amp;gt;&lt;br /&gt;
         &amp;amp;lt;dt&amp;amp;gt;body&amp;amp;lt;/dt&amp;amp;gt;&lt;br /&gt;
            &amp;amp;lt;dd&amp;amp;gt;COMMENT BODY&amp;amp;lt;/dd&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;/dl&amp;amp;gt;&lt;br /&gt;
   &amp;amp;lt;/li&amp;amp;gt;&lt;br /&gt;
 &amp;amp;lt;/ul&amp;amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Wordpress.com&lt;br /&gt;
from [http://steph.wordpress.com/2006/06/04/before-and-after/]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
	&amp;lt;ol id=&amp;quot;commentlist&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;li class=&amp;quot;alt&amp;quot; id=&amp;quot;comment-1143&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;h3 class=&amp;quot;commenttitle&amp;quot;&amp;gt;&amp;lt;a href='http://www.derriere-le-hublot.com' rel='external nofollow'&amp;gt;virginie&amp;lt;/a&amp;gt; said,&amp;lt;/h3&amp;gt;&lt;br /&gt;
		&amp;lt;p class=&amp;quot;commentmeta&amp;quot;&amp;gt;June 6, 2006 @ &amp;lt;a href=&amp;quot;#comment-1143&amp;quot; title=&amp;quot;Permanent link to this comment&amp;quot;&amp;gt;9:02 pm&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
		&amp;lt;p&amp;gt;Nice hairdo! I really think it suits you! And the color is different from the last times, isn&amp;amp;#8217;t it?&amp;lt;/p&amp;gt;&lt;br /&gt;
		&amp;lt;/li&amp;gt;&lt;br /&gt;
	&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* blogger.com&lt;br /&gt;
from [http://jamesfostofapfz.blogspot.com/2008/09/if-your-goal-is-customer-loyalty-then.html]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;amp;lt;dl id=&amp;amp;#x27;comments-block&amp;amp;#x27;&amp;amp;gt;&lt;br /&gt;
   &amp;amp;lt;dt class=&amp;amp;#x27;comment-author openid-comment-icon&amp;amp;#x27; id=&amp;amp;#x27;c5069974981380830367&amp;amp;#x27;&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;a name=&amp;amp;#x27;c5069974981380830367&amp;amp;#x27;&amp;amp;gt;&amp;amp;lt;/a&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;a href=&amp;amp;#x27;http://meme-rocket.com/&amp;amp;#x27; rel=&amp;amp;#x27;nofollow&amp;amp;#x27;&amp;amp;gt;Bill&amp;amp;lt;/a&amp;amp;gt;&lt;br /&gt;
      said...&lt;br /&gt;
   &amp;amp;lt;/dt&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;amp;lt;dd class=&amp;amp;#x27;comment-body&amp;amp;#x27;&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;p&amp;amp;gt;testing an OpenID comment&amp;amp;lt;/p&amp;amp;gt;&lt;br /&gt;
   &amp;amp;lt;/dd&amp;amp;gt;&lt;br /&gt;
   &amp;amp;lt;dd class=&amp;amp;#x27;comment-footer&amp;amp;#x27;&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;span class=&amp;amp;#x27;comment-timestamp&amp;amp;#x27;&amp;amp;gt;&lt;br /&gt;
         &amp;amp;lt;a href=&amp;amp;#x27;http://jamesfostofapfz.blogspot.com/2008/09/if-your-goal-is-customer-loyalty-then.html?showComment=1222259520000#c5069974981380830367&amp;amp;#x27; title=&amp;amp;#x27;comment permalink&amp;amp;#x27;&amp;amp;gt;&lt;br /&gt;
            September 24, 2008 5:32 AM&lt;br /&gt;
         &amp;amp;lt;/a&amp;amp;gt;&lt;br /&gt;
         &amp;amp;lt;span class=&amp;amp;#x27;item-control blog-admin pid-216793578&amp;amp;#x27;&amp;amp;gt;&lt;br /&gt;
            &amp;amp;lt;a href=&amp;amp;#x27;http://www.blogger.com/delete-comment.g?blogID=6882271259081968971&amp;amp;amp;postID=5069974981380830367&amp;amp;#x27; title=&amp;amp;#x27;Delete Comment&amp;amp;#x27;&amp;amp;gt;&lt;br /&gt;
               &amp;amp;lt;img src=&amp;amp;#x27;http://www.blogger.com/img/icon_delete13.gif&amp;amp;#x27;/&amp;amp;gt;&lt;br /&gt;
            &amp;amp;lt;/a&amp;amp;gt;&lt;br /&gt;
         &amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
      &amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
   &amp;amp;lt;/dd&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;/dl&amp;amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Guy Fraser: Are comments not just another form of atom? Could we use something like hEntry ?&lt;br /&gt;
&lt;br /&gt;
Matt MacDougall: Comments should be separate from hEntry to give systems the capability to weight a comment differently than its parent entry.  Modifying hEntry to include parent child relationships would become borderline human unfriendly.&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=value-excerption-value-title-test&amp;diff=39230</id>
		<title>value-excerption-value-title-test</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=value-excerption-value-title-test&amp;diff=39230"/>
		<updated>2009-06-24T14:12:38Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Browser WYSIWYG editor: FCKEditor 2.6.4 Beta */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Value Excerption Pattern: Parsing 'value' from an empty element&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
'''This page is targetted at those already experienced with microformats.'''&lt;br /&gt;
&lt;br /&gt;
''Please carefully note, this page is about a pre-draft, experimental and unfinished microformats proposal. You '''cannot''' use this pattern on your live pages, it is '''not supported''' by any stable parser and you should not assume that this pattern will be finalized as-is! We're just asking for help in testing this thoroughly. '''Thank you'''.''&lt;br /&gt;
__TOC__&lt;br /&gt;
This is a special page to introduce and gather results to widespread testing of a '''proposed''' extension to the value-excerption pattern. See [[value-excerption-pattern-brainstorming#.E2.80.98value-title.E2.80.99|value excerption pattern brainstorming: value-title]] for the specific proposal.&lt;br /&gt;
&lt;br /&gt;
This pattern can be used to resolve some long standing issues with including [[machine-data|machine-data in microformats]]; it's imperative we test thoroughly before adding it to any pattern specification. Following are a number of example tests. ''Please try them out''. &lt;br /&gt;
&lt;br /&gt;
The pattern we're testing looks a little something like this. Those experienced with microformats should immediately see what we're trying to do:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;p class='tel'&amp;gt;&lt;br /&gt;
    &amp;lt;span class='type'&amp;gt;&lt;br /&gt;
        &amp;lt;span class='value-title' title='cell'&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
        mobile&lt;br /&gt;
    &amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class='value'&amp;gt;+44 7773 000 000&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;p class='dtstart'&amp;gt;&lt;br /&gt;
    &amp;lt;span class='value-title' title='2009-01-06T22:54:00-0800'&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
    January 6th, in the evening&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It allows you to include machine-form data alongside the human form, without polluting visible formatted content with undesired machine form data.&lt;br /&gt;
&lt;br /&gt;
This covers cases where a microformat uses a fixed format of data that is either inappropriate for visible inclusion in a page (such as a full date-time and timezone string), or where an American-English keyword is needed — such as &amp;lt;code&amp;gt;cell&amp;lt;/code&amp;gt; instead of ‘mobile’ in a British English page, or any number of non-English translations.&lt;br /&gt;
&lt;br /&gt;
This pattern is based on rendering behavior in browsers whereby an empty element — that is one containing no   text-nodes or other child elements — remains in the DOM tree (for parsing) but is not rendered visibly to a page. This allows an element to be included in the document with a &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute (as in the example), but ''without'' a tooltip being exposed to users, and without the data being read out by screen readers.&lt;br /&gt;
&lt;br /&gt;
You can use &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; on non-empty elements as well; whatever makes most sense to your publishing scenario. This page is dedicated to the empty-element version though, since that offers up the consumption unknowns.&lt;br /&gt;
&lt;br /&gt;
Based on everything we know up to this point, we believe this pattern will work. But, it's wide ranging and the web is broad, and we want to be sure. Please, help us out testing this pattern proposal. Examples tests are below, please push them or your own variants into publishing systems, content management systems, editor applications and tools. Check that it comes out the other side with the data intact, and exposed (or hidden) as expected: Render it in desktop browsers, mobile browers, screen readers, in braille… ''anything you can test, we want to know about''! We need to see any quirks, oddities and so on.&lt;br /&gt;
&lt;br /&gt;
Also, by all means provide thoughts on the publishing flow for this. An empty element is an uncommon structure outside of forms and scripts, but the reasoning is as follows: ''‘Machine formatted data’ is not metadata, it is content. Therefore, it's structurally appropriate to have it as a sibling to the human-formatted content.''&lt;br /&gt;
&lt;br /&gt;
'''Note that valid HTML is a cornerstone of microformats'''. ''Inventing new attributes, depending on unstable drafts of HTML5, using non-standard DOCTYPEs or XML extensions is not an applicable option''. We're trying to achieve something as gracefully as we can within the limitations of HTML4, and without harming user experience.&lt;br /&gt;
&lt;br /&gt;
==The proposed parsing rules==&lt;br /&gt;
&lt;br /&gt;
The current, likely incomplete, parsing rules and restrictions for this pattern are as follows:&lt;br /&gt;
&lt;br /&gt;
* Only one &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; element may be included as a child of a property. No splitting or concatenation, no combining with other value-excerption elements.&lt;br /&gt;
* An empty &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; element '''must''' be the ''first''-child of the property (not including any preceding whitespace). To alleviate the [[value-excerption-pattern-brainstorming#issues_2|negative impact of non-visible data]], the value should be as near as possible to declaring the property.&lt;br /&gt;
* The machine-data value ''must'' represent the same data as the visible text; the parent property ''must not'' contain arbitrary data. Validator tools will be encouraged to verify this where possible (for example, some programming languages have access to powerful date parsing algorithms that can compare human dates to the ISO form).&lt;br /&gt;
* The empty element can be ''any element'', but a generic &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; is most appropriate. You could use &amp;lt;code&amp;gt;b&amp;lt;/code&amp;gt; if you want to save bytes, or an &amp;lt;code&amp;gt;input type=hidden&amp;lt;/code&amp;gt; if it makes sense to you. That choice will not matter to parsers. You are in complete control of that publishing decision. As per usual µf documentation, &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; will be used for generic examples.&lt;br /&gt;
* The &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; property does not have to be empty. If you ''do'' want a tool-tip to expose a useful data-form, you can. e.g. &amp;lt;code&amp;gt;&amp;amp;lt;span class='value-title' title='2008'&amp;gt;last year&amp;amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; is valid too.&lt;br /&gt;
&lt;br /&gt;
==Example Tests==&lt;br /&gt;
&lt;br /&gt;
The following snippets are example tests for the new pattern. You can use them as is, or use them as a base for your own tests with your own content. If you write your own tests, please document them under ‘additional test cases’ so that any failing tests can be checked for validity.&lt;br /&gt;
&lt;br /&gt;
===hAtom#1: An hAtom &amp;lt;code&amp;gt;published&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;updated&amp;lt;/code&amp;gt; Property===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAtom#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;hentry&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;entry-title&amp;quot;&amp;gt;An introduction to Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;&lt;br /&gt;
                Published on &amp;lt;span class=&amp;quot;published updated&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-09T11:33:00-0800&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                January 9th, around lunchtime&amp;lt;/span&amp;gt;&lt;br /&gt;
                by &amp;lt;span class=&amp;quot;author vcard&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://example.com&amp;quot;&amp;gt;&lt;br /&gt;
                      Joe Blogger&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;entry-content&amp;quot;&amp;gt;Wow, microformats are really useful! You can&lt;br /&gt;
                learn loads about them on the &lt;br /&gt;
                &amp;lt;a href=&amp;quot;http://microformats.org/wiki&amp;quot;&amp;gt;microformats wiki&amp;lt;/a&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===hCal#1: An hCalendar &amp;lt;code&amp;gt;dtstart&amp;lt;/code&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hCal#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;summary&amp;quot;&amp;gt;Value Exception Test Day!&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;description&amp;quot;&amp;gt;Come help &amp;lt;span class=&amp;quot;organizer vcard&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;a class=&amp;quot;fn url org&amp;quot; href=&amp;quot;http://microformats.org&amp;quot;&amp;gt;microformats.org&amp;lt;/a&amp;gt;&lt;br /&gt;
                &amp;lt;/span&amp;gt; test a new value-excerption pattern for sanity and &lt;br /&gt;
                robustness!&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;Help out by running some tests at &lt;br /&gt;
              &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-12T12:00:00-0800&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                midday on Monday January 12th&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;See &amp;lt;a class=&amp;quot;url&amp;quot; href=&amp;quot;http://microformats.org/wiki/value-excerption-pattern-issues/empty-value-element-test&amp;quot;&amp;gt;the&lt;br /&gt;
                wiki&amp;lt;/a&amp;gt; for more details!&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===hCard#1: An hCard &amp;lt;abbr title=&amp;quot;birthday&amp;quot;&amp;gt;&amp;lt;code&amp;gt;bday&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hCard#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;!-- Behind Test --&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;fn&amp;quot;&amp;gt;Ben Ward&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;Ben Ward's birthday is &lt;br /&gt;
                &amp;lt;span class=&amp;quot;bday&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;1984-02-09&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                    February 9th&lt;br /&gt;
                &amp;lt;/span&amp;gt;.&lt;br /&gt;
                You should throw him a party! Or call his &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;cell&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;mobile&amp;lt;/span&amp;gt;&lt;br /&gt;
                on &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;415.123.123&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to wish him well!&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;!-- End Test --&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===hAudio#1: An hAudio &amp;lt;code&amp;gt;duration&amp;lt;/code&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAudio#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;h1&amp;gt;Song of the year?&amp;lt;/h1&amp;gt;&lt;br /&gt;
        &amp;lt;!-- Behind Test --&amp;gt;&lt;br /&gt;
        &amp;lt;p class=&amp;quot;haudio&amp;quot;&amp;gt;Did you hear ‘&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Heavy Water&amp;lt;/span&amp;gt;’ on&lt;br /&gt;
            &amp;lt;span class=&amp;quot;contributor&amp;quot;&amp;gt;Foals&amp;lt;/span&amp;gt; &lt;br /&gt;
            ‘&amp;lt;span class=&amp;quot;album&amp;quot;&amp;gt;Antidodes&amp;lt;/span&amp;gt;’ record &lt;br /&gt;
            &amp;lt;span class=&amp;quot;published&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2008&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                last year&lt;br /&gt;
            &amp;lt;/span&amp;gt;? It's&lt;br /&gt;
            &amp;lt;span class=&amp;quot;duration&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;PT04M32S&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                4 and a half minutes long&lt;br /&gt;
            &amp;lt;/span&amp;gt;, you should make time to hear it!&amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;!-- End Test --&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''If you believe there is an error in any of these tests, or in any others that people contribute, please post on the {{MicroformatsMailingList}}.''&lt;br /&gt;
&lt;br /&gt;
==Evil Tests==&lt;br /&gt;
&lt;br /&gt;
If you want to give existing microformat parsers a good run out, construct ‘evil’ tests using nesting, combination and interpolation of different microformats.&lt;br /&gt;
&lt;br /&gt;
===hAtom + hCalendar===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAtomhCalEvil#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;hentry vevent&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;entry-title summary&amp;quot;&amp;gt;An introduction to Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;&lt;br /&gt;
                Published on &amp;lt;span class=&amp;quot;published updated&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-09T11:33:00-0800&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                January 11th, late afternoon&amp;lt;/span&amp;gt;&lt;br /&gt;
                by &amp;lt;span class=&amp;quot;author organizer vcard&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://example.com&amp;quot;&amp;gt;&lt;br /&gt;
                      Joe Blogger&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;entry-content description&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-14T19:00:00&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                    this coming Wednesday at 7&lt;br /&gt;
                &amp;lt;/span&amp;gt; is not the date of a completely fictional microformats&lt;br /&gt;
                event. If it existed, it would promise to be informative and get&lt;br /&gt;
                you up to speed on microformats.org for 2009! Now you've &lt;br /&gt;
                learned to work with microformats a little, why not attend and&lt;br /&gt;
                get involved! Why not? Because this event is a test case, not &lt;br /&gt;
                for real.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Second Phase Test==&lt;br /&gt;
&lt;br /&gt;
Following the first wave of example tests (above), we had a handful of failures in publishing tools caused by the requirement of using the empty span element. Tools (including the widespread HTML-Tidy) drop the &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt;, thus throwing away the data. Thus, we have a second test to claim confirmation on, please. This version includes a single whitespace (space) character in the &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; span. The result of this is that the publishing tools that failed in the above example pass. We now need to confirm that the single item of whitespace will also collapse (we believe it does). Here's a rewrite of the first hAtom test from above, with the whitespace variation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAtom#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;hentry&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;entry-title&amp;quot;&amp;gt;An introduction to Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;&lt;br /&gt;
                Published on &amp;lt;span class=&amp;quot;published updated&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-09T11:33:00-0800&amp;quot;&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
                January 9th, around lunchtime&amp;lt;/span&amp;gt;&lt;br /&gt;
                by &amp;lt;span class=&amp;quot;author vcard&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://example.com&amp;quot;&amp;gt;&lt;br /&gt;
                      Joe Blogger&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;entry-content&amp;quot;&amp;gt;Wow, microformats are really useful! You can&lt;br /&gt;
                learn loads about them on the &lt;br /&gt;
                &amp;lt;a href=&amp;quot;http://microformats.org/wiki&amp;quot;&amp;gt;microformats wiki&amp;lt;/a&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The WYSIWYG editors can also publish the original pattern using the &amp;lt;code&amp;gt;input type=hidden&amp;lt;/code&amp;gt; element rather than a &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt;, but we're keen to avoid prescribing mark-up to any publisher (especially mark-up of ‘elaborate’ semantics).&lt;br /&gt;
&lt;br /&gt;
A second column has been added to the results to confirm each item that also passes with the inclusion of whitespace. Failures should be documented in the same place, please.&lt;br /&gt;
&lt;br /&gt;
This test is also hosted on Ben Ward's domain, so you can run it right in your browser by going to [http://ben-ward.co.uk/microformats/value-excerption-pattern/hAtom2.html http://ben-ward.co.uk/microformats/value-excerption-pattern/hAtom2.html].&lt;br /&gt;
&lt;br /&gt;
==Verifying the tests==&lt;br /&gt;
&lt;br /&gt;
To verified a successfully passing test, you need to check for the following:&lt;br /&gt;
&lt;br /&gt;
===In consumers (browsers, screen readers, etc.)===&lt;br /&gt;
&lt;br /&gt;
* The empty element should appear in the page &amp;lt;abbr title='Document Object Model'&amp;gt;DOM&amp;lt;/abbr&amp;gt;&lt;br /&gt;
* When hovering over and near the visible data, a tooltip displaying the machine-form ''must not'' be displayed.&lt;br /&gt;
** You can doubly verify this by opening you browser's DOM Inspector and confirming that the &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; element has a width of &amp;lt;samp&amp;gt;0&amp;lt;/samp&amp;gt; (or &amp;lt;samp&amp;gt;0 px&amp;lt;/samp&amp;gt;).&lt;br /&gt;
* When rendered to speech using assistive technology, the machine-form data ''must not'' be read aloud. &lt;br /&gt;
** Any variance in this behavior with different verbosity settings should be noted too, please.&lt;br /&gt;
&lt;br /&gt;
===In publishing tools===&lt;br /&gt;
&lt;br /&gt;
* The tool allows you to create an empty span element&lt;br /&gt;
** The tool allows you to add &amp;lt;kbd&amp;gt;value-title&amp;lt;/kbd&amp;gt; to the &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; attribute of this empty element.&lt;br /&gt;
** The tool allows you to add corresponding date to the &amp;lt;code&amp;gt;attribute&amp;lt;/code&amp;gt; attribute of this empty element.&lt;br /&gt;
* The element remains available in the editor whilst other edits are made&lt;br /&gt;
* When the content is ‘published’ to the web, the empty element is present in the page output, and therefore in the DOM for the document.&lt;br /&gt;
&lt;br /&gt;
==Response==&lt;br /&gt;
&lt;br /&gt;
* Don't like the empty element? Don't like the use of the title attribute? '''Please file general issues concerning the proposed pattern on the main [[value-excerption-pattern-brainstorming#enabling_more_use_of_title_attributes|value excerption brainstorming page]]''', or discuss them on the {{MicroformatsMailingList}}.&lt;br /&gt;
* Add results of tests and responses to these tests themselves on ''this page''.&lt;br /&gt;
&lt;br /&gt;
Misplaced responses will be moved, and having to do so will make [[User:BenWard|Ben]] growly, so, y'know, please try to keep the wiki tidy.&lt;br /&gt;
&lt;br /&gt;
=== Please Also Try ===&lt;br /&gt;
Please also try the [[value-excerption-dt-separation-test]]. This is not either or. Ideally both will work and can be carried forward.&lt;br /&gt;
&lt;br /&gt;
===Successful Tests===&lt;br /&gt;
&lt;br /&gt;
List successfully tested environments here. Add new environments as new list items, and expand existing list items with your name and platform variants to indicate verified successes.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+ Results of tests across various publishing/rendering environments&lt;br /&gt;
|-&lt;br /&gt;
! Product&lt;br /&gt;
! &amp;lt;abbr title=&amp;quot;Publishing or Consuming?&amp;quot;&amp;gt;P/C?&amp;lt;/abbr&amp;gt;&lt;br /&gt;
! Platforms&lt;br /&gt;
! Test By&lt;br /&gt;
! Notes&lt;br /&gt;
! &amp;lt;abbr title='Test 2 with Whitespace'&amp;gt;T2&amp;lt;/abbr&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| MediaWiki/Linux&lt;br /&gt;
| Publishing&lt;br /&gt;
| Safari 3.2.1 (Mac OSX 10.5)&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| The empty &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; elements are maintained in &amp;lt;abbr title=&amp;quot;MediaWiki&amp;quot;&amp;gt;MW&amp;lt;/abbr&amp;gt; output. Note that &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt; elements in the tests get escaped by this MediaWiki install.&lt;br /&gt;
|-&lt;br /&gt;
| TinyMCE 3.2.1.1&lt;br /&gt;
| Publishing&lt;br /&gt;
| Safari 3.2.1 (Mac OSX 10.5)&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Fails when trying to publish empty element (see below)&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| FCKEditor 2.6.4 Beta&lt;br /&gt;
| Publishing&lt;br /&gt;
| Safari 3.2.1 (Mac OSX 10.5)&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Fails when trying to publish empty element (see below)&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Safari 2.0.4&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5&lt;br /&gt;
| [[User:GeorgeBrock]]&lt;br /&gt;
| Empty-span reamins in DOM. No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Safari 3.0.3&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Safari 3.2.1&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM. Web Inspector reports the element has width and height of ‘0px’. No tooltip due to zero-dimensions.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 2.0&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5&lt;br /&gt;
| [[User:GeorgeBrock]], [[User:BenWard]]&lt;br /&gt;
| Empty-span remains in DOM. Firebug reports the element has width of '0px' and height of ‘16px’. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 3.0.x&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM. Firebug reports the element has width of '0px' and height of ‘16px’. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 3.0.x&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP SP3,&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| no tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 3.1ß1&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Empty-span remains in DOM. No tooltip.&lt;br /&gt;
|-&lt;br /&gt;
| Opera 9.6&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Opera 9.62&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5, Windows XP SP3&lt;br /&gt;
| [[User:BenWard]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM. Dragonfly reports the element has width of '0px' and height of ‘0px’. No tooltip due to zero-dimensions.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Opera 10 Alpha&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Empty-span remains in DOM. Dragonfly reports the element has width of '0px' and height of ‘0px’. No tooltip due to zero-dimensions.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 5.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 6.0&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:GeorgeBrock]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM (visible to Web Developer Toolbar, accessible from Javascript). No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 7.0&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:GeorgeBrock]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM (visible to Web Developer Toolbar, accessible from Javascript). No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 8.0 beta 2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:GeorgeBrock]]&lt;br /&gt;
| Empty-span remains in DOM. Developer Tools (built in to &amp;lt;abbr title=&amp;quot;Internet Explorer 8 beta 2&amp;quot;&amp;gt;IE8b2&amp;lt;/abbr&amp;gt;) report the element has width of '0px' and height of '19px'. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Camino 1.6.5&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Camino 1.6.6&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:GeorgeBrock]]&lt;br /&gt;
| Empty-span remains in DOM. [http://getfirebug.com/lite.html Firebug Lite] reports width of '0px' and height of '16px'. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Flock 2.0.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Flock 2.0.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Chrome 1.0.154.43&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| BlackBerry Browser&lt;br /&gt;
| Consuming&lt;br /&gt;
| BlackBerry Storm OS 4.0.7.85 (leaked, non-official OS build from Verizon)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| Tested in ‘BlackBerry mode’. No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| MobileSafari 2.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| iPhone OS 2.2&lt;br /&gt;
| [[User:EmilyLewis]], [[User:BenWard]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| IE Mobile 7.11&lt;br /&gt;
| Consuming&lt;br /&gt;
| Sprint HTC Mogul, OS: Windows Mobile 6.1&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| JAWS 10.0.512 (demo mode)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No voice&lt;br /&gt;
|-&lt;br /&gt;
| Fire Vox (Firefox 3.0.5)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No voice&lt;br /&gt;
|-&lt;br /&gt;
| WebbIE (Thunder 1.43)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No voice&lt;br /&gt;
|-&lt;br /&gt;
| VoiceOver (Safari 3.2.1)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]], [[User:BenWard]]&lt;br /&gt;
| No voice. When interacting with elements, cannot focus on the empty-span.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Failed Tests===&lt;br /&gt;
&lt;br /&gt;
For failures, please provide as much information as you can. The precise impact of the error, whether the behavior could be regarded as a bug in the software you're testing, whether it works in subsequent releases, whether you changed any settings in the software to produce the result, and if so, whether enabling/disabling that setting should be regarded a showstopper if this pattern were certified. &lt;br /&gt;
&lt;br /&gt;
Since we want more detail, please expand failures into headed sections rather than cramming into a table.&lt;br /&gt;
&lt;br /&gt;
For example, take this entirely plausible scenario as a template:&lt;br /&gt;
&lt;br /&gt;
====Example: Fake Publisher 3.1ß====&lt;br /&gt;
; Platform&lt;br /&gt;
: Windows Vista&lt;br /&gt;
; Test By&lt;br /&gt;
: [[User:BenWard]]&lt;br /&gt;
; Description&lt;br /&gt;
: When trying to enter an empty span in my &amp;lt;abbr title=&amp;quot;Hypertext Markup Language&amp;quot;&amp;gt;HTML&amp;lt;/abbr&amp;gt; editor, which I wrote myself whilst I was high, the application immediately crashes, performs &amp;lt;code&amp;gt;rm -rf /&amp;lt;/code&amp;gt; on all UNIX boxes connected to my local network (which also appears to cause Android phones within Bluetooth range to do the same…), and then causes all attached peripherals to combust. I was not able to reproduce, as my house was now on fire. I think using a self closing XHTML tag instead might work-around the problem because as we know, it's been proved by Real Scienticians that XML is always better than HTML. Alternatively, it may be a bug in the beta software.&lt;br /&gt;
; Notes&lt;br /&gt;
: This is a beta release, and a bug has been filed.&lt;br /&gt;
: This product has a known history of flammability bugs.&lt;br /&gt;
: The user must explicitly enable the ‘Endanger My Life’ checkbox under the ‘Advanced Mislabelled Checkboxes’ tab of the ‘Complicated Preferences’ preferences pane.&lt;br /&gt;
: You get the idea.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Browser &amp;lt;abbr title=&amp;quot;What you see is what you get&amp;quot;&amp;gt;WYSIWYG&amp;lt;/abbr&amp;gt; editor: [http://tinymce.moxiecode.com/ TinyMCE 3.2.1.1]====&lt;br /&gt;
; Platform&lt;br /&gt;
: Firefox 3.0 on Mac OSX 10.5&lt;br /&gt;
; Test By&lt;br /&gt;
: [[User:GeorgeBrock]]&lt;br /&gt;
; Description&lt;br /&gt;
: Empty spans entered using TinyMCE's source editor are removed when switching back to the default WYSIWYG view. &lt;br /&gt;
: This is not a bug with TinyMCE, the editor is designed to remove empty instances of most elements by default. The handling of empty elements can be changed by modifying the [http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/valid_elements valid-elements setting] (e.g. change &amp;lt;code&amp;gt;-span&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; and empty spans will no longer be removed), however settings can only be changed by modifying the source code of the page that contains the TinyMCE instance, so it is likely that some users will not be able to apply this fix.&lt;br /&gt;
; Notes&lt;br /&gt;
: This behavior can be easily reproduced using the online [http://tinymce.moxiecode.com/examples/full.php TinyMCE examples].&lt;br /&gt;
: TinyMCE is the default WYSIWYG editor in WordPress[http://codex.wordpress.org/TinyMCE].&lt;br /&gt;
: With a single whitespace character (‘space’), the &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; is preserved, but yet still seems to collapse in Safari. Will write a follow-up test.--[[User:BenWard|BenWard]] 23:11, 20 January 2009 (UTC)&lt;br /&gt;
: You ''can'' publish this pattern using the &amp;lt;code&amp;gt;input type='hidden' class='value-title' title='2009-01-20'&amp;lt;/code&amp;gt; hinted above. Semantically odd, although it's been suggested on µf lists before. Publishing workaround exists through element agnosticism. --[[User:BenWard|BenWard]] 23:11, 20 January 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
====Browser &amp;lt;abbr title=&amp;quot;What you see is what you get&amp;quot;&amp;gt;WYSIWYG&amp;lt;/abbr&amp;gt; editor: [http://www.fckeditor.net/ FCKEditor 2.6.4 Beta]====&lt;br /&gt;
; Platform&lt;br /&gt;
: Firefox 3.0 on Mac OSX 10.5&lt;br /&gt;
; Test By&lt;br /&gt;
: [[User:GeorgeBrock]]&lt;br /&gt;
; Description&lt;br /&gt;
: Empty spans entered using FCKEditor's source editor are removed when switching back to the default WYSIWYG view or submitting the form that contains the FCKEditor instance.&lt;br /&gt;
; Notes&lt;br /&gt;
: This behavior can be easily reproduced using the online [http://www.fckeditor.net/demo FCKEditor demo].&lt;br /&gt;
: FCKEditor is used by various content management systems, frameworks and applications[http://www.fckeditor.net/whosusing].&lt;br /&gt;
: With a single whitespace character (‘space’), the &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; is preserved, but yet still seems to collapse in Safari. Will write a follow-up test.--[[User:BenWard|BenWard]] 23:12, 20 January 2009 (UTC)&lt;br /&gt;
: You ''can'' publish this pattern using the &amp;lt;code&amp;gt;input type='hidden' class='value-title' title='2009-01-20'&amp;lt;/code&amp;gt; mentioned above. --[[User:BenWard|BenWard]] 23:12, 20 January 2009 (UTC)&lt;br /&gt;
: This issue does not effect FCKEditor instances that use the Placeholders plugin (this plugin comes with FCKEditor, enable it using &amp;lt;code&amp;gt;FCKConfig.Plugins.Add('placeholder')&amp;lt;/code&amp;gt;).  Examining the Placeholders plugin code may yield an easier work-around than including the plugin (I had a quick look but didn't see anything that was obviously responsible for allowing empty spans) -[[User:GeorgeBrock|GeorgeBrock]] 23:20, 20 January 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Additional failure reports go above this line, please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===General Test Feedback===&lt;br /&gt;
&amp;lt;div class='discussion'&amp;gt;&lt;br /&gt;
* Any general feedback you have on this test is most welcome. However, if you have issues with the pattern or alternate suggestions, please file them on the main [[value-excerption-pattern-issues]] page. Also, please remember to sign your comments with &amp;lt;nowiki&amp;gt;—~~~~&amp;lt;/nowiki&amp;gt; —[[User:BenWard|BenWard]] 00:12, 9 January 2009 (UTC)&lt;br /&gt;
* … &amp;lt;!-- New topic as a top-level list item  --&amp;gt;&lt;br /&gt;
** … &amp;lt;!-- Responses as nested list item for threading --&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related Pages==&lt;br /&gt;
* [[value-excerption-pattern]]&lt;br /&gt;
* [[value-excerption-pattern-issues]]&lt;br /&gt;
* [[value-excerption-pattern-brainstorming]]&lt;br /&gt;
* [[value-excerption-dt-separation-test]]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=value-excerption-value-title-test&amp;diff=39229</id>
		<title>value-excerption-value-title-test</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=value-excerption-value-title-test&amp;diff=39229"/>
		<updated>2009-06-24T14:10:54Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Browser WYSIWYG editor: TinyMCE 3.2.1.1 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Value Excerption Pattern: Parsing 'value' from an empty element&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
'''This page is targetted at those already experienced with microformats.'''&lt;br /&gt;
&lt;br /&gt;
''Please carefully note, this page is about a pre-draft, experimental and unfinished microformats proposal. You '''cannot''' use this pattern on your live pages, it is '''not supported''' by any stable parser and you should not assume that this pattern will be finalized as-is! We're just asking for help in testing this thoroughly. '''Thank you'''.''&lt;br /&gt;
__TOC__&lt;br /&gt;
This is a special page to introduce and gather results to widespread testing of a '''proposed''' extension to the value-excerption pattern. See [[value-excerption-pattern-brainstorming#.E2.80.98value-title.E2.80.99|value excerption pattern brainstorming: value-title]] for the specific proposal.&lt;br /&gt;
&lt;br /&gt;
This pattern can be used to resolve some long standing issues with including [[machine-data|machine-data in microformats]]; it's imperative we test thoroughly before adding it to any pattern specification. Following are a number of example tests. ''Please try them out''. &lt;br /&gt;
&lt;br /&gt;
The pattern we're testing looks a little something like this. Those experienced with microformats should immediately see what we're trying to do:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;p class='tel'&amp;gt;&lt;br /&gt;
    &amp;lt;span class='type'&amp;gt;&lt;br /&gt;
        &amp;lt;span class='value-title' title='cell'&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
        mobile&lt;br /&gt;
    &amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class='value'&amp;gt;+44 7773 000 000&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;p class='dtstart'&amp;gt;&lt;br /&gt;
    &amp;lt;span class='value-title' title='2009-01-06T22:54:00-0800'&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
    January 6th, in the evening&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It allows you to include machine-form data alongside the human form, without polluting visible formatted content with undesired machine form data.&lt;br /&gt;
&lt;br /&gt;
This covers cases where a microformat uses a fixed format of data that is either inappropriate for visible inclusion in a page (such as a full date-time and timezone string), or where an American-English keyword is needed — such as &amp;lt;code&amp;gt;cell&amp;lt;/code&amp;gt; instead of ‘mobile’ in a British English page, or any number of non-English translations.&lt;br /&gt;
&lt;br /&gt;
This pattern is based on rendering behavior in browsers whereby an empty element — that is one containing no   text-nodes or other child elements — remains in the DOM tree (for parsing) but is not rendered visibly to a page. This allows an element to be included in the document with a &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute (as in the example), but ''without'' a tooltip being exposed to users, and without the data being read out by screen readers.&lt;br /&gt;
&lt;br /&gt;
You can use &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; on non-empty elements as well; whatever makes most sense to your publishing scenario. This page is dedicated to the empty-element version though, since that offers up the consumption unknowns.&lt;br /&gt;
&lt;br /&gt;
Based on everything we know up to this point, we believe this pattern will work. But, it's wide ranging and the web is broad, and we want to be sure. Please, help us out testing this pattern proposal. Examples tests are below, please push them or your own variants into publishing systems, content management systems, editor applications and tools. Check that it comes out the other side with the data intact, and exposed (or hidden) as expected: Render it in desktop browsers, mobile browers, screen readers, in braille… ''anything you can test, we want to know about''! We need to see any quirks, oddities and so on.&lt;br /&gt;
&lt;br /&gt;
Also, by all means provide thoughts on the publishing flow for this. An empty element is an uncommon structure outside of forms and scripts, but the reasoning is as follows: ''‘Machine formatted data’ is not metadata, it is content. Therefore, it's structurally appropriate to have it as a sibling to the human-formatted content.''&lt;br /&gt;
&lt;br /&gt;
'''Note that valid HTML is a cornerstone of microformats'''. ''Inventing new attributes, depending on unstable drafts of HTML5, using non-standard DOCTYPEs or XML extensions is not an applicable option''. We're trying to achieve something as gracefully as we can within the limitations of HTML4, and without harming user experience.&lt;br /&gt;
&lt;br /&gt;
==The proposed parsing rules==&lt;br /&gt;
&lt;br /&gt;
The current, likely incomplete, parsing rules and restrictions for this pattern are as follows:&lt;br /&gt;
&lt;br /&gt;
* Only one &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; element may be included as a child of a property. No splitting or concatenation, no combining with other value-excerption elements.&lt;br /&gt;
* An empty &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; element '''must''' be the ''first''-child of the property (not including any preceding whitespace). To alleviate the [[value-excerption-pattern-brainstorming#issues_2|negative impact of non-visible data]], the value should be as near as possible to declaring the property.&lt;br /&gt;
* The machine-data value ''must'' represent the same data as the visible text; the parent property ''must not'' contain arbitrary data. Validator tools will be encouraged to verify this where possible (for example, some programming languages have access to powerful date parsing algorithms that can compare human dates to the ISO form).&lt;br /&gt;
* The empty element can be ''any element'', but a generic &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; is most appropriate. You could use &amp;lt;code&amp;gt;b&amp;lt;/code&amp;gt; if you want to save bytes, or an &amp;lt;code&amp;gt;input type=hidden&amp;lt;/code&amp;gt; if it makes sense to you. That choice will not matter to parsers. You are in complete control of that publishing decision. As per usual µf documentation, &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; will be used for generic examples.&lt;br /&gt;
* The &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; property does not have to be empty. If you ''do'' want a tool-tip to expose a useful data-form, you can. e.g. &amp;lt;code&amp;gt;&amp;amp;lt;span class='value-title' title='2008'&amp;gt;last year&amp;amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; is valid too.&lt;br /&gt;
&lt;br /&gt;
==Example Tests==&lt;br /&gt;
&lt;br /&gt;
The following snippets are example tests for the new pattern. You can use them as is, or use them as a base for your own tests with your own content. If you write your own tests, please document them under ‘additional test cases’ so that any failing tests can be checked for validity.&lt;br /&gt;
&lt;br /&gt;
===hAtom#1: An hAtom &amp;lt;code&amp;gt;published&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;updated&amp;lt;/code&amp;gt; Property===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAtom#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;hentry&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;entry-title&amp;quot;&amp;gt;An introduction to Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;&lt;br /&gt;
                Published on &amp;lt;span class=&amp;quot;published updated&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-09T11:33:00-0800&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                January 9th, around lunchtime&amp;lt;/span&amp;gt;&lt;br /&gt;
                by &amp;lt;span class=&amp;quot;author vcard&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://example.com&amp;quot;&amp;gt;&lt;br /&gt;
                      Joe Blogger&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;entry-content&amp;quot;&amp;gt;Wow, microformats are really useful! You can&lt;br /&gt;
                learn loads about them on the &lt;br /&gt;
                &amp;lt;a href=&amp;quot;http://microformats.org/wiki&amp;quot;&amp;gt;microformats wiki&amp;lt;/a&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===hCal#1: An hCalendar &amp;lt;code&amp;gt;dtstart&amp;lt;/code&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hCal#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;summary&amp;quot;&amp;gt;Value Exception Test Day!&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;description&amp;quot;&amp;gt;Come help &amp;lt;span class=&amp;quot;organizer vcard&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;a class=&amp;quot;fn url org&amp;quot; href=&amp;quot;http://microformats.org&amp;quot;&amp;gt;microformats.org&amp;lt;/a&amp;gt;&lt;br /&gt;
                &amp;lt;/span&amp;gt; test a new value-excerption pattern for sanity and &lt;br /&gt;
                robustness!&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;Help out by running some tests at &lt;br /&gt;
              &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-12T12:00:00-0800&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                midday on Monday January 12th&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;See &amp;lt;a class=&amp;quot;url&amp;quot; href=&amp;quot;http://microformats.org/wiki/value-excerption-pattern-issues/empty-value-element-test&amp;quot;&amp;gt;the&lt;br /&gt;
                wiki&amp;lt;/a&amp;gt; for more details!&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===hCard#1: An hCard &amp;lt;abbr title=&amp;quot;birthday&amp;quot;&amp;gt;&amp;lt;code&amp;gt;bday&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hCard#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;!-- Behind Test --&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;fn&amp;quot;&amp;gt;Ben Ward&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;Ben Ward's birthday is &lt;br /&gt;
                &amp;lt;span class=&amp;quot;bday&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;1984-02-09&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                    February 9th&lt;br /&gt;
                &amp;lt;/span&amp;gt;.&lt;br /&gt;
                You should throw him a party! Or call his &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;cell&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;mobile&amp;lt;/span&amp;gt;&lt;br /&gt;
                on &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;415.123.123&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to wish him well!&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;!-- End Test --&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===hAudio#1: An hAudio &amp;lt;code&amp;gt;duration&amp;lt;/code&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAudio#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;h1&amp;gt;Song of the year?&amp;lt;/h1&amp;gt;&lt;br /&gt;
        &amp;lt;!-- Behind Test --&amp;gt;&lt;br /&gt;
        &amp;lt;p class=&amp;quot;haudio&amp;quot;&amp;gt;Did you hear ‘&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Heavy Water&amp;lt;/span&amp;gt;’ on&lt;br /&gt;
            &amp;lt;span class=&amp;quot;contributor&amp;quot;&amp;gt;Foals&amp;lt;/span&amp;gt; &lt;br /&gt;
            ‘&amp;lt;span class=&amp;quot;album&amp;quot;&amp;gt;Antidodes&amp;lt;/span&amp;gt;’ record &lt;br /&gt;
            &amp;lt;span class=&amp;quot;published&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2008&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                last year&lt;br /&gt;
            &amp;lt;/span&amp;gt;? It's&lt;br /&gt;
            &amp;lt;span class=&amp;quot;duration&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;PT04M32S&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                4 and a half minutes long&lt;br /&gt;
            &amp;lt;/span&amp;gt;, you should make time to hear it!&amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;!-- End Test --&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''If you believe there is an error in any of these tests, or in any others that people contribute, please post on the {{MicroformatsMailingList}}.''&lt;br /&gt;
&lt;br /&gt;
==Evil Tests==&lt;br /&gt;
&lt;br /&gt;
If you want to give existing microformat parsers a good run out, construct ‘evil’ tests using nesting, combination and interpolation of different microformats.&lt;br /&gt;
&lt;br /&gt;
===hAtom + hCalendar===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAtomhCalEvil#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;hentry vevent&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;entry-title summary&amp;quot;&amp;gt;An introduction to Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;&lt;br /&gt;
                Published on &amp;lt;span class=&amp;quot;published updated&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-09T11:33:00-0800&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                January 11th, late afternoon&amp;lt;/span&amp;gt;&lt;br /&gt;
                by &amp;lt;span class=&amp;quot;author organizer vcard&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://example.com&amp;quot;&amp;gt;&lt;br /&gt;
                      Joe Blogger&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;entry-content description&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-14T19:00:00&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                    this coming Wednesday at 7&lt;br /&gt;
                &amp;lt;/span&amp;gt; is not the date of a completely fictional microformats&lt;br /&gt;
                event. If it existed, it would promise to be informative and get&lt;br /&gt;
                you up to speed on microformats.org for 2009! Now you've &lt;br /&gt;
                learned to work with microformats a little, why not attend and&lt;br /&gt;
                get involved! Why not? Because this event is a test case, not &lt;br /&gt;
                for real.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Second Phase Test==&lt;br /&gt;
&lt;br /&gt;
Following the first wave of example tests (above), we had a handful of failures in publishing tools caused by the requirement of using the empty span element. Tools (including the widespread HTML-Tidy) drop the &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt;, thus throwing away the data. Thus, we have a second test to claim confirmation on, please. This version includes a single whitespace (space) character in the &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; span. The result of this is that the publishing tools that failed in the above example pass. We now need to confirm that the single item of whitespace will also collapse (we believe it does). Here's a rewrite of the first hAtom test from above, with the whitespace variation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAtom#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;hentry&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;entry-title&amp;quot;&amp;gt;An introduction to Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;&lt;br /&gt;
                Published on &amp;lt;span class=&amp;quot;published updated&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-09T11:33:00-0800&amp;quot;&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
                January 9th, around lunchtime&amp;lt;/span&amp;gt;&lt;br /&gt;
                by &amp;lt;span class=&amp;quot;author vcard&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://example.com&amp;quot;&amp;gt;&lt;br /&gt;
                      Joe Blogger&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;entry-content&amp;quot;&amp;gt;Wow, microformats are really useful! You can&lt;br /&gt;
                learn loads about them on the &lt;br /&gt;
                &amp;lt;a href=&amp;quot;http://microformats.org/wiki&amp;quot;&amp;gt;microformats wiki&amp;lt;/a&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The WYSIWYG editors can also publish the original pattern using the &amp;lt;code&amp;gt;input type=hidden&amp;lt;/code&amp;gt; element rather than a &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt;, but we're keen to avoid prescribing mark-up to any publisher (especially mark-up of ‘elaborate’ semantics).&lt;br /&gt;
&lt;br /&gt;
A second column has been added to the results to confirm each item that also passes with the inclusion of whitespace. Failures should be documented in the same place, please.&lt;br /&gt;
&lt;br /&gt;
This test is also hosted on Ben Ward's domain, so you can run it right in your browser by going to [http://ben-ward.co.uk/microformats/value-excerption-pattern/hAtom2.html http://ben-ward.co.uk/microformats/value-excerption-pattern/hAtom2.html].&lt;br /&gt;
&lt;br /&gt;
==Verifying the tests==&lt;br /&gt;
&lt;br /&gt;
To verified a successfully passing test, you need to check for the following:&lt;br /&gt;
&lt;br /&gt;
===In consumers (browsers, screen readers, etc.)===&lt;br /&gt;
&lt;br /&gt;
* The empty element should appear in the page &amp;lt;abbr title='Document Object Model'&amp;gt;DOM&amp;lt;/abbr&amp;gt;&lt;br /&gt;
* When hovering over and near the visible data, a tooltip displaying the machine-form ''must not'' be displayed.&lt;br /&gt;
** You can doubly verify this by opening you browser's DOM Inspector and confirming that the &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; element has a width of &amp;lt;samp&amp;gt;0&amp;lt;/samp&amp;gt; (or &amp;lt;samp&amp;gt;0 px&amp;lt;/samp&amp;gt;).&lt;br /&gt;
* When rendered to speech using assistive technology, the machine-form data ''must not'' be read aloud. &lt;br /&gt;
** Any variance in this behavior with different verbosity settings should be noted too, please.&lt;br /&gt;
&lt;br /&gt;
===In publishing tools===&lt;br /&gt;
&lt;br /&gt;
* The tool allows you to create an empty span element&lt;br /&gt;
** The tool allows you to add &amp;lt;kbd&amp;gt;value-title&amp;lt;/kbd&amp;gt; to the &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; attribute of this empty element.&lt;br /&gt;
** The tool allows you to add corresponding date to the &amp;lt;code&amp;gt;attribute&amp;lt;/code&amp;gt; attribute of this empty element.&lt;br /&gt;
* The element remains available in the editor whilst other edits are made&lt;br /&gt;
* When the content is ‘published’ to the web, the empty element is present in the page output, and therefore in the DOM for the document.&lt;br /&gt;
&lt;br /&gt;
==Response==&lt;br /&gt;
&lt;br /&gt;
* Don't like the empty element? Don't like the use of the title attribute? '''Please file general issues concerning the proposed pattern on the main [[value-excerption-pattern-brainstorming#enabling_more_use_of_title_attributes|value excerption brainstorming page]]''', or discuss them on the {{MicroformatsMailingList}}.&lt;br /&gt;
* Add results of tests and responses to these tests themselves on ''this page''.&lt;br /&gt;
&lt;br /&gt;
Misplaced responses will be moved, and having to do so will make [[User:BenWard|Ben]] growly, so, y'know, please try to keep the wiki tidy.&lt;br /&gt;
&lt;br /&gt;
=== Please Also Try ===&lt;br /&gt;
Please also try the [[value-excerption-dt-separation-test]]. This is not either or. Ideally both will work and can be carried forward.&lt;br /&gt;
&lt;br /&gt;
===Successful Tests===&lt;br /&gt;
&lt;br /&gt;
List successfully tested environments here. Add new environments as new list items, and expand existing list items with your name and platform variants to indicate verified successes.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+ Results of tests across various publishing/rendering environments&lt;br /&gt;
|-&lt;br /&gt;
! Product&lt;br /&gt;
! &amp;lt;abbr title=&amp;quot;Publishing or Consuming?&amp;quot;&amp;gt;P/C?&amp;lt;/abbr&amp;gt;&lt;br /&gt;
! Platforms&lt;br /&gt;
! Test By&lt;br /&gt;
! Notes&lt;br /&gt;
! &amp;lt;abbr title='Test 2 with Whitespace'&amp;gt;T2&amp;lt;/abbr&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| MediaWiki/Linux&lt;br /&gt;
| Publishing&lt;br /&gt;
| Safari 3.2.1 (Mac OSX 10.5)&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| The empty &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; elements are maintained in &amp;lt;abbr title=&amp;quot;MediaWiki&amp;quot;&amp;gt;MW&amp;lt;/abbr&amp;gt; output. Note that &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt; elements in the tests get escaped by this MediaWiki install.&lt;br /&gt;
|-&lt;br /&gt;
| TinyMCE 3.2.1.1&lt;br /&gt;
| Publishing&lt;br /&gt;
| Safari 3.2.1 (Mac OSX 10.5)&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Fails when trying to publish empty element (see below)&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| FCKEditor 2.6.4 Beta&lt;br /&gt;
| Publishing&lt;br /&gt;
| Safari 3.2.1 (Mac OSX 10.5)&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Fails when trying to publish empty element (see below)&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Safari 2.0.4&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5&lt;br /&gt;
| [[User:GeorgeBrock]]&lt;br /&gt;
| Empty-span reamins in DOM. No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Safari 3.0.3&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Safari 3.2.1&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM. Web Inspector reports the element has width and height of ‘0px’. No tooltip due to zero-dimensions.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 2.0&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5&lt;br /&gt;
| [[User:GeorgeBrock]], [[User:BenWard]]&lt;br /&gt;
| Empty-span remains in DOM. Firebug reports the element has width of '0px' and height of ‘16px’. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 3.0.x&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM. Firebug reports the element has width of '0px' and height of ‘16px’. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 3.0.x&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP SP3,&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| no tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 3.1ß1&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Empty-span remains in DOM. No tooltip.&lt;br /&gt;
|-&lt;br /&gt;
| Opera 9.6&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Opera 9.62&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5, Windows XP SP3&lt;br /&gt;
| [[User:BenWard]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM. Dragonfly reports the element has width of '0px' and height of ‘0px’. No tooltip due to zero-dimensions.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Opera 10 Alpha&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Empty-span remains in DOM. Dragonfly reports the element has width of '0px' and height of ‘0px’. No tooltip due to zero-dimensions.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 5.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 6.0&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:GeorgeBrock]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM (visible to Web Developer Toolbar, accessible from Javascript). No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 7.0&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:GeorgeBrock]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM (visible to Web Developer Toolbar, accessible from Javascript). No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 8.0 beta 2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:GeorgeBrock]]&lt;br /&gt;
| Empty-span remains in DOM. Developer Tools (built in to &amp;lt;abbr title=&amp;quot;Internet Explorer 8 beta 2&amp;quot;&amp;gt;IE8b2&amp;lt;/abbr&amp;gt;) report the element has width of '0px' and height of '19px'. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Camino 1.6.5&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Camino 1.6.6&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:GeorgeBrock]]&lt;br /&gt;
| Empty-span remains in DOM. [http://getfirebug.com/lite.html Firebug Lite] reports width of '0px' and height of '16px'. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Flock 2.0.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Flock 2.0.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Chrome 1.0.154.43&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| BlackBerry Browser&lt;br /&gt;
| Consuming&lt;br /&gt;
| BlackBerry Storm OS 4.0.7.85 (leaked, non-official OS build from Verizon)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| Tested in ‘BlackBerry mode’. No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| MobileSafari 2.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| iPhone OS 2.2&lt;br /&gt;
| [[User:EmilyLewis]], [[User:BenWard]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| IE Mobile 7.11&lt;br /&gt;
| Consuming&lt;br /&gt;
| Sprint HTC Mogul, OS: Windows Mobile 6.1&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| JAWS 10.0.512 (demo mode)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No voice&lt;br /&gt;
|-&lt;br /&gt;
| Fire Vox (Firefox 3.0.5)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No voice&lt;br /&gt;
|-&lt;br /&gt;
| WebbIE (Thunder 1.43)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No voice&lt;br /&gt;
|-&lt;br /&gt;
| VoiceOver (Safari 3.2.1)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]], [[User:BenWard]]&lt;br /&gt;
| No voice. When interacting with elements, cannot focus on the empty-span.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Failed Tests===&lt;br /&gt;
&lt;br /&gt;
For failures, please provide as much information as you can. The precise impact of the error, whether the behavior could be regarded as a bug in the software you're testing, whether it works in subsequent releases, whether you changed any settings in the software to produce the result, and if so, whether enabling/disabling that setting should be regarded a showstopper if this pattern were certified. &lt;br /&gt;
&lt;br /&gt;
Since we want more detail, please expand failures into headed sections rather than cramming into a table.&lt;br /&gt;
&lt;br /&gt;
For example, take this entirely plausible scenario as a template:&lt;br /&gt;
&lt;br /&gt;
====Example: Fake Publisher 3.1ß====&lt;br /&gt;
; Platform&lt;br /&gt;
: Windows Vista&lt;br /&gt;
; Test By&lt;br /&gt;
: [[User:BenWard]]&lt;br /&gt;
; Description&lt;br /&gt;
: When trying to enter an empty span in my &amp;lt;abbr title=&amp;quot;Hypertext Markup Language&amp;quot;&amp;gt;HTML&amp;lt;/abbr&amp;gt; editor, which I wrote myself whilst I was high, the application immediately crashes, performs &amp;lt;code&amp;gt;rm -rf /&amp;lt;/code&amp;gt; on all UNIX boxes connected to my local network (which also appears to cause Android phones within Bluetooth range to do the same…), and then causes all attached peripherals to combust. I was not able to reproduce, as my house was now on fire. I think using a self closing XHTML tag instead might work-around the problem because as we know, it's been proved by Real Scienticians that XML is always better than HTML. Alternatively, it may be a bug in the beta software.&lt;br /&gt;
; Notes&lt;br /&gt;
: This is a beta release, and a bug has been filed.&lt;br /&gt;
: This product has a known history of flammability bugs.&lt;br /&gt;
: The user must explicitly enable the ‘Endanger My Life’ checkbox under the ‘Advanced Mislabelled Checkboxes’ tab of the ‘Complicated Preferences’ preferences pane.&lt;br /&gt;
: You get the idea.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Browser &amp;lt;abbr title=&amp;quot;What you see is what you get&amp;quot;&amp;gt;WYSIWYG&amp;lt;/abbr&amp;gt; editor: [http://tinymce.moxiecode.com/ TinyMCE 3.2.1.1]====&lt;br /&gt;
; Platform&lt;br /&gt;
: Firefox 3.0 on Mac OSX 10.5&lt;br /&gt;
; Test By&lt;br /&gt;
: [[User:GeorgeBrock]]&lt;br /&gt;
; Description&lt;br /&gt;
: Empty spans entered using TinyMCE's source editor are removed when switching back to the default WYSIWYG view. &lt;br /&gt;
: This is not a bug with TinyMCE, the editor is designed to remove empty instances of most elements by default. The handling of empty elements can be changed by modifying the [http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/valid_elements valid-elements setting] (e.g. change &amp;lt;code&amp;gt;-span&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; and empty spans will no longer be removed), however settings can only be changed by modifying the source code of the page that contains the TinyMCE instance, so it is likely that some users will not be able to apply this fix.&lt;br /&gt;
; Notes&lt;br /&gt;
: This behavior can be easily reproduced using the online [http://tinymce.moxiecode.com/examples/full.php TinyMCE examples].&lt;br /&gt;
: TinyMCE is the default WYSIWYG editor in WordPress[http://codex.wordpress.org/TinyMCE].&lt;br /&gt;
: With a single whitespace character (‘space’), the &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; is preserved, but yet still seems to collapse in Safari. Will write a follow-up test.--[[User:BenWard|BenWard]] 23:11, 20 January 2009 (UTC)&lt;br /&gt;
: You ''can'' publish this pattern using the &amp;lt;code&amp;gt;input type='hidden' class='value-title' title='2009-01-20'&amp;lt;/code&amp;gt; hinted above. Semantically odd, although it's been suggested on µf lists before. Publishing workaround exists through element agnosticism. --[[User:BenWard|BenWard]] 23:11, 20 January 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
====Browser &amp;lt;abbr title=&amp;quot;What you see is what you get&amp;quot;&amp;gt;WYSIWYG&amp;lt;/abbr&amp;gt; editor: [http://www.fckeditor.net/ FCKEditor 2.6.4 Beta]====&lt;br /&gt;
; Platform&lt;br /&gt;
: Firefox 3.0 on Mac OSX 10.5&lt;br /&gt;
; Test By&lt;br /&gt;
: [[User:GeorgeBrock]]&lt;br /&gt;
; Description&lt;br /&gt;
: Empty spans entered using FCKEditor's source editor are removed when switching back to the default WYSIWYG view or submitting the form that contains the FCKEditor instance.&lt;br /&gt;
; Notes&lt;br /&gt;
: This behaviour can be easily reproduced using the online [http://www.fckeditor.net/demo FCKEditor demo].&lt;br /&gt;
: FCKEditor is used by various content management systems, frameworks and applications[http://www.fckeditor.net/whosusing].&lt;br /&gt;
: With a single whitespace character (‘space’), the &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; is preserved, but yet still seems to collapse in Safari. Will write a follow-up test.--[[User:BenWard|BenWard]] 23:12, 20 January 2009 (UTC)&lt;br /&gt;
: You ''can'' publish this pattern using the &amp;lt;code&amp;gt;input type='hidden' class='value-title' title='2009-01-20'&amp;lt;/code&amp;gt; mentioned above. --[[User:BenWard|BenWard]] 23:12, 20 January 2009 (UTC)&lt;br /&gt;
: This issue does not effect FCKEditor instances that use the Placeholders plugin (this plugin comes with FCKEditor, enable it using &amp;lt;code&amp;gt;FCKConfig.Plugins.Add('placeholder')&amp;lt;/code&amp;gt;).  Examining the Placeholders plugin code may yield an easier work-around than including the plugin (I had a quick look but didn't see anything that was obviously responsible for allowing empty spans) -[[User:GeorgeBrock|GeorgeBrock]] 23:20, 20 January 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Additional failure reports go above this line, please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===General Test Feedback===&lt;br /&gt;
&amp;lt;div class='discussion'&amp;gt;&lt;br /&gt;
* Any general feedback you have on this test is most welcome. However, if you have issues with the pattern or alternate suggestions, please file them on the main [[value-excerption-pattern-issues]] page. Also, please remember to sign your comments with &amp;lt;nowiki&amp;gt;—~~~~&amp;lt;/nowiki&amp;gt; —[[User:BenWard|BenWard]] 00:12, 9 January 2009 (UTC)&lt;br /&gt;
* … &amp;lt;!-- New topic as a top-level list item  --&amp;gt;&lt;br /&gt;
** … &amp;lt;!-- Responses as nested list item for threading --&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related Pages==&lt;br /&gt;
* [[value-excerption-pattern]]&lt;br /&gt;
* [[value-excerption-pattern-issues]]&lt;br /&gt;
* [[value-excerption-pattern-brainstorming]]&lt;br /&gt;
* [[value-excerption-dt-separation-test]]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hatom-examples-in-wild&amp;diff=39228</id>
		<title>hatom-examples-in-wild</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hatom-examples-in-wild&amp;diff=39228"/>
		<updated>2009-06-24T14:10:48Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* 0.1 hAtom examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=hAtom Examples in the Wild=&lt;br /&gt;
&lt;br /&gt;
The following sites have implemented [[hatom|hAtom]], 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. If your site marked up with hAtom, feel free to add it o the '''top''' of this list. Please check back after a few days, to see if anyone has found any problems with the examples supplied.&lt;br /&gt;
&lt;br /&gt;
== 0.1 hAtom examples==&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
    Please add examples to the top of this list. Write in the third person (&amp;quot;Acme has...&amp;quot; not &amp;quot;we have...&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
* [http://www.zybez.net/ Zybez] uses hAtom for the news entries on its home page.&lt;br /&gt;
* The [http://greenvoice.com Greenvoice] Blog, as well as all of the individual campaign blogs on the site ([http://greenvoice.com/campaigns/303-saving-scottish-seals/blogs/595/posts example]), have their posts marked up with hAtom.&lt;br /&gt;
* [http://huffduffer.com/ Huffduffer] uses hAtom for the [http://huffduffer.com/new newest] and the most [http://huffduffer.com/popular popular] additions as well as on every user profile and on tag places.&lt;br /&gt;
* [http://fairvote.ca/en/WaterlooRegion Waterloo Region Chapter Fair Vote Canada] hAtom enabled until the site enables RSS/Atom in Drupal.  Self-referentially linked with Luke Arno's [http://www.lukearno.com/projects/hatom2atom/ hatom2atom service]. &lt;br /&gt;
* [http://www.aduk.org/ ADUK] use hAtom to mark up news on their home page.&lt;br /&gt;
* [http://thetyee.ca/Blogs/TheHook/ The Hook] a Canadian political blog, uses hAtom for blog posts and list of blog posts, however also offers a feedburner RSS feed.&lt;br /&gt;
* [http://www.plaintxt.org/experiments/blog-summary/ Blog Summary] is a [[wordpress|WordPress]] plugin from plaintxt.org that generates a semantic list of recent entries in hAtom. By [[implementors#Scott_Allan_Wallick|Scott Allan Wallick]].&lt;br /&gt;
* [http://www.yigg.de YiGG (a german social-news community)] Marks up all there Pages with stories using hAtom.&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 hatom for its news page and generating rss.&lt;br /&gt;
* [http://blog.kakkoi.net/ Kakkoi] - combine hAtom (i.e., xFolk RC1, hreview, hAtom) for blog posts and comments.&lt;br /&gt;
* [http://www.vibereview.com/ VibeReview] uses hAtom for sex toy reviews and articles (no nudity, but still maybe NSFW).  Two feeds can be found on the homepage.&lt;br /&gt;
* [http://www.linuxinfusion.com/ Linux Infusion] uses hAtom for blog posts and comments.&lt;br /&gt;
*  Joseph Bergantine has used hAtom to mark up [http://bergantinedesign.us/blog/my-microwave-has-a-button-that-says-record blog posts], [http://bergantinedesign.us/blog/ article lists], and [http://bergantinedesign.us/blog/doneish#comment000068 comments] &lt;br /&gt;
* [http://microrevie.ws/ MicroReviews] marks up each review with [[hAtom]] so that every page can be a feed. See [http://microrevie.ws/ the home page] or [http://microrevie.ws/????? 5-Star Reviews]&lt;br /&gt;
* LocalHero (localhero dot biz) A local search which returns it search results in hatom (as well as other microformats).&lt;br /&gt;
* [http://blog.livedoor.jp/forestk/ forestk's blog] uses hAtom (note it is Japanese!)&lt;br /&gt;
* [http://www.niallkennedy.com/blog/ Niall Kennedy's Weblog] features hAtom on every page. includes comments.&lt;br /&gt;
* [http://weborganics.co.uk/ WebOrganics] - Has hAtom feeds on every page.&lt;br /&gt;
* [http://journal.redflavor.com/ Reprise] - A [http://redflavor.com/reprise.rb minimal blog] application which uses hAtom out of the box.&lt;br /&gt;
* [http://www.bbc.co.uk/worldservice/bangladeshboat BBC World Service Bangladesh River Journey] a social network mashup, with hAtom entries &amp;amp; other microformats. See [http://dharmafly.com/blog/bangladeshboat Dharmafly blog discussion].&lt;br /&gt;
* [http://www.people.com/people/news/ People Magazine] uses hAtom to markup the latest news stories.&lt;br /&gt;
* [http://www.bo.ingv.it/italiano/News.html Istituto Nazionale Geofisica e Vulcanologia, Bologna] implemented hAtom entries with embedded rel-tags for categories in its news-page (custom template for [http://www.modxcms.com MODx CMS]).&lt;br /&gt;
* [http://v1.itvp.pl/blog/przebojowanoc/i.tvp/idb/24/ ITVP] uses hAtom for entries. See [http://twitter.com/Wojtek/statuses/299700082 Wojtek's announcement 2007-09-28].&lt;br /&gt;
* [http://shiftingpixel.com Shifting Pixel] uses hAtom for blog posts and comments.&lt;br /&gt;
* [http://lazylibrary.com LazyLibrary] uses hAtom on book results pages.&lt;br /&gt;
* [http://findsubstance.com Find Substance Blog] uses hAtom for blog posts.&lt;br /&gt;
* [http://www.blogger.com Blogger]&lt;br /&gt;
** [http://groups.google.com/group/bloggerDev/browse_thread/thread/69344c5cc35b472e Announcement] on Blogger Dev that all new blogs will have hAtom classes&lt;br /&gt;
* AOL&lt;br /&gt;
**[http://news.aol.com AOL News], AOL News has implemented hAtom into their center column. This display will be used on other AOL channels as well&lt;br /&gt;
**[http://sports.aol.com AOL Sports], AOL Sports is the second AOL channel to use the hAtom display for its center column data&lt;br /&gt;
* [http://www.creation.uk.com Creation design &amp;amp; marketing] uses hAtom for a lot of the content as well as [http://www.creation.uk.com/news/2007/06/06/easy-money/ comments on articles].&lt;br /&gt;
* [http://www.sndbx.org/ The Sandbox Designs Competition] uses hAtom for all content, hCard for participant (the competition designers) and sponsor information, hCalendar for the competition schedule, XFN for links, and rel-license for licensing information. It's all GNU GPL.&lt;br /&gt;
* [http://guyleech.net guyleech.net] uses hAtom for blog posts, and uses hCard for contact information. There is also an [http://guyleech.net/technical/html/minimal-microformats article] on how to minimize hAtom, to save time and code.&lt;br /&gt;
* [http://kpumuk.info/ Dmytro Shteflyuk] uses hAtom for all blog posts.&lt;br /&gt;
* [http://blog.no-panic.at Florian Beer] uses hAtom to mark up all the blog posts. There is also a [http://blog.no-panic.at/2006/11/16/hatom-and-wordpress/ tutorial] on how to convert [[wordpress|WordPress]] themes to include hAtom.&lt;br /&gt;
* [http://ficlets.com/ Ficlets] uses hAtom on the [http://ficlets.com/stories main stories page] and on [http://ficlets.com/stories/12 individual story pages].&lt;br /&gt;
* [http://www.international.unt.edu UNT International] uses hAtom combined with hCard on news/announcement pages (e.g., [http://www.international.unt.edu/quick/news the main news page]) in addition to providing traditional Atom feeds&lt;br /&gt;
* [http://www.absalom.net.au Absalom Media] uses hAtom combined with hCard for articles.&lt;br /&gt;
* [http://www.joomlamug.com Joomla! Melbourne User Group] uses hAtom combined with hCard for articles.&lt;br /&gt;
* [http://www.volume.co.uk Volume] - Main news page is marked up as hAtom 0.1 &lt;br /&gt;
* [http://yedda.com Yedda] - Yedda support hAtom on exploration of questions where there is also support for Atom and RSS feeds. ([http://yedda.com/questions/recent/ example])&lt;br /&gt;
* The [http://www.westmidlandbirdclub.com/ West Midland Bird Club's] frequently-updated [http://www.westmidlandbirdclub.com/new.htm What's New] page,  [http://www.westmidlandbirdclub.com/ladywalk/latest.htm news from its Ladywalk Reserve] and [http://www.westmidlandbirdclub.com/worcs/grimley/latest.htm news from Grimley Pits] &amp;amp;mdash;  comments welcome on my talk page [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://pixelsebi.com pixelsebi's repository] uses hAtom 0.1 for blog posts (and hCard, hCalendar, XFN, xFolk and many more) based on manual [[wordpress|WordPress]] template modifications&lt;br /&gt;
* [http://www.qmpeople.com/ qmpeople] uses hAtom combined with hCard for [http://www.qmpeople.com/blog/ blog].&lt;br /&gt;
* [http://www.geekinthepark.co.uk Geek in the Park] uses hAtom for the comments. -- by [[User:Trovster|trovster]]&lt;br /&gt;
* [http://www.csarven.ca Sarven Capadisli] uses hAtom for the articles and comments -- by [[User:Csarven|csarven]]&lt;br /&gt;
* [http://www.capital.edu Capital University] uses hAtom 0.1 to mark up the feed of latest posts by student bloggers on its home page.&lt;br /&gt;
* [http://blog.davidjanes.com Ranting and Roaring] (David Janes)&lt;br /&gt;
* [http://ChunkySoup.net/ ChunkySoup.net] has redesigned using hAtom 0.1 and hCards on the entire site &amp;amp;mdash; by [[User:ChrisCasciano|Chris Casciano]]&lt;br /&gt;
* [http://sedna.spip.org/sedna/ Sedna RSS] (a feed aggregator based on SPIP, by Fil, IZO and others; GPLd sources are available at [http://zone.spip.org/trac/spip-zone/browser/_squelettes_/sedna SPIP-Zone])&lt;br /&gt;
* [http://quotedprintable.com/pages/scribbish Scribbish] is a Typo theme which uses hAtom.&lt;br /&gt;
* [http://rbach.priv.at/hAtom2Atom/Changelog/ hAtom2Atom.xsl's Changelog] is published as hAtom and Atom.&lt;br /&gt;
* [http://federali.st/ federali.st]'s webbed Federalist Papers are each marked up in hAtom.&lt;br /&gt;
* [http://www.plaintxt.org/themes/sandbox/ Sandbox] is a theme for [[wordpress|WordPress]] that uses hAtom. By [[implementors#Scott_Allan_Wallick|Scott Allan Wallick]].&lt;br /&gt;
** The theme is also available to accounts on the [http://wordpress.com/ &amp;lt;username&amp;gt;.wordpress.com] hosting service. The [http://blog.coworking.info Coworking] and [http://barcamp.wordpress.com BarCamp] blogs are examples of custom Sandbox themes.&lt;br /&gt;
** Over 40 designs available for the Sandbox at the [http://www.sndbx.org/ Sandbox Designs Competition], which also uses hAtom&lt;br /&gt;
* [http://www.whump.com/dropbox/Strangelove.zip Strangelove] is a modification of the default WordPress theme (Kubrick) with hAtom support. &lt;br /&gt;
** It points to the hAtom2Atom proxy service as the link for syndication feeds.&lt;br /&gt;
* All [http://www.plaintxt.org/themes/ plaintxt.org themes] for [[wordpress|WordPress]] now use hAtom. The themes are also coded for hCard compliance. The themes, by name, are:&lt;br /&gt;
** [http://www.plaintxt.org/themes/barthelme/ Barthelme] (two-column, fluid), [http://www.plaintxt.org/themes/blogtxt/ blog.txt] (two- or three-column, elastic), [http://www.plaintxt.org/themes/plaintxtblog/ plaintxtBlog] (three-column, fluid), [http://www.plaintxt.org/themes/simplr/ Simplr] (one column, elastic), [http://www.plaintxt.org/themes/veryplaintxt/ veryplaintxt] (two column, fluid)&lt;br /&gt;
** By [[implementors#Scott_Allan_Wallick|Scott Allan Wallick]].&lt;br /&gt;
* [http://www.pats.ua.ac.be/courses PATS Courses], the PATS Research Group uses hAtom to mark up the latest course documents for some of their courses&lt;br /&gt;
* [http://mix.excite.co.uk Excite MIX], the Ajax Start Page from Excite Europe, uses hAtom 0.1 and hCard in the Feed Viewer to mark up feed entries and authors.&lt;br /&gt;
* [http://last.fm Last.FM], a social music sharing platform, uses hAtom markup for [http://blog.last.fm/2007/05/30/rss-your-shoutbox-and-you shoutbox], and recommends using [http://tools.microformatic.com microformatic]'s transcode tool&lt;br /&gt;
* [http://vlograzor.com/ Vlog Razor] - Contains multiple hAtom feeds on the same page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
     Please do NOT add new examples here - add them to the TOP of this list. Thank you.&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Examples with some problems==&lt;br /&gt;
&lt;br /&gt;
Entries may be moved here if there's a problem with the way hAtom is used on the page concerned. If the page is yours, and you want to improve it, see the [[hatom-faq|hAtom FAQ]], or raise any queries on [[hatom-issues|hAtom Issues]] or [[mailing-lists#microformats-discuss|the mailing list]], where people will be happy to help you. &lt;br /&gt;
&lt;br /&gt;
=== Pre 0.1 hAtom examples===&lt;br /&gt;
These pages conform to an older draft standard and need to be updated.&lt;br /&gt;
&lt;br /&gt;
* [http://www.myelin.co.nz/post/ Second p0st] (Phil Pearson)&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{hatom-related-pages}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hproduct-examples-in-wild&amp;diff=39227</id>
		<title>hproduct-examples-in-wild</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hproduct-examples-in-wild&amp;diff=39227"/>
		<updated>2009-06-24T14:07:51Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Live Product Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Product Examples &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
&lt;br /&gt;
This page is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The purpose of the studies on this page is to serve as background for the design of a simple distributed product microformat. There are limited number of examples in the wild, but this page can serve as a base for experimentation and implementation.&lt;br /&gt;
&lt;br /&gt;
== Editors/Authors ==&lt;br /&gt;
(alphabetical)&lt;br /&gt;
* [[User:PaulLee|Paul Lee]], Google Product Search&lt;br /&gt;
* [[User:JayMyers|Jay Myers]], [http://www.bestbuy.com/ Best Buy, Co., Inc.]&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
(alphabetical)&lt;br /&gt;
* Craig Cook, [http://focalcurve.com/ Focal Curve]&lt;br /&gt;
* Aaron Gustafson, [http://easy-designs.net/ Easy! Designs]&lt;br /&gt;
&lt;br /&gt;
== New Examples ==&lt;br /&gt;
If you have implemented hProduct on your own page, 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 [[hproduct|hProduct]] markup. &lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
=== Experimental Live hProduct Examples ===&lt;br /&gt;
See bestbuy.com's experimental hProduct implementation (pre-draft) on &amp;quot;Shop URLs&amp;quot; at:&lt;br /&gt;
&amp;lt;nowiki&amp;gt;http://www.bestbuy.com/shop/&amp;lt;/nowiki&amp;gt;''term'', or more information here: [http://jay.beweep.com/index.php/2008/10/14/reviving-shop-urls-with-hproduct/ Shop URL details]&lt;br /&gt;
Karniyarik.com  [http://www.karniyarik.com/karniyarik-web]is a vertical search engine for online goods and experimented hProduct.&lt;br /&gt;
&lt;br /&gt;
=== See Also ===&lt;br /&gt;
(Note: See [[hlisting-extended-examples|hlisting-extended-examples]] also for examples of products listed on classified services.--[[PaulLee|Paul Lee]] 21:24 20 Aug 2008)&lt;br /&gt;
&lt;br /&gt;
=== Live Product Examples ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.optykrozmus.co.uk/Scripts/prodView.asp?idproduct=18&amp;amp;idcategory=263&amp;amp;title=1+Day+Acuvue+Contact+lenses+from+Johnson+%26+Johnson+|+Acuvue+Contact+Lenses Optyk Rozmus Contact Lenses]&lt;br /&gt;
** Product type: Contact Lenses &amp;gt; Acuvue&lt;br /&gt;
** Properties:  name, description, photo, price, identifier, sku, brand, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://tinyurl.com/7p6h4l BlueNile]&lt;br /&gt;
** Product type: Jewelry &amp;gt; Bracelets&lt;br /&gt;
** Properties: categories, name, description, product rating, photo, price, order info, shipping information, stock number, metal type, clasp type, width, weight, add to basket, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.petco.com/product/14363/Totally-Ferret-Premium-Food-for-Active-Show-and-Pet-Ferrets.aspx Petco]&lt;br /&gt;
** Product type: Ferrets &amp;gt; Ferret food&lt;br /&gt;
** Properties: photo, name, brand/ manufacturer, description, product rating, reviews, weight, sku, shipping, internet price, sale price, quantity, add to cart, category, warranty, analysis, directions&lt;br /&gt;
&lt;br /&gt;
* [http://www.allposters.com/gallery.asp?startat=/getposter.asp&amp;amp;APNum=290796&amp;amp;CID=AC3917B0E4E4452CBC36B60F9B66A923&amp;amp;PPID=1&amp;amp;search=matisse&amp;amp;f=c&amp;amp;FindID=26501&amp;amp;P=1&amp;amp;PP=13&amp;amp;sortby=PD&amp;amp;cname=Henri+Matisse&amp;amp;SearchID allposters.com]&lt;br /&gt;
** Product type: Artwork &amp;gt; Prints&lt;br /&gt;
** Properties: photo, title, artist, type, size, item number, shipping, price, add to cart, custom frame, additional services, description&lt;br /&gt;
&lt;br /&gt;
* [http://www.target.com/Britax-Decathlon-Sahara-Convertible-Seat/dp/B000JIWU4W/sr=1-1/qid=1230579365/ref=sr_1_1/179-9254632-8007737?ie=UTF8&amp;amp;rh=k%3Atoddler%20car%20seats%20britax&amp;amp;page=1 target.com]&lt;br /&gt;
** Product type: Baby &amp;amp;#38; Toddler &amp;gt; Toddler car seat&lt;br /&gt;
** Properties: photo, shipping, brand, title, price, guest rating, quantity, add to cart, add to list(s), availability, features, reviews, identifiers (dpci, asin, catalog number), height, width, depth&lt;br /&gt;
&lt;br /&gt;
* [http://www.uniformadvantage.com/pages/prod/0445.asp?frmcolor=NAVY uniformadvantage.com]&lt;br /&gt;
** Product type: Business &amp;amp;#38; Industrial &amp;gt; Medical &amp;gt; Medical Scrubs&lt;br /&gt;
** Properties: name, style number, brand, photo, description, price, color, size, quantity, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://freewheelbike.com/itemdetails.cfm?LibId=45397 freewheelbike.com]&lt;br /&gt;
** Product type: Sporting Goods &amp;gt; Bicycles&lt;br /&gt;
** Properties: categories, photo, brand, name, price, product rating, description, features (click-through/pop-up), color, size, add to cart, add and checkout, add to wish list&lt;br /&gt;
&lt;br /&gt;
* [http://www.fastforklifts.com/electric-forklift-trucks-electric-forklift-walkie-forklift-xp1229-12.html fastforklifts.com]&lt;br /&gt;
** Product type: Industrial Equipment &amp;gt; Forklifts&lt;br /&gt;
** Properties: photo, name, product id, manufacturer, price, sale price, savings, quantity, add to cart, category, description&lt;br /&gt;
&lt;br /&gt;
* [http://www.leotardworld.com/Wiggles-Sparkle-Butterfly-Back-Leotard-p/mw1425-356h.htm leotardworld.com]&lt;br /&gt;
** Product type: Clothing &amp;amp;#38; Accessories &amp;gt; Leotards&lt;br /&gt;
** Properties: categories, name, brand, photo, price, sale price, you save, size, status, product code, quantity, add to cart, add to wish list, description, review&lt;br /&gt;
&lt;br /&gt;
* [http://www.gap.com/browse/product.do?cid=40772&amp;amp;pid=405608&amp;amp;scid=405608002 gap.com]&lt;br /&gt;
** Product type: Clothing &amp;amp;#38; Accessories &amp;gt; Men's Blazers&lt;br /&gt;
** Properties: photo, name, description, size, color, sku, quantity, price, sale price, add to bag, product details&lt;br /&gt;
&lt;br /&gt;
* [http://www.amazon.com/Nikon-Coolpix-Digital-Camera-Optical/dp/B0011MVWZ8/ref=pd_bbs_sr_1?ie=UTF8&amp;amp;s=electronics&amp;amp;qid=1231272206&amp;amp;sr=8-1 amazon.com]&lt;br /&gt;
** Product type: Electronics &amp;gt; Cameras&lt;br /&gt;
** Properties: photo, name, brand/manufacturer, reviews, colors, price, availability, shipping, quantity, add to cart, related, product details, product dimentions, weight, asin, model number, sales rank, categories, description, tags, reviews, discussions&lt;br /&gt;
&lt;br /&gt;
* [http://shop.lundsandbyerlys.com/shopping.aspx?location=E&amp;amp;sublocation=LP&amp;amp;shoplistid=336 lundsandbyerlys.com(frames, maui bento sushi chosen as example)]&lt;br /&gt;
** Product type: Food Items &amp;gt; Sushi&lt;br /&gt;
** Properties: on sale, photo, name, serving size, quantity, price, sale price, savings, add to basket&lt;br /&gt;
&lt;br /&gt;
* [http://www1.macys.com/catalog/product/index.ognc?ID=290741&amp;amp;CategoryID=42212 macys.com]&lt;br /&gt;
** Product type: Furniture &amp;gt; Living Room Sets&lt;br /&gt;
** Properties: photo (flash), name, brand, description, details, shipping, returns, product rating, colors, related, height, width, depth, product features, warranty info, web id, price, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.lowes.com/lowes/lkn?action=productDetail&amp;amp;productId=132135-444-C14024A&amp;amp;lpage=none lowes.com]&lt;br /&gt;
** Product type: Household Hardware &amp;gt; Vanity&lt;br /&gt;
** Properties: photo, name, manufacturer/brand, item number, model, price, add to cart, availability, shipping, description, total width, total depth, total height, top width, top depth, color, series, assembly, number drawers, construction type, mount type, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.homedepot.com/webapp/wcs/stores/servlet/ProductDisplay?storeId=10051&amp;amp;langId=-1&amp;amp;catalogId=10053&amp;amp;productId=100189145 homedepot.com]&lt;br /&gt;
** Product type: Hardware &amp;gt; Sump Pump&lt;br /&gt;
** Properties: photo, name, model, brand, price, quantity, add to cart, add to list, add to registry, product rating, description, model number, part number, features, specifications, ada compliant, amperage, depth, height, weight, width, battery backup, cord length, energy star, horsepower, length, outlet connection, outlet dimension, switch type, voltage, reviews, warranty&lt;br /&gt;
&lt;br /&gt;
* [http://www.acehardware.com/product/index.jsp?productId=1290429&amp;amp;cp=&amp;amp;sr=1&amp;amp;kw=lathes&amp;amp;origkw=lathes&amp;amp;parentPage=search&amp;amp;searchId=34784674863 acehardware.com]&lt;br /&gt;
** Product type: Hardware &amp;gt; Lath Screws&lt;br /&gt;
** Properties: photo, name, product rating, price, rewards points, shipping, categories, color, size, quantity, add to cart, add to wish list, related, availability, product details: head type, size, material, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.walgreens.com/store/product.jsp?CATID=100218&amp;amp;navAction=jump&amp;amp;navCount=0&amp;amp;nug=VPD&amp;amp;skuid=sku359744&amp;amp;id=prod359743 walgreens.com]&lt;br /&gt;
** Product type: Health &amp;amp;#38; Beauty &amp;gt; Ear Wax Removal&lt;br /&gt;
** Properties: categories, photo, price, quantity, name, brand, size/count, add to cart, shipping, availability, product rating, description, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.appliancewarehousedirect.com/counterdepth-sidebyside-refrigerator-with-glass-shelves-humidity-controls-transition-lighting-external-button-icewater-dispenser-p-18476.html?cPath=3 appliancewarehousedirect.com]&lt;br /&gt;
** Product type: Home &amp;amp;#38; Garden &amp;gt; Refrigerators&lt;br /&gt;
** Properties: name, width, weight, depth, height, sku, brand, model, price, add to cart, shipping, warranty, photo, description, condition, packaging, features&lt;br /&gt;
&lt;br /&gt;
* [http://www.birdbaths.com/bird-baths/resin-bird-baths/portsmouthsolarbirdbathfountain.cfm birdbaths.com]&lt;br /&gt;
** Product type: Home &amp;amp;#38; Garden &amp;gt; Bird Baths&lt;br /&gt;
** Properties: photo, categories, name, brand, item number, regular price, sale price, savings, length, width, height, warranty, product rating, shipping, related, description, material, style, water sound, light, series, assembly, warranty, exchange, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.bagking.com/Merchant2/merchant.mvc?Screen=PROD&amp;amp;Product_Code=FN1200N&amp;amp;Category_Code=womens-fannypacks&amp;amp;Product_Count bagking.com]&lt;br /&gt;
** Product type: Luggage &amp;gt; Fanny Packs&lt;br /&gt;
** Properties: name, brand, photo, product code, price, weight, shipping, color, quantity, add to cart, description, features, warranty, width, height, depth&lt;br /&gt;
&lt;br /&gt;
* [http://www.magersandquinn.com/index.php?main_page=product_info&amp;amp;products_id=1905787&amp;amp;isbn_id=4027890 magersandquinn.com]&lt;br /&gt;
** Product type: Media &amp;gt; Books&lt;br /&gt;
** Properties: categories, photo, name, author, condition, isbn, contributor, publisher, publish date, pages, weight, height, width, depth, language, description, sale price, regular price, availability, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.bestbuy.com/site/olspage.jsp?skuId=9015638&amp;amp;type=product&amp;amp;id=1852883 bestbuy.com]&lt;br /&gt;
** Product type: Media &amp;gt; DVD &amp;gt; Bluray&lt;br /&gt;
** Properties: categories, photo, name, sku, release date, mpaa rating, product rating, shipping, availability, offers, list price, regular price, add to cart, add to wish list, print, format, release date, length, genre, studio, other formats, description, language, subtitles, additional features, cast &amp;amp; crew, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.cduniverse.com/productinfo.asp?pid=1109198&amp;amp;cart=827546365 cduniverse.com]&lt;br /&gt;
** Product type: Media &amp;gt; CDs&lt;br /&gt;
** Properties: photo, name, artist, product rating, regular price, price, shipping, add to cart, description, list price, categories, label, release year, part number, catalog number, number of discs, recording length, track name(s), reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.cars.com/go/search/detail.jsp;?tracktype=usedcc&amp;amp;searchType=21&amp;amp;pageNumber=0&amp;amp;numResultsPerPage=50&amp;amp;largeNumResultsPerPage=0&amp;amp;sortorder=descending&amp;amp;sortfield=PRICE+descending&amp;amp;certifiedOnly=false&amp;amp;criteria=K-|E-|M-_563_|N-N|R-10000|I-1%2c7|P-PRICE+descending|Q-descending|Z-55428&amp;amp;aff=national&amp;amp;paId=298456384&amp;amp;recnum=0&amp;amp;leadExists=true cars.com]&lt;br /&gt;
** Product type: Motor Vehicles &amp;gt; Cars&lt;br /&gt;
** Properties: photo, name, brand, mileage, body style, color, engine, transmission, drivetrain, doors, features, description, condition, listing source, reviews, seller, related, warranty&lt;br /&gt;
&lt;br /&gt;
* [http://www.autozone.com/selectedZip,55423/initialAction,partProductDetail/initialpartType,01233/initialR,1855279/initialvehicleId,2401601/shopping/selectZip.htm autozone.com]&lt;br /&gt;
** Product type: Motor Vehicles &amp;gt; Automotive Parts &amp;gt; Front Break Pads&lt;br /&gt;
** Properties: category, name, brand, accessory for, photo, part number, weight, warranty, application, note, price, availability, shipping&lt;br /&gt;
&lt;br /&gt;
* [http://www.officedepot.com/a/products/908194/Swingline-Commercial-Desk-Stapler-Black/ officedepot.com]&lt;br /&gt;
** Product type: Office supplies &amp;gt; Stapler&lt;br /&gt;
** Properties: categories, name, brand, item number, photo, availability, shipping, price, quantity, add to cart, add to list, compare, product rating, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.amazon.com/gp/product/3937514775?ie=UTF8&amp;amp;tag=ubuntusearch-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=3937514775 amazon.com]&lt;br /&gt;
** Product type: Software &amp;gt; Operating Systems&lt;br /&gt;
** Properties: photo, name, brand, platform, product rating, price, shipping, availability, media type, quantity, related, features, width, height, length, weight, asin, model number, publish date, sales rank, categories, description, tags, reviews, discussions&lt;br /&gt;
&lt;br /&gt;
* [http://www.foosballstore.com/products/description/672.cfm foosballstore.com]&lt;br /&gt;
** Product type: Sporting Goods &amp;gt; Foosball Table&lt;br /&gt;
** Properties: name, brand, photo, description, model, price, shipping, quantity, accessories, add to cart, product specs, optional items, parts for, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.toysrus.com/product/index.jsp?productId=2332387 toysrus.com]&lt;br /&gt;
** Product type: Toys &amp;amp;#38; Games &amp;gt; Board Games&lt;br /&gt;
** Properties: categories, photo, name, brand, price, product rating, availability, quantity, add to cart, add to registry, add to wish list, description, features, item number, ski, upc, ean, isbn, manufacturer number&lt;br /&gt;
&lt;br /&gt;
* [http://www.williams-sonoma.com/products/8232084/index.cfm?pkey=cbakeware-top-rated&amp;amp;cm_src=hero williams-sonoma.com]&lt;br /&gt;
** Product Type: Home &amp;amp; Garden &amp;gt; Kitchen &amp;amp;#38; Dining &amp;gt; Bundt Pan&lt;br /&gt;
** Properties: photo, name, brand, description, product rating, reviews, price, quantity, add to basket, shipping, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.nulime.com/Hurricane-650-Fog-Machine/p201638 nulime.com]&lt;br /&gt;
** Product Type: Arts &amp;amp; Entertainment &amp;gt; Visual Effects &amp;gt; Fog Machines&lt;br /&gt;
** Properties: categories, item id, name, photo, list price, regular price, savings, availability, add to cart, send to friend, quantity, shipping, brand, product date, weight, height, width, depth, mode, upc, condition, return info, condition, warranty, url, description, accessories, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://shop.symantecstore.com/DRHM/servlet/ControllerServlet?SiteID=symnahho&amp;amp;Action=DisplayProductDetailsPage&amp;amp;productID=81884500&amp;amp;pgm=13665000&amp;amp;ThemeID=106300 symantecstore.com]&lt;br /&gt;
** Product Type: Software &amp;gt; Security Software&lt;br /&gt;
** Properties: photo, name, brand, description, add to cart, features, price&lt;br /&gt;
&lt;br /&gt;
* [http://www.needledoctor.com/Rega-P9-Turntable?sc=2&amp;amp;category=353 needledoctor.com]&lt;br /&gt;
** Product Type: Electronics &amp;gt; Audio &amp;gt; Audio Components &amp;gt; Turntables&lt;br /&gt;
** Properties: name, description, brand, photo, price, color, quantity, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.golfsmith.com/ppage.php?stynum=PG191091&amp;amp;lcode=CI&amp;amp;cm_mmc=froogle-_-consumer-_-1-_-r&amp;amp;ci_src=14110944&amp;amp;ci_sku=PG191091&amp;amp;tcode=fr_home golfsmith.com]&lt;br /&gt;
** Product Type: Sporting goods &amp;gt; Outdoor Recreation &amp;gt; Golf&lt;br /&gt;
** Properties: categories, photo, name, brand, regular price, sale price, quantity, stock number, availability, rating, reviews, description, shipping, condition&lt;br /&gt;
&lt;br /&gt;
* [http://shop.lego.com/productsmall.asp?prod_id=7627 shop.lego.com]&lt;br /&gt;
** Product Type: Toys &amp;amp; Games &amp;gt; Toys &amp;gt; Building Toys&lt;br /&gt;
** Properties: name, photo, item number, price, availability, description, height, width, add to cart&lt;br /&gt;
&lt;br /&gt;
* [https://www.nascigs.com/Our-Products/Product-Selector.aspx#a=blue_details nascigs.com]&lt;br /&gt;
** Product Type: Food, Beverages &amp;amp;#38; Tobacco &amp;gt; Tobacco Products&lt;br /&gt;
** Properties: photo, name, description&lt;br /&gt;
&lt;br /&gt;
* [http://store.mozilla.org/product.php?code=14%2013111&amp;amp;catid=9 store.mozilla.org]&lt;br /&gt;
** Product Type: Clothing &amp;amp;#38; Accessories &amp;gt; Clothing &amp;gt; T-shirts&lt;br /&gt;
** Properties: photo, name, price, description, item number, size, quantity, add to cart &lt;br /&gt;
&lt;br /&gt;
* [http://www.cvs.com/CVSApp/catalog/shop_product_detail.jsp?filterBy=default&amp;amp;skuId=144888&amp;amp;productId=144888&amp;amp;navAction=push&amp;amp;no_new_crumb=true cvs.com]&lt;br /&gt;
** Product Type: Health &amp;amp;#38; Beauty &amp;gt; Health Care &amp;gt; Smoking Cessation&lt;br /&gt;
** Properties: category, photo, name, brand, sku, price, quantity, add to cart, description, ingredients, directions, warnings&lt;br /&gt;
&lt;br /&gt;
* [http://shop.samsonite.com/storefront/suitcases/25-quot-spinner/prod35566XXXX-cC05-.html shop.samsonite.com]&lt;br /&gt;
** Product Type: Luggage &amp;gt; Suitcases&lt;br /&gt;
** Properties: category, name, brand, price, availability, color, quantity, add to cart, photo, description, height, width, depth, product code, item number&lt;br /&gt;
&lt;br /&gt;
* [http://www.beanbags.com/bean-bag-chairs/extra-large/exclusivexlblackvinylbeanbag.cfm beanbags.com]&lt;br /&gt;
** Product Type: Furniture &amp;gt; Bean Bags&lt;br /&gt;
** Properties: category, photo, name, item number, list price, sale price, savings, features, price, availability, quantity, add to cart, rating, shipping, description, specifications, guarantee, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.amazon.com/Watching-The-Detectives/dp/B000V6THXO/ref=dm_ap_trk9 amazon.com]&lt;br /&gt;
** Product Type: Media &amp;gt; Music &amp;gt; Rock &amp;amp;#38; Pop &amp;gt; MP3&lt;br /&gt;
** Properties: photo, name, artist, price, reviews, format, release date, label, copyright, length, genres, asin, product rating&lt;br /&gt;
&lt;br /&gt;
* [http://ww22.1800flowers.com/product.do?baseCode=16156&amp;amp;dataset=10314&amp;amp;cm_sp=subproduct_Roses_Multicolored%20Roses%20-%20Buy%2012%2C%20Get%206%20Free-_-tab2_image2-_-basecode_16156_dataset_10314_01122009_0830 1800flowers.com]&lt;br /&gt;
** Product Type: Home &amp;amp;#38; Garden &amp;gt; Plants &amp;gt; Flowers&lt;br /&gt;
** Properties: name, photo, description, product code, price, zip, location&lt;br /&gt;
&lt;br /&gt;
* [http://www.6pm.com/n/p/p/7257462/c/6971.html 6pm.com]&lt;br /&gt;
** Product Type: Clothing &amp;amp;#38; Accessories &amp;gt; Footwear &amp;gt; Boots&lt;br /&gt;
** Properties: brand, name, ski, price, savings, photo, size, width, color, add to cart, features, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.abebooks.com/servlet/SearchResults?isbn=9780495011606 abebooks.com]&lt;br /&gt;
** Product Type: Media &amp;gt; Books &amp;gt; Non-fiction&lt;br /&gt;
** Properties: categories, name, author, manufacturer, rating, photo, price, quantity, shipping, add to cart, description, isbn, publisher, condition&lt;br /&gt;
&lt;br /&gt;
* [http://www.abercrombie.com/webapp/wcs/stores/servlet/product_10051_10901_482623_-1_12213_12202 abercrombe &amp;amp;#38; fitch]&lt;br /&gt;
** Product Type: Clothing &amp;amp;#38; Accessories &amp;gt;  Clothing &amp;gt; Tops&lt;br /&gt;
** Properties: photo, name, style, price, description, color, size, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.abt.com/product/21632.html abt.com]&lt;br /&gt;
** Product Type: Electronics &amp;gt; Audio &amp;gt; Audio Accessories&lt;br /&gt;
** Properties: categories, brand, name, photo, price, description, availability, shipping, rating, add to cart, model, features, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.ae.com/web/browse/product.jsp?catId=cat1070004&amp;amp;productId=0423_3693 ae.com]&lt;br /&gt;
** Product Type: Clothing &amp;amp;#38; Accessories &amp;gt; Clothing Accessories &amp;gt; Belts&lt;br /&gt;
** Properties: photo, brand, name, style number, price, description, color, size, availability, quantity, add to cart, payment&lt;br /&gt;
&lt;br /&gt;
* [http://www.altrec.com/the-north-face/trailhead-6-tent altrec.com]&lt;br /&gt;
** Product Type: Sporting goods &amp;gt; Outdoor recreation &amp;gt; Camping, Backpacking &amp;amp;#38; Hiking &amp;gt; Tents&lt;br /&gt;
** Properties: categories, photo, brand, name, price regular, price sale, quantity, color, add to cart, sku, shipping, description, review&lt;br /&gt;
&lt;br /&gt;
* [http://www.americanstationery.com/shopping/prod_detail/main.asp-pid-3329 americanstationery.com]&lt;br /&gt;
** Product Type: Office supplies &amp;gt; General Supplies &amp;gt; Paper Products &amp;gt; Stationery&lt;br /&gt;
** Properties: categories, name, photo, item number, description, size, color, style, price, description, quantity, order, review&lt;br /&gt;
&lt;br /&gt;
* [http://www.anthropologie.com/anthro/catalog/productdetail.jsp?_dyncharset=ISO-8859-1&amp;amp;_dynSessConf=7579514410004107168&amp;amp;id=844658&amp;amp;parentid=ACC_EYE_SUN&amp;amp;pushId=ACC_EYE_SUN&amp;amp;popId=ACC_EYEWEAR&amp;amp;sortProperties=&amp;amp;navCount=1&amp;amp;navAction=&amp;amp;fromCategoryPage=true&amp;amp;selectedProductSize=&amp;amp;selectedProductSize1=&amp;amp;color=tur&amp;amp;colorName=TURQUOISE anthropologie.com]&lt;br /&gt;
** Product Type: Clothing &amp;amp;#38; Accessories &amp;gt; Clothing Accessories &amp;gt; Eyewear&lt;br /&gt;
** Properties: photo, name, description, material, style number, price, color, size, quantity, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://store.apple.com/us/product/FB323LL/A?mco=MjE0NDk5Mw apple.com]&lt;br /&gt;
** Product Type: Electronics &amp;gt; Computers &amp;gt; Desktops&lt;br /&gt;
** Properties: name, photo, brand, description, features, price, shipping, add to cart, product details, whats in the box&lt;br /&gt;
&lt;br /&gt;
* [http://www.audible.com/adbl/site/products/ProductDetail.jsp?BV_UseBVCookie=Yes&amp;amp;productID=BK_SANS_000623 audible.com]&lt;br /&gt;
** Product Type: Media &amp;gt; Downloadable Audio&lt;br /&gt;
** Properties: photo, name, author, narrator, price regular, add to cart, price sale, program type, publisher, length, release date, audio formats, rating, description, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://gifts.barnesandnoble.com/search/product.asp?EAN=2000003285044 barnesandnoble.com]&lt;br /&gt;
** Product Type: Media &amp;gt; Magazines &amp;amp;#38; Newspapers &amp;gt; &lt;br /&gt;
** Properties: categories, photo, brand, name, rating, reviews, ean, sales rank, price regular, price online, price sale, price member, add to cart, description, shipping, product details&lt;br /&gt;
&lt;br /&gt;
* [http://www.bestkiteboarding.com/09-Waroo bestkiteboarding.com]&lt;br /&gt;
** Product Type: Sporting goods &amp;gt; Water Sports &amp;gt; Windsurfing&lt;br /&gt;
** Properties: model, name, photo, color, description, product features, performance metrics, size, price, quantity, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://bodybuilding.com/store/iron/creatine.html bodybuilding.com]&lt;br /&gt;
** Product Type: Health &amp;amp;#38; Beauty &amp;gt; Health Care &amp;gt; Fitness &amp;amp;#38; Nutrition &amp;gt; Vitamins &amp;amp;#38; Supplements&lt;br /&gt;
** Properties: size(s), product details, directions, brand, photo, description, price, buy/ order&lt;br /&gt;
&lt;br /&gt;
* [http://www.brooksbrothers.com/IWCatProductPage.process?Merchant_Id=1&amp;amp;Section_Id=591&amp;amp;Product_Id=827242&amp;amp;Parent_Id=356&amp;amp;default_color=Navy brooksbrothers.com]&lt;br /&gt;
** Product Type: Clothing &amp;amp;#38; Accessories &amp;gt; Clothing &amp;gt; Suits &amp;gt; Boy's Two-Button Prep Blazer&lt;br /&gt;
** Properties: photo, categories, name, brand, description, article number, price, color, size, quantity, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.bulbs.com/eSpec.aspx?ID=14561&amp;amp;Ref=Category&amp;amp;RefId=13 bulbs.com]&lt;br /&gt;
** Product Type: Home &amp;amp;#38; Garden &amp;gt; Lighting &amp;gt; Light Bulbs&lt;br /&gt;
** Properties: photo, brand, name, description, quantity, add to cart, product details, price, shipping&lt;br /&gt;
&lt;br /&gt;
* [http://www.buy.com/prod/wenger-potomac-black-rolling-notebook-case-fits-up-to-17-inch-laptop/q/loc/16234/208905968.html buy.com]&lt;br /&gt;
** Product Type: Luggage &amp;gt; Laptop Bags&lt;br /&gt;
** Properties: name, photo, shipping, regular price, sale price, you save, quantity, availability, brand, manufacturer part number, sku, upc, features, color, package contents, manufacturer, manufacturer part number, weight, product type, reviews, categories&lt;br /&gt;
&lt;br /&gt;
* [http://www.cabelas.com/cabelas/en/templates/product/standard-item.jsp?_DARGS=/cabelas/en/common/catalog/item-link.jsp_A&amp;amp;_DAV=MainCatcat21412-cat20145&amp;amp;id=0006612513096a&amp;amp;navCount=2&amp;amp;podId=0006612&amp;amp;parentId=cat20145&amp;amp;masterpathid=&amp;amp;navAction=push&amp;amp;catalogCode=XJ&amp;amp;rid=&amp;amp;parentType=index&amp;amp;indexId=cat20145&amp;amp;hasJS=true cabelas.com]&lt;br /&gt;
** Product Type: Motor Vehicles &amp;gt; Automotive Safety Equipment &amp;gt; Tire Chains&lt;br /&gt;
** Properties: categories, photo, name, item number, price, rating, description, size, add to cart, quantity, weight&lt;br /&gt;
&lt;br /&gt;
* [http://www.carolsdaughter.com/product/color/lip_gloss_bubbling_brown_sugar.do carolsdaughter.com]&lt;br /&gt;
** Product Type: Health &amp;amp; Beauty &amp;gt; Personal Care &amp;gt; Hair Care &amp;gt; Hair Coloring&lt;br /&gt;
** Properties: categories, photo, name, size, description, reviews, item number, quantity, price, availability, add to list, instructions&lt;br /&gt;
&lt;br /&gt;
* [http://www.coach.com/content/product.aspx?product_no=12613&amp;amp;category_id=53 coach.com]&lt;br /&gt;
** Product Type: Clothing &amp;amp;#38; Accessories &amp;gt; Clothing Accessories &amp;gt; Wallets&lt;br /&gt;
** Properties: photo, name, product details, length, height, price, style number, quantity, colors, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.costco.com/Browse/Product.aspx?Prodid=11295243&amp;amp;whse=BC&amp;amp;topnav=&amp;amp;browse=&amp;amp;lang=en-US costco.com]&lt;br /&gt;
** Product Type: Gifts &amp;amp;#38; Tickets &amp;gt; Membership &amp;gt; Fitness membership&lt;br /&gt;
** Properties: categories, photo, name, brand, item number, rating, price, quantity, add to cart, description, product details, shipping, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.crateandbarrel.com/family.aspx?c=14210&amp;amp;f=11731 crateandbarrel.com]&lt;br /&gt;
** Product Type: Home &amp;amp;#38; Garden &amp;gt; Kitchen &amp;amp;#38; Dining &amp;gt; Grillware&lt;br /&gt;
** Properties: categories, photo, name, price, description, diameter, height, sku, shipping, quantity, add to cart, availability&lt;br /&gt;
&lt;br /&gt;
* [http://www.davidsbridal.com/webapp/wcs/stores/servlet/ProductDisplayView?storeId=10052&amp;amp;catalogId=10051&amp;amp;categoryId=-49997326&amp;amp;currentIdx=0&amp;amp;subCategory=-49998493|-49997962|-49997326&amp;amp;catentryId=4000138 davidsbridal.com]&lt;br /&gt;
** Product Type: Home &amp;amp;#38; Garden &amp;gt; Decor &amp;gt; Candles&lt;br /&gt;
** Properties: categories, photo, name, description, price, height, diameter, rating, color, shipping, quantity, availability, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.delightfuldeliveries.com/wine/8366.asp delightfuldeliveries.com]&lt;br /&gt;
** Product Type: Food, Beverages &amp;amp;#38; Tobacco &amp;gt; Beverages &amp;gt; Wine &amp;gt; Gift Baskets&lt;br /&gt;
** Properties: name, photo, description, brand(s), price, item number, shipping, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://accessories.us.dell.com/sna/products/Displays/productdetail.aspx?c=us&amp;amp;l=en&amp;amp;s=dhs&amp;amp;cs=19&amp;amp;sku=A1732949 dell.com]&lt;br /&gt;
** Product Type: Electronics &amp;gt; Electronics Accessories &amp;gt; Mounts&lt;br /&gt;
** Properties: categories, brand, name, photo, description, price, add to cart, shipping, manufacturer part number, dell part number, rating, reviews, product specs, weight&lt;br /&gt;
&lt;br /&gt;
* [http://www.diapers.com/Product/ProductDetail.aspx?productId=7710 diapers.com]&lt;br /&gt;
** Product Type: Baby &amp;amp;amp; Toddler &amp;amp;gt; Baby Transport &amp;amp;gt; Baby Carriers&lt;br /&gt;
** Properties: categories, photo, name, rating, price, shipping, description, quantity, add to cart, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.dickssportinggoods.com/product/index.jsp?productId=1373378 dickssportinggoods.com]&lt;br /&gt;
** Product Type: Sporting Goods &amp;amp;gt; Team Sports &amp;amp;gt; Cricket&lt;br /&gt;
** Properties: categories, photo, name, brand, item number, rating, description, shipping, price, size, quantity, add to cart, availability, shipping, product features, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.currys.co.uk/martprd/product/402032 currys.co.uk]&lt;br /&gt;
** Product Type: Home &amp;amp;amp; Garden &amp;amp;gt; Household Appliances &amp;amp;gt; Vacuuming &amp;amp;gt; Vacuums&lt;br /&gt;
** Properties: name, brand, product code, photo, availability, price sale, delivery, add to cart, product details, warranty/guarantee, description&lt;br /&gt;
&lt;br /&gt;
* [http://www.johnlewis.com/230508557/Product.aspx johnlewis.com]&lt;br /&gt;
** Product Type: Home &amp;amp;amp; Garden &amp;amp;gt; Household Appliances &amp;amp;gt; Vacuuming &amp;amp;gt; Vacuums &amp;gt; Wallpaper&lt;br /&gt;
** Properties: name, brand, photo, product code, quantity, availability, price, terms and conditions, add to cart, shipping, colors, descriptions, dimensions (width, length)&lt;br /&gt;
&lt;br /&gt;
* [http://quelle.fr/portal/portal/SiteInternet/App/Shopping-bijoux?secteur=bijoux quelle.fr]&lt;br /&gt;
** Product Type: Clothing &amp;amp;amp; Accessories &amp;amp;gt; Jewelry &amp;amp;gt; Rings&lt;br /&gt;
** Properties: categories, photo, name, size, quantity, price regular, price sale, savings, description, weight, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.cdiscount.com/maison/canape-canapes/banquette-sydney-convertible/f-1170103-SX19851M.html cdiscount.com]&lt;br /&gt;
** Product Type: Furniture &amp;amp;gt; Living Room &amp;amp;gt; Sofas&lt;br /&gt;
** Properties: categories, name, brand, photo, price sale, price regular, add to cart, description, height, width&lt;br /&gt;
&lt;br /&gt;
* [http://www.tchibo.de/is-bin/INTERSHOP.enfinity/eCS/Store/de/-/EUR/TdTchDisplayProductInformation-Start?ProductSKU=0001193&amp;amp;produkt=Tchibo-Cafissimo-Anthrazit tchibo.de]&lt;br /&gt;
** Product Type: Home &amp;amp;amp; Garden &amp;amp;gt; Kitchen &amp;amp;amp; Dining &amp;amp;gt; Appliances &amp;amp;gt; Coffee Makers &amp;amp;amp; Espresso Machines&lt;br /&gt;
** Properties: photo, name, brand, price, quantity, description, test rating, demensions (height, width, depth), color, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.karstadt.de/produktAnzeigen.do?pfad=866898+884179+881377&amp;amp;pid=3201158 karstadt.de]&lt;br /&gt;
** Product Type: Sporting Goods &amp;amp;gt; Team Sports &amp;amp;gt; Soccer &amp;gt; Accessories&lt;br /&gt;
** Properties: photo, name, description, availability, add to cart, product details, size (height, width)&lt;br /&gt;
&lt;br /&gt;
* [http://www.exlibris.ch/papier/ChipResetter/ChipResetter_f%C3%BCr_Canon_CLI8_und_PGI5_Patronen/thl/02163.aspx?system=&amp;amp;haupt=&amp;amp;unter=&amp;amp;pa=&amp;amp;pa_bis= exlibris.ch]&lt;br /&gt;
** Product Type: Electronics &amp;amp;gt; Print, Copy, Scan &amp;amp;amp; Fax &amp;amp;gt; Print, Copy, Scan &amp;amp;amp; Fax Accessories &amp;amp;gt; Printer Accessories &amp;amp;gt; Toner &amp;amp;amp; Inkjet Cartridges&lt;br /&gt;
** Properties: name, photo, product type, price, ean, description, add to cart, shipping&lt;br /&gt;
&lt;br /&gt;
* [http://www.radioshack.com/product/index.jsp?productId=2603246 radioshack.com]&lt;br /&gt;
** Product Type: Electronics &amp;amp;gt; Electronics Accessories &amp;amp;gt; Cables &amp;amp;amp; Adapters &amp;amp;gt; Adapters&lt;br /&gt;
** Properties: categories, photo, name, price, model, catalog number, availability, shipping, add to cart, description, reviews, rating&lt;br /&gt;
&lt;br /&gt;
* [http://www.drsfostersmith.com/product/prod_Display.cfm?pCatId=9722 drsfostersmith.com]&lt;br /&gt;
** Product Type: Animals &amp;amp;gt; Pet Supplies &amp;amp;gt; Dog Supplies &amp;amp;gt; Dog Medication&lt;br /&gt;
** Properties: name, photo, brand, shipping, description, item number, add to cart, weight&lt;br /&gt;
&lt;br /&gt;
* [http://www.drugstore.com/products/prod.asp?pid=205134&amp;amp;catid=33699&amp;amp;trx=GFI-0-EVGR-11690&amp;amp;trxp1=33699&amp;amp;trxp2=205134&amp;amp;trxp3=1&amp;amp;trxp4=1&amp;amp;btrx=BUY-GFI-0-EVGR-11690 drugstore.com]&lt;br /&gt;
** Product Type: Health &amp;amp;amp; Beauty &amp;amp;gt; Personal Care &amp;amp;gt; Oral Care &amp;amp;gt; Toothbrushes&lt;br /&gt;
** Properties: categories, name, brand, quantity, photo, shipping, rating, quantity, add to cart, description, reviews, price&lt;br /&gt;
&lt;br /&gt;
* [http://www.ecampus.com/merch_detail.asp?item=31589270 ecampus.com]&lt;br /&gt;
** Product Type: Office Supplies &amp;amp;gt; Office Instruments &amp;amp;gt; Office Rulers&lt;br /&gt;
** Properties: name, brand, categories, photo, price sale, price regular, savings, description, length, shipping, model number, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.fye.com/The-Beatles-1-Used_stcVVproductId1400843VVcatId473167VVviewprod.htm fye.com]&lt;br /&gt;
** Product Type: Media &amp;amp;gt; Music &amp;amp;gt; Rock &amp;amp;amp; Pop &amp;amp;gt; British Invasion&lt;br /&gt;
** Properties: categories, photo, name, artist, format, release date, record label, upc, product id, sku, amg rating, genre, condition, price regular, price used, price member, savings, availability, add to cart, tracks (hAudio?), rating, description, reviews, credits (name-value pair), related &lt;br /&gt;
&lt;br /&gt;
* [http://www.foodnetworkstore.com/p-646354-Mesa-Grill-Barbeque-Sauce-97ozbr-By-Bobby-Flay.aspx foodnetworkstore.com]&lt;br /&gt;
** Product Type: Food, Beverages &amp;amp;amp; Tobacco &amp;amp;gt; Food Items &amp;amp;gt; Condiments, Seasoning &amp;amp;amp; Sauces &amp;amp;gt; Barbecue Sauce&lt;br /&gt;
** Properties: photo, name, size, brand, price, rating, quantity, add to cart, availability, shipping, item number, description, origin, shelf life, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.footwearbuyer.com/products/stuart_weitzman_peepers_pump_womens.html footwearbuyer.com]&lt;br /&gt;
** Product Type: Women's &amp;amp;gt; Peeptoe&lt;br /&gt;
** Properties: photo, name, brand, price, rating, description, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.gearbuyer.com/products/the_north_face_denali_jacket_womens.html gearbuyer.com]&lt;br /&gt;
** Product Type: Women's Clothing &amp;amp;gt; Jackets &amp;amp;amp; Vests&lt;br /&gt;
** Properties: photo, name, brand, price, rating, description, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.gifttree.com/p3/2402/Chicken_Soup_for_the_Soul_Get_Well_Gift_Basket-1.html gifttree.com]&lt;br /&gt;
** Product Type: Food, Beverages &amp;amp;amp; Tobacco &amp;amp;gt; Food Items &amp;amp;gt; Food Gift Baskets&lt;br /&gt;
** Properties: categories, photo, name, shipping, price, quantity, add to cart, description, width, height, depth&lt;br /&gt;
&lt;br /&gt;
* [http://www.golfballs.com/PB1512-OWH/Titleist-Pro-V1-Golf-Balls-Logo-Overruns-2008-Model.html golfballs.com]&lt;br /&gt;
** Product Type: Sporting Goods &amp;amp;gt; Outdoor Recreation &amp;amp;gt; Golf &amp;amp;gt; Golf Balls&lt;br /&gt;
** Properties: categories, name, rating, photo, brand, sku, condition, color, number, price, quantity, add to cart, shipping, description, reviews, faqs&lt;br /&gt;
&lt;br /&gt;
* [http://shop.guess.com/ProductDetails.aspx?style=M8412200&amp;amp;image=M8412200-LBEI&amp;amp;root_category|90=Men&amp;amp;category|101=Denim&amp;amp;browse=1&amp;amp;rpt=Department.aspx&amp;amp;pt=ProductListing.aspx guess.com]&lt;br /&gt;
** Product Type: Clothing &amp;amp;amp; Accessories &amp;amp;gt; Clothing &amp;amp;gt; Pants &amp;amp;gt; Jeans&lt;br /&gt;
** Properties: photo, name, description, size, color, quantity, price, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.harryanddavid.com/gifts/store/product____gourmet-popcorn-moose-munch-gifts_moose-munch-popcorn-gifts_5031937 harryanddavid.com]&lt;br /&gt;
** Product Type: Food, Beverages &amp;amp;amp; Tobacco &amp;amp;gt; Food Items &amp;amp;gt; Candy, Sweets &amp;amp;amp; Gum&lt;br /&gt;
** Properties: categories, photo, name, brand, description, size, availability, item number, price, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.shopping.hp.com/product/51629A?landing=supplies&amp;amp;category=&amp;amp;family_name= hpshopping.com]&lt;br /&gt;
** Product Type: Electronics &amp;amp;gt; Print, Copy, Scan &amp;amp;amp; Fax &amp;amp;gt; Print, Copy, Scan &amp;amp;amp; Fax Accessories &amp;amp;gt; Printer Accessories &amp;amp;gt; Toner &amp;amp;amp; Inkjet Cartridges&lt;br /&gt;
** Properties: name, model number, photo, brand, offers, price, availability, shipping, quantity, add to cart, description, features, specifications&lt;br /&gt;
&lt;br /&gt;
* [http://www.klwines.com/detail.asp?sku=1041623 klwines.com]&lt;br /&gt;
** Product Type: Food, Beverages &amp;amp;amp; Tobacco &amp;amp;gt; Beverages &amp;amp;gt; Wine&lt;br /&gt;
** Properties: photo, name, brand, year, sku, description, price, quantity, add to cart, rating, availability, reviews, varietal, country, sub-region, appellation&lt;br /&gt;
&lt;br /&gt;
* [http://www.karmaloop.com/products.aspx?ProductID=53615&amp;amp;VendorCode=COA karmaloop.com/]&lt;br /&gt;
** Product Type: Clothing &amp;amp;amp; Accessories &amp;amp;gt; Clothing Accessories &amp;amp;gt; Gloves &amp;amp;amp; Mittens&lt;br /&gt;
** Properties: brand, photo, name, price (in us/ canadian/austrailian dollar, british pound, euro), color, size, add to cart, description, style number&lt;br /&gt;
&lt;br /&gt;
* [http://www.lancome-usa.com/makeup/mascara/definicils-mascara.htm lancome-usa.com]&lt;br /&gt;
** Product Type: Health &amp;amp;amp; Beauty &amp;amp;gt; Personal Care &amp;amp;gt; Cosmetics &amp;amp;gt; Makeup &amp;amp;gt; Eyes &amp;amp;gt; Mascara&lt;br /&gt;
** Properties: categories, model, photo, brand, description, color, quantity, price, add to cart, benefits, technology, tips&lt;br /&gt;
&lt;br /&gt;
* [http://www.levenger.com/PAGETEMPLATES/PRODUCT/Product.asp?Params=Category=13-850|Level=2-3|pageid=341 levenger.com]&lt;br /&gt;
** Product Type: Office Supplies &amp;amp;gt; Filing &amp;amp;amp; Organization &amp;amp;gt; Desk Organizers&lt;br /&gt;
** Properties: photo, brand, name, price, item identifier, description, size (width, height, depth), color, quantity, add to cart, rating, reviews, product specifications&lt;br /&gt;
&lt;br /&gt;
* [http://www.lillianvernon.com/catalog/product_display.jsp?pdId=12342&amp;amp;name=Deluxe+Hanging+Pants+Rack&amp;amp;parentCatId=3&amp;amp;catId=149 lillianvernon.com]&lt;br /&gt;
** Product Type: Home &amp;amp;amp; Garden &amp;amp;gt; Household Supplies &amp;amp;gt; Storage &amp;amp;amp; Organization &amp;amp;gt; Hangers&lt;br /&gt;
** Properties: categories, photo, name, sku, color, size, description, price regular, price sale, savings, quantity, add to cart, rating, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.moosejaw.com/moosejaw/shop/product_Moosejaw-Barf-Bag_10085155_10208_10000001_-1_ moosejaw.com]&lt;br /&gt;
** Product Type: Sporting Goods &amp;amp;gt; Outdoor Recreation &amp;amp;gt; Camping, Backpacking &amp;amp;amp; Hiking &amp;amp;gt; Barf Bags&lt;br /&gt;
** Properties: photo, condition, name, brand, item number, price, rating, color, quantity, add to cart, description, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.mymms.com/gifts/gifts.asp?item=51 mymms.com]&lt;br /&gt;
** Product Type: Food, Beverages &amp;amp;amp; Tobacco &amp;amp;gt; Food Items &amp;amp;gt; Candy, Sweets &amp;amp;amp; Gum&lt;br /&gt;
** Properties: name, description, size, photo, price, quantity&lt;br /&gt;
&lt;br /&gt;
* [http://www.netflix.com/Movie/Indiana_Jones_and_the_Last_Crusade/60010487?lnkctr=srchrd-sr&amp;amp;strkid=962279771_0_0 netflix.com]&lt;br /&gt;
** Product Type: Media &amp;amp;gt; DVDs &amp;amp;amp; Videos&lt;br /&gt;
** Properties: name, release date (year), photo, description, artist(s), genre, format, language, subtitiles, awards, movie rating, &lt;br /&gt;
&lt;br /&gt;
* [http://www.netshops.com/seasonal-&amp;amp;-gifts/gifts-for-him/hammocks/bestsellerislandbayxlropehammock.cfm netshops.com]&lt;br /&gt;
** Product Type: Home &amp;amp;amp; Garden &amp;amp;gt; Lawn &amp;amp;amp; Garden &amp;amp;gt; Outdoor Living &amp;amp;gt; Hammocks&lt;br /&gt;
** Properties: categories, photo, name, brand, item number, price regular, price sale, savings, features, rating, shipping, material, quantity, add to cart, description, warranty, weight, length, size, hardware, compatibility, style, width, min/max distance, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://store.nike.com/index.jsp?country=GB&amp;amp;lang_locale=en_GB&amp;amp;ref=http%3A//store.nike.com/index.jsp%3Fsitesrc%3DEMFC%26ref%3Dhttp%3A//www.nikefootball.com%26l%3Dshop%2Cpdp%2Cctr-inline/cid-300/pid-219653/pgid-183395&amp;amp;sitesrc=EMFC&amp;amp;ref=http://www.nikefootball.com&amp;amp;l=shop,pdp,ctr-inline/cid-300/pid-219653/pgid-183395 nike.com]&lt;br /&gt;
** Product Type: Sporting Goods &amp;amp;gt; Team Sports &amp;amp;gt; Football &amp;amp;gt; Football Shoes&lt;br /&gt;
** Properties: brand, name, price, style number, photo, size, quantity, add to cart, description, features, reviews&lt;br /&gt;
&lt;br /&gt;
* [http://www.ninewest.com/Nightlight/3506933,default,pd.html?cgid=1039 ninewest.com]&lt;br /&gt;
** Product Type: Clothing &amp;amp;amp; Accessories &amp;amp;gt; Footwear &amp;amp;gt; Boots&lt;br /&gt;
** Properties: name, price, photo, color, width, size, description, heel, shaft size, circumference, add to cart&lt;br /&gt;
&lt;br /&gt;
* [http://www.oneida.com/index.cfm/fuseaction/product.detail/_/Paul-Revere/productID/ab228c02-d447-42d0-8aac-995522504787/categoryID/7f6f89c9-5e89-4fda-ba39-a10c0588d5b6/ oneida.com]&lt;br /&gt;
** Product Type: Home &amp;amp;amp; Garden &amp;amp;gt; Kitchen &amp;amp;amp; Dining &amp;amp;gt; Tableware &amp;amp;gt; Flatware&lt;br /&gt;
** Properties: categories, name, description, photo, metal type, shipping, rating, reviews, add to cart, quantity, item identifier, price regular, price sale&lt;br /&gt;
&lt;br /&gt;
* [http://www.overstock.com/Home-Garden/Serta-Cool-Memory-Foam-2-inch-Mattress-Topper/3297642/product.html overstock.com]&lt;br /&gt;
** Product Type: Home &amp;amp;amp; Garden &amp;amp;gt; Bedroom &amp;amp;gt; Mattress Pads&lt;br /&gt;
** Properties: categories, photo, brand, name, price regular, price sale, description, quantity, size, add to cart, rating, availability, shipping, reviews, size, warranty, materials, model number, height, width, length&lt;br /&gt;
&lt;br /&gt;
* [http://www.chainsawsdirect.com/Husqvarna-235E/p2524.html chainsawsdirect.com]&lt;br /&gt;
** Product Type:Hardware &amp;amp;gt; Tools &amp;amp;gt; Chainsaws&lt;br /&gt;
** Properties: brand, name, photo, price regular, price sale, savings, model, shipping, availability, add to cart, rating, reviews, features, manufacturer, specs, weight, length, width, height&lt;br /&gt;
&lt;br /&gt;
* [http://www.repairclinic.com/SSPartDetail.aspx?s=b5a4c216i1159182&amp;amp;PartID=1159182 repairclinic.com]&lt;br /&gt;
** Product Type: Home &amp;amp;amp; Garden &amp;amp;gt; Kitchen &amp;amp;amp; Dining &amp;amp;gt; Appliances &amp;amp;gt; Refrigerators &amp;amp;gt; parts &amp;amp;gt; compressor parts&lt;br /&gt;
** Properties: categories, brand, part/item number, price, availability, quantity, add to cart, shipping, photo&lt;br /&gt;
&lt;br /&gt;
=== Analysis of Product/Commerce Sites ===&lt;br /&gt;
&lt;br /&gt;
Analysis on 100 ecommerce and manufacturing sites was performed to represent a wide array of product families. Below are the most notable '''universal''' product attributes. Analysis is ongoing and more examples may be selected as they are added to the product taxonomy. &lt;br /&gt;
&lt;br /&gt;
* photo/image: 100.00%&lt;br /&gt;
* price: 99% price variations include:&lt;br /&gt;
** instant&lt;br /&gt;
** sale&lt;br /&gt;
** regular&lt;br /&gt;
** list&lt;br /&gt;
** online&lt;br /&gt;
** member&lt;br /&gt;
** used&lt;br /&gt;
* name/title: 98%&lt;br /&gt;
* brand/manufacturer: 93%&lt;br /&gt;
* description: 90%&lt;br /&gt;
* add to cart/ buy: 87%&lt;br /&gt;
* identifier: 79% examples include:&lt;br /&gt;
** stock number&lt;br /&gt;
** sku&lt;br /&gt;
** item number&lt;br /&gt;
** dpci&lt;br /&gt;
** asin&lt;br /&gt;
** catalog number&lt;br /&gt;
** style number&lt;br /&gt;
** product id&lt;br /&gt;
** product code&lt;br /&gt;
** web id&lt;br /&gt;
** series&lt;br /&gt;
** part number&lt;br /&gt;
** product code&lt;br /&gt;
** mpc&lt;br /&gt;
** isbn&lt;br /&gt;
** ean&lt;br /&gt;
** upc&lt;br /&gt;
** style&lt;br /&gt;
** article number&lt;br /&gt;
* product reviews: 78%&lt;br /&gt;
* quantity: 61%&lt;br /&gt;
* dimensions: 51% dimensions attributes include:&lt;br /&gt;
** height&lt;br /&gt;
** width&lt;br /&gt;
** depth&lt;br /&gt;
** weight&lt;br /&gt;
** length&lt;br /&gt;
** circumference&lt;br /&gt;
* category/ categories: 50%&lt;br /&gt;
* shipping: 50%&lt;br /&gt;
* product rating: 44%&lt;br /&gt;
* status/ availability: 36%&lt;br /&gt;
* color: 31%&lt;br /&gt;
* size: 27%&lt;br /&gt;
* model: 15%&lt;br /&gt;
* monetary savings/&amp;quot;you save&amp;quot;: 14%&lt;br /&gt;
* warranty/guarantee: 13%&lt;br /&gt;
* condition: 10%&lt;br /&gt;
* language: 1%&lt;br /&gt;
&lt;br /&gt;
=== Coded examples ===&lt;br /&gt;
&lt;br /&gt;
(Note: this example contains additional markup for positioning and presentation purposes)&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;hproduct&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;ul id=&amp;quot;breadcrumbs&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Storename&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li class=&amp;quot;category&amp;quot;&amp;gt;Cameras&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li class=&amp;quot;category&amp;quot;&amp;gt;Video Cameras&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li class=&amp;quot;category&amp;quot;&amp;gt;High-Definition Cameras&amp;lt;/li&amp;gt;&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
	&amp;lt;h1 class=&amp;quot;n&amp;quot;&amp;gt;Pure Digital Flip Video MinoHD Camcorder&amp;lt;/h1&amp;gt;&lt;br /&gt;
	&amp;lt;div id=&amp;quot;topbox&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;div class=&amp;quot;rightcol&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;img src=&amp;quot;http://images.storename.com/images/products/front.jpg&amp;quot; alt=&amp;quot;Image of Pure Digital F460B&amp;quot; class=&amp;quot;photo&amp;quot; /&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
		&amp;lt;div class=&amp;quot;leftcol&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;div class=&amp;quot;infomain&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;ul&amp;gt;&lt;br /&gt;
					&amp;lt;li&amp;gt;&amp;lt;strong&amp;gt;Brand: &amp;lt;/strong&amp;gt;&amp;lt;span class=&amp;quot;brand&amp;quot;&amp;gt;Pure Digital&amp;lt;/span&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
					&amp;lt;li&amp;gt;&amp;lt;strong&amp;gt;Model: &amp;lt;/strong&amp;gt;&amp;lt;span class=&amp;quot;model&amp;quot;&amp;gt;F460B&amp;lt;/span&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
					&amp;lt;li&amp;gt;&amp;lt;strong&amp;gt;SKU: &amp;lt;/strong&amp;gt;&amp;lt;span class=&amp;quot;sku&amp;quot;&amp;gt;9077054&amp;lt;/span&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
				&amp;lt;/ul&amp;gt;&lt;br /&gt;
				&amp;lt;p class=&amp;quot;description&amp;quot;&amp;gt;This camcorder offers true high-definition recording in an incredibly compact body, so you can be sure you won't miss a minute of recording time.&amp;lt;/p&amp;gt;&lt;br /&gt;
				&amp;lt;p&amp;gt;&lt;br /&gt;
					&amp;lt;span class=&amp;quot;availability online&amp;quot;&amp;gt;Available online&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;shipping&amp;quot;&amp;gt;Backordered: Usually leaves our warehouse within 1-2 weeks. &amp;lt;span class=&amp;quot;money&amp;quot;&amp;gt;Estimated shipping cost: &amp;lt;abbr class=&amp;quot;currency&amp;quot; title=&amp;quot;USD&amp;quot; lang=&amp;quot;en&amp;quot;&amp;gt;$&amp;lt;/abbr&amp;gt;&amp;lt;span class=&amp;quot;amount&amp;quot;&amp;gt;0.0&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
				&amp;lt;/p&amp;gt;&lt;br /&gt;
				&amp;lt;p&amp;gt;&lt;br /&gt;
					&amp;lt;span class=&amp;quot;availability instore&amp;quot;&amp;gt;Not available for purchase in store&amp;lt;/span&amp;gt;.&lt;br /&gt;
				&amp;lt;/p&amp;gt;&lt;br /&gt;
				&amp;lt;p&amp;gt;&lt;br /&gt;
					&amp;lt;span class=&amp;quot;availability specialorder&amp;quot;&amp;gt;Not available for special order&amp;lt;/span&amp;gt;.&lt;br /&gt;
				&amp;lt;/p&amp;gt;&lt;br /&gt;
			&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;div class=&amp;quot;infoside&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;span class=&amp;quot;price sale&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;money&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Sale Price: &amp;lt;/strong&amp;gt;&amp;lt;abbr class=&amp;quot;currency&amp;quot; title=&amp;quot;USD&amp;quot; lang=&amp;quot;en&amp;quot;&amp;gt;$&amp;lt;/abbr&amp;gt;&amp;lt;span class=&amp;quot;amount&amp;quot;&amp;gt;206.99&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;buy&amp;quot;&amp;gt;&lt;br /&gt;
					&amp;lt;img src=&amp;quot;http://images.storename.com/products/images/btn_add_to_cart.gif&amp;quot; alt=&amp;quot;buy this product&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
				&amp;lt;/div&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;clear&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
		&amp;lt;div class=&amp;quot;clear&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;div id=&amp;quot;bottombox&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;div id=&amp;quot;tabs&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;ul&amp;gt;&lt;br /&gt;
				&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#featuresbox&amp;quot;&amp;gt;&amp;lt;span&amp;gt;Features&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
				&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#specsbox&amp;quot;&amp;gt;&amp;lt;span&amp;gt;Specs&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
				&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#reviewsbox&amp;quot;&amp;gt;&amp;lt;span&amp;gt;Reviews&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;/ul&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
		&amp;lt;div id=&amp;quot;specsbox&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;h3&amp;gt;Product Specs&amp;lt;/h3&amp;gt;&lt;br /&gt;
			&amp;lt;dl class=&amp;quot;p-v&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Color&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Black&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Height&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;3.9&amp;quot;&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Width&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;2&amp;quot;&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Depth&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;0.6&amp;quot;&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Weight&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;3.3 oz.&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Warranty -- Parts&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;90 days&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Warranty -- Labor&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;90 days&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Format&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Flash memory&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Vista Compatible&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Home Basic&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;LCD Screen Size&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;1.5&amp;quot;&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Image Stabilization&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;No&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Optical Zoom&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;None&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Digital Zoom&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;2x&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Night Recording&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Yes&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Audio Sensor&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Yes&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Lines of Resolution&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;720&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Video Resolution&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Up to 1280 x 720&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Digital Still Resolution&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Up to 1280 x 720&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Auto Date/Time Stamp&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Yes&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Audio Recording&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Yes&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Color Viewfinder&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Yes&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Speaker&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Yes&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Exposure Control&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Automatic&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;PC Software&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Yes&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Connectivity&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;USB 2.0&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;PC Cable&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Yes&amp;lt;/dd&amp;gt;&lt;br /&gt;
				&amp;lt;dt&amp;gt;Rechargeable Battery&amp;lt;/dt&amp;gt;&lt;br /&gt;
				&amp;lt;dd&amp;gt;Yes&amp;lt;/dd&amp;gt;&lt;br /&gt;
			&amp;lt;/dl&amp;gt;&lt;br /&gt;
			&amp;lt;div class=&amp;quot;clear&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
		&amp;lt;div id=&amp;quot;reviewsbox&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;h3&amp;gt;Product Reviews&amp;lt;/h3&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;hreview&amp;quot;&amp;gt;&lt;br /&gt;
					&amp;lt;h4&amp;gt;&amp;quot;&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Amazing little camera&amp;lt;/span&amp;gt;&amp;quot;&amp;lt;/h4&amp;gt;&lt;br /&gt;
					&amp;lt;p&amp;gt;&lt;br /&gt;
					&amp;lt;strong&amp;gt;Reviewer: &amp;lt;/strong&amp;gt;&amp;lt;span class=&amp;quot;reviewer vcard&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;http://reviews.storename.com/3545a/kevwhitesf/profile.htm&amp;quot; class=&amp;quot;url fn&amp;quot;&amp;gt;kevwhitesf&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
					&amp;lt;/p&amp;gt;&lt;br /&gt;
					&amp;lt;p&amp;gt;&lt;br /&gt;
					&amp;lt;strong&amp;gt;Date reviewed: &amp;lt;/strong&amp;gt;&amp;lt;abbr title=&amp;quot;200502&amp;quot; class=&amp;quot;dtreviewed&amp;quot;&amp;gt;2008-11-24T18:53:32.000-06:00&amp;lt;/abbr&amp;gt;&lt;br /&gt;
					&amp;lt;/p&amp;gt;&lt;br /&gt;
					&amp;lt;p&amp;gt;&lt;br /&gt;
					&amp;lt;strong&amp;gt;Rating: &amp;lt;/strong&amp;gt;&amp;lt;span class=&amp;quot;rating&amp;quot;&amp;gt;5&amp;lt;/span&amp;gt; out of 5&amp;lt;/p&amp;gt;&lt;br /&gt;
					&amp;lt;p class=&amp;quot;description&amp;quot;&amp;gt;&amp;quot;It definitely exceeded my expectations. It does everything it claims to do and more at a very reasonable price. I was pretty shocked that such a small device was capable of producing such a nice picture. Limited functionality, but that's what I was expecting. It interfaces nicely with Macs. I'm having lot of fun with my MinoHD! I've been taking it everywhere.&amp;quot;&amp;lt;/p&amp;gt;&lt;br /&gt;
				&amp;lt;/div&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;hreview&amp;quot;&amp;gt;&lt;br /&gt;
					&amp;lt;h4&amp;gt;&amp;quot;&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Amazing HD Consumer Camera&amp;lt;/span&amp;gt;&amp;quot;&amp;lt;/h4&amp;gt;&lt;br /&gt;
					&amp;lt;p&amp;gt;&lt;br /&gt;
					&amp;lt;strong&amp;gt;Reviewer: &amp;lt;/strong&amp;gt;&amp;lt;span class=&amp;quot;reviewer vcard&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;http://reviews.storename.com/3545a/sscrozz/profile.htm&amp;quot; class=&amp;quot;url fn&amp;quot;&amp;gt;sscrozz&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt; from &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;Lafayette, CA&amp;lt;/span&amp;gt;&lt;br /&gt;
					&amp;lt;/p&amp;gt;&lt;br /&gt;
					&amp;lt;p&amp;gt;&lt;br /&gt;
					&amp;lt;strong&amp;gt;Date reviewed: &amp;lt;/strong&amp;gt;&amp;lt;abbr title=&amp;quot;200502&amp;quot; class=&amp;quot;dtreviewed&amp;quot;&amp;gt;2008-11-22T03:08:41.000-06:00&amp;lt;/abbr&amp;gt;&lt;br /&gt;
					&amp;lt;/p&amp;gt;&lt;br /&gt;
					&amp;lt;p&amp;gt;&lt;br /&gt;
					&amp;lt;strong&amp;gt;Rating: &amp;lt;/strong&amp;gt;&amp;lt;span class=&amp;quot;rating&amp;quot;&amp;gt;4&amp;lt;/span&amp;gt; out of 5&amp;lt;/p&amp;gt;&lt;br /&gt;
					&amp;lt;p class=&amp;quot;description&amp;quot;&amp;gt;&amp;quot;This camera is perfect for the consumer who wants a pocket camera that shoots HD. It shoots in full HD using H.264 compression (great quality video that takes up little space) It now works with Macs using Mpeg4 instead of AVI. Here is a HD test video. http://www.vimeo.com/2291493&amp;quot;&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;div class=&amp;quot;clear&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=value-excerption-value-title-test&amp;diff=39226</id>
		<title>value-excerption-value-title-test</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=value-excerption-value-title-test&amp;diff=39226"/>
		<updated>2009-06-24T14:07:48Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* In consumers (browsers, screen readers, etc.) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Value Excerption Pattern: Parsing 'value' from an empty element&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
'''This page is targetted at those already experienced with microformats.'''&lt;br /&gt;
&lt;br /&gt;
''Please carefully note, this page is about a pre-draft, experimental and unfinished microformats proposal. You '''cannot''' use this pattern on your live pages, it is '''not supported''' by any stable parser and you should not assume that this pattern will be finalized as-is! We're just asking for help in testing this thoroughly. '''Thank you'''.''&lt;br /&gt;
__TOC__&lt;br /&gt;
This is a special page to introduce and gather results to widespread testing of a '''proposed''' extension to the value-excerption pattern. See [[value-excerption-pattern-brainstorming#.E2.80.98value-title.E2.80.99|value excerption pattern brainstorming: value-title]] for the specific proposal.&lt;br /&gt;
&lt;br /&gt;
This pattern can be used to resolve some long standing issues with including [[machine-data|machine-data in microformats]]; it's imperative we test thoroughly before adding it to any pattern specification. Following are a number of example tests. ''Please try them out''. &lt;br /&gt;
&lt;br /&gt;
The pattern we're testing looks a little something like this. Those experienced with microformats should immediately see what we're trying to do:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;p class='tel'&amp;gt;&lt;br /&gt;
    &amp;lt;span class='type'&amp;gt;&lt;br /&gt;
        &amp;lt;span class='value-title' title='cell'&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
        mobile&lt;br /&gt;
    &amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class='value'&amp;gt;+44 7773 000 000&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;p class='dtstart'&amp;gt;&lt;br /&gt;
    &amp;lt;span class='value-title' title='2009-01-06T22:54:00-0800'&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
    January 6th, in the evening&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It allows you to include machine-form data alongside the human form, without polluting visible formatted content with undesired machine form data.&lt;br /&gt;
&lt;br /&gt;
This covers cases where a microformat uses a fixed format of data that is either inappropriate for visible inclusion in a page (such as a full date-time and timezone string), or where an American-English keyword is needed — such as &amp;lt;code&amp;gt;cell&amp;lt;/code&amp;gt; instead of ‘mobile’ in a British English page, or any number of non-English translations.&lt;br /&gt;
&lt;br /&gt;
This pattern is based on rendering behavior in browsers whereby an empty element — that is one containing no   text-nodes or other child elements — remains in the DOM tree (for parsing) but is not rendered visibly to a page. This allows an element to be included in the document with a &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute (as in the example), but ''without'' a tooltip being exposed to users, and without the data being read out by screen readers.&lt;br /&gt;
&lt;br /&gt;
You can use &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; on non-empty elements as well; whatever makes most sense to your publishing scenario. This page is dedicated to the empty-element version though, since that offers up the consumption unknowns.&lt;br /&gt;
&lt;br /&gt;
Based on everything we know up to this point, we believe this pattern will work. But, it's wide ranging and the web is broad, and we want to be sure. Please, help us out testing this pattern proposal. Examples tests are below, please push them or your own variants into publishing systems, content management systems, editor applications and tools. Check that it comes out the other side with the data intact, and exposed (or hidden) as expected: Render it in desktop browsers, mobile browers, screen readers, in braille… ''anything you can test, we want to know about''! We need to see any quirks, oddities and so on.&lt;br /&gt;
&lt;br /&gt;
Also, by all means provide thoughts on the publishing flow for this. An empty element is an uncommon structure outside of forms and scripts, but the reasoning is as follows: ''‘Machine formatted data’ is not metadata, it is content. Therefore, it's structurally appropriate to have it as a sibling to the human-formatted content.''&lt;br /&gt;
&lt;br /&gt;
'''Note that valid HTML is a cornerstone of microformats'''. ''Inventing new attributes, depending on unstable drafts of HTML5, using non-standard DOCTYPEs or XML extensions is not an applicable option''. We're trying to achieve something as gracefully as we can within the limitations of HTML4, and without harming user experience.&lt;br /&gt;
&lt;br /&gt;
==The proposed parsing rules==&lt;br /&gt;
&lt;br /&gt;
The current, likely incomplete, parsing rules and restrictions for this pattern are as follows:&lt;br /&gt;
&lt;br /&gt;
* Only one &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; element may be included as a child of a property. No splitting or concatenation, no combining with other value-excerption elements.&lt;br /&gt;
* An empty &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; element '''must''' be the ''first''-child of the property (not including any preceding whitespace). To alleviate the [[value-excerption-pattern-brainstorming#issues_2|negative impact of non-visible data]], the value should be as near as possible to declaring the property.&lt;br /&gt;
* The machine-data value ''must'' represent the same data as the visible text; the parent property ''must not'' contain arbitrary data. Validator tools will be encouraged to verify this where possible (for example, some programming languages have access to powerful date parsing algorithms that can compare human dates to the ISO form).&lt;br /&gt;
* The empty element can be ''any element'', but a generic &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; is most appropriate. You could use &amp;lt;code&amp;gt;b&amp;lt;/code&amp;gt; if you want to save bytes, or an &amp;lt;code&amp;gt;input type=hidden&amp;lt;/code&amp;gt; if it makes sense to you. That choice will not matter to parsers. You are in complete control of that publishing decision. As per usual µf documentation, &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; will be used for generic examples.&lt;br /&gt;
* The &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; property does not have to be empty. If you ''do'' want a tool-tip to expose a useful data-form, you can. e.g. &amp;lt;code&amp;gt;&amp;amp;lt;span class='value-title' title='2008'&amp;gt;last year&amp;amp;lt;/span&amp;gt;&amp;lt;/code&amp;gt; is valid too.&lt;br /&gt;
&lt;br /&gt;
==Example Tests==&lt;br /&gt;
&lt;br /&gt;
The following snippets are example tests for the new pattern. You can use them as is, or use them as a base for your own tests with your own content. If you write your own tests, please document them under ‘additional test cases’ so that any failing tests can be checked for validity.&lt;br /&gt;
&lt;br /&gt;
===hAtom#1: An hAtom &amp;lt;code&amp;gt;published&amp;lt;/code&amp;gt;/&amp;lt;code&amp;gt;updated&amp;lt;/code&amp;gt; Property===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAtom#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;hentry&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;entry-title&amp;quot;&amp;gt;An introduction to Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;&lt;br /&gt;
                Published on &amp;lt;span class=&amp;quot;published updated&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-09T11:33:00-0800&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                January 9th, around lunchtime&amp;lt;/span&amp;gt;&lt;br /&gt;
                by &amp;lt;span class=&amp;quot;author vcard&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://example.com&amp;quot;&amp;gt;&lt;br /&gt;
                      Joe Blogger&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;entry-content&amp;quot;&amp;gt;Wow, microformats are really useful! You can&lt;br /&gt;
                learn loads about them on the &lt;br /&gt;
                &amp;lt;a href=&amp;quot;http://microformats.org/wiki&amp;quot;&amp;gt;microformats wiki&amp;lt;/a&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===hCal#1: An hCalendar &amp;lt;code&amp;gt;dtstart&amp;lt;/code&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hCal#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;summary&amp;quot;&amp;gt;Value Exception Test Day!&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;description&amp;quot;&amp;gt;Come help &amp;lt;span class=&amp;quot;organizer vcard&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;a class=&amp;quot;fn url org&amp;quot; href=&amp;quot;http://microformats.org&amp;quot;&amp;gt;microformats.org&amp;lt;/a&amp;gt;&lt;br /&gt;
                &amp;lt;/span&amp;gt; test a new value-excerption pattern for sanity and &lt;br /&gt;
                robustness!&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;Help out by running some tests at &lt;br /&gt;
              &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-12T12:00:00-0800&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                midday on Monday January 12th&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;See &amp;lt;a class=&amp;quot;url&amp;quot; href=&amp;quot;http://microformats.org/wiki/value-excerption-pattern-issues/empty-value-element-test&amp;quot;&amp;gt;the&lt;br /&gt;
                wiki&amp;lt;/a&amp;gt; for more details!&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===hCard#1: An hCard &amp;lt;abbr title=&amp;quot;birthday&amp;quot;&amp;gt;&amp;lt;code&amp;gt;bday&amp;lt;/code&amp;gt;&amp;lt;/abbr&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hCard#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;!-- Behind Test --&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;fn&amp;quot;&amp;gt;Ben Ward&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;Ben Ward's birthday is &lt;br /&gt;
                &amp;lt;span class=&amp;quot;bday&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;1984-02-09&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                    February 9th&lt;br /&gt;
                &amp;lt;/span&amp;gt;.&lt;br /&gt;
                You should throw him a party! Or call his &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;cell&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;mobile&amp;lt;/span&amp;gt;&lt;br /&gt;
                on &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;415.123.123&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; to wish him well!&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;!-- End Test --&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===hAudio#1: An hAudio &amp;lt;code&amp;gt;duration&amp;lt;/code&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAudio#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;h1&amp;gt;Song of the year?&amp;lt;/h1&amp;gt;&lt;br /&gt;
        &amp;lt;!-- Behind Test --&amp;gt;&lt;br /&gt;
        &amp;lt;p class=&amp;quot;haudio&amp;quot;&amp;gt;Did you hear ‘&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Heavy Water&amp;lt;/span&amp;gt;’ on&lt;br /&gt;
            &amp;lt;span class=&amp;quot;contributor&amp;quot;&amp;gt;Foals&amp;lt;/span&amp;gt; &lt;br /&gt;
            ‘&amp;lt;span class=&amp;quot;album&amp;quot;&amp;gt;Antidodes&amp;lt;/span&amp;gt;’ record &lt;br /&gt;
            &amp;lt;span class=&amp;quot;published&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2008&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                last year&lt;br /&gt;
            &amp;lt;/span&amp;gt;? It's&lt;br /&gt;
            &amp;lt;span class=&amp;quot;duration&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;PT04M32S&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                4 and a half minutes long&lt;br /&gt;
            &amp;lt;/span&amp;gt;, you should make time to hear it!&amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;!-- End Test --&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''If you believe there is an error in any of these tests, or in any others that people contribute, please post on the {{MicroformatsMailingList}}.''&lt;br /&gt;
&lt;br /&gt;
==Evil Tests==&lt;br /&gt;
&lt;br /&gt;
If you want to give existing microformat parsers a good run out, construct ‘evil’ tests using nesting, combination and interpolation of different microformats.&lt;br /&gt;
&lt;br /&gt;
===hAtom + hCalendar===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAtomhCalEvil#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;hentry vevent&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;entry-title summary&amp;quot;&amp;gt;An introduction to Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;&lt;br /&gt;
                Published on &amp;lt;span class=&amp;quot;published updated&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-09T11:33:00-0800&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                January 11th, late afternoon&amp;lt;/span&amp;gt;&lt;br /&gt;
                by &amp;lt;span class=&amp;quot;author organizer vcard&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://example.com&amp;quot;&amp;gt;&lt;br /&gt;
                      Joe Blogger&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;entry-content description&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;&lt;br /&gt;
                    &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-14T19:00:00&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
                    this coming Wednesday at 7&lt;br /&gt;
                &amp;lt;/span&amp;gt; is not the date of a completely fictional microformats&lt;br /&gt;
                event. If it existed, it would promise to be informative and get&lt;br /&gt;
                you up to speed on microformats.org for 2009! Now you've &lt;br /&gt;
                learned to work with microformats a little, why not attend and&lt;br /&gt;
                get involved! Why not? Because this event is a test case, not &lt;br /&gt;
                for real.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Second Phase Test==&lt;br /&gt;
&lt;br /&gt;
Following the first wave of example tests (above), we had a handful of failures in publishing tools caused by the requirement of using the empty span element. Tools (including the widespread HTML-Tidy) drop the &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt;, thus throwing away the data. Thus, we have a second test to claim confirmation on, please. This version includes a single whitespace (space) character in the &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; span. The result of this is that the publishing tools that failed in the above example pass. We now need to confirm that the single item of whitespace will also collapse (we believe it does). Here's a rewrite of the first hAtom test from above, with the whitespace variation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot;&lt;br /&gt;
    &amp;quot;http://www.w3.org/TR/html4/strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;head&amp;gt;&lt;br /&gt;
        &amp;lt;title&amp;gt;Value Excerption Pattern Test hAtom#1&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;/head&amp;gt;&lt;br /&gt;
    &amp;lt;body&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;hentry&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;h1 class=&amp;quot;entry-title&amp;quot;&amp;gt;An introduction to Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
            &amp;lt;p&amp;gt;&lt;br /&gt;
                Published on &amp;lt;span class=&amp;quot;published updated&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;span class=&amp;quot;value-title&amp;quot; title=&amp;quot;2009-01-09T11:33:00-0800&amp;quot;&amp;gt; &amp;lt;/span&amp;gt;&lt;br /&gt;
                January 9th, around lunchtime&amp;lt;/span&amp;gt;&lt;br /&gt;
                by &amp;lt;span class=&amp;quot;author vcard&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://example.com&amp;quot;&amp;gt;&lt;br /&gt;
                      Joe Blogger&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
            &amp;lt;p class=&amp;quot;entry-content&amp;quot;&amp;gt;Wow, microformats are really useful! You can&lt;br /&gt;
                learn loads about them on the &lt;br /&gt;
                &amp;lt;a href=&amp;quot;http://microformats.org/wiki&amp;quot;&amp;gt;microformats wiki&amp;lt;/a&amp;gt;.&lt;br /&gt;
            &amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The WYSIWYG editors can also publish the original pattern using the &amp;lt;code&amp;gt;input type=hidden&amp;lt;/code&amp;gt; element rather than a &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt;, but we're keen to avoid prescribing mark-up to any publisher (especially mark-up of ‘elaborate’ semantics).&lt;br /&gt;
&lt;br /&gt;
A second column has been added to the results to confirm each item that also passes with the inclusion of whitespace. Failures should be documented in the same place, please.&lt;br /&gt;
&lt;br /&gt;
This test is also hosted on Ben Ward's domain, so you can run it right in your browser by going to [http://ben-ward.co.uk/microformats/value-excerption-pattern/hAtom2.html http://ben-ward.co.uk/microformats/value-excerption-pattern/hAtom2.html].&lt;br /&gt;
&lt;br /&gt;
==Verifying the tests==&lt;br /&gt;
&lt;br /&gt;
To verified a successfully passing test, you need to check for the following:&lt;br /&gt;
&lt;br /&gt;
===In consumers (browsers, screen readers, etc.)===&lt;br /&gt;
&lt;br /&gt;
* The empty element should appear in the page &amp;lt;abbr title='Document Object Model'&amp;gt;DOM&amp;lt;/abbr&amp;gt;&lt;br /&gt;
* When hovering over and near the visible data, a tooltip displaying the machine-form ''must not'' be displayed.&lt;br /&gt;
** You can doubly verify this by opening you browser's DOM Inspector and confirming that the &amp;lt;code&amp;gt;value-title&amp;lt;/code&amp;gt; element has a width of &amp;lt;samp&amp;gt;0&amp;lt;/samp&amp;gt; (or &amp;lt;samp&amp;gt;0 px&amp;lt;/samp&amp;gt;).&lt;br /&gt;
* When rendered to speech using assistive technology, the machine-form data ''must not'' be read aloud. &lt;br /&gt;
** Any variance in this behavior with different verbosity settings should be noted too, please.&lt;br /&gt;
&lt;br /&gt;
===In publishing tools===&lt;br /&gt;
&lt;br /&gt;
* The tool allows you to create an empty span element&lt;br /&gt;
** The tool allows you to add &amp;lt;kbd&amp;gt;value-title&amp;lt;/kbd&amp;gt; to the &amp;lt;code&amp;gt;class&amp;lt;/code&amp;gt; attribute of this empty element.&lt;br /&gt;
** The tool allows you to add corresponding date to the &amp;lt;code&amp;gt;attribute&amp;lt;/code&amp;gt; attribute of this empty element.&lt;br /&gt;
* The element remains available in the editor whilst other edits are made&lt;br /&gt;
* When the content is ‘published’ to the web, the empty element is present in the page output, and therefore in the DOM for the document.&lt;br /&gt;
&lt;br /&gt;
==Response==&lt;br /&gt;
&lt;br /&gt;
* Don't like the empty element? Don't like the use of the title attribute? '''Please file general issues concerning the proposed pattern on the main [[value-excerption-pattern-brainstorming#enabling_more_use_of_title_attributes|value excerption brainstorming page]]''', or discuss them on the {{MicroformatsMailingList}}.&lt;br /&gt;
* Add results of tests and responses to these tests themselves on ''this page''.&lt;br /&gt;
&lt;br /&gt;
Misplaced responses will be moved, and having to do so will make [[User:BenWard|Ben]] growly, so, y'know, please try to keep the wiki tidy.&lt;br /&gt;
&lt;br /&gt;
=== Please Also Try ===&lt;br /&gt;
Please also try the [[value-excerption-dt-separation-test]]. This is not either or. Ideally both will work and can be carried forward.&lt;br /&gt;
&lt;br /&gt;
===Successful Tests===&lt;br /&gt;
&lt;br /&gt;
List successfully tested environments here. Add new environments as new list items, and expand existing list items with your name and platform variants to indicate verified successes.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+ Results of tests across various publishing/rendering environments&lt;br /&gt;
|-&lt;br /&gt;
! Product&lt;br /&gt;
! &amp;lt;abbr title=&amp;quot;Publishing or Consuming?&amp;quot;&amp;gt;P/C?&amp;lt;/abbr&amp;gt;&lt;br /&gt;
! Platforms&lt;br /&gt;
! Test By&lt;br /&gt;
! Notes&lt;br /&gt;
! &amp;lt;abbr title='Test 2 with Whitespace'&amp;gt;T2&amp;lt;/abbr&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| MediaWiki/Linux&lt;br /&gt;
| Publishing&lt;br /&gt;
| Safari 3.2.1 (Mac OSX 10.5)&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| The empty &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; elements are maintained in &amp;lt;abbr title=&amp;quot;MediaWiki&amp;quot;&amp;gt;MW&amp;lt;/abbr&amp;gt; output. Note that &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt; elements in the tests get escaped by this MediaWiki install.&lt;br /&gt;
|-&lt;br /&gt;
| TinyMCE 3.2.1.1&lt;br /&gt;
| Publishing&lt;br /&gt;
| Safari 3.2.1 (Mac OSX 10.5)&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Fails when trying to publish empty element (see below)&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| FCKEditor 2.6.4 Beta&lt;br /&gt;
| Publishing&lt;br /&gt;
| Safari 3.2.1 (Mac OSX 10.5)&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Fails when trying to publish empty element (see below)&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Safari 2.0.4&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5&lt;br /&gt;
| [[User:GeorgeBrock]]&lt;br /&gt;
| Empty-span reamins in DOM. No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Safari 3.0.3&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Safari 3.2.1&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM. Web Inspector reports the element has width and height of ‘0px’. No tooltip due to zero-dimensions.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 2.0&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5&lt;br /&gt;
| [[User:GeorgeBrock]], [[User:BenWard]]&lt;br /&gt;
| Empty-span remains in DOM. Firebug reports the element has width of '0px' and height of ‘16px’. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 3.0.x&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM. Firebug reports the element has width of '0px' and height of ‘16px’. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 3.0.x&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP SP3,&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| no tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Firefox 3.1ß1&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Empty-span remains in DOM. No tooltip.&lt;br /&gt;
|-&lt;br /&gt;
| Opera 9.6&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Opera 9.62&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5, Windows XP SP3&lt;br /&gt;
| [[User:BenWard]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM. Dragonfly reports the element has width of '0px' and height of ‘0px’. No tooltip due to zero-dimensions.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Opera 10 Alpha&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| Empty-span remains in DOM. Dragonfly reports the element has width of '0px' and height of ‘0px’. No tooltip due to zero-dimensions.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 5.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5,&lt;br /&gt;
| [[User:BenWard]]&lt;br /&gt;
| No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 6.0&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:GeorgeBrock]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM (visible to Web Developer Toolbar, accessible from Javascript). No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 7.0&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:GeorgeBrock]], [[User:EmilyLewis]]&lt;br /&gt;
| Empty-span remains in DOM (visible to Web Developer Toolbar, accessible from Javascript). No tooltip.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Internet Explorer 8.0 beta 2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:GeorgeBrock]]&lt;br /&gt;
| Empty-span remains in DOM. Developer Tools (built in to &amp;lt;abbr title=&amp;quot;Internet Explorer 8 beta 2&amp;quot;&amp;gt;IE8b2&amp;lt;/abbr&amp;gt;) report the element has width of '0px' and height of '19px'. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Camino 1.6.5&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Camino 1.6.6&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:GeorgeBrock]]&lt;br /&gt;
| Empty-span remains in DOM. [http://getfirebug.com/lite.html Firebug Lite] reports width of '0px' and height of '16px'. No tooltip due to zero-width.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| Flock 2.0.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Flock 2.0.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| Chrome 1.0.154.43&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| BlackBerry Browser&lt;br /&gt;
| Consuming&lt;br /&gt;
| BlackBerry Storm OS 4.0.7.85 (leaked, non-official OS build from Verizon)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| Tested in ‘BlackBerry mode’. No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| MobileSafari 2.2&lt;br /&gt;
| Consuming&lt;br /&gt;
| iPhone OS 2.2&lt;br /&gt;
| [[User:EmilyLewis]], [[User:BenWard]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
| IE Mobile 7.11&lt;br /&gt;
| Consuming&lt;br /&gt;
| Sprint HTC Mogul, OS: Windows Mobile 6.1&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No tooltip&lt;br /&gt;
|-&lt;br /&gt;
| JAWS 10.0.512 (demo mode)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No voice&lt;br /&gt;
|-&lt;br /&gt;
| Fire Vox (Firefox 3.0.5)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No voice&lt;br /&gt;
|-&lt;br /&gt;
| WebbIE (Thunder 1.43)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Windows XP (&amp;lt;abbr title=&amp;quot;Service Pack 3&amp;quot;&amp;gt;SP3&amp;lt;/abbr&amp;gt;)&lt;br /&gt;
| [[User:EmilyLewis]]&lt;br /&gt;
| No voice&lt;br /&gt;
|-&lt;br /&gt;
| VoiceOver (Safari 3.2.1)&lt;br /&gt;
| Consuming&lt;br /&gt;
| Mac OSX 10.5.6&lt;br /&gt;
| [[User:EmilyLewis]], [[User:BenWard]]&lt;br /&gt;
| No voice. When interacting with elements, cannot focus on the empty-span.&lt;br /&gt;
| Pass&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Failed Tests===&lt;br /&gt;
&lt;br /&gt;
For failures, please provide as much information as you can. The precise impact of the error, whether the behavior could be regarded as a bug in the software you're testing, whether it works in subsequent releases, whether you changed any settings in the software to produce the result, and if so, whether enabling/disabling that setting should be regarded a showstopper if this pattern were certified. &lt;br /&gt;
&lt;br /&gt;
Since we want more detail, please expand failures into headed sections rather than cramming into a table.&lt;br /&gt;
&lt;br /&gt;
For example, take this entirely plausible scenario as a template:&lt;br /&gt;
&lt;br /&gt;
====Example: Fake Publisher 3.1ß====&lt;br /&gt;
; Platform&lt;br /&gt;
: Windows Vista&lt;br /&gt;
; Test By&lt;br /&gt;
: [[User:BenWard]]&lt;br /&gt;
; Description&lt;br /&gt;
: When trying to enter an empty span in my &amp;lt;abbr title=&amp;quot;Hypertext Markup Language&amp;quot;&amp;gt;HTML&amp;lt;/abbr&amp;gt; editor, which I wrote myself whilst I was high, the application immediately crashes, performs &amp;lt;code&amp;gt;rm -rf /&amp;lt;/code&amp;gt; on all UNIX boxes connected to my local network (which also appears to cause Android phones within Bluetooth range to do the same…), and then causes all attached peripherals to combust. I was not able to reproduce, as my house was now on fire. I think using a self closing XHTML tag instead might work-around the problem because as we know, it's been proved by Real Scienticians that XML is always better than HTML. Alternatively, it may be a bug in the beta software.&lt;br /&gt;
; Notes&lt;br /&gt;
: This is a beta release, and a bug has been filed.&lt;br /&gt;
: This product has a known history of flammability bugs.&lt;br /&gt;
: The user must explicitly enable the ‘Endanger My Life’ checkbox under the ‘Advanced Mislabelled Checkboxes’ tab of the ‘Complicated Preferences’ preferences pane.&lt;br /&gt;
: You get the idea.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Browser &amp;lt;abbr title=&amp;quot;What you see is what you get&amp;quot;&amp;gt;WYSIWYG&amp;lt;/abbr&amp;gt; editor: [http://tinymce.moxiecode.com/ TinyMCE 3.2.1.1]====&lt;br /&gt;
; Platform&lt;br /&gt;
: Firefox 3.0 on Mac OSX 10.5&lt;br /&gt;
; Test By&lt;br /&gt;
: [[User:GeorgeBrock]]&lt;br /&gt;
; Description&lt;br /&gt;
: Empty spans entered using TinyMCE's source editor are removed when switching back to the default WYSIWYG view. &lt;br /&gt;
: This is not a bug with TinyMCE, the editor is designed to remove empty instances of most elements by default. The handling of empty elements can be changed by modifying the [http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/valid_elements valid-elements setting] (e.g. change &amp;lt;code&amp;gt;-span&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; and empty spans will no longer be removed), however settings can only be changed by modifying the source code of the page that contains the TinyMCE instance, so it is likely that some users will not be able to apply this fix.&lt;br /&gt;
; Notes&lt;br /&gt;
: This behaviour can be easily reproduced using the online [http://tinymce.moxiecode.com/examples/full.php TinyMCE examples].&lt;br /&gt;
: TinyMCE is the default WYSIWYG editor in WordPress[http://codex.wordpress.org/TinyMCE].&lt;br /&gt;
: With a single whitespace character (‘space’), the &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; is preserved, but yet still seems to collapse in Safari. Will write a follow-up test.--[[User:BenWard|BenWard]] 23:11, 20 January 2009 (UTC)&lt;br /&gt;
: You ''can'' publish this pattern using the &amp;lt;code&amp;gt;input type='hidden' class='value-title' title='2009-01-20'&amp;lt;/code&amp;gt; hinted above. Semantically odd, although it's been suggested on µf lists before. Publishing workaround exists through element agnosticism. --[[User:BenWard|BenWard]] 23:11, 20 January 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
====Browser &amp;lt;abbr title=&amp;quot;What you see is what you get&amp;quot;&amp;gt;WYSIWYG&amp;lt;/abbr&amp;gt; editor: [http://www.fckeditor.net/ FCKEditor 2.6.4 Beta]====&lt;br /&gt;
; Platform&lt;br /&gt;
: Firefox 3.0 on Mac OSX 10.5&lt;br /&gt;
; Test By&lt;br /&gt;
: [[User:GeorgeBrock]]&lt;br /&gt;
; Description&lt;br /&gt;
: Empty spans entered using FCKEditor's source editor are removed when switching back to the default WYSIWYG view or submitting the form that contains the FCKEditor instance.&lt;br /&gt;
; Notes&lt;br /&gt;
: This behaviour can be easily reproduced using the online [http://www.fckeditor.net/demo FCKEditor demo].&lt;br /&gt;
: FCKEditor is used by various content management systems, frameworks and applications[http://www.fckeditor.net/whosusing].&lt;br /&gt;
: With a single whitespace character (‘space’), the &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt; is preserved, but yet still seems to collapse in Safari. Will write a follow-up test.--[[User:BenWard|BenWard]] 23:12, 20 January 2009 (UTC)&lt;br /&gt;
: You ''can'' publish this pattern using the &amp;lt;code&amp;gt;input type='hidden' class='value-title' title='2009-01-20'&amp;lt;/code&amp;gt; mentioned above. --[[User:BenWard|BenWard]] 23:12, 20 January 2009 (UTC)&lt;br /&gt;
: This issue does not effect FCKEditor instances that use the Placeholders plugin (this plugin comes with FCKEditor, enable it using &amp;lt;code&amp;gt;FCKConfig.Plugins.Add('placeholder')&amp;lt;/code&amp;gt;).  Examining the Placeholders plugin code may yield an easier work-around than including the plugin (I had a quick look but didn't see anything that was obviously responsible for allowing empty spans) -[[User:GeorgeBrock|GeorgeBrock]] 23:20, 20 January 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Additional failure reports go above this line, please --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===General Test Feedback===&lt;br /&gt;
&amp;lt;div class='discussion'&amp;gt;&lt;br /&gt;
* Any general feedback you have on this test is most welcome. However, if you have issues with the pattern or alternate suggestions, please file them on the main [[value-excerption-pattern-issues]] page. Also, please remember to sign your comments with &amp;lt;nowiki&amp;gt;—~~~~&amp;lt;/nowiki&amp;gt; —[[User:BenWard|BenWard]] 00:12, 9 January 2009 (UTC)&lt;br /&gt;
* … &amp;lt;!-- New topic as a top-level list item  --&amp;gt;&lt;br /&gt;
** … &amp;lt;!-- Responses as nested list item for threading --&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related Pages==&lt;br /&gt;
* [[value-excerption-pattern]]&lt;br /&gt;
* [[value-excerption-pattern-issues]]&lt;br /&gt;
* [[value-excerption-pattern-brainstorming]]&lt;br /&gt;
* [[value-excerption-dt-separation-test]]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2008-02-28-fowa-miami-workshop&amp;diff=34629</id>
		<title>events/2008-02-28-fowa-miami-workshop</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2008-02-28-fowa-miami-workshop&amp;diff=34629"/>
		<updated>2008-11-18T00:20:31Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Details */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;vevent&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h1 class=&amp;quot;summary&amp;quot;&amp;gt;FOWA Miami: Introduction to Microformats workshop&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
== Details ==&lt;br /&gt;
* &amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2008-02-28&amp;lt;/span&amp;gt; 9am-12:30pm &lt;br /&gt;
* &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Room 2021, Knight Concert Hall, Carnival Center, Miami, Florida USA&amp;lt;/span&amp;gt;. &lt;br /&gt;
* &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Introduction to Microformats workshop&amp;lt;/span&amp;gt;&lt;br /&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;&lt;br /&gt;
* Speaker: Tantek Çelik&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
* Eric Masiello&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Q&amp;amp;A ==&lt;br /&gt;
&lt;br /&gt;
* How do I deal with quotes? (Example[http://www.sigmaperformancegroup.com/contact-us_old_example.php]).  There seems to be a character encoding issue when exporting my contact to a vCard.&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2008-04-14-openweb&amp;diff=34628</id>
		<title>events/2008-04-14-openweb</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2008-04-14-openweb&amp;diff=34628"/>
		<updated>2008-11-18T00:20:30Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* details */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats Talks @ Open Web Vancouver 2008&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
&lt;br /&gt;
* [http://www.openwebvancouver.ca/microformats-diso Microformats and Distributed Social Networks] by Chris Messina&lt;br /&gt;
* [http://www.openwebvancouver.ca/microformats-ryan-king-0 Microformats - Past, Present, Future] by Ryan King&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;&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;2008-04-14T09:00:00+00:00&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; Apr/14+15&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;Vancouver Conference &amp;amp; Expo Center&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;999 Canada Place&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Vancouver&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;Canada&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
;Web&lt;br /&gt;
: &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.openwebvancouver.ca&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&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;
tags: '''ow08 openweb2008 openwebvancouver2008'''&lt;br /&gt;
&lt;br /&gt;
== related pages==&lt;br /&gt;
{{events-related-pages}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2008-02-29-fowa-miami-social-networks&amp;diff=34627</id>
		<title>events/2008-02-29-fowa-miami-social-networks</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2008-02-29-fowa-miami-social-networks&amp;diff=34627"/>
		<updated>2008-11-18T00:20:27Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* details */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;FOWA Miami: The Future of Social Networks&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-02-29-fowa-miami-social-networks&lt;br /&gt;
*Subscribe to this event: webcal://feeds.technorati.com/events/microformats.org/wiki/events/2008-02-29-fowa-miami-social-networks&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-02-29T11:15-0500&amp;lt;/span&amp;gt;–&amp;lt;span class=dtend&amp;gt;2008-02-29T11:55-0500&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;Carnival Center&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; 1300 Biscayne Boulevard&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Miami&amp;lt;/span&amp;gt; &amp;lt;abbr class=&amp;quot;region&amp;quot; title=&amp;quot;Florida&amp;quot;&amp;gt;FL&amp;lt;/abbr&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;United States of America&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;FOWA Miami: The Future of Social Networks&amp;lt;/span&amp;gt;&lt;br /&gt;
;Presenters&lt;br /&gt;
:[[User:Tantek|Tantek Çelik]]&lt;br /&gt;
:[http://brianoberkirch.com/ Brian Oberkirch]&lt;br /&gt;
:[http://josephsmarr.com/ Joseph Smarr]&lt;br /&gt;
;Web&lt;br /&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;&lt;br /&gt;
&lt;br /&gt;
'''[http://technorati.com/events/microformats.org/wiki/events/microformats.org/wiki/events/2008-02-29-fowa-miami-social-networks Add this event to your diary or calendar program]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&lt;br /&gt;
&lt;br /&gt;
== presentation ==&lt;br /&gt;
* &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.slideshare.net/carsonsystems/brian-oberkirch-tantek-celik-joseph-smarr-fowa-miami&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== podcast ==&lt;br /&gt;
* &amp;lt;span class=&amp;quot;url attachment&amp;quot;&amp;gt;http://cdn4.libsyn.com/carsonsystems/Brian_Tantek__Joseph.mp3&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&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: '''FOWAMiami2008socialnetworks FOWA FOWA2008 FOWAMiami FOWAMiami2008 socialnetworks socialnetworkportability microformats microformatssession'''&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
Add yourself alphabetically sorted by last name if you attended.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
*[xxxUrlxxx xxxNamexxx]&lt;br /&gt;
* [[User:Tantek|Tantek]]&lt;br /&gt;
--&amp;gt;&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: '''FOWAMiami2008socialnetworks FOWA FOWA2008 FOWAMiami FOWAMiami2008 socialnetworks socialnetworkportability microformats microformatssession'''&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: '''FOWAMiami2008socialnetworks FOWA FOWA2008 FOWAMiami FOWAMiami2008 socialnetworks socialnetworkportability microformats microformatssession'''&lt;br /&gt;
&lt;br /&gt;
* http://josephsmarr.com/2008/03/02/implementing-open-social-web-support-on-your-site-future-of-web-apps-miami/&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>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=citation-examples-markup-fr&amp;diff=34626</id>
		<title>citation-examples-markup-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=citation-examples-markup-fr&amp;diff=34626"/>
		<updated>2008-11-18T00:17:26Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Marshall Cavendish product page */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; Exemples de Citations &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Les exemples suivants sont des exemples de citations trouvées sur le web. SVP ajoutez-les à cette liste. L'idée est que nous puissions obtenir un solide échantillon d'exemples et voir les communs qu'il y a parmi eux et essayer de construire ce microformat de manière à ce qu'il puisse correspondre à 80% des usages.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Voir aussi : &lt;br /&gt;
* [[citation-fr|citation]]&lt;br /&gt;
* [[citation-formats-fr|citation-formats]]&lt;br /&gt;
* [[citation-brainstorming-fr|citation-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Contributeurs ==&lt;br /&gt;
* ...&lt;br /&gt;
* ...&lt;br /&gt;
* Tantek Çelik&lt;br /&gt;
* [http://michael-mccracken.net/wp/ Michael McCracken]&lt;br /&gt;
* Tim White&lt;br /&gt;
&lt;br /&gt;
(traduction en cours [[Christophe Ducamp]])&lt;br /&gt;
&lt;br /&gt;
== Syntaxe Citation dans la Jungle ==&lt;br /&gt;
Les exemples de balisage extrait de sites web d'éditeurs de référence (catalogues en ligne), comprenant ABC-CLIO, Greenwood Press, Marshall Cavendish, Oxford University Press (USA) et Thomson Gale. Les exemples sont démontés et organisés par éléments.&lt;br /&gt;
&lt;br /&gt;
(Pour une version plus propore, voir [http://www.tjameswhite.com/citation-examples.htm])&lt;br /&gt;
&lt;br /&gt;
=== ABC-CLIO [http://www.abc-clio.com/products/overview.aspx?productid=109327 détail page produit] ===&lt;br /&gt;
* subtitle&lt;br /&gt;
* title&lt;br /&gt;
* author&lt;br /&gt;
* Image&lt;br /&gt;
* pubdate&lt;br /&gt;
* pages&lt;br /&gt;
* volumes&lt;br /&gt;
* trimsize (book dimentions 8.5x11)&lt;br /&gt;
* Format&lt;br /&gt;
* Price&lt;br /&gt;
* ISBN&lt;br /&gt;
&lt;br /&gt;
=== Greenwood Press [http://www.greenwood.com/ home page] featured book ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;title&amp;quot;&amp;gt; &amp;lt;a href=&amp;quot;/books/BookDetail.asp?sku=GR2847&amp;quot;&amp;gt;The Greenwood Encyclopedia of World Folklore&lt;br /&gt;
     and Folklife&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;img_box&amp;quot;&amp;gt; &amp;lt;a href=&amp;quot;/books/BookDetail.asp?sku=GR2847&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;img src=&amp;quot;/_net.templates/showImage.aspx?imgName=0313328471.jpg&amp;amp;s=140&amp;quot; alt=&amp;quot;The Greenwood Encyclopedia&lt;br /&gt;
    of World Folklore and Folklife&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;sub_title&amp;quot;&amp;gt;Four Volumes&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;author&amp;quot;&amp;gt;William M. Clements&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;isbn&amp;quot;&amp;gt;0-313-32847-1&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;price&amp;quot;&amp;gt;$449.95 &amp;lt;span class=&amp;quot;pipe&amp;quot;&amp;gt;|&amp;lt;/span&amp;gt; &amp;amp;pound;255.00&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;!--&amp;lt;div class=&amp;quot;clearing&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;--&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;bookDescription&amp;quot;&amp;gt; China . . . Malta . . . Madagascar . . . Wales . . . and Texas: these are &lt;br /&gt;
    among the many exotic, distant lands that capture our minds and imaginations. In an era of increasing &lt;br /&gt;
    globalization, students, general readers, and business professionals need to know about... &lt;br /&gt;
    &amp;lt;a href=&amp;quot;/books/BookDetail.asp?sku=GR2847&amp;quot;&amp;gt;Read&amp;amp;nbsp;more&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Greenwood Press [http://www.greenwood.com/catalog/GR2847.aspx détail page produit] ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div id=&amp;quot;pnlContent&amp;quot; class=&amp;quot;pnlContent&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div id=&amp;quot;pnlFlyerBox&amp;quot; class=&amp;quot;flyerBox&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlFlyer&amp;quot; class=&amp;quot;flyerLink&amp;quot; href=&amp;quot;/books/printFlyer.aspx?sku=GR2847&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Print &lt;br /&gt;
        book flyer&amp;lt;/a&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlFlyerInternational&amp;quot; class=&amp;quot;international_flyer&amp;quot; &lt;br /&gt;
      href=&amp;quot;/books/printFlyer.aspx?sku=GR2847&amp;amp;amp;location=international&amp;quot; ...&amp;gt;(International version)&amp;lt;/a&amp;gt; &lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;span id=&amp;quot;lblTitle&amp;quot; class=&amp;quot;book_headline block&amp;quot;&amp;gt;The Greenwood Encyclopedia of World Folklore and Folklife&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span id=&amp;quot;lblSubTitle&amp;quot; class=&amp;quot;book_subline&amp;quot;&amp;gt;Four Volumes&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;div id=&amp;quot;pnlBookDetails&amp;quot; class=&amp;quot;detailsBox&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlImgBox&amp;quot; class=&amp;quot;imgBox&amp;quot;&amp;gt; &lt;br /&gt;
        &amp;lt;img src=&amp;quot;/_net.templates/showImage.aspx?imgName=0313328471.jpg&amp;amp;amp;s=135&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt; &lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlAddToCart&amp;quot; title=&amp;quot;Add this item to your shopping cart&amp;quot; href=&amp;quot;/shopping_cart/?sku=GR2847&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;img title=&amp;quot;Add this item to your shopping cart&amp;quot; &lt;br /&gt;
          src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Add to Cart&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt; &lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlAddToWishList&amp;quot; title=&amp;quot;Save this item to your wish list&amp;quot; href=&amp;quot;/wish_list/?sku=GR2847&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;img title=&amp;quot;Save this item to your wish list&amp;quot; &lt;br /&gt;
          src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Add to Wish List&amp;quot;.../&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlSharePage&amp;quot; title=&amp;quot;Email this page to a friend&amp;quot; href=&amp;quot;/books/sendform.asp?sku=GR2847&amp;quot;...&amp;gt;&lt;br /&gt;
        &amp;lt;img title=&amp;quot;Email this page to a friend&amp;quot; src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Email&amp;quot;.../&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt; &lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlPrintPage&amp;quot; title=&amp;quot;Version of this page optimized for printing&amp;quot; href=&amp;quot;/catalog/GR2847.aspx?print=1&amp;quot; ...&amp;gt;&lt;br /&gt;
        &amp;lt;img title=&amp;quot;Version of this page optimized for printing&amp;quot; src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Print&amp;quot;.../&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlWorldCat&amp;quot; href=&amp;quot;http://worldcatlibraries.org/wcpa/isbn/0313328471&amp;quot;...&amp;gt;&lt;br /&gt;
        &amp;lt;img src=&amp;quot;/images/world_catalog.gif&amp;quot;.../&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;authors&amp;quot;&amp;gt;&amp;lt;span&amp;gt;&amp;lt;a href=&amp;quot;/catalog/author/C/229.aspx&amp;quot;&amp;gt;William M. Clements&amp;lt;/a&amp;gt; (ed.)&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;span id=&amp;quot;lblAuthorsNote&amp;quot; class=&amp;quot;block&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;div&amp;gt;&amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Book Code:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblBookCode&amp;quot;&amp;gt;GR2847&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlIsbn&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;ISBN:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblIsbn&amp;quot;&amp;gt;0-313-32847-1&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlPageColation&amp;quot;&amp;gt; 1972 pages, maps; photos &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;span id=&amp;quot;lblImprint&amp;quot; class=&amp;quot;block&amp;quot;&amp;gt;Greenwood Press&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlPubDate&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Publication Date:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblPubDate&amp;quot;&amp;gt;12/30/2005&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlListPrice&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;List Price:&amp;lt;/span&amp;gt; &lt;br /&gt;
        &amp;lt;span id=&amp;quot;lblListPrice&amp;quot;&amp;gt;$449.95&amp;lt;/span&amp;gt; &lt;br /&gt;
        (&amp;lt;a href=&amp;quot;/contactus/order_info.asp?SectionID=about&amp;amp;amp;Location=order_info#UKEME&amp;quot; &lt;br /&gt;
          title=&amp;quot;Click for international ordering information&amp;quot;&amp;gt;UK Sterling Price: &amp;amp;pound;255.00&amp;lt;/a&amp;gt;) &lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlAvailability&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Availability:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblAvailability&amp;quot;&amp;gt;In Stock&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlMediaType&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Media Type:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblMediaType&amp;quot;&amp;gt;Hardcover&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;clearing&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div id=&amp;quot;pnlBookInformation&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Subjects:&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;ul class=&amp;quot;toc&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; &lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl1_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology.aspx&amp;quot;&amp;gt;Anthropology&amp;lt;/a&amp;gt; » &lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl1_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology/Folklore.aspx&amp;quot;&amp;gt;Folklore&amp;lt;/a&amp;gt; &lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt;&lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl2_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology.aspx&amp;quot;&amp;gt;Anthropology&amp;lt;/a&amp;gt; » &lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl2_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology/Anthropology%2b(General).aspx&amp;quot;&amp;gt;&lt;br /&gt;
            Anthropology (General)&lt;br /&gt;
          &amp;lt;/a&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt;&lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl3_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology.aspx&amp;quot;&amp;gt;Anthropology&amp;lt;/a&amp;gt; » &lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl3_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology/Cultural%2bAnthropology.aspx&amp;quot;&amp;gt;Cultural Anthropology&amp;lt;/a&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; &amp;lt;a id=&amp;quot;rpCategories__ctl4_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/History.aspx&amp;quot;&amp;gt;History&amp;lt;/a&amp;gt; » &lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl4_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/History/World%2bHistory%2b(General).aspx&amp;quot;&amp;gt;&lt;br /&gt;
            World History (General)&amp;lt;/a&amp;gt; &amp;lt;/li&amp;gt;&lt;br /&gt;
      &amp;lt;/ul&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlDescription&amp;quot;&amp;gt; &lt;br /&gt;
        &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Description:&amp;lt;/span&amp;gt; &lt;br /&gt;
        &amp;lt;span id=&amp;quot;lblDescription1&amp;quot; class=&amp;quot;description block&amp;quot;&amp;gt;&lt;br /&gt;
          China . . . Malta . . . Madagascar . . . Wales . . . and Texas: these are among the many exotic, &lt;br /&gt;
          distant lands that capture our minds and imaginations. In an era of increasing globalization, &lt;br /&gt;
          students, general readers, and business professionals need to know about the world and its varied &lt;br /&gt;
          ways. So too, a knowledge of world cultures is fundamental to an understanding of America's ethnically &lt;br /&gt;
          rich society. Folklore isn't just about the long ago and far away. It's about the here and now, and &lt;br /&gt;
          there's no better way to learn about cultural diversity than to study the folklore and folkways of &lt;br /&gt;
          different ethnic groups. &amp;lt;br /&amp;gt;&lt;br /&gt;
          More than just Cinderella and other fairy tales, folklore encompasses the whole realm of traditional &lt;br /&gt;
          beliefs and activities that define a culture. The most comprehensive work of its kind, this massive &lt;br /&gt;
          encyclopedia engagingly and authoritatively surveys folklife and traditions from around the world. Through its&lt;br /&gt;
          vast scope and lengthy entries, it transcends other references on particular national or regional &lt;br /&gt;
          folklores and is the most ambitious undertaking of its type. Organized in four volumes, the encyclopedia &lt;br /&gt;
          provides convenient access to information about folklore generally and to the traditions of particular&lt;br /&gt;
          regions:&amp;lt;br /&amp;gt;&lt;br /&gt;
          Volume 1: Topics and Themes, Africa, Australia and Oceania&amp;lt;br /&amp;gt;&lt;br /&gt;
          Volume 2: Southeast Asia and India, Central and East Asia, Middle East&amp;lt;br /&amp;gt;&lt;br /&gt;
          Volume 3: Europe&amp;lt;br /&amp;gt;&lt;br /&gt;
          Volume 4: North and South America&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblDescription2&amp;quot; class=&amp;quot;description block&amp;quot;&amp;gt;Along &lt;br /&gt;
            with the expertise of the contributors, of Volume Editor William M. Clements, and of Advisory Editor &lt;br /&gt;
            Thomas A. Green, the encyclopedia draws upon a distinguished board of internationally recognized scholars,&lt;br /&gt;
             including:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Roger D. Abrahams&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Cristina Bacchilega&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Gillian Bennett&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Mary Ellen Brown&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; James R. Dow&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Alessandro Falassi&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Barbro Klein&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Peter Knecht&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Natalie Kononenko&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Frances M. Malpezzi&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Margaret Mills&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; M. D. Muthukumaraswamy&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Gerald Pocius&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And John S. Ryan.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Features:&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Brings together the knowledge of more than 200 specialists from around the world.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Provides 39 extended entries on topics central to world folklore.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Details the folklore and folkways of roughly 170 cultural groups.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Entries discuss the background, beliefs, oral and theatrical traditions, arts and crafts, and contemporary concerns &lt;br /&gt;
          of each cultural group.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Each entry cites numerous works for further reading.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A generous selection of maps and illustrations makes world folklore come to life.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A list of entries and a cumulative subject index, repeated in each volume, offer convenient access to the vast body of &lt;br /&gt;
          information contained in the encyclopedia.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A selected, general bibliography directs students and general readers to the most important broad studies of world &lt;br /&gt;
          folklore.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A glossary defines key terms, theories, and concepts.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Benefits:&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Helps students learn about cultures, customs, and daily life around the world.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Fosters respect and appreciation for the many ethnic traditions behind contemporary American culture.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Provides valuable background information for the study of world religions, holidays, and festivals.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Offers a valuable context for understanding world history, politics, literature, and the arts.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Invites students to compare and contrast the values and experiences of different cultures.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Fosters critical reading skills and serves as a model for student research.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 1: Topics and Themes, Africa, Australia and Oceania&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          Certain themes and topics are central to world foklore. The thematic essays in this volume discuss such matters as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Antiquarianism&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Cultural Evolution&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Ethnopoetics&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Gender&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Invented Tradition&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Nativism&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Primitivism&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Public Folklore&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Race&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Trickster&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many more.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 2: Southeast Asia and India, Central and East Asia, Middle East&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          Included in this volume are entries on such cultural groups and regions as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Bali&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; China&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Duna&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Iban&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Kazakh&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Mongol&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Orissa&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Palestine&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Tonga&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Uyghur&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many others.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 3: Europe&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          Included in this volume are entries on the folklore of such cultural regions and groups as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Ashkenazim&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Basque&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Brittany&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Flanders&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Germany&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Isle of Man&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Roma&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Russia&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Sami&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Ukraine&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many more.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 4: North and South America&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          The entries in this volume explore the folk traditions of such regions and groups as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Appalachia&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Choctaw&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Haiti&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Island Carib&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Maya&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Quechua&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Seminole&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Western Inuit and Yupik&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Xavante&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Yanomami&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many more.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          Because folklore is the essence of daily life, this encyclopedia addresses the curriculum needs of high school students and is &lt;br /&gt;
          also an indispensable resource for teachers. In addition, anyone researching folklore in a public library will find this the first&lt;br /&gt;
           place to look for detailed information about cultural traditions around the world.&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlLCCardNumber&amp;quot; class=&amp;quot;description&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;LC Card Number:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblLCCardNumber&amp;quot;&amp;gt;2005019219&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlLCCClass&amp;quot; class=&amp;quot;description&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;LCC Class:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblLCCClass&amp;quot;&amp;gt;GR35 &amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlDeweyClass&amp;quot; class=&amp;quot;description&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Dewey Class:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblDeweyClass&amp;quot;&amp;gt;398&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Marshall Cavendish [http://www.marshallcavendish.com/marshallcavendish/academic/redirector.xml?url=/marshallcavendish/academic/catalogue/books/regionalism_n_regional_security/9812102108.xml product page] ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_font&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Regionalism &amp;amp;amp; Regional Security&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/table&amp;gt;&lt;br /&gt;
  &amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;&amp;quot; align=&amp;quot;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;ISBN Number&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;9812102108&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Series&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;null&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Title&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;The New Terrorism: Anatomy, Trends and Counter-strategies&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Imprint&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Eastern Universities Press&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Specifications&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;152 mm X 227 mm, 368 pp, limp with flaps, 500 gms&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Authors&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Andrew Tan &amp;amp;amp; Kumar Ramakrishna (eds)&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Target Audience&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;University lecturers/researchers, undergraduate students, academicians and those interested in Regional Security Studies.&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Price (SG)&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;S$ 39.00&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Price (US)&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;US$ 30.00&amp;lt;/font&amp;gt; &amp;amp;nbsp; &amp;lt;a href=&amp;quot;javascript: addToCart()&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/marshallcavendish/components/db_content/MC_AC_redirector/pic/addCart.gif&amp;quot; border=&amp;quot;0&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    The terrorist attacks of September 11, 2001 on the World Trade Center in New York and the Pentagon in Washington represented a true watershed in world history.&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    The attacks revealed the horrifying nature of the so-called &amp;quot;new terrorism&amp;quot; that has emerged in the post-Cold War era. The new terrorism is defined by four key features:&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/font&amp;gt;&lt;br /&gt;
  &amp;lt;ul&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;sheer lethality&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;religious dimension&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;networked organizational structure&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;greatly enhanced striking power &amp;amp;nbsp; &amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;/ul&amp;gt;&lt;br /&gt;
  &amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;&amp;quot; align=&amp;quot;&amp;quot;&amp;gt;As September 11 clearly demonstrated, the new terrorists can leverage on technology to inflict catastrophic damage even on superpowers, let alone other states.&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    To examine the new dimensions of terrorism, a conference was organized in Singapore in late March 2002 that brought together a number of leading experts from a wide range of backgrounds from America, Europe and Asia, and the key findings are presented in this volume under the following headings:&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/font&amp;gt;&lt;br /&gt;
  &amp;lt;ul&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Anatomy of the new terrorism&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Terrorist trends and patterns in the Asia-Pacific region&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Religion and terrorism: Southeast Asian perspectives&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Formulating counter-strategies &amp;amp;nbsp; &amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;/ul&amp;gt;&lt;br /&gt;
  &amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;&amp;quot; align=&amp;quot;&amp;quot;&amp;gt; &amp;lt;span style=&amp;quot;font-weight: bold;&amp;quot;&amp;gt; &amp;lt;b&amp;gt; About the Author: &amp;lt;/b&amp;gt; &amp;lt;/span&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
    Both Andrew Tan and Kumar Ramakrishna are Assistant Professors at the Institute of Defence and Strategic Studies, Nanyang Technological University, Singapore.&amp;lt;br/&amp;gt;&lt;br /&gt;
    Andrew Tan received his M.Phil from Cambridge and PhD from the University of Sydney. His research interests are conflict (inter-state tensions, insurgencies, terrorism and force modernization) in Southeast Asia, and security issues in Asia.&amp;lt;br/&amp;gt;&lt;br /&gt;
    Kumar Ramakrishna obtained his PhD in History from the University of London in 1999. He teaches and writes on the history of strategic thought as well as the war on terror.&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/font&amp;gt;&lt;br /&gt;
  &amp;lt;td width=&amp;quot;18.666662&amp;quot; style=&amp;quot;valign: top; background-color: white ; &amp;quot; rowspan=&amp;quot;1&amp;quot; colspan=&amp;quot;1&amp;quot;&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;td width=&amp;quot;570.666524&amp;quot; style=&amp;quot;valign: top; background-color: white ; &amp;quot; rowspan=&amp;quot;1&amp;quot; colspan=&amp;quot;1&amp;quot;&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;td width=&amp;quot;18.666662&amp;quot; style=&amp;quot;valign: top; background-color: white ; &amp;quot; rowspan=&amp;quot;1&amp;quot; colspan=&amp;quot;1&amp;quot;&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Oxford University Press (USA) [http://www.us.oup.com/us/?view=usa homepage] ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;isbnSummaryDetails&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;h2&amp;gt; &amp;lt;a href=&amp;quot;/us/catalog/general/subject/HistoryAmerican/ColonialRevolutionary/?view=usa&amp;amp;amp;ci=0195162471&amp;quot;&amp;gt;The Glorious Cause&amp;lt;/a&amp;gt; &amp;lt;/h2&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;subTitle&amp;quot;&amp;gt; The American Revolution, 1763-1789 &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;edition&amp;quot;&amp;gt; Revised and Expanded Edition &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;byline&amp;quot;&amp;gt; Robert Middlekauff &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;isbnNumber&amp;quot;&amp;gt;0195162471&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;format&amp;quot;&amp;gt;hardback&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;publicationDate&amp;quot;&amp;gt; Feb 2005 &amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;price&amp;quot;&amp;gt; $37.50 &amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt; The classic history of the American Revolution--now in an updated and expanded twentieth anniversary edition &amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;related&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;h3&amp;gt;More &amp;lt;/h3&amp;gt;&lt;br /&gt;
      &amp;lt;!-- /HistoryAmerican/ColonialRevolutionary --&amp;gt;&lt;br /&gt;
      &amp;lt;a href=&amp;quot;/us/catalog/general/subject/HistoryAmerican/?view=usa&amp;amp;amp;sf=all&amp;quot;&amp;gt;History, American&amp;lt;/a&amp;gt; &amp;amp;gt; &amp;lt;a href=&amp;quot;/us/catalog/general/subject/HistoryAmerican/ColonialRevolutionary/?view=usa&amp;amp;amp;sf=all&amp;quot;&amp;gt;Colonial &amp;amp; Revolutionary&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;!--/isbnSummaryDetails--&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Oxford University Press (USA) [http://www.us.oup.com/us/catalog/general/subject/HistoryAmerican/ColonialRevolutionary/?view=usa&amp;amp;amp;ci=0195162471#Product_Details Product page]===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;isbnProperties isbnSummary&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;isbnSummaryHeading&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;h1&amp;gt;The Glorious Cause&amp;lt;/h1&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;subTitle&amp;quot;&amp;gt; The American Revolution, 1763-1789 &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;edition&amp;quot;&amp;gt; Revised and Expanded Edition &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;byline&amp;quot;&amp;gt; Robert Middlekauff &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--/isbnSummaryHeading--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;cover&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;bookShot&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/images/covers/0195162471.jpg&amp;quot;&lt;br /&gt;
                     ... alt=&amp;quot;bookshot&amp;quot; /&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;addToCart&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;http://www.us.oup.com/us/cart/cart.jsp?op=a&amp;amp;amp;i=0195162471&amp;amp;amp;c=85&amp;amp;amp;q=1&amp;amp;amp;r=http%3A%2F%2Fwww.us.oup.com%2Fus%2Fcatalog%2Fgeneral%2Fsubject%2FHistoryAmerican%2FColonialRevolutionary%2F%3Fview%3Dusa%26ci%3D0195162471&amp;quot;&amp;gt;Add to Cart&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--/cover--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;isbnSummaryDetails&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;isbnNumber&amp;quot;&amp;gt;0195162471&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;format&amp;quot;&amp;gt;hardback&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;pages&amp;quot;&amp;gt; 760 pages &amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;generalinfo&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;publicationDate&amp;quot;&amp;gt;Feb 2005,&amp;amp;nbsp;&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;availability&amp;quot;&amp;gt; In Stock &amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;cost&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h2&amp;gt;Price:&amp;lt;/h2&amp;gt;&lt;br /&gt;
        $37.50 &amp;lt;span class=&amp;quot;discountCode&amp;quot;&amp;gt;(02)&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;shipping&amp;quot;&amp;gt; &amp;lt;a href=&amp;quot;/us/assets/shippingInfo.jsp?si=1.5&amp;amp;amp;so=3.75&amp;amp;amp;sc=0&amp;amp;amp;isi=5&amp;amp;amp;iso=5&amp;amp;amp;isc=0&amp;quot; target=&amp;quot;_blank&amp;quot; onclick=&amp;quot;window.open(this.href, this.target, 'height=445,width=445,scrollbars');&lt;br /&gt;
					  return false;&amp;quot;&amp;gt;Shipping Details&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;moreSeries redArrow&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;See more from the series&amp;lt;/h3&amp;gt;&lt;br /&gt;
        &amp;lt;ul&amp;gt;&lt;br /&gt;
          &amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;/us/catalog/general/series/OxfordHistoryoftheUnitedStates/?view=usa&amp;quot;&amp;gt;Oxford History of the United States, Vol. 3&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;/ul&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;!--moreSeries--&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--/isbnSummaryDetails--&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Thomson Gale détail page produit ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div id =&amp;quot; title_main&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Contemporary Literary Criticism&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; credits&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;h2&amp;gt;Excerpts from Criticism of the Works of Today's Novelists, Poets, Playwrights, Short Story Writers, Scriptwriters, &amp;amp; Other Creative Writers&amp;lt;/h2&amp;gt;&lt;br /&gt;
		Volume 1&amp;lt;/li&amp;gt;&lt;br /&gt;
		&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;i&amp;gt;Published by Thomson Gale&amp;lt;/i&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; description&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;p&amp;gt;Each print volume in this long-standing series profiles approximately 6-8 novelists, poets, playwrights and other creative writers by providing full-text or excerpted criticism taken from books, magazines, literary reviews, newspapers and scholarly journals. Among those profiled in this volume are:&amp;lt;/p&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Kingsley Amis&lt;br /&gt;
		&amp;lt;li&amp;gt;John Dos Passos&lt;br /&gt;
		&amp;lt;li&amp;gt;Hermann Hesse&lt;br /&gt;
		&amp;lt;li&amp;gt;Ezra Pound&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;!-- Description --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; detail&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Published/Released:&amp;lt;strong&amp;gt; March 1973&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;ISBN: &amp;lt;strong&amp;gt;0-8103-0100-8&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Product number: &amp;lt;strong&amp;gt;001415&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Page count: &amp;lt;strong&amp;gt;485 pp./vol.&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Shipping Weight: &amp;lt;strong&amp;gt;5.00 lbs (2.27 kgs)&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;  &amp;lt;!-- /detail--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; price&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;P&amp;gt;Price: US $205.00&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Décompte des Eléments de Citation ==&lt;br /&gt;
&lt;br /&gt;
Using the above examples, various parts of the citations (titles, authors, etc.) can be grouped together for comparision:&lt;br /&gt;
&lt;br /&gt;
=== Titres de Livres : ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;title&amp;quot; class=&amp;quot;producttitle&amp;quot;&amp;amp;gt;The 1920's&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO product detail page)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;title&amp;quot;&amp;amp;gt; &amp;amp;lt;a href=&amp;quot;...&amp;quot;&amp;amp;gt;The Greenwood Encyclopedia of World Folklore and Folklife&amp;amp;lt;/a&amp;amp;gt; &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood Press homepage)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;lblTitle&amp;quot; class=&amp;quot;book_headline block&amp;quot;&amp;amp;gt;The Greenwood Encyclopedia of World Folklore and Folklife&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(Greenwood Press product detail page)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;35%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;amp;gt;Title&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;65%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;text&amp;quot;&amp;amp;gt;The New Terrorism: Anatomy, Trends and Counter-strategies&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
(Marshall Cavendish product detail page)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;h2&amp;amp;gt; &amp;amp;lt;a href=&amp;quot;...&amp;quot;&amp;amp;gt;The Glorious Cause&amp;amp;lt;/a&amp;amp;gt; &amp;amp;lt;/h2&amp;amp;gt;&lt;br /&gt;
(Oxford Univ. Press, homepage)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;h1&amp;amp;gt;The Glorious Cause&amp;amp;lt;/h1&amp;amp;gt;&lt;br /&gt;
(OUP, product detail page)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;h2&amp;amp;gt;Contemporary Literary Criticism&amp;amp;lt;/h2&amp;amp;gt;&lt;br /&gt;
(Thomson Gale, product detail page)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;ctlBookDetailHeader_lblTitle&amp;quot; class=&amp;quot;ProdTitle&amp;quot;&amp;amp;gt;Talk and Interaction in Social Research Methods&amp;amp;lt;/span&amp;amp;gt; (SAGE Publications)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also, many examples where books presented in table format with Title as cell header, or presented &amp;quot;Title: &amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Livre Nom de Série : ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;serieslbl&amp;quot; class=&amp;quot;productsubtitle&amp;quot;&amp;amp;gt;&amp;amp;lt;a href=&amp;quot;...&amp;quot;&amp;amp;gt;Teaching With Documents Series&amp;amp;lt;/a&amp;amp;gt;&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sous-titre : ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;subtitle&amp;quot; class=&amp;quot;productsubtitle&amp;quot;&amp;amp;gt;&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;sub_title&amp;quot;&amp;amp;gt;[Four Volumes]&amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood, homepage)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;lblSubTitle&amp;quot; class=&amp;quot;book_subline&amp;quot;&amp;amp;gt;[Four Volumes]&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(Greenwood, product page)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;subTitle&amp;quot;&amp;amp;gt; The American Revolution, 1763-1789 &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(OUP)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Auteur : ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;credit&amp;quot; class=&amp;quot;productauthor&amp;quot;&amp;amp;gt;&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;author&amp;quot;&amp;amp;gt;William M. Clements&amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;35%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;amp;gt;Authors&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;65%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;text&amp;quot;&amp;amp;gt;Andrew Tan &amp;amp;amp; Kumar Ramakrishna (eds)&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
(Marshall Cavendish)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;byline&amp;quot;&amp;amp;gt; Robert Middlekauff &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(OUP)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Date de Publication : ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;pubdate&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;amp;gt;11/2001&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO -- see table structure)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div id=&amp;quot;pnlPubDate&amp;quot;&amp;amp;gt; &amp;amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;amp;gt;Publication Date:&amp;amp;lt;/span&amp;amp;gt; &amp;amp;lt;span id=&amp;quot;lblPubDate&amp;quot;&amp;amp;gt;12/30/2005&amp;amp;lt;/span&amp;amp;gt; &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood, detail page)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span class=&amp;quot;publicationDate&amp;quot;&amp;amp;gt; Feb 2005 &amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(OUP)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;li&amp;amp;gt;Published/Released:&amp;amp;lt;strong&amp;amp;gt; March 1973&amp;amp;lt;/strong&amp;amp;gt;&amp;amp;lt;/li&amp;amp;gt;&lt;br /&gt;
(Thomson Gale)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Volumes : ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;td ... class=&amp;quot;productdetailhead&amp;quot;&amp;amp;gt;&amp;amp;lt;span id=&amp;quot;volumeslabel&amp;quot; class=&amp;quot;productdetailhead&amp;quot;&amp;amp;gt;Volumes&amp;amp;lt;/span&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;td ... class=&amp;quot;productdetailbody&amp;quot;&amp;amp;gt;&amp;amp;lt;span id=&amp;quot;volumes&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;amp;gt;1&amp;amp;lt;/span&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ISBN : ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;td class=&amp;quot;productdetailhead&amp;quot; ...&amp;amp;gt;&amp;amp;lt;span id=&amp;quot;ISBNLabel&amp;quot;&amp;amp;gt;ISBN&amp;amp;lt;/span&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;td class=&amp;quot;productdetailbody&amp;quot;&amp;amp;gt;1-57607-785-3&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;isbn&amp;quot;&amp;amp;gt;0-313-32847-1&amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood, homepage)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div id=&amp;quot;pnlIsbn&amp;quot;&amp;amp;gt; &amp;amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;amp;gt;ISBN:&amp;amp;lt;/span&amp;amp;gt; &amp;amp;lt;span id=&amp;quot;lblIsbn&amp;quot;&amp;amp;gt;0-313-32847-1&amp;amp;lt;/span&amp;amp;gt; &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood, product page)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;35%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;amp;gt;ISBN Number&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;65%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;text&amp;quot;&amp;amp;gt;9812102108&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
(Marshall Cavendish)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span class=&amp;quot;isbnNumber&amp;quot;&amp;amp;gt;0195162471&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(OUP)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;li&amp;amp;gt;ISBN: &amp;amp;lt;strong&amp;amp;gt;0-8103-0100-8&amp;amp;lt;/strong&amp;amp;gt;&amp;amp;lt;/li&amp;amp;gt;&lt;br /&gt;
(Thomson Gale)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Edition Livre : ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;edition&amp;quot;&amp;amp;gt; Revised and Expanded Edition &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(OUP)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Added by [[User:Tim White|Tim]]&lt;br /&gt;
&lt;br /&gt;
== RFC vCard Exemple ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
9.  References&lt;br /&gt;
&lt;br /&gt;
   [ISO 8601]    ISO 8601:1988 - Data elements and interchange formats -&lt;br /&gt;
                 Information interchange - Representation of dates and&lt;br /&gt;
                 times - The International Organization for&lt;br /&gt;
                 Standardization, June, 1988.&lt;br /&gt;
&lt;br /&gt;
   [ISO 8601 TC] ISO 8601, Technical Corrigendum 1 - Data elements and&lt;br /&gt;
                 interchange formats - Information interchange -&lt;br /&gt;
                 Representation of dates and times - The International&lt;br /&gt;
                 Organization for Standardization, May, 1991.&lt;br /&gt;
&lt;br /&gt;
   [ISO 9070]    ISO 9070, Information Processing - SGML support&lt;br /&gt;
                 facilities - Registration Procedures for Public Text&lt;br /&gt;
                 Owner Identifiers, April, 1991.&lt;br /&gt;
&lt;br /&gt;
   [CCITT E.163] Recommendation E.163 - Numbering Plan for The&lt;br /&gt;
                 International Telephone Service, CCITT Blue Book,&lt;br /&gt;
                 Fascicle II.2, pp.  128-134, November, 1988.&lt;br /&gt;
&lt;br /&gt;
   [CCITT X.121] Recommendation X.121 - International Numbering Plan for&lt;br /&gt;
                 Public Data Networks, CCITT Blue Book, Fascicle VIII.3,&lt;br /&gt;
                 pp. 317-332, November, 1988.&lt;br /&gt;
&lt;br /&gt;
   [CCITT X.520] Recommendation X.520 - The Directory - Selected&lt;br /&gt;
                 Attribute Types, November 1988.&lt;br /&gt;
&lt;br /&gt;
   [CCITT X.521] Recommendation X.521 - The Directory - Selected Object&lt;br /&gt;
                 Classes, November 1988.&lt;br /&gt;
&lt;br /&gt;
   [MIME-DIR]    Howes, T., Smith, M., and F. Dawson, &amp;quot;A MIME Content-&lt;br /&gt;
                 Type for Directory Information&amp;quot;, RFC 2425, September&lt;br /&gt;
                 1998.&lt;br /&gt;
&lt;br /&gt;
   [RFC 1738]    Berners-Lee, T., Masinter, L., and M. McCahill,&lt;br /&gt;
                 &amp;quot;Uniform Resource Locators (URL)&amp;quot;, RFC 1738, December&lt;br /&gt;
                 1994.&lt;br /&gt;
&lt;br /&gt;
   [RFC 1766]    Alvestrand, H., &amp;quot;Tags for the Identification of&lt;br /&gt;
                 Languages&amp;quot;, RFC 1766, March 1995.&lt;br /&gt;
&lt;br /&gt;
   [RFC 1872]    Levinson, E., &amp;quot;The MIME Multipart/Related Content-&lt;br /&gt;
                 type&amp;quot;, RFC 1872, December 1995.&lt;br /&gt;
&lt;br /&gt;
   [RFC 2045]    Freed, N., and N. Borenstein, &amp;quot;Multipurpose Internet&lt;br /&gt;
                 Mail Extensions (MIME) - Part One: Format of Internet&lt;br /&gt;
                 Message Bodies&amp;quot;, RFC 2045, November 1996.&lt;br /&gt;
&lt;br /&gt;
   [RFC 2046]    Freed, N., and N. Borenstein, &amp;quot;Multipurpose Internet&lt;br /&gt;
                 Mail Extensions (MIME) - Part Two: Media Types&amp;quot;, RFC&lt;br /&gt;
                 2046, November 1996.&lt;br /&gt;
&lt;br /&gt;
   [RFC 2047]    Moore, K., &amp;quot;Multipurpose Internet Mail Extensions&lt;br /&gt;
                 (MIME) - Part Three: Message Header Extensions for&lt;br /&gt;
                 Non-ASCII Text&amp;quot;, RFC 2047, November 1996.&lt;br /&gt;
&lt;br /&gt;
   [RFC 2048]    Freed, N., Klensin, J., and J. Postel, &amp;quot;Multipurpose&lt;br /&gt;
                 Internet Mail Extensions (MIME) - Part Four:&lt;br /&gt;
                 Registration Procedures&amp;quot;, RFC 2048, January 1997.&lt;br /&gt;
&lt;br /&gt;
   [RFC 2119]    Bradner, S., &amp;quot;Key words for use in RFCs to Indicate&lt;br /&gt;
                 Requirement Levels&amp;quot;, BCP 14, RFC 2119, March 1997.&lt;br /&gt;
&lt;br /&gt;
   [RFC 2234]    Crocker, D., and P. Overell, &amp;quot;Augmented BNF for Syntax&lt;br /&gt;
                 Specifications: ABNF&amp;quot;, RFC 2234, November 1997.&lt;br /&gt;
&lt;br /&gt;
   [UNICODE]     &amp;quot;The Unicode Standard - Version 2.0&amp;quot;, The Unicode&lt;br /&gt;
                 Consortium, July 1996.&lt;br /&gt;
&lt;br /&gt;
   [VCARD]       Internet Mail Consortium, &amp;quot;vCard - The Electronic&lt;br /&gt;
                 Business Card Version 2.1&amp;quot;,&lt;br /&gt;
                 http://www.imc.org/pdi/vcard-21.txt, September 18,&lt;br /&gt;
                 1996.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://www.faqs.org/rfcs/rfc2426.html vCard RFC]&lt;br /&gt;
&lt;br /&gt;
== W3C XHTML Spec Exemple ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;&amp;lt;a name=&amp;quot;refs&amp;quot; id=&amp;quot;refs&amp;quot;&amp;gt;E.&amp;lt;/a&amp;gt; References&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;This appendix is informative.&amp;lt;/strong&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-css2&amp;quot; id=&amp;quot;ref-css2&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[CSS2]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.w3.org/TR/1998/REC-CSS2-19980512&amp;quot;&amp;gt;Cascading Style Sheets, level 2 (CSS2) Specification&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, B. Bos, H. W. Lie, C. Lilley, I. Jacobs, 12 May 1998.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.w3.org/TR/REC-CSS2&amp;quot;&amp;gt;Latest version&amp;lt;/a&amp;gt; available at: http://www.w3.org/TR/REC-CSS2&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-dom&amp;quot; id=&amp;quot;ref-dom&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[DOM]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001&amp;quot;&amp;gt;Document Object Model (DOM) Level 1 Specification&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, Lauren Wood &amp;lt;em lang=&amp;quot;lt&amp;quot; xml:lang=&amp;quot;lt&amp;quot;&amp;gt;et al.&amp;lt;/em&amp;gt;, 1 October&lt;br /&gt;
1998.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.w3.org/TR/REC-DOM-Level-1&amp;quot;&amp;gt;Latest version&amp;lt;/a&amp;gt; available at: http://www.w3.org/TR/REC-DOM-Level-1&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-dom2&amp;quot; id=&amp;quot;ref-dom2&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[DOM2]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113&amp;quot;&amp;gt;Document Object Model (DOM) Level 2 Core Specification&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, A. Le&amp;amp;#160;Hors, &amp;lt;em lang=&amp;quot;lt&amp;quot; xml:lang=&amp;quot;lt&amp;quot;&amp;gt;et&lt;br /&gt;
al.&amp;lt;/em&amp;gt;, 13 November 2000.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.w3.org/TR/DOM-Level-2-Core&amp;quot;&amp;gt;Latest version&amp;lt;/a&amp;gt; available at: http://www.w3.org/TR/DOM-Level-2-Core&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-html4&amp;quot; id=&amp;quot;ref-html4&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[HTML]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.w3.org/TR/1999/REC-html401-19991224&amp;quot;&amp;gt;HTML 4.01 Specification&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, D. Raggett, A. Le&amp;amp;#160;Hors, I. Jacobs, 24 December 1999.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.w3.org/TR/html401&amp;quot;&amp;gt;Latest version&amp;lt;/a&amp;gt; available at: http://www.w3.org/TR/html401&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-posix.1&amp;quot; id=&amp;quot;ref-posix.1&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[POSIX.1]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;ISO/IEC 9945-1:1990 Information Technology - Portable Operating System Interface (POSIX) - Part 1: System Application Program Interface (API) [C Language]&amp;lt;/cite&amp;gt;&amp;quot;, Institute of Electrical&lt;br /&gt;
and Electronics Engineers, Inc, 1990.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a id=&amp;quot;ref-rfc2045&amp;quot; name=&amp;quot;ref-rfc2045&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[RFC2045]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.ietf.org/rfc/rfc2045.txt&amp;quot;&amp;gt;Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, N. Freed and N. Borenstein, November&lt;br /&gt;
1996. Note that this RFC obsoletes RFC1521, RFC1522, and RFC1590.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-rfc2046&amp;quot; id=&amp;quot;ref-rfc2046&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[RFC2046]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.ietf.org/rfc/rfc2046.txt&amp;quot;&amp;gt;RFC2046: Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, N. Freed and N. Borenstein, November 1996.&amp;lt;br /&amp;gt;&lt;br /&gt;
Available at &amp;lt;a href=&amp;quot;http://www.ietf.org/rfc/rfc2046.txt&amp;quot;&amp;gt;http://www.ietf.org/rfc/rfc2046.txt&amp;lt;/a&amp;gt;. Note that this RFC obsoletes RFC1521, RFC1522, and RFC1590.&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-rfc2119&amp;quot; id=&amp;quot;ref-rfc2119&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[RFC2119]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.ietf.org/rfc/rfc2119.txt&amp;quot;&amp;gt;RFC2119: Key words for use in RFCs to Indicate Requirement Levels&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, S. Bradner, March 1997.&amp;lt;br /&amp;gt;&lt;br /&gt;
Available at: http://www.ietf.org/rfc/rfc2119.txt&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-rfc2376&amp;quot; id=&amp;quot;ref-rfc2376&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[RFC2376]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.ietf.org/rfc/rfc2376.txt&amp;quot;&amp;gt;RFC2376: XML Media Types&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, E. Whitehead, M. Murata, July 1998.&amp;lt;br /&amp;gt;&lt;br /&gt;
This document is obsoleted by [&amp;lt;a href=&amp;quot;#ref-rfc3023&amp;quot;&amp;gt;RFC3023&amp;lt;/a&amp;gt;].&amp;lt;br /&amp;gt;&lt;br /&gt;
Available at: http://www.ietf.org/rfc/rfc2376.txt&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-rfc2396&amp;quot; id=&amp;quot;ref-rfc2396&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[RFC2396]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.ietf.org/rfc/rfc2396.txt&amp;quot;&amp;gt;RFC2396: Uniform Resource Identifiers (URI): Generic Syntax&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, T. Berners-Lee, R. Fielding, L. Masinter, August 1998.&amp;lt;br /&amp;gt;&lt;br /&gt;
This document updates RFC1738 and RFC1808.&amp;lt;br /&amp;gt;&lt;br /&gt;
Available at: http://www.ietf.org/rfc/rfc2396.txt&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-rfc2854&amp;quot; id=&amp;quot;ref-rfc2854&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[RFC2854]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.ietf.org/rfc/rfc2854.txt&amp;quot;&amp;gt;RFC2854: The text/html Media Type&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, D. Conolly, L. Masinter, June 2000.&amp;lt;br /&amp;gt;&lt;br /&gt;
Available at: http://www.ietf.org/rfc/rfc2854.txt&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-rfc3023&amp;quot; id=&amp;quot;ref-rfc3023&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[RFC3023]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.ietf.org/rfc/rfc3023.txt&amp;quot;&amp;gt;RFC3023: XML Media Types&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, M. Murata, S. St.Laurent, D. Kohn, January 2001.&amp;lt;br /&amp;gt;&lt;br /&gt;
This document obsoletes [&amp;lt;a href=&amp;quot;#ref-rfc2376&amp;quot;&amp;gt;RFC2376&amp;lt;/a&amp;gt;].&amp;lt;br /&amp;gt;&lt;br /&gt;
Available at: http://www.ietf.org/rfc/rfc3023.txt&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a id=&amp;quot;ref-rfc3066&amp;quot; name=&amp;quot;ref-rfc3066&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[RFC3066]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;a href=&amp;quot;http://www.ietf.org/rfc/rfc3066.txt&amp;quot;&amp;gt;Tags for the Identification of Languages&amp;lt;/a&amp;gt;&amp;quot;, H. Alvestrand, January 2001.&amp;lt;br /&amp;gt;&lt;br /&gt;
Available at: http://www.ietf.org/rfc/rfc3066.txt&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a id=&amp;quot;ref-rfc3236&amp;quot; name=&amp;quot;ref-rfc3236&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[RFC3236]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;a href=&amp;quot;http://www.ietf.org/rfc/rfc3236.txt&amp;quot;&amp;gt;The 'application/xhtml+xml' Media Type&amp;lt;/a&amp;gt;&amp;quot;, M. Baker, P. Stark, January 2002.&amp;lt;br /&amp;gt;&lt;br /&gt;
Available at: http://www.ietf.org/rfc/rfc3236.txt&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a id=&amp;quot;ref-xhtml-mathml&amp;quot; name=&amp;quot;ref-xhtml-mathml&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[XHTML+MathML]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;lt;cite&amp;gt;&amp;quot;&amp;lt;a href=&amp;quot;http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd&amp;quot;&amp;gt;XHTML plus Math 1.1 &amp;lt;abbr title=&amp;quot;Document Type Definition&amp;quot;&amp;gt;DTD&amp;lt;/abbr&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, &amp;quot;A.2 MathML as a DTD Module&amp;quot;, Mathematical&lt;br /&gt;
Markup Language (MathML) Version 2.0. Available at: http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a id=&amp;quot;ref-xhtmlmime&amp;quot; name=&amp;quot;ref-xhtmlmime&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[XHTMLMIME]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.w3.org/TR/2002/NOTE-xhtml-media-types-20020801&amp;quot;&amp;gt;XHTML Media Types&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, Masayasu Ishikawa, 1 August 2002.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.w3.org/TR/xhtml-media-types&amp;quot;&amp;gt;Latest version&amp;lt;/a&amp;gt; available at: http://www.w3.org/TR/xhtml-media-types&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a id=&amp;quot;ref-xhtmlmod&amp;quot; name=&amp;quot;ref-xhtmlmod&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[XHTMLMOD]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;cite&amp;gt;&amp;lt;a href=&amp;quot;http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410&amp;quot;&amp;gt;Modularization of XHTML&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;quot;, M. Altheim et al., 10 April 2001.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.w3.org/TR/xhtml-modularization&amp;quot;&amp;gt;Latest version&amp;lt;/a&amp;gt; available at: http://www.w3.org/TR/xhtml-modularization&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-xml&amp;quot; id=&amp;quot;ref-xml&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[XML]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;a href=&amp;quot;http://www.w3.org/TR/2000/REC-xml-20001006&amp;quot;&amp;gt;Extensible Markup Language (XML) 1.0 Specification (Second Edition)&amp;lt;/a&amp;gt;&amp;quot;, T. Bray, J. Paoli, C. M. Sperberg-McQueen, E. Maler, 6 October&lt;br /&gt;
2000.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.w3.org/TR/REC-xml&amp;quot;&amp;gt;Latest version&amp;lt;/a&amp;gt; available at: http://www.w3.org/TR/REC-xml&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-xmlns&amp;quot; id=&amp;quot;ref-xmlns&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[XMLNS]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;a href=&amp;quot;http://www.w3.org/TR/1999/REC-xml-names-19990114&amp;quot;&amp;gt;Namespaces in XML&amp;lt;/a&amp;gt;&amp;quot;, T. Bray, D. Hollander, A. Layman, 14 January 1999.&amp;lt;br /&amp;gt;&lt;br /&gt;
XML namespaces provide a simple method for qualifying names used in XML documents by associating them with namespaces identified by URI.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.w3.org/TR/REC-xml-names&amp;quot;&amp;gt;Latest version&amp;lt;/a&amp;gt; available at: http://www.w3.org/TR/REC-xml-names&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dt&amp;gt;&amp;lt;a name=&amp;quot;ref-xmlc14n&amp;quot; id=&amp;quot;ref-xmlc14n&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;[XMLC14N]&amp;lt;/strong&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/dt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;&amp;quot;&amp;lt;a href=&amp;quot;http://www.w3.org/TR/2001/REC-xml-c14n-20010315&amp;quot;&amp;gt;Canonical XML Version 1.0&amp;lt;/a&amp;gt;&amp;quot;, J. Boyer, 15 March 2001.&amp;lt;br /&amp;gt;&lt;br /&gt;
This document describes a method for generating a physical representation, the canonical form, of an XML document.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.w3.org/TR/xml-c14n&amp;quot;&amp;gt;Latest version&amp;lt;/a&amp;gt; available at: http://www.w3.org/TR/xml-c14n&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://www.w3.org/TR/xhtml1/#refs XHTML1.0 Spec references]&lt;br /&gt;
&lt;br /&gt;
== CiteProc Sortie XHTML ==&lt;br /&gt;
&lt;br /&gt;
The XHTML output for CiteProc[http://xbiblio.sourceforge.net/citeproc.html] wasn't designed per se as a microformat, but is probably not a bad place to start. It is desgined to handle a wide range of content. Here is the APA output:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
 &amp;lt;div id=&amp;quot;bibliography&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;h3&amp;gt;References&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;p id=&amp;quot;Brenner2000a&amp;quot; class=&amp;quot;bibref&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;creator&amp;quot;&amp;gt;Brenner, N.&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;date&amp;quot;&amp;gt; (&amp;lt;span class=&amp;quot;year&amp;quot;&amp;gt;2000&amp;lt;/span&amp;gt;) &amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;title&amp;quot;&amp;gt;The Urban Question as a Scale Question: Reflections &lt;br /&gt;
    on Henri Lefebre, Urban Theory and the Politics of Scale, &amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;container&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;span class=&amp;quot;title&amp;quot; style=&amp;quot;font-style: italic&amp;quot;&amp;gt;International Journal of &lt;br /&gt;
        Urban and Regional Research, &amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;span class=&amp;quot;volume&amp;quot;&amp;gt;24&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;span class=&amp;quot;issue&amp;quot;&amp;gt;(2)&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;span class=&amp;quot;locator&amp;quot;&amp;gt;, pp. 361–78&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;/span&amp;gt;.&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;p id=&amp;quot;NW2000-0207&amp;quot; class=&amp;quot;bibref&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;span class=&amp;quot;creator&amp;quot;&amp;gt;Newsweek&amp;lt;/span&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;year&amp;quot;&amp;gt;2000a&amp;lt;/span&amp;gt;&lt;br /&gt;
       &amp;lt;span class=&amp;quot;month&amp;quot;&amp;gt;, February&amp;lt;/span&amp;gt;&lt;br /&gt;
       &amp;lt;span class=&amp;quot;day&amp;quot;&amp;gt; 7&amp;lt;/span&amp;gt;) &lt;br /&gt;
     &amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;span class=&amp;quot;title&amp;quot;&amp;gt;The Grandmas Pay a Visit, &amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;span class=&amp;quot;container&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;span class=&amp;quot;volume&amp;quot;&amp;gt;135&amp;lt;/span&amp;gt;&lt;br /&gt;
       &amp;lt;span class=&amp;quot;issue&amp;quot;&amp;gt;(6)&amp;lt;/span&amp;gt;&lt;br /&gt;
       &amp;lt;span class=&amp;quot;locator&amp;quot;&amp;gt;, pp. 45&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;/span&amp;gt;.&lt;br /&gt;
   &amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;p id=&amp;quot;Veer1996a&amp;quot; class=&amp;quot;bibref&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;span class=&amp;quot;creator&amp;quot;&amp;gt;van der Veer, P.&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;span class=&amp;quot;date&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;year&amp;quot;&amp;gt; (1996) &amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;span class=&amp;quot;title&amp;quot;&amp;gt;Riots and Rituals: The Construction of Violence &lt;br /&gt;
       and Public Space in Hindu Nationalism&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;span class=&amp;quot;container&amp;quot;&amp;gt;, In Brass, P.&amp;lt;span class=&amp;quot;role&amp;quot;&amp;gt; (Ed.)&amp;lt;/span&amp;gt;. &lt;br /&gt;
       &amp;lt;span class=&amp;quot;title&amp;quot; style=&amp;quot;font-style: italic&amp;quot;&amp;gt;Riots and Pogroms.&amp;lt;/span&amp;gt;&lt;br /&gt;
       &amp;lt;span class=&amp;quot;origin&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;place&amp;quot;&amp;gt;New York&amp;lt;/span&amp;gt;&lt;br /&gt;
       &amp;lt;span class=&amp;quot;publisher&amp;quot;&amp;gt;: NYU Press&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
       &amp;lt;span class=&amp;quot;locator&amp;quot;&amp;gt;, pp. 154–76&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;/span&amp;gt;.&lt;br /&gt;
   &amp;lt;/p&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;
== ACM Digital Library Exemples de Résultats de Recherche ==&lt;br /&gt;
&lt;br /&gt;
The [http://www.acm.org/dl/ ACM Digital Library] is a heavily used computer science literature database.&lt;br /&gt;
&lt;br /&gt;
First, the markup for one entry from the table of contents page for the ACM TACO (Transactions on Architecture and Code Optimization) journal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;td align=&amp;quot;left&amp;quot; class=&amp;quot;small-text&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;citation.cfm?id=1113841.1113842&amp;amp;coll=portal&amp;amp;dl=ACM&amp;amp;idx=1113841&amp;amp;part=periodical&amp;amp;WantType=periodical&amp;amp;title=ACM%20Transactions%20on%20Architecture%20and%20Code%20Optimization%20%28TACO%29&amp;amp;CFID=68451946&amp;amp;CFTOKEN=20517650&amp;quot;class=&amp;quot;medium-text&amp;quot; target=&amp;quot;_self&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Improving WCET by applying a WC code-positioning optimization &amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
 Wankang Zhao, David Whalley, Christopher Healy, Frank Mueller&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt; Pages: 335 - 365&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;Full text available:&amp;amp;nbsp;&amp;lt;A HREF=&amp;quot;ft_gateway.cfm?id=1113842&amp;amp;type=pdf&amp;amp;coll=portal&amp;amp;dl=ACM&amp;amp;CFID=68451946&amp;amp;CFTOKEN=20517650&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;images/pdf_logo.gif&amp;quot; ... height=&amp;quot;16&amp;quot; hspace=&amp;quot;1&amp;quot; alt=&amp;quot;pdf format&amp;quot; border=&amp;quot;0&amp;quot; align=&amp;quot;texttop&amp;quot;&amp;gt;Pdf&amp;lt;/A&amp;gt;(510&amp;amp;nbsp;KB)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;smaller-text&amp;quot;&amp;gt;&amp;lt;table border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;td class=&amp;quot;smaller-text&amp;quot; nowrap&amp;gt;Additional Information:&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td class=&amp;quot;smaller-text&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;img/doc_blank.gif&amp;quot; ... height=&amp;quot;16&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; align=&amp;quot;texttop&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;A HREF=&amp;quot;citation.cfm?id=1113842&amp;amp;jmp=cit&amp;amp;coll=portal&amp;amp;dl=ACM&amp;amp;CFID=68451946&amp;amp;CFTOKEN=20517650#CIT&amp;quot; target=&amp;quot;_self&amp;quot;&amp;gt;full citation&amp;lt;/a&amp;gt;, &lt;br /&gt;
&amp;lt;A HREF=&amp;quot;citation.cfm?id=1113842&amp;amp;jmp=abstract&amp;amp;coll=portal&amp;amp;dl=ACM&amp;amp;CFID=68451946&amp;amp;CFTOKEN=20517650#abstract&amp;quot; target=&amp;quot;_self&amp;quot;&amp;gt;abstract&amp;lt;/A&amp;gt;, &lt;br /&gt;
&amp;lt;A HREF=&amp;quot;citation.cfm?id=1113842&amp;amp;jmp=references&amp;amp;coll=portal&amp;amp;dl=ACM&amp;amp;CFID=68451946&amp;amp;CFTOKEN=20517650#references&amp;quot; target=&amp;quot;_self&amp;quot;&amp;gt; references&amp;lt;/A&amp;gt;, &lt;br /&gt;
&amp;lt;A HREF=&amp;quot;citation.cfm?id=1113842&amp;amp;jmp=indexterms&amp;amp;coll=portal&amp;amp;dl=ACM&amp;amp;CFID=68451946&amp;amp;CFTOKEN=20517650#indexterms&amp;quot; target=&amp;quot;_self&amp;quot;&amp;gt; index terms&amp;lt;/A&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The markup for the 'full citation' page is similar, with a little more information about the authors.&lt;br /&gt;
&lt;br /&gt;
Here's the markup from the 'ACM Ref' link, which apparently is how they suggest you format it:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Zhao, W., Whalley, D., Healy, C., and Mueller, F. 2005. &lt;br /&gt;
Improving WCET by applying a WC code-positioning optimization. &lt;br /&gt;
&amp;lt;i&amp;gt;ACM Trans. Archit. Code Optim.&amp;lt;/i&amp;gt; 2, 4 (Dec. 2005), 335-365. &lt;br /&gt;
DOI= http://doi.acm.org/10.1145/1113841.1113842&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== IEEE IEEExplore Syntaxe Résultats de Recherche ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;td width=&amp;quot;96%&amp;quot; class=&amp;quot;bodyCopyBlackLargeSpaced&amp;quot; valign=&amp;quot;middle&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;On the parallel execution time of tiled loops&amp;lt;/strong&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Hogstedt, K.; Carter, L.; Ferrante, J.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;A href='/xpl/RecentIssue.jsp?punumber=71'&amp;gt;Parallel and Distributed Systems, IEEE Transactions on&amp;lt;/A&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Volume: 14&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;Issue: 3&lt;br /&gt;
&amp;amp;nbsp;March 2003 &amp;lt;br /&amp;gt;&lt;br /&gt;
Page(s):  307- 321&amp;lt;br&amp;gt;&lt;br /&gt;
Digital Object Identifier 10.1109/TPDS.2003.1189587&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;menu0&amp;quot; style=&amp;quot;display:block&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Summary:&amp;amp;nbsp;&amp;lt;/strong&amp;gt; Many &lt;br /&gt;
computationally-intensive programs, such as those for differential equations, spatial &lt;br /&gt;
interpolation, and dynamic programming, spend a large portion of their execution time in &lt;br /&gt;
multiply-nested loops that have a regular stencil of data dependences.....&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CiteSeer résultats de recherche sur la database  ==&lt;br /&gt;
&lt;br /&gt;
The [http://citeseer.ist.psu.edu CiteSeer] database has been another heavily used Computer Science online resource, and it has minimal markup:&lt;br /&gt;
&lt;br /&gt;
Here's what you see on the main page for a given paper - this information is duplicated everywhere on the page, but this is where it's formatted most like an academic citation:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;font size=-1&amp;gt;Yoshio Kataoka, Michael D. Ernst, William G. Griswold, and David Notkin. &lt;br /&gt;
Automated support for program refactoring using invariants. In ICSM, pages 736-- 743, &lt;br /&gt;
November 2001. http://citeseer.ist.psu.edu/kataoka01automated.html &amp;amp;nbsp; &lt;br /&gt;
&amp;lt;a href=&amp;quot;http://citeseer.ist.psu.edu/check/1791139&amp;quot;&amp;gt;More&amp;lt;/a&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Clicking on the 'More' link in the above text gets you a page with a listing of all the ways they found it written out as a citation in other papers. This is an example of how they mark up each of those entries:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Yoshio Kataoka, Michael D. Ernst, William G. Griswold, and David Notkin. &lt;br /&gt;
&amp;lt;i&amp;gt;Automated support for program refactoring using invariants&amp;lt;/i&amp;gt;.&lt;br /&gt;
 In ICSM, pages 736-- 743, November 2001.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CiteULike.org liste de citation ==&lt;br /&gt;
&lt;br /&gt;
[http://www.citeulike.org/ CiteULike] is a shared reference database site that allows organization using tags and ratings. The site imports from many unstructured web resources using mostly screen-scraping plugins (I think --Mike) &lt;br /&gt;
&lt;br /&gt;
Here is an example of the markup for one article on the main page:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
  &amp;lt;td...&amp;gt;&lt;br /&gt;
    &amp;lt;ul&amp;gt;&lt;br /&gt;
      &amp;lt;li&amp;gt;&lt;br /&gt;
        &amp;lt;a class=&amp;quot;title&amp;quot; href=&amp;quot;/user/jrw/article/505272&amp;quot;&amp;gt;Geometric phases in adiabatic open quantum systems&amp;lt;/a&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;vague&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;vague&amp;quot;&amp;gt;by&amp;lt;a class=&amp;quot;author&amp;quot; href=&amp;quot;/user/jrw/author/Sarandy&amp;quot;&amp;gt;Sarandy&amp;lt;/a&amp;gt; MS, &lt;br /&gt;
          &amp;lt;a class=&amp;quot;author&amp;quot; href=&amp;quot;/user/jrw/author/Lidar&amp;quot;&amp;gt;Lidar&amp;lt;/a&amp;gt; DA&amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;div class=&amp;quot;vague&amp;quot;&amp;gt;&lt;br /&gt;
          posted to &amp;lt;a class=&amp;quot;tag&amp;quot; rel=&amp;quot;tag&amp;quot; href=&amp;quot;/user/jrw/tag/geometry&amp;quot;&amp;gt;geometry&amp;lt;/a&amp;gt;&lt;br /&gt;
          &amp;lt;a class=&amp;quot;tag&amp;quot; rel=&amp;quot;tag&amp;quot; href=&amp;quot;/user/jrw/tag/physics&amp;quot;&amp;gt;physics&amp;lt;/a&amp;gt;&lt;br /&gt;
          &amp;lt;a class=&amp;quot;tag&amp;quot; rel=&amp;quot;tag&amp;quot; href=&amp;quot;/user/jrw/tag/quantum&amp;quot;&amp;gt;quantum&amp;lt;/a&amp;gt;&lt;br /&gt;
          &amp;lt;a class=&amp;quot;tag&amp;quot; rel=&amp;quot;tag&amp;quot; href=&amp;quot;/user/jrw/tag/quantum-information&amp;quot;&amp;gt;quantum-information&amp;lt;/a&amp;gt;&lt;br /&gt;
          by &amp;lt;a href=&amp;quot;/user/jrw&amp;quot;&amp;gt;jrw&amp;lt;/a&amp;gt;&lt;br /&gt;
          as &amp;lt;img alt=&amp;quot;x&amp;quot;src=&amp;quot;http://static.citeulike.org/img/star2.png&amp;quot; /&amp;gt;&lt;br /&gt;
          on&amp;amp;nbsp;2006-02-14 18:36:22&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;/ul&amp;gt;&lt;br /&gt;
  &amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And here is markup from the detail page for another publication:&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;content&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;table...&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td...&amp;gt;&amp;lt;h1&amp;gt;T-Coffee: A novel method for fast and accurate multiple sequence alignment.&amp;lt;/h1&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vague&amp;quot;&amp;gt;&amp;lt;i&amp;gt;J Mol Biol&amp;lt;/i&amp;gt;, Vol. 302, No. 1. (8 September 2000), pp. 205-217.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Authors&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;black&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;author&amp;quot; href=&amp;quot;/user/ffranca/author/Notredame&amp;quot;&amp;gt;Notredame&amp;lt;/a&amp;gt; C&amp;lt;/span&amp;gt;,&lt;br /&gt;
    &amp;lt;span class=&amp;quot;black&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;author&amp;quot; href=&amp;quot;/user/ffranca/author/Higgins&amp;quot;&amp;gt;Higgins&amp;lt;/a&amp;gt; DG&amp;lt;/span&amp;gt;, &lt;br /&gt;
    &amp;lt;span class=&amp;quot;black&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;author&amp;quot; href=&amp;quot;/user/ffranca/author/Heringa&amp;quot;&amp;gt;Heringa&amp;lt;/a&amp;gt; J&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
..&lt;br /&gt;
&amp;lt;table...&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td ...&amp;gt;&lt;br /&gt;
      &amp;lt;h2&amp;gt;Online Article&lt;br /&gt;
        &amp;lt;span class=&amp;quot;Z3988&amp;quot;&lt;br /&gt;
          title=&amp;quot;ctx_ver=Z39.88-2004&amp;amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;amp;amp;rfr_id=info:sid/citeulike.org/citeulike&amp;amp;amp;rft.aufirst=&amp;amp;amp;rft_id=info:doi/10%2e1006%2fjmbi%2e2000%2e4042&amp;amp;amp;rft.spage=205&amp;amp;amp;rft.issue=1&amp;amp;amp;rft.aulast=Notredame&amp;amp;amp;rft.title=J+Mol+Biol&amp;amp;amp;rft.epage=217&amp;amp;amp;rft.issn=0022%2d2836&amp;amp;amp;rft.volume=302&amp;amp;amp;rft.auinit=C&amp;amp;amp;rft.atitle=T%2dCoffee%3a+A+novel+method+for+fast+and+accurate+multiple+sequence+alignment%2e&amp;amp;amp;date=2000-9-8&amp;amp;amp;rft.genre=article&amp;amp;amp;genre=article&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
      &amp;lt;/h2&amp;gt;&lt;br /&gt;
    &amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
  &amp;lt;td ...&amp;gt;&lt;br /&gt;
    &amp;lt;ul&amp;gt;&lt;br /&gt;
      &amp;lt;li&amp;gt;&lt;br /&gt;
        &amp;lt;span class=&amp;quot;black&amp;quot;&amp;gt;DOI:&amp;lt;/span&amp;gt;&lt;br /&gt;
        &amp;lt;a accesskey=&amp;quot;1&amp;quot; href=&amp;quot;http://dx.doi.org/10.1006/jmbi.2000.4042&amp;quot; rel=&amp;quot;nofollow&amp;quot;&amp;gt;View article online&amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;/li&amp;gt;&lt;br /&gt;
      &amp;lt;li&amp;gt;&lt;br /&gt;
        &amp;lt;span class=&amp;quot;black&amp;quot;&amp;gt;Pubmed:&amp;lt;/span&amp;gt;&lt;br /&gt;
        &amp;lt;a accesskey=&amp;quot;2&amp;quot; &lt;br /&gt;
          href=&amp;quot;http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&amp;amp;db=pubmed&amp;amp;dopt=Abstract&amp;amp;list_uids=10964570&amp;quot; rel=&amp;quot;nofollow&amp;quot;&amp;gt;&lt;br /&gt;
            View article online&amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;/li&amp;gt;&lt;br /&gt;
      &amp;lt;li&amp;gt;&lt;br /&gt;
        &amp;lt;span class=&amp;quot;black&amp;quot;&amp;gt;Hubmed:&amp;lt;/span&amp;gt; &lt;br /&gt;
        &amp;lt;a accesskey=&amp;quot;3&amp;quot; href=&amp;quot;http://www.hubmed.org/display.cgi?uids=10964570&amp;quot; rel=&amp;quot;nofollow&amp;quot;&amp;gt;&lt;br /&gt;
          View article online&amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;/ul&amp;gt;&lt;br /&gt;
  &amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Amazon.com info de citation ==&lt;br /&gt;
&lt;br /&gt;
This is from a detail page on Amazon.com for a book.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a name='citing' &amp;gt;&amp;lt;/a&amp;gt;&amp;lt;b&amp;gt;This book cites 10 books:&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;ul...&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt; &lt;br /&gt;
    &amp;lt;a href=&amp;quot;http://www.amazon.com/exec/obidos/tg/detail/-/1555424236/ref=sid_dp_dp/002-6751255-9290456?%5Fencoding=UTF8&amp;amp;v=glance&amp;quot;&amp;gt;&lt;br /&gt;
      The New Faculty Member: Supporting and Fostering Professional Development (Jossey-Bass Higher and Adult Education Series)&lt;br /&gt;
    &amp;lt;/a&amp;gt;&lt;br /&gt;
    by Robert Boice on&lt;br /&gt;
    &amp;lt;a href=&amp;quot;/gp/reader/0780311361/ref=sib_ab_dp_pg/002-6751255-9290456?%5Fencoding=UTF8&amp;amp;p=S04X&amp;amp;checkSum=vptuDOjULIOadVNe9UFX36fnIKktwxxQOeBmFQupyrA%3D&amp;quot;&amp;gt;page 156&amp;lt;/a&amp;gt;, and &amp;lt;a href=&amp;quot;/gp/reader/0780311361/ref=sib_ab_dp_pg/002-6751255-9290456?%5Fencoding=UTF8&amp;amp;p=S088&amp;amp;checkSum=vptuDOjULINm2bvcL37hZR%2BcnJi%2F9hhUyu1%2FlXWnOM8%3D&amp;quot;&amp;gt;&lt;br /&gt;
      page 275&lt;br /&gt;
    &amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;&lt;br /&gt;
    &amp;lt;a href=&amp;quot;http://www.amazon.com/exec/obidos/tg/detail/-/0137947364/ref=sid_dp_dp/002-6751255-9290456?%5Fencoding=UTF8&amp;amp;v=glance&amp;quot; &amp;gt;Science, Technology and Society&amp;lt;/a&amp;gt;&lt;br /&gt;
    by Robert E. McGinn on&lt;br /&gt;
    &amp;lt;a href=&amp;quot;/gp/reader/0780311361/ref=sib_ab_dp_pg/002-6751255-9290456?%5Fencoding=UTF8&amp;amp;p=S023&amp;amp;checkSum=vptuDOjULIMgFwAeeT8gWiDHmklkxfy%2BGug%2BAS7UI2Y%3D&amp;quot;&amp;gt;page 54&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== PubMed Medical Exemple Journal == &lt;br /&gt;
&lt;br /&gt;
Still another example of markup in the wild, coming from a search for &amp;quot;pancreas&amp;quot; in the New England Journal of Medicine from pubmed.org.&lt;br /&gt;
&lt;br /&gt;
Note the title attribute with the expanded version of the canonical abbreviation for the journal.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td ...&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;/entrez/query.fcgi?cmd=Retrieve&amp;amp;db=pubmed&amp;amp;dopt=Abstract&amp;amp;list_uids=15371579&amp;amp;itool=iconnoabstr&amp;amp;query_hl=2&amp;amp;itool=pubmed_docsum&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;img alt=&amp;quot;No abstract&amp;quot; id=&amp;quot;No abstract_15371579&amp;quot; ... Title=&amp;quot;No abstract&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td ...&amp;gt;Cystic neoplasms of the pancreas.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;font size=&amp;quot;-1&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span title=&amp;quot;The New England journal of medicine.&amp;quot;&amp;gt;N Engl J Med.&amp;lt;/span&amp;gt;&lt;br /&gt;
 2004 Sep 16;351(12):1218-26. Review. No abstract available. &amp;lt;br&amp;gt;&lt;br /&gt;
PMID: 15371579 [PubMed - indexed for MEDLINE]&lt;br /&gt;
&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Wikipedia Exemples ==&lt;br /&gt;
&lt;br /&gt;
=== Wikipedia Livre ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;li id=&amp;quot;_note-8&amp;quot;&amp;gt;&amp;lt;b&amp;gt;&amp;lt;a href=&amp;quot;#_ref-8&amp;quot; title=&amp;quot;&amp;quot;&amp;gt;^&amp;lt;/a&amp;gt;&amp;lt;/b&amp;gt; &lt;br /&gt;
&amp;lt;i&amp;gt;Tuva Or Bust!&amp;lt;/i&amp;gt;, Ralph Leighton, W. W. Norton &amp;amp;amp; Company, 2000, &lt;br /&gt;
&amp;lt;a href=&amp;quot;/w/index.php?title=Special:Booksources&amp;amp;amp;isbn=0393320693&amp;quot; &lt;br /&gt;
    class=&amp;quot;internal&amp;quot;&amp;gt;ISBN 0393320693&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Wikipedia Article Journal ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;li id=&amp;quot;_note-science1982-Dickerson&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;&amp;lt;a href=&amp;quot;#_ref-science1982-Dickerson_0&amp;quot; title=&amp;quot;&amp;quot;&amp;gt;^&amp;lt;/a&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
 &amp;lt;cite style=&amp;quot;font-style:normal&amp;quot;&amp;gt;Dickerson et al. (1982). &amp;quot;The Anatomy of A-, B-, and Z-DNA&amp;quot;. &lt;br /&gt;
 &amp;lt;i&amp;gt;Science&amp;lt;/i&amp;gt; &amp;lt;b&amp;gt;216&amp;lt;/b&amp;gt;: 475-485. DOI: 10.1126/science.7071593.&amp;lt;/cite&amp;gt;&lt;br /&gt;
 &amp;lt;sup&amp;gt;&amp;lt;a href=&amp;quot;...&amp;quot; class=&amp;quot;external text&amp;quot; title=&amp;quot;...&amp;quot;&amp;gt;PubMed&amp;lt;/a&amp;gt;&amp;lt;/sup&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Wikipedia Cas en Justice ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/wiki/Perfect_10_v._Google_Inc&amp;quot; title=&amp;quot;Perfect 10 v. Google Inc&amp;quot;&amp;gt;Perfect 10 v. Google Inc&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;CASE NO. CV 04-9484 AHM (SHx)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;a href=&amp;quot;/wiki/Central_District_of_California&amp;quot; title=&amp;quot;Central District of California&amp;quot;&amp;gt;CDCA&amp;lt;/a&amp;gt; 2006&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Thumbnails in Web searches that impinged upon market for images of that size were not fair use.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Wikipedia Loi US ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;cite id=&amp;quot;endnote_FISA&amp;quot; style=&amp;quot;font-style: normal;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;#ref_FISA&amp;quot; title=&amp;quot;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;↑&amp;lt;/b&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/cite&amp;gt;&amp;amp;#160; &lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.law.cornell.edu/uscode/html/uscode50/usc_sup_01_50_10_36.html&amp;quot; &lt;br /&gt;
    class=&amp;quot;external text&amp;quot; title=&amp;quot;...&amp;quot;&amp;gt;50 U.S.C Chapter 36 Foreign Intelligence Surveillance&amp;lt;/a&amp;gt;&lt;br /&gt;
     The complete text of the Foreign Intelligence Surveillance Act&lt;br /&gt;
     &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The sections of the law are cited inline, without markup, as &amp;quot;50 U.S.C. §1801(a) (4),(5),(6)&amp;quot; for example.&lt;br /&gt;
&lt;br /&gt;
=== Wikipedia Présentation Conférence ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Conference presentation by Pillar&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.duke.edu/web/tiss/archives/conferencerecords/media/Pillar.htm&amp;quot; &lt;br /&gt;
class=&amp;quot;external text&amp;quot; title=&amp;quot;...&amp;quot;&amp;gt;Foreign and Domestic Publics and the Counter-terrorism Effort&amp;lt;/a&amp;gt;&lt;br /&gt;
 (Duke University, 21-2 March 2003).&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Wikipedia Source Historique ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;U.S. War Dept., &amp;lt;a href=&amp;quot;http://cdl.library.cornell.edu/moa/browse.monographs/waro.html&amp;quot; &lt;br /&gt;
                         class=&amp;quot;external text&amp;quot; title=&amp;quot;...&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;i&amp;gt;The War of the Rebellion: a Compilation of the Official Records of the Union and Confederate Armies&amp;lt;/i&amp;gt;&amp;lt;/a&amp;gt;,&lt;br /&gt;
 U.S. Government Printing Office, 1880–1901. 70 very large volumes of letters and reports written by both armies. &lt;br /&gt;
 Online at &amp;lt;a href=&amp;quot;http://cdl.library.cornell.edu/moa/browse.monographs/waro.html&amp;quot; &lt;br /&gt;
                 class=&amp;quot;external autonumber&amp;quot; title=&amp;quot;...&amp;quot;&amp;gt;[6]&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== EPrints.org : sortie générée  ==&lt;br /&gt;
&lt;br /&gt;
EPrints uses the DC terms for information in the head element of an entry:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;ECS EPrints Service - Winnowing Ontologies based on Application Use&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;link href=&amp;quot;http://purl.org/DC/elements/1.0/&amp;quot; rel=&amp;quot;schema.DC&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;meta content=&amp;quot;Winnowing Ontologies based on Application Use&amp;quot; name=&amp;quot;DC.title&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;meta content=&amp;quot;Alani, Harith&amp;quot; name=&amp;quot;DC.creator&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;meta content=&amp;quot;Harris, Stephen&amp;quot; name=&amp;quot;DC.creator&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;meta content=&amp;quot;O'Neil, Ben&amp;quot; name=&amp;quot;DC.creator&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;meta content=&amp;quot;The requirements of specific ... that ontology.&amp;quot; name=&amp;quot;DC.description&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;meta content=&amp;quot;2006-01-01&amp;quot; name=&amp;quot;DC.date&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;meta content=&amp;quot;Conference or Workshop Item&amp;quot; name=&amp;quot;DC.type&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;meta content=&amp;quot;http://eprints.ecs.soton.ac.uk/12070/&amp;quot; name=&amp;quot;DC.identifier&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;meta content=&amp;quot;pdf http://eprints.ecs.soton.ac.uk/12070/01/Alani-final.pdf&amp;quot; name=&amp;quot;DC.format&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link title=&amp;quot;Full Text (application/pdf)&amp;quot; href=&amp;quot;http://eprints.ecs.soton.ac.uk/12070/01/Alani-final.pdf&amp;quot; &lt;br /&gt;
    class=&amp;quot;fulltext&amp;quot; type=&amp;quot;application/pdf&amp;quot; rel=&amp;quot;alternate&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And the following markup for the page's HTML:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;td valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;div class=&amp;quot;page&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h1 class=&amp;quot;pagetitle&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;field_title&amp;quot;&amp;gt;Winnowing Ontologies based on Application Use&amp;lt;/span&amp;gt;&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;intro&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;citation&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;field_authors&amp;quot;&amp;gt;Alani, H., Harris, S. and O'Neil, B.&amp;lt;/span&amp;gt; &lt;br /&gt;
(&amp;lt;span class=&amp;quot;field_year&amp;quot;&amp;gt;2006&amp;lt;/span&amp;gt;)&lt;br /&gt;
&amp;lt;span class=&amp;quot;field_title&amp;quot;&amp;gt;Winnowing Ontologies based on Application Use&amp;lt;/span&amp;gt;. &lt;br /&gt;
  In &amp;lt;i&amp;gt;Proceedings of &lt;br /&gt;
&amp;lt;span class=&amp;quot;field_conference&amp;quot;&amp;gt;3rd European Semantic Web Conference (ESWC)&amp;lt;/span&amp;gt;&amp;lt;/i&amp;gt;, &lt;br /&gt;
&amp;lt;span class=&amp;quot;field_confloc&amp;quot;&amp;gt;Budva, Montenegro&amp;lt;/span&amp;gt;.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== BibDesk Export HTML par défaut ==&lt;br /&gt;
&lt;br /&gt;
Due to some recent improvements, BibDesk allows extensive user customization of its HTML output.&lt;br /&gt;
It has had an HTML template system since 2004, and the default template hasn't changed much since then.&lt;br /&gt;
Here is the default template, which I wrote long before I knew what little I know now of semantic HTML - Mike.&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;content&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;&amp;lt;$fileName.lastPathComponent/&amp;gt;&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dt class=&amp;quot;Key&amp;quot; id=&amp;quot;&amp;lt;$citeKey/&amp;gt;&amp;quot;&amp;gt;&amp;lt;$citeKey/&amp;gt;&amp;lt;dt /&amp;gt;&lt;br /&gt;
&amp;lt;dd class=&amp;quot;Pub&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;span class=&amp;quot;Title&amp;quot;&amp;gt;&amp;lt;$fields.Title/&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
	&amp;lt;span class=&amp;quot;Author&amp;quot;&amp;gt;&amp;lt;$pubAuthorsForDisplay/&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
	&amp;lt;span class=&amp;quot;Journal&amp;quot;&amp;gt;&amp;lt;$fields.Journal/&amp;gt;&amp;lt;/span&amp;gt;&amp;amp;nbsp;&lt;br /&gt;
	&amp;lt;span class=&amp;quot;Volume&amp;quot;&amp;gt;&amp;lt;$fields.Volume/&amp;gt;&amp;lt;/span&amp;gt;&amp;amp;nbsp;&lt;br /&gt;
	&amp;lt;span class=&amp;quot;Pages&amp;quot;&amp;gt;&amp;lt;$fields.Pages/&amp;gt;&amp;lt;/span&amp;gt;&amp;amp;nbsp;&lt;br /&gt;
	(&amp;lt;span class=&amp;quot;Date&amp;quot;&amp;gt;&amp;lt;$fields.Year/&amp;gt;&amp;lt;/span&amp;gt;)&amp;lt;br /&amp;gt;&lt;br /&gt;
	&amp;lt;span class=&amp;quot;Url&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;$fields.Url/&amp;gt;&amp;quot;&amp;gt;&amp;lt;$fields.Url/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
	&amp;lt;div class=&amp;quot;Abstract&amp;quot;&amp;gt;&amp;lt;$fields.Abstract/&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;dd /&amp;gt;&lt;br /&gt;
&amp;lt;/dl&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;
Here's a popular modification to the default template, also from 2004, which was used to make this [http://craftsrv1.epfl.ch/~cherubini/extranet/bib/CSCL.bib.html annotated reading list].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;trigger&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;table width=&amp;quot;100%&amp;quot;  border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;20%&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;Author&amp;quot;&amp;gt;&amp;lt;$pubFields.Author/&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;5%&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;Year&amp;quot;&amp;gt;&amp;lt;$pubFields.Year/&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;55%&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;Title&amp;quot;&amp;gt;&amp;lt;$pubFields.Title/&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;10%&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;&amp;lt;$pubType/&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;               &lt;br /&gt;
        &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;a href=&amp;quot;&amp;lt;$pubFields.Url/&amp;gt;&amp;quot;&amp;gt; &amp;lt;img src=&amp;quot;pdf_icon.gif&amp;quot; border=&amp;quot;0&amp;quot;&amp;gt; &amp;lt;$citeKey/&amp;gt; ~ &amp;lt;$pubFields.Url/&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p class=&amp;quot;Annote&amp;quot;&amp;gt;Abstract:&amp;lt;br&amp;gt;&amp;lt;$pubFields.Abstract/&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;Notes: &amp;lt;br&amp;gt;&amp;lt;$pubFields.Annote/&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;Keywords: &amp;lt;$pubFields.Keywords/&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;BibTeX: &amp;lt;$bibTeXString/&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;$RTFValue/&amp;gt;&lt;br /&gt;
&amp;lt;/p&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;
Note that the tags that look like &amp;amp;lt;$foo/&amp;amp;gt; are templating entries and are replaced by values from each cited publication object.&lt;br /&gt;
&lt;br /&gt;
== Schéma implicite ==&lt;br /&gt;
&lt;br /&gt;
Many of the examples have simple citations in &amp;amp;lt;p&amp;amp;gt;, &amp;amp;lt;div&amp;amp;gt;, &amp;amp;lt;td&amp;amp;gt; etc with no further coding; i.e. &amp;amp;lt;td&amp;amp;gt;Book Title. Author. Publisher, date.&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following lists the most common markup:&lt;br /&gt;
&lt;br /&gt;
=== Titres des Livres : ===&lt;br /&gt;
&lt;br /&gt;
*id=&amp;quot;title&amp;quot;&lt;br /&gt;
*class=&amp;quot;producttitle&amp;quot;&lt;br /&gt;
*class=&amp;quot;title&amp;quot;&lt;br /&gt;
*id=&amp;quot;lblTitle&amp;quot;&lt;br /&gt;
*h1&lt;br /&gt;
*h2&lt;br /&gt;
*&amp;amp;lt;dt&amp;amp;gt;&amp;amp;lt;/dt&amp;amp;gt;&lt;br /&gt;
*&amp;amp;lt;cite&amp;amp;gt;&amp;amp;lt;/cite&amp;amp;gt;&lt;br /&gt;
*&amp;amp;lt;strong&amp;amp;gt;&amp;amp;lt;/strong&amp;amp;gt;&lt;br /&gt;
*&amp;amp;lt;i&amp;amp;gt;&amp;amp;lt;/i&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Book Series : ===&lt;br /&gt;
&lt;br /&gt;
*id=&amp;quot;serieslbl&amp;quot;&lt;br /&gt;
*class=&amp;quot;productsubtitle&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Sous-titres : ===&lt;br /&gt;
&lt;br /&gt;
*id=&amp;quot;subtitle&amp;quot;&lt;br /&gt;
*class=&amp;quot;productsubtitle&amp;quot;&lt;br /&gt;
*class=&amp;quot;sub_title&amp;quot;&lt;br /&gt;
*id=&amp;quot;lblSubTitle&amp;quot;&lt;br /&gt;
*class=&amp;quot;book_subline&amp;quot;&lt;br /&gt;
*class=&amp;quot;subTitle&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Auteur : ===&lt;br /&gt;
&lt;br /&gt;
*id=&amp;quot;credit&amp;quot;&lt;br /&gt;
*class=&amp;quot;productauthor&amp;quot;&lt;br /&gt;
*class=&amp;quot;author&amp;quot;&lt;br /&gt;
*Authors (table cell)&lt;br /&gt;
*class=&amp;quot;byline&amp;quot;&lt;br /&gt;
*class=&amp;quot;creator&amp;quot;&lt;br /&gt;
*class=&amp;quot;role&amp;quot;&lt;br /&gt;
*Inside &amp;amp;lt;dd&amp;amp;gt;&amp;amp;lt;/dd&amp;amp;gt; with other elements&lt;br /&gt;
*&amp;amp;lt;li&amp;amp;gt;&amp;amp;lt;/li&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Date de Publication : ===&lt;br /&gt;
&lt;br /&gt;
*id=&amp;quot;pubdate&amp;quot;&lt;br /&gt;
*Publication Date: (table cell)&lt;br /&gt;
*id=&amp;quot;pnlPubDate&amp;quot;&lt;br /&gt;
*Publication Date: &lt;br /&gt;
*class=&amp;quot;publicationdate&amp;quot;&lt;br /&gt;
*Published/Released: &lt;br /&gt;
*class=&amp;quot;date&amp;quot; w/ class=&amp;quot;year&amp;quot;, class=&amp;quot;month&amp;quot;, class=&amp;quot;day&amp;quot;&lt;br /&gt;
*Inside &amp;amp;lt;dd&amp;amp;gt;&amp;amp;lt;/dd&amp;amp;gt; with other elements&lt;br /&gt;
&lt;br /&gt;
=== Publisher : ===&lt;br /&gt;
&lt;br /&gt;
*class=&amp;quot;publisher&amp;quot;&lt;br /&gt;
*class=&amp;quot;origin&amp;quot; (publication location)&lt;br /&gt;
&lt;br /&gt;
=== Volumes : ===&lt;br /&gt;
&lt;br /&gt;
*class=&amp;quot;volume&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Numéro de Parution : ===&lt;br /&gt;
&lt;br /&gt;
*class=&amp;quot;issue&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Numéros de pages : ===&lt;br /&gt;
&lt;br /&gt;
*class=&amp;quot;locator&amp;quot; (inclusive page numbers)&lt;br /&gt;
&lt;br /&gt;
=== ISBN : ===&lt;br /&gt;
&lt;br /&gt;
*class=&amp;quot;isbn&amp;quot;&lt;br /&gt;
*id=&amp;quot;pnlIsbn&amp;quot;&lt;br /&gt;
*id=&amp;quot;lblIsbn&amp;quot;&lt;br /&gt;
*class=&amp;quot;isbnNumber&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Edition Livre : ===&lt;br /&gt;
&lt;br /&gt;
*class=&amp;quot;edition&amp;quot;&lt;br /&gt;
*Inside &amp;amp;lt;dd&amp;amp;gt;&amp;amp;lt;/dd&amp;amp;gt; with other elements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== sortie Citeproc XHTML ==&lt;br /&gt;
&lt;br /&gt;
Je suis l'auteur du projet [http://xbiblio.sourceforge.net/citeproc.html citeproc], qui inclut une sorte de micro-format (bien que je ne l'ai jamais pensé comme tel). Voir [http://xbiblio.sourceforge.net/examples/apa-en.html ici] pour un exemple.  La différence comparée au modèle dérivé de bibtex est que c'est a) plus générique et b) hiérachique. &lt;br /&gt;
&lt;br /&gt;
Ce serait possible, certainement, de faire un modèle plat si pour quelque raison il y avait une bonne raison technique de ne pas aller hiérarchique.&lt;br /&gt;
&lt;br /&gt;
'''The burden of proof is on *going* hierarchical, rather than a simpler flat solution.  Complexity must be justified, not simplicity.'''&lt;br /&gt;
&lt;br /&gt;
... mais alors vous avez besoin de penser à l'extérieur de la boîte Bibtext dans tous les cas. Tout modèle de la sorte devrait pouvoir gérer les citations légales, les articles de magazine, les brevets, etc. ; pas simplement une gamme étroite de types BibTex.&lt;br /&gt;
&lt;br /&gt;
'''Selon le [[process-fr|processus]] des microformats, les microformats sont conçues pour supporter la pratique existante sur le Web, tout autre chose devrait être omise au moins pour la première version.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Styles ==&lt;br /&gt;
Ceci ne définit PAS un format, mais à la place montre comment le format devrait être affiché. Ceci est quelque chose en dehors du champ direct de ce projet. Les styles CSS gèreront le &amp;quot;look-and-feel&amp;quot; du texte et l'auteur peut le placer dans n'importe quel ordre. Ces liens sont mentionnés pour deux raisons, un pour de l'information, l'autre est que nous sachions au moins rencontrer les propriétés minimum qui sont utilisées dans les styles.&lt;br /&gt;
&lt;br /&gt;
* [http://www.liu.edu/cwis/cwp/library/workshop/citmla.htm Style MLA]&lt;br /&gt;
* [http://www.bu.edu/library/guides/citation.html styles Chicago, MLA, et APA]&lt;br /&gt;
* [http://www.legalbluebook.com/ Blue Book] pour les citations légales&lt;br /&gt;
* [http://www.columbia.edu/cu/cup/cgos/idx_basic.html Columbia University Citation Style] développpé pour les citations modernes sur l'internet&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-pt-br&amp;diff=34625</id>
		<title>hcard-pt-br</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-pt-br&amp;diff=34625"/>
		<updated>2008-11-18T00:17:02Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* New Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=hCard=&lt;br /&gt;
hCard é um simples, aberto formato distribuído para represetar pessoas, companias, organizações e lugares usando uma representação 1:1 de propriedades e valores de padrão vCard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]) em [[semantic-xhtml|semântica XHTML]]. hCard é um dos muitos padrões abertos de [[microformats|microformato]] apropriado para ser inserido em (X)HTML, Atom, RSS, e o arbitrário XML.&lt;br /&gt;
&lt;br /&gt;
Quer começar a escrever em [[hcard|hCard]]?  Use o [http://microformats.org/code/hcard/creator criador de hCard] &lt;br /&gt;
&lt;br /&gt;
para detalhar algumas informações de contato e publicá-la, ou seguir [[hcard-authoring|hCard authoring tips]] para adicionar marcação hCard em sua página atual de contato.&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Especificação ==&lt;br /&gt;
&lt;br /&gt;
=== Editor ===&lt;br /&gt;
[http://tantek.com/ Tantek Çelik], [http://technorati.com Technorati, Inc.]&lt;br /&gt;
&lt;br /&gt;
=== Autores ===&lt;br /&gt;
* [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;
{{MicroFormatCopyrightStatement2004}}&lt;br /&gt;
&lt;br /&gt;
=== Patentes ===&lt;br /&gt;
{{MicroFormatPatentStatement}}&lt;br /&gt;
&lt;br /&gt;
=== Inspiração e Reconhecimentos ===&lt;br /&gt;
Agradecimento à: meu amigo [http://vadim.com/ Vadim] que me introduziu ao vCard ''vários'' anos atrás, e se eu tivesse prestado mais atenção talvez então poderia ter ajudado muitas pessoas a evitar desperdiçar tempo reinventando várias rodas de padrões ''wheels''.&lt;br /&gt;
&lt;br /&gt;
== Introdução ==&lt;br /&gt;
O padrão vCard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]), tem largamente implementado interoperabilidade (e.g. Apple's &amp;quot;Address Book&amp;quot; application built into MacOSX).&lt;br /&gt;
&lt;br /&gt;
Em adição, muitos bloggers se identificam pelo nome e discutem a seus amigos e família. Com só um pouco de estrutura, bloggers podem discutir as pessoas em seus blog(s) de tal um modo que spiders e outros agregadores podem receber essa informação,  automaticamente convertê-las para vCard e usá-las então e qualquer aplicativo vCard ou serviços.&lt;br /&gt;
&lt;br /&gt;
Essa especificação introduz o formato '''hCard''' , que usa uma representação 1:1 de propriedades e valores de mencioado no padrão vCard acima, em elemento XHTML.&lt;br /&gt;
podem ambos embutir diretamente hCards em suas páginas, e estilizá-las com CSS tornando-as parecido como desejado.&lt;br /&gt;
&lt;br /&gt;
Em adição, hCard ativa aplicações para receber informação diretamente de páginas web sem ter que referenciar um arquivo separado&lt;br /&gt;
&lt;br /&gt;
Use o [http://microformats.org/code/hcard/creator criador de hCard] para copiar o código HTML e gerar para seu blog ou website e publicá-lo em sua informação de contato.&lt;br /&gt;
&lt;br /&gt;
== Semântica XHTML Princípios de Design ==&lt;br /&gt;
{{semantic-xhtml-design-principles}}&lt;br /&gt;
&lt;br /&gt;
== Formato ==&lt;br /&gt;
=== Em geral===&lt;br /&gt;
The vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]) forma a base do hCard.&lt;br /&gt;
&lt;br /&gt;
O formato básico de hCard é usar nomes vCard objeto/propriedade em caixa-baixa para nomes de classes, e mapear aninhando objetos vCard diretamente para elementos XHTML aninhado.&lt;br /&gt;
&lt;br /&gt;
=== Mais Equivalente Semântico ===&lt;br /&gt;
Para algumas propriedades há o elemento HTML que é mais combinado e conduz suas semanticas.&lt;br /&gt;
 A seguinte propriedade DEVE ser codificada com o seguinte (X)HTML:&lt;br /&gt;
* &amp;lt;code&amp;gt;URL&amp;lt;/code&amp;gt; um vCard que se torna &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; dentro do elemento com &amp;lt;code&amp;gt;class=&amp;quot;vcard&amp;quot;&amp;lt;/code&amp;gt; em hCard.&lt;br /&gt;
* Similarmente, &amp;lt;code&amp;gt;EMAIL&amp;lt;/code&amp;gt; um vCard que se torna &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;a class=&amp;quot;email&amp;quot; href=&amp;quot;mailto:...&amp;quot;&amp;gt;...&amp;lt;/a&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;PHOTO&amp;lt;/code&amp;gt; um vCard que se torna &amp;lt;code&amp;gt;&amp;lt;img class=&amp;quot;photo&amp;quot; src=&amp;quot;...&amp;quot; alt=&amp;quot;Foto de ...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt; ou &amp;lt;code&amp;gt;&amp;lt;object class=&amp;quot;photo&amp;quot; data=&amp;quot;...&amp;quot; type=&amp;quot;...&amp;quot;&amp;gt;Foto de ...&amp;lt;/object&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;UID&amp;lt;/code&amp;gt; um vCard simply que se torna outro semantica aplicada a uma especifico URL (ou EMAIL) para um hCard.&lt;br /&gt;
&lt;br /&gt;
=== Propriedades Singular vs. Plural ===&lt;br /&gt;
&lt;br /&gt;
Para propriedades que estão no singular (ex. &amp;quot;N&amp;quot; e &amp;quot;FN&amp;quot;), o primeiro elemento descendente com aquela class deve ter efeito, qualquer outros serão ignorados.&lt;br /&gt;
&lt;br /&gt;
Para propriedades que podem estar no plural (ex. &amp;quot;TEL&amp;quot;), each class instance should create a instance of that property.&lt;br /&gt;
&lt;br /&gt;
==== Propriedades no Singular ====  &lt;br /&gt;
&lt;br /&gt;
Propriedades no Singular: &amp;quot;FN&amp;quot;, &amp;quot;N&amp;quot;, &amp;quot;BDAY&amp;quot;, &amp;quot;TZ&amp;quot;, &amp;quot;GEO&amp;quot;, &amp;quot;SORT-STRING&amp;quot;, &amp;quot;UID&amp;quot;, &amp;quot;CLASS&amp;quot;.  &lt;br /&gt;
&lt;br /&gt;
Todas as outras propriedades são plural. Essa lista foi derivada de uma analize de semantica de propriedades individuais em vCard RFC2426 e determinando logicamente que eles DEVEM ser singular pela sua semantica. Ver [[hcard-singular-properties]] para explicação.&lt;br /&gt;
&lt;br /&gt;
==== Propriedades plurais Singularizadas ====&lt;br /&gt;
&lt;br /&gt;
Desde que nomes de propriedades plurais tornam-se seus equivalente em singular,  mesmo se propriedade no plural original permitiu só um único valor com componentes múltiplos, esses múltiplos componentes são representados cada um com suas próprios propriedade nomeada singularidade e a propriedade é efetivamente polivalente e submetido ao tratamento acima de propriedades polivalente.&lt;br /&gt;
&lt;br /&gt;
=== Human vs. Machine readable ===&lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;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;amp;lt;abbr&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.  &lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;a&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for one or more properties, it must be treated as follows:&lt;br /&gt;
# For the &amp;quot;PHOTO&amp;quot; property and any other property that takes a URL as its value, the &amp;lt;code&amp;gt;href=&amp;quot;...&amp;quot;&amp;lt;/code&amp;gt; attribute provides the property value.&lt;br /&gt;
# For other properties, the element's content is the value of the property.&lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;img&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for one or more properties, it must be treated as follows:&lt;br /&gt;
# For the &amp;quot;PHOTO&amp;quot; property and any other property that takes a URL as its value, the &amp;lt;code&amp;gt;src=&amp;quot;...&amp;quot;&amp;lt;/code&amp;gt; attribute provides the property value.&lt;br /&gt;
# For other properties, the &amp;lt;code&amp;gt;&amp;amp;lt;img&amp;gt;&amp;lt;/code&amp;gt; element's '&amp;lt;code&amp;gt;alt&amp;lt;/code&amp;gt;' attribute is the value of the property.&lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;object&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for one or more properties, it must be treated as follows:&lt;br /&gt;
# For the &amp;quot;PHOTO&amp;quot; property and any other property that takes a URL as its value, the &amp;lt;code&amp;gt;data=&amp;quot;...&amp;quot;&amp;lt;/code&amp;gt; attribute provides the property value.&lt;br /&gt;
# For other properties, the element's content is the value of the property.&lt;br /&gt;
&lt;br /&gt;
=== Value excerpting ===&lt;br /&gt;
&lt;br /&gt;
Sometimes only part of an element which is the equivalent for a property should be used for the value of the property.  This typically occurs when a property has a subtype, like TEL.  For this purpose, the special class name &amp;quot;&amp;lt;code&amp;gt;value&amp;lt;/code&amp;gt;&amp;quot; is introduced to excerpt out the subset of the element that is  the value of the property.  E.g. here is an hCard fragment for marking up a home phone number:&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
vCard:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
TEL;TYPE=HOME:+1.415.555.1212&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hCard:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;home&amp;lt;/span&amp;gt;:&lt;br /&gt;
 &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;+1.415.555.1212&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;
This hCard fragment could be displayed as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: thin dashed black; width: 95%; padding: .5em 1em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;home&amp;lt;/span&amp;gt;:&lt;br /&gt;
&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;+1.415.555.1212&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Property Exceptions ===&lt;br /&gt;
&lt;br /&gt;
vCard has several properties which either do not make sense on, or are already implied within the context of a web page.  This section explains what to (not) do with them.&lt;br /&gt;
&lt;br /&gt;
# '''NAME''', '''PROFILE''', '''SOURCE''', '''PRODID''', '''VERSION''' properties as defined in Sections 2.1.2, 2.1.3, 2.1.4, 3.6.3, 3.6.9 of RFC 2426.  Content publishers MUST NOT use these properties in their hCards, and as such, hCard consumers/parsers MUST IGNORE these properties if they are found within an hCard.  Instead. hCard to vCard converters SHOULD use the title of the page where the hCard is found (e.g. the &amp;lt;code&amp;gt;&amp;lt;title&amp;gt;&amp;lt;/code&amp;gt; element in (X)HTML documents) to construct the NAME property, MAY output a PROFILE value of &amp;quot;&amp;lt;code&amp;gt;VCARD&amp;lt;/code&amp;gt;&amp;quot; per RFC 2426, SHOULD use the URL of the page where the hCard is found to construct the SOURCE property (e.g. perhaps as a parameter to a URL/service that converts hCards to vCards), for an output vCard stream (e.g. a .vcf file). Only services/applications that output actual vCards should write the PRODID property, with the product identifier for said service/application.   Similarly only such services/applications should write the VERSION property, with the value &amp;quot;3.0&amp;quot; (without quotes) per RFC2426 Section 3.6.9.&lt;br /&gt;
&lt;br /&gt;
=== Organization Contact Info ===&lt;br /&gt;
 &lt;br /&gt;
If the &amp;quot;FN&amp;quot; and &amp;quot;ORG&amp;quot; properties have the exact same value (typically because they are set on the same element, e.g. class=&amp;quot;fn org&amp;quot;), then the hCard represents contact information for a company or organization and should be treated as such.  In this case the author MUST also NOT set the &amp;quot;N&amp;quot; property, or set it (and any sub-properties) explicitly to the empty string &amp;quot;&amp;quot;.  Thus parsers should handle the missing &amp;quot;N&amp;quot; property in this case by implying empty values for all the &amp;quot;N&amp;quot; sub-properties.&lt;br /&gt;
&lt;br /&gt;
=== Implied &amp;quot;n&amp;quot; Optimization ===&lt;br /&gt;
&lt;br /&gt;
Although vCard requires that the &amp;quot;N&amp;quot; property be present, the authors of the vCard specification (RFC 2426) themselves do not include &amp;quot;N&amp;quot; properties in their vCards near the end of the spec (p.38).  This apparent contradiction can be resolved by simply allowing the &amp;quot;FN&amp;quot; property to imply &amp;quot;N&amp;quot; property values in typical cases provided in the spec.  We do so explicitly in hCard.&lt;br /&gt;
&lt;br /&gt;
If &amp;quot;FN&amp;quot; and &amp;quot;ORG&amp;quot; are not the same (see previous section), and the value of the &amp;quot;FN&amp;quot; property is exactly two words (separated by whitespace), and there is no explicit &amp;quot;N&amp;quot; property, then the &amp;quot;N&amp;quot; property is inferred from the &amp;quot;FN&amp;quot; property.  For &amp;quot;FN&amp;quot;s with either one word see below, and for three or more, the author MUST explicitly markup the &amp;quot;N&amp;quot;, except for the organization contact info case, [http://microformats.org/wiki/hcard#Organization_Contact_Info see above] for that.&lt;br /&gt;
&lt;br /&gt;
# The content of &amp;quot;FN&amp;quot; is broken into two &amp;quot;words&amp;quot; separated by whitespace.&lt;br /&gt;
# The ''first'' word of the &amp;quot;FN&amp;quot; is interpreted as the &amp;quot;given-name&amp;quot; for the &amp;quot;N&amp;quot; property.&lt;br /&gt;
# The ''second/last'' word of the &amp;quot;FN&amp;quot; is interpreted as the &amp;quot;family-name&amp;quot; for the &amp;quot;N&amp;quot; property.&lt;br /&gt;
# Exception: If the first word ends in a &amp;quot;,&amp;quot; comma OR if the second word is a single character (optionally followed by a period &amp;quot;.&amp;quot;), then the first word (minus the comma at the end if any) is interpreted as the &amp;quot;family-name&amp;quot; and the second word is interpreted as the &amp;quot;given-name&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
This allows simplification in the typical case of people stating:&lt;br /&gt;
* given-name (space) family-name&lt;br /&gt;
* family-name (comma) given-name&lt;br /&gt;
* family-name (comma) given-name-first-initial&lt;br /&gt;
* family-name (space) given-name-first-initial (optional period)&lt;br /&gt;
&lt;br /&gt;
=== Implied &amp;quot;nickname&amp;quot; Optimization ===&lt;br /&gt;
&lt;br /&gt;
Due to the prevalence of the use of nicknames/handles/usernames on the Web in actual content published on the Web (e.g. authors of [[hReview|reviews]]), hCard also has an implied &amp;quot;nickname&amp;quot; optimization to handle this.&lt;br /&gt;
&lt;br /&gt;
Similar to the implied &amp;quot;n&amp;quot; optimization, if &amp;quot;FN&amp;quot; and &amp;quot;ORG&amp;quot; are not the same, and the value of the &amp;quot;FN&amp;quot; property is exactly one word, and there is no explicit &amp;quot;N&amp;quot; property, then:&lt;br /&gt;
&lt;br /&gt;
# The content of the &amp;quot;FN&amp;quot; is treated as a &amp;quot;nickname&amp;quot; property value.&lt;br /&gt;
# Parsers should handle the missing &amp;quot;N&amp;quot; property by implying empty values for all the &amp;quot;N&amp;quot; sub-properties.&lt;br /&gt;
&lt;br /&gt;
Note: the hCard may have additional explicit &amp;quot;nickname&amp;quot; property values in addition to the implied nickname.&lt;br /&gt;
&lt;br /&gt;
=== Implied &amp;quot;organization-name&amp;quot; Optimization ===&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;ORG&amp;quot; property has two subproperties, organization-name and organization-unit. Very often authors only publish the organization-name.  Thus if an &amp;quot;ORG&amp;quot; property has no &amp;quot;organization-name&amp;quot; inside it, then its entire contents MUST be treated as the &amp;quot;organization-name&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Tags as Categories ===&lt;br /&gt;
&lt;br /&gt;
Categories in hCard can optionally be represented by tags with rel-tag. When a category property is a rel-tag, the tag (as defined by rel-tag) is used for that category.&lt;br /&gt;
&lt;br /&gt;
=== Root Class Name ===&lt;br /&gt;
&lt;br /&gt;
The root class name for an hCard is &amp;quot;vcard&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Property List ===&lt;br /&gt;
&lt;br /&gt;
This is the list of properties (and subproperties, in parentheses, like this) in hCard, taken from vCard:&lt;br /&gt;
&lt;br /&gt;
* fn, n (family-name, given-name, additional-name, honorific-prefix, honorific-suffix), nickname, sort-string&lt;br /&gt;
* url, email (type, value), tel (type, value)&lt;br /&gt;
* adr (post-office-box, extended-address, street-address, locality, region, postal-code, country-name, type, value), label&lt;br /&gt;
* geo (latitude, longitude), tz&lt;br /&gt;
* photo, logo, sound, bday&lt;br /&gt;
* title, role, org (organization-name, organization-unit)&lt;br /&gt;
* category, note&lt;br /&gt;
* class, key, mailer, uid, rev&lt;br /&gt;
==== type subproperty values ====&lt;br /&gt;
&lt;br /&gt;
The 'type' subproperty in particular takes different values depending on which property it is a subproperty of.  These 'type' subproperty values are case-INSENSITIVE, meaning &amp;quot;Home&amp;quot; is the same as &amp;quot;home&amp;quot;, as well as multivalued, e.g. a tel can be home and preferred:&lt;br /&gt;
&lt;br /&gt;
vCard:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
TEL;TYPE=HOME,PREF:+1.415.555.1212&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
hCard:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;Home&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;pref&amp;lt;/span&amp;gt;erred):&lt;br /&gt;
 &amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;+1.415.555.1212&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;
This could be displayed as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: thin dashed black; width: 95%; padding: .5em 1em; &amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;Home&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;pref&amp;lt;/span&amp;gt;erred):&lt;br /&gt;
&amp;lt;span class=&amp;quot;value&amp;quot;&amp;gt;+1.415.555.1212&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following lists are ''informative''. See RFC 2426 sections 3.2.1 ADR, 3.3.1 TEL, and 3.3.2 EMAIL respectively for normative type values.  They are repeated here for convenience. Default type subproperty value(s) is(are) first in each list and indicated in ALL CAPS.  types may be multivalued.&lt;br /&gt;
&lt;br /&gt;
* adr type: INTL, POSTAL, PARCEL, WORK, dom, home, pref&lt;br /&gt;
* tel type: VOICE, home, msg, work, pref, fax, cell, video, pager, bbs, modem, car, isdn, pcs&lt;br /&gt;
* email type: INTERNET, x400, pref, &amp;quot;other IANA registered address types&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== XMDP Profile ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-profile]] for the [http://gmpg.org/xmdp XMDP] profile of hCard which contains the above complete list of properties, with references to their RFC 2426 definitions.&lt;br /&gt;
&lt;br /&gt;
=== Parsing Details ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-parsing|hCard parsing]].&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
This section is informative.&lt;br /&gt;
&lt;br /&gt;
=== Sample vCard ===&lt;br /&gt;
&lt;br /&gt;
Here is a sample vCard:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
BEGIN:VCARD&lt;br /&gt;
VERSION:3.0&lt;br /&gt;
N:Çelik;Tantek&lt;br /&gt;
FN:Tantek Çelik&lt;br /&gt;
URL:http://tantek.com/&lt;br /&gt;
ORG:Technorati&lt;br /&gt;
END:VCARD&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and an equivalent in hCard with various elements optimized appropriately.  See [[hcard-example1-steps| hCard Example 1]] 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;vcard&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;a class=&amp;quot;url fn&amp;quot; href=&amp;quot;http://tantek.com/&amp;quot;&amp;gt;Tantek Çelik&amp;lt;/a&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;org&amp;quot;&amp;gt;Technorati&amp;lt;/div&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 hCard might be displayed as:&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: thin dashed black; width: 95%; padding: .5em 1em;&amp;quot;&amp;gt;&lt;br /&gt;
[http://tantek.com/ Tantek Çelik]&amp;lt;br /&amp;gt;&lt;br /&gt;
Technorati&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: The version information is unnecessary in hCard markup directly since the version will be defined by the profile of hCard that is used/referred to in the 'profile' attribute of the &amp;lt;head&amp;gt; element.&lt;br /&gt;
&lt;br /&gt;
=== More Examples ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-examples]] for more examples, including all examples from vCard RFC 2426 converted into hCard.&lt;br /&gt;
&lt;br /&gt;
== Examples in the wild ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following sites have published hCards, 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.  If you have an hCard on your own page, feel free to add it to the top of this list.  Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
&lt;br /&gt;
=== New Examples ===&lt;br /&gt;
Please add new examples to this section.&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 comprehnsively in the contact and about pages.&lt;br /&gt;
* The [http://www.cst.ed.ac.uk/ Center 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;
* 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] and [http://www.westmidlandbirdclub.com/site/links.htm links page]. The former is a page footer which is gradually being rolled out across the whole site.&lt;br /&gt;
* [http://wait-till-i.com Christian Heilmann] has a footer address using hCard&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.naturalengland.org.uk/press/default.htm Natural England] (new UK governement agency, formed 2006-10-01). No &amp;quot;fn&amp;quot; - which makes it invalid.&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 in the footer of 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;
* [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;
* IBM is embracing microformats.  The [http://www.ibm.com/contact/employees/ IBM Employee Directory] now returns hcards in its query results.   Also see the [http://www.ibm.com/shortcuts/ Shortcuts Podcast].&lt;br /&gt;
* [http://dsingleton.co.uk/ David Singleton] has added a hCard to his blog.&lt;br /&gt;
* [http://krisswatt.co.uk/ Kriss Watt] has hidden an hCard his blog footer.&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 contactform. 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;
* [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.fberriman.com/ Frances Berriman] has a hidden vCard in the footers of her website.&lt;br /&gt;
* [http://www.candlescience.com/ CandleScience Candle Supply] added a hidden hcard sitewide.&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://alexander-mette.de amette] uses the hCard format in a module of his TikiWiki powered blog&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.meryl.net/ Meryl K. Evans] has a hidden hCard on her homepage.&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.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;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
* [http://www.nfwebsolutions.com/ New Frontier Web Solutions] uses hCard on their frontpage 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., eg 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 ul (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://tantek.com/ Tantek's Thoughts] includes an inline author hCard at the bottom of the page.&lt;br /&gt;
* [http://technorati.com/ Technorati]'s [http://www.technorati.com/about/ About page] lists their '''Media Contact'''&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.child-care-index.net.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;
==== UTF8 Examples in the Wild ====&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.&lt;br /&gt;
* [http://tantek.com/ Tantek's Thoughts] encodes Çelik as inline UTF8.&lt;br /&gt;
&lt;br /&gt;
=== Examples with some problems ===&lt;br /&gt;
&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;
* The good ship [http://styrheim.com/test/leonid.html Leonid Miloslavskiy] spotted in the North Atlantic&lt;br /&gt;
** INVALID  --[[User:RyanKing|RyanKing]] 00:50, 27 Oct 2005 (PDT)&lt;br /&gt;
*** class=&amp;quot;family&amp;quot; should probably be family-name&lt;br /&gt;
*** the &amp;quot;n&amp;quot; property is missing and the &amp;quot;n&amp;quot; optimization can't be applied&lt;br /&gt;
*** the first geo propery is empty, the second one is invalid (ie, it doesn't contain lat/long)&lt;br /&gt;
* [http://landsbank.fo/#hCard Landsbanki Føroya]&lt;br /&gt;
** INVALID - using embedded rdf/xml invalidly&lt;br /&gt;
* [http://chrischerry.name/ Chris Cherry's contact page with his hCard]&lt;br /&gt;
** &amp;lt;strike&amp;gt;WARNING - uses class=&amp;quot;cell&amp;quot; instead of &amp;amp;lt;span class=&amp;quot;type&amp;quot;&amp;amp;gt;cell&amp;amp;lt;/span&amp;amp;gt;&amp;lt;/strike&amp;gt; Fixed -- [[User:Seriph|Chris Cherry]] 19:54, 15 Sep 2006 (PST)&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;
** ERROR - attempt to use Implied-N optimization where that's not possible. --[[User:RyanKing|RyanKing]] 14:29, 5 Jan 2006 (PST)&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;
* [http://richi.co.uk/blog/2005/12/structured-blogging.html Richi Jennings] has put up his attempt&lt;br /&gt;
** INVALID, missing FN --[[User:RyanKing|RyanKing]] 12:47, 5 Jan 2006 (PST)&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;
== Implementations ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following implementations have been developed which either generate or parse hCards. If you have an hCard implementation, feel free to add it to the top of this list. Once the list grows too big, we'll make a separate wiki page.&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 hCards or hCalendars.  Written by Remy Sharp.&lt;br /&gt;
*[http://elbewerk.com/2006/09/vcardexplorer-02.shtml vCardExplorer 0.2] is a Mac OS X Application, that displays VCF-Files and extracts hCards from Websites written by 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;
&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;
* The [http://tantek.com/microformats/hcard-creator.html hCard creator] 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;
* [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://randomchaos.com/microformats/base/ Microformat Base] is an open-source PHP microformat aggregation crawler, currently recognizing hreview, hcalendar, and hcard.&lt;br /&gt;
&lt;br /&gt;
== Additional Applications ==&lt;br /&gt;
This section is '''informative'''.&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;
* 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;
== 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;
* [http://www.ietf.org/rfc/rfc2426.txt vCard RFC2426]&lt;br /&gt;
&lt;br /&gt;
=== Informative References ===&lt;br /&gt;
* [http://www.w3.org/2002/12/cal/rfc2426 HTML reformatted version of RFC2426]&lt;br /&gt;
* [http://w3.org/TR/REC-CSS1 CSS1]&lt;br /&gt;
* [http://tantek.com/log/2004/09.html#hcard hCard term introduced and defined on the Web, 20040930]&lt;br /&gt;
* [http://wiki.oreillynet.com/foocamp04/index.cgi?SimpleSemanticFormats FOO Camp 2004 Simple Semantic Formats presentation, 20040910]&lt;br /&gt;
* Contributed from http://developers.technorati.com/wiki/hCard.&lt;br /&gt;
* [http://www.w3.org/TR/xhtml11 XHTML 1.1]&lt;br /&gt;
&lt;br /&gt;
==== Specifications That Use hCard ====&lt;br /&gt;
* [[adr]]&lt;br /&gt;
* [[geo]]&lt;br /&gt;
* [[hcalendar|hCalendar]]&lt;br /&gt;
* [[hreview|hReview]]&lt;br /&gt;
&lt;br /&gt;
==== Similar Work ====&lt;br /&gt;
* [http://www.intertwingly.net/wiki/pie/PaceBetterPersonElement Atom PaceBetterPersonElement]&lt;br /&gt;
* [http://www.jabber.org/jeps/jep-0054.html JEP-0054: vcard-temp]&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
* [http://microformats.org/code/hcard/creator hCard creator] ([[hcard-creator-feedback|feedback]]) - create your own hCard.&lt;br /&gt;
* [[hcard-authoring|hCard authoring]] - learn how to add hCard markup to your existing contact info.&lt;br /&gt;
* [[hcard-examples|hCard examples]] - Example usage of various classes within hCard,&lt;br /&gt;
* [[hcard-faq|hCard FAQ]] - If you have any questions about hCard, check here, and if you don't find answers, add your questions!&lt;br /&gt;
* [[hcard-parsing|hCard parsing]] - Normatively details of how to parse hCards.&lt;br /&gt;
* [[hcard-issues|hCard issues]] - Please add any specific issues with the specification to the issues page.&lt;br /&gt;
* [[hcard-feedback|hCard feedback]] - General feedback (as opposed to specific issues) should be added to the hCard feedback page.&lt;br /&gt;
* [[hcard-profile|hCard profile]] - The XMDP profile for hCard&lt;br /&gt;
&lt;br /&gt;
This specification is a work in progress. As additional aspects are discussed, understood, and written, they will be added. These thoughts, issues, and questions are kept in separate pages.&lt;br /&gt;
&lt;br /&gt;
* [[hcard-brainstorming|hCard Brainstorming]] - where we are keeping our brainstorms and other explorations relating to hCard&lt;br /&gt;
* [[hcard-tests|hCard tests]] - a wiki page with actual embedded hCards to try parsing.&lt;br /&gt;
&lt;br /&gt;
== Further Reading ==&lt;br /&gt;
* [http://www.digital-web.com/articles/microformats_primer/ Digital Web Magazine: Microformats Primer] by Garrett Dimon has a good intro to hCard&lt;br /&gt;
* [http://24ways.org/advent/practical-microformats-with-hcard Practical Microformats with hCard] by Drew McLellan&lt;br /&gt;
* [http://www.naturalsearchblog.com/archives/2006/09/28/tips-for-local-search-engine-optimization-for-your-site/ Local Search Engine Optimization using Microformats] by Chris Silver Smith&lt;br /&gt;
* [http://thedredge.org/ Andrew D. Hume] has written a blog post on [http://usabletype.com/articles/2005/usable-microformats/ usable microformats] which discusses hCard&lt;br /&gt;
* [http://www.thefutureoftheweb.com/blog/2006/1/hcard Jesse Skinner's introduction to hCard]&lt;br /&gt;
* [http://blog.usweb.com/ Shaun Shull's] great post on [http://blog.usweb.com/archives/how-microformats-affect-search-engine-optimization-seo How Microformats Affect SEO], including his [[hcard|hCard]] as an example.&lt;br /&gt;
* See also [http://www.technorati.com/cosmos/referer.html blogs discussing this page] and the [http://technorati.com/tags/hcard hCard tag]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-examples-in-wild&amp;diff=34624</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=34624"/>
		<updated>2008-11-18T00:16:20Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* new and uncategorized examples */&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;
* [http://wayne.edu/ Wayne State University] uses hCard for University address and contact details in the global footer used on most web pages.&lt;br /&gt;
* [http://www.brakemeters.co.nz/ Portable Brake Meters N.Z. Ltd] uses hCard for business address and contact details.&lt;br /&gt;
* [http://www.tallpoppieshamilton.co.nz/ Tall Poppies Florist] uses hCard for business address and contact details.&lt;br /&gt;
* [http://www.livingcolour.co.nz/ Living Colour Florist] uses hCard for business address and contact details. See [http://www.livingcolour.co.nz/Information.aspx Information] page&lt;br /&gt;
* [http://www.dallasfamilyhomes.com/ DallasFamilyHomes.com] uses hCard for property addresses and geo latitude and longitude. See [http://www.dallasfamilyhomes.com/dallas-homes/ Dallas Homes] page for embedded hcards and property detail pages.&lt;br /&gt;
* [http://www.jabz.de/ Jabz | Internet Marketing Agentur] uses hCard for business address and contact details. See [http://www.jabz.de/kontakt/ Contact Page] &lt;br /&gt;
* [http://sixthirteendesign.com/ Six Thirteen Design] uses an embedded hCard along with other contact details on the footer of each page (http://sixthirteendesign.com/) &lt;br /&gt;
* [http://www.locanto.com/ Locanto - Free Classifieds] uses hcards to geolocate their classified listings. Visit the ad pages for examples.&lt;br /&gt;
* [http://www.yalwa.com/ Yalwa - Local Directory] uses hcard on their directory listings. Example: [http://wiesbaden.yalwa.de/ID_102318221/Yalwa-GmbH.html Yalwa Address Listing] &lt;br /&gt;
* [http://www.fluendi.com/Contact Fluendi Consulting] uses hcard on their contact page (http://www.fluendi.com/Contact) &lt;br /&gt;
* [http://www.badbedbugs.com/ Bed Bugs] uses hcard for their site information. See the [http://www.badbedbugs.com/about-bad-bed-bugs/ about bed bugs] page. &lt;br /&gt;
* [http://www.lawyer-directory.net/ Lawyer Directory] uses hcard for addresses within the lawyer directory. Example [http://www.lawyer-directory.net/lawyer/Grand-Rapids-Bar-Association-Grand-Rapids-law434032.htm listing]&lt;br /&gt;
* [http://www.hanfmuseum.de/about About Hanf Museum Berlin] uses hcard for addresses and contact informations.&lt;br /&gt;
* [http://maps.google.com/ Google Maps] uses hCards for addresses. See [http://googlemapsapi.blogspot.com/2007/06/microformats-in-google-maps.html Microformats in Google Maps].&lt;br /&gt;
* [http://local.mapquest.com/ MapQuest Local] uses hCards for locations, hCalendar for events and supports the draft Geo format when lat/lng data is provided. See [http://blog.mapquest.com/2008/09/25/microformat-support-on-mapquest-local/ Microformat Support on MapQuest Local] for more information.&lt;br /&gt;
* [http://www.whitepoppy.com/ WhitePoppy.com] uses hCard for business address.  See [http://www.whitepoppy.com/Contact.aspx Contact Page]&lt;br /&gt;
* [http://www.hightechcville.com/ HighTechCville] uses hcard to mark up people and organizations.  See [http://www.hightechcville.com/people/72-eric-pugh Eric Pugh] for an example.&lt;br /&gt;
* [http://www.cleanertoday.com/ Cleaner Today] uses hcard to mark up contact details. (see [http://www.cleanertoday.com/Cleaner-Today-a/1.htm Contact Page])&lt;br /&gt;
* [http://www.aduk.org Audience Data UK] use hcard on their [http://www.aduk.org/contact.php contact page] and [http://www.aduk.org/directory.php directory of related organisations]&lt;br /&gt;
* [http://georgebrock.com georgebrock.com] used hcard for George's contact details&lt;br /&gt;
* [http://suggestionbox.com/ SuggestionBox] uses hcard for companies listed on its site. Example: [http://transfercar.suggestionbox.com/ Transfercar].&lt;br /&gt;
* [http://www.vcventerprise.com/wp/ Christopia] uses hcard to mark up contact details. (see [http://vcventerprise.com/wp/contact/])&lt;br /&gt;
* [http://www.rossirovetti.com/ Rossi &amp;amp; Rovetti Flowers in San Francisco] uses hcard to mark up company details in the about us page of the website. (see [http://www.rossirovetti.com/scripts/aboutus.asp example])&lt;br /&gt;
* [http://youtube.com YouTube] uses hcard to identify video contributors (see [http://www.flickr.com/photos/factoryjoe/2793731119/in/photostream/ screenshot]]&lt;br /&gt;
* [http://sewmyheadon.com/contact sewmyheadon.com] uses hcard to mark up contact details on contact and about pages.&lt;br /&gt;
* [http://www.kleinassoc.com/ Klein &amp;amp; Associates - Estate Planning] used hcard to mark up contact details on law firm's contact page.&lt;br /&gt;
* [http://www.markuspage.com/markus/en/contact Markus Kil&amp;amp;aring;s] uses hCard to mark up his contact details.&lt;br /&gt;
* [http://www.southsidewarriors.com/impressum.cfm Southside Warriors] uses hcard to mark up contact details on the imprint page.&lt;br /&gt;
* [http://applesold.com/ Apple Realty - Bristol Real Estate Company] uses hcard to mark up company details in the footer of website.&lt;br /&gt;
* [http://www.surfcom.co.uk/app/contact/ Surf Commission] uses hcard to mark up company contact details with option to download vcard.&lt;br /&gt;
* [http://www.k9yardpatch.com/contact-us/ K9YardPatch] uses hcard to markup company contact details with option to download.&lt;br /&gt;
* [http://www.ecovian.com Ecovian] uses hCard to mark up eco-friendly business contact details, see [http://www.ecovian.com/l/san-francisco-ca/jardiniere-restaurant example]&lt;br /&gt;
* [http://www.dischord.com/ Dischord Records] uses hCard to mark up company contact details in the footer of the home page.&lt;br /&gt;
* [http://www.thinkambient.co.uk/ ThinkAmbient] uses hCard to mark up company contact details.&lt;br /&gt;
* [http://proofile.org/ Proofile] extensive profiles with hCard, vCard, XFN and FOAF support.&lt;br /&gt;
* [http://www.ebycattle.com/horses/index.html Eby Ranch] uses hCard for the different branches of the company, with option to download the vCard.&lt;br /&gt;
* [http://www.clavex.com/contactus.aspx Clavex - A Latin America Financial Institution ] Uses hCard and geo for the contact information. Simple but effective.&lt;br /&gt;
* [http://www.dancefederation.co.uk Dance Federation Salsa Dancing &amp;amp; Jive Dancing Lessons and Events ] Directory for classes, lessons and events users hcard on its lessons and events -- region and url properties are empty. Is that an error?&lt;br /&gt;
* [http://mop.ardom.co.il/contact.php Southern Arava Research and Development Center] uses hCard for their contact details on their contact page and in sub pages with contact info. -- one card has two fn properties.&lt;br /&gt;
* [http://www.itma.org.uk/find-expert/London] - ITMA Trade Mark Attorney search presents results as hCards&lt;br /&gt;
* [http://interkonect.com Interkonect &amp;gt; Website Application Specialists] Office contact details marked up using vcard.&lt;br /&gt;
* [http://library.christchurch.org.nz/ContactUs/ Christchurch City Libraries (N.Z.)]  contact page plus each of our libraries' individual pages linked from [http://library.christchurch.org.nz/Community/Libraries/ Library Locations map].&lt;br /&gt;
* [http://www.leftclick.com/about-us/ LeftClick] uses hcards for contact information.&lt;br /&gt;
* [http://ideas.veer.com/skinny Veer's Skinny Blog] implements hcard for comments and post authors.&lt;br /&gt;
* [http://wolpy.com/missha Wolpy] Uses hcards for contacts and [http://wolpy.com/missha/profile profile]. &lt;br /&gt;
* [http://www.veganworldorder.com/index.php?m=vegguide Vegan World Order | Restaurants ] Uses hcards for restaurant listings. &lt;br /&gt;
* [http://mahalo.com Mahalo] per the announcement [http://www.seanpercival.com/blog/2008/04/23/mahalo-adds-microformats/]&lt;br /&gt;
* [http://www.buythatlocally.com BuyThatLocally ] uses hcards for local business information. &lt;br /&gt;
* [http://www.firmendb.de Firmendb] uses hCard for individual business contacts, e.g. [http://www.firmendb.de/firmen/15592.php]&lt;br /&gt;
* [http://autopendium.com Autopendium] has resources (e.g. suppliers, clubs) marked up with throughout the site, e.g. [http://autopendium.com/clubs/8-Volvo-Enthusiasts-Club]&lt;br /&gt;
* [http://display-block.co.uk Display-Block] uses hCard contacts for People and Companies on my personal Blog.&lt;br /&gt;
* [http://bergantinedesign.us Bergantine Design] has contact information marked up with hCard throughout the site&lt;br /&gt;
* [http://www.codesignville.com/ Codesignville] uses hCard for his contact details.&lt;br /&gt;
* [http://fan-expo.com/Contactez-nous,2  Forum des Acteurs du Numérique] (a French trade show and exhibition dedicated to content management) uses hCard for contact information (exhibition staff and exhibitors). It also makes use of hCalendar as well as rel-tag when relevant.&lt;br /&gt;
* [http://www.corewhisperer.com/  The Core Whisperer] (Paul Ransom) Geological Services uses hCard for contact information.&lt;br /&gt;
* [http://chairmanship.mfa.md/en/ The regional presidencies] of Republic of Moldova to the SEECP, CEI, MAG-RACVIAC, SEEHN, CEFTA uses hCard on [http://chairmanship.mfa.md/seecp-contacts/ contacts pages]&lt;br /&gt;
* [http://www.viget.com/about/team Viget Labs] - Team page and Individuals' Pages.&lt;br /&gt;
* [http://www.re3elstance.com RE3EL STANCE] - Entrepreneurship: Rebel Style.&lt;br /&gt;
* [http://www.worldeventsguide.com World Events Guide] - Events occuring around the world marked up with hCard.&lt;br /&gt;
* [http://www.amaliahotel.eu/en/contact.html Amalia Hotel Apartments] uses hCard in the contact-info page.&lt;br /&gt;
* [http://www.sslcertificaten.nl/contact.php Xolphin SSL Certificaten] uses hCard for their contact details&lt;br /&gt;
* [http://examples.tobyinkster.co.uk/hcard hCard + RDFa Example] - raising the bar for parsers...&lt;br /&gt;
* [http://competitiondiva.com/ Competition Diva] uses hCard in its page footer (and plans on it for the upcoming profile pages).&lt;br /&gt;
* [http://sanisoft.com/ SANIsoft] uses hCard in its page footer&lt;br /&gt;
* [http://www.bossalive.com BossaLive] uses [[hcard|hCard]] on user profile pages. &lt;br /&gt;
** Example: [http://www.bossalive.com/user/barry Barry's Profile]&lt;br /&gt;
** Also uses rel-tag microformat for tagging music. Publishes rel-tags for album, artist and genre.&lt;br /&gt;
* [http://hillhursthardware.com/ Hillhurst Hardware's] contact info w.logo uses hcard.&lt;br /&gt;
* Birmingham's [http://bigcityplan.org.uk/ Big City Plan] (England)&lt;br /&gt;
* Producer [http://www.sun-treader.com/contact.html Christopher Davis] uses hCard markup on his contact page.&lt;br /&gt;
* [http://www.tpexpress.co.uk/Liverpool08-Capital-of-Culture/ First TransPennine Express - Liverpool 08, Capital of Culture] - uses hCard to markup suggested venues.&lt;br /&gt;
* [http://anand.ws/ Anand's Musings] uses hCard to mark up authors for comments and posts.&lt;br /&gt;
* [http://www.onyomo.com/ OnYoMo] uses hCard markup for all addresses listed in their local search results.&lt;br /&gt;
* [http://www.dctalks.org/design/ DC Design Talks] used hCard to mark up the speakers for this one-day event.&lt;br /&gt;
* [http://www.entidi.it eNTiDi software] provides a basic hCard sample.&lt;br /&gt;
* [http://quickbase.intuit.com QuickBase] uses hCard markup on our contact us page.&lt;br /&gt;
* [http://www.pixsense.com/contact_us.html PixSense.com] uses hCard markup for addresses across the PixSense website.&lt;br /&gt;
* [http://www.areaguides.net areaguides.net] uses hCard markup for all addresses across the site.&lt;br /&gt;
** Examples: http://chicagoil.areaguides.net/ypcyellowpg/restaurants.html, http://newyorkny.areaguides.net/hotels.html&lt;br /&gt;
* [http://www.ll.georgetown.edu/ Georgetown University Law Library] in Washington, D.C. now uses hCard for our address on all pages.  Also, library staff biography pages use hCard such as [http://www.ll.georgetown.edu/staff/bio.cfm?id_no=105 here] and [http://www.ll.georgetown.edu/staff/bio.cfm?id_no=32 here].&lt;br /&gt;
* [http://www.ll.georgetown.edu/ Georgetown University Law Library] in Washington, D.C. now uses hCard for our address on all pages.  Also, library staff biography pages use hCard such as [http://www.ll.georgetown.edu/staff/bio.cfm?id_no=105 here] and [http://www.ll.georgetown.edu/staff/bio.cfm?id_no=32 here].&lt;br /&gt;
&lt;br /&gt;
* [http://www.mtgd.gov.md/ Ministry of Transport and Road Industry] of Republic of Moldova. First Moldavian governmental site using hCards on [http://www.mtgd.gov.md/ministrul/ staff pages], [http://www.mtgd.gov.md/subdiviziunile-ministerului/ subdivisions page] and in the footer of each page (contact information) &lt;br /&gt;
**Only [http://www.mtgd.gov.md/ Romanian] and [http://www.mtgd.gov.md/ru/ Russian] versions available yet  &lt;br /&gt;
* [http://www.auctionlink.com.au/ AuctionLink] uses hCard for Auctioneer records like [http://www.auctionlink.com.au/Auctioneers/Auctioneer/Cam_Brown_Auctions/ Cam Brown Auctions] (also uses hCalendar)&lt;br /&gt;
* [[User:WebOrganics|User WebOrganics]] The Microformats wiki has hcards on its user pages.&lt;br /&gt;
* [http://www.ontwerpkliniek.nl Ontwerpkliniek - Bureau voor Visuele Identiteit] uses the hCard contact information at the frontpage and the contact page.&lt;br /&gt;
* [http://www.instantdes.com L'instant des...] uses the hCard format for all photographers published on this collective photoblog.&lt;br /&gt;
* the mediadesigner groupblog [http://www.pixeltapete.de Pixeltapete] uses the hCard for the contactinformation of the authorpages of [http://www.pixeltapete.de/alex Alex] and [http://www.pixeltapete.de/carsten Carsten] and also for the [http://www.pixeltapete.de/kontakt imprint]. [http://www.pixeltapete.de Pixeltapete] uses its own  [http://www.pixeltapete.de/2007/11/hcard-sidebarwidget-fuer-wordpress/ hcard widget] for wordpress sidebars. &lt;br /&gt;
* [http://www.thorsten-ott.de Thorsten Ott] uses hCard format for the contact section of his online resume.&lt;br /&gt;
* [http://rosebleed.net/ Rosebleed] supports [[hCard user profiles]] - your profile URL is &amp;lt;nowiki&amp;gt;http://rosebleed.net/users/profile.php/&amp;lt;/nowiki&amp;gt; followed by your username, e.g. [http://rosebleed.net/users/profile.php/silvermoon82 silvermoon82].&lt;br /&gt;
**'''Fixed''' profiles now explicitly mark up 'n' where possible, otherwise omits it&lt;br /&gt;
* [http://www.whitepages.com WhitePages.com] Now WhitePages.com main implemented hCard on all its listings. Over 120 million hCards! Includes work information.&lt;br /&gt;
* [http://www.warmoth.com Warmoth Guitar Products] features hCard contact information in two places, [http://www.warmoth.com/customerservice/customer.cfm?fuseaction=order How To Order] and all of the [http://www.warmoth.com/catalog Warmoth E-Store]&lt;br /&gt;
* [http://www.bbc.co.uk/worldservice/bangladeshboat BBC World Service Bangladesh River Journey] a social network mashup, with hCard &amp;amp; other microformats. See [http://dharmafly.com/blog/bangladeshboat Dharmafly blog discussion].&lt;br /&gt;
* [http://www.amants-du-chocolat.net/ ACCP:Les Amants du Chocolat de la Couronne Parisienne] uses hCard on their contact page and in the chocolate maker they've reviewed.&lt;br /&gt;
* [http://www.accountviewsoftware.nl/ AccountviewSoftware.nl] makes use of hCards for the dealer directory [http://www.accountviewsoftware.nl/dir/ (directory)]&lt;br /&gt;
* [http://www.crystalvision.co.il/ CrystalVision] uses hCard on their contact page and in the footer throughout the site.&lt;br /&gt;
* [http://www.indigoclothing.com/ Indigo Clothing] a London based t-shirt company uses hCard with Technorati's Add to Address Book throughout the site in the footer&lt;br /&gt;
* [http://www.joshuamcginnis.com Joshua McGinnis] uses hCard to display his contact information to potential clients.&lt;br /&gt;
* [http://www.myaffordablemarketing.com/contact.php Affordable Marketing Solutions' contact page] uses hCard with Technorati &amp;quot;Add to Address Book&amp;quot;.&lt;br /&gt;
* [http://www.bo.ingv.it/contents/INGV-Bologna/Staff.html INGV Bologna] implemented hCards for staff-members, marked-up as HTML table-rows ([[include-pattern]] also used to add organization-name and fax-number to each hCard).&lt;br /&gt;
* [http://www.lefora.com Lefora] is a free forum hosting site (using custom forum software). Every user's profile contains an hCard. (Example forum for testing: [http://funstuff.lefora.com funstuff.lefora.com])&lt;br /&gt;
* [http://www.handlairsystems.com H&amp;amp;L Air Systems] uses hCard with Technorati link Add to Address Book on all contact pages.&lt;br /&gt;
* [http://theultimates.whitepages.com WhitePages.com] A special version of whitepages.com has all its listings marked up in hCard.&lt;br /&gt;
* [http://piermontweb.com/contact/ Piermont Web Design] uses hCard on its contact page.&lt;br /&gt;
* [http://www.ie.asm.md/en/ The Institute of Power Engineering] of the Academy of Science of Moldova. First Moldavian site using hCards on staff pages, e.g [http://www.ie.asm.md/employees/oleschuk-valentin/]&lt;br /&gt;
**Also in Russian: [http://www.ie.asm.md/employees-ru/sit-michail-lvovich/] and Romanian: [http://www.ie.asm.md/angajati/chiorsac-mihail/]&lt;br /&gt;
* The good ship [http://styrheim.com/test/leonid.html Leonid Miloslavskiy] spotted in the North Atlantic&lt;br /&gt;
* [http://richi.co.uk/blog/2005/12/structured-blogging.html Richi Jennings] has put up his attempt&lt;br /&gt;
*[http://oberrycavanaugh.com O'Berry|Cavanaugh] has an organization hCard in the footer on every page as while as individual hCards on the [http://oberrycavanaugh.com/team.php Team] page.&lt;br /&gt;
* [http://fortisgc.com Fortis General Counsel], e. g. [http://fortisgc.com/joyce_lan_kim.html Joyce Kim's profile], uses hCard for profile and contact information.&lt;br /&gt;
* [http://peryplo.com Peryplo.com], e. g. [http://peryplo.com/personal/7e6786e711c6d051a39a1b7085f34955 Sample Page], uses hCard for Hotels, Gastronomy Places and services for tourists.&lt;br /&gt;
* [http://www.navitraveler.com/places/629/ NaviTraveler], e. g. [http://www.navitraveler.com/places/629/Lincoln_Memorial.html Lincoln Memorial], including [[geo|Geo]].&lt;br /&gt;
* [http://corewar.atspace.com/about.html sfghoul] has marked her contact info with [[hcard|hCard]]&lt;br /&gt;
* [http://www.zaadz.com Zaadz] uses [[hcard|hCard]] and [http://gmpg.org/xfn XFN] for friends on a user's profile page.&lt;br /&gt;
*[http://www.xoxiety.com/about.html Xoxiety] uses hCards on its about page, linking data from a within a block of text.&lt;br /&gt;
*[http://yedda.com Yedda] - Yedda provides hcard based identities on all of the people's profiles&lt;br /&gt;
*[http://openid.ne.jp OpenID.ne.jp] First OpenID provider service in Japan(日本語). Each personal  OpenID page (ex:[http://eouia.openid.ne.jp http://eouia.openid.ne.jp]) is marked up as his hCard. And there is a company hCard on every page, too.&lt;br /&gt;
* [http://www.goldenglovepromotions.com/ Golden Glove Promotions] used hcards on the footer of every page to store contact information.&lt;br /&gt;
* Australian national news sites The Australian and Australian IT use hCard on their contact pages: [http://www.theaustralian.com.au/contactus The Australian (contact us)] and [http://www.australianit.news.com.au/contactus Australian IT (contact us)]&lt;br /&gt;
* [http://www.thekiwiholiday.com/ The Kiwi Holiday] uses hCards for [http://www.thekiwiholiday.com/view-hostels New Zealand Hostels], [http://www.thekiwiholiday.com/view-restaurants New Zealand Restaurants], and [http://www.thekiwiholiday.com/view-activities New Zealand Activities]. Also provides hCard &amp;quot;download to address book&amp;quot; functionality on listing detail pages, e.g. [http://www.thekiwiholiday.com/restaurant/tonys-steak Tonys Steak Restaurant]&lt;br /&gt;
* [http://www.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://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/ Center 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/139897 Mr T Natt] page.&lt;br /&gt;
* [http://www.monster-prague.cz/ Monster Prague Openings] supports hCard, e.g. home page, contact list to come.&lt;br /&gt;
* [http://www.vogelelaw.com/contact.html Colette Vogele] has an hCard on her contact page with many types of name and contact information. (Marked up by [http://www.talkingtiger.net Naomi Raine]).&lt;br /&gt;
&lt;br /&gt;
== examples by category ==&lt;br /&gt;
'''Want hCard?''' Get started with writing an [[hcard|hCard]] using the [http://microformats.org/code/hcard/creator hCard creator] to write up some contact information, [[validators#hCard|validate]] and publish it, or following the [[hcard-authoring|hCard authoring tips]] to add hCard markup to your current site.  Check out this section for similar examples of types of pages that benefit from hCard markup.&lt;br /&gt;
&lt;br /&gt;
This section organizes examples into several rough categories as follows. If an example fits in more than one cateogry, use the *last* matching category in this list that matches the specific hCard example(s) in the wild that you are trying to categorize.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Individuals|Individuals]]''' - one card per person, perhaps sort alphabetically by &amp;quot;family-name&amp;quot;.  People with their own hCards (typically) on their own site.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Organizations|Organizations]]''' - one card per organization, alphabetical by &amp;quot;fn&amp;quot;.  Organizations with their own hCard(s) (typically) on their own site.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Institutions|Institutions]]''' - which list more than one person, with a count estimating the # of hCards, e.g. 40k for Avon. Also indicate complexity of information supplied, eg. just name+number vs. complete details.  Alphabetically sorted by &amp;quot;org&amp;quot; with perhaps a few individuals listed in a single sub-bullet, comma delimited, sorted by &amp;quot;family-name&amp;quot;.&lt;br /&gt;
# '''[[hcard-supporting-user-profiles|Online Profiles]]''' - which host profiles for more than one person, with a count estimating the # of hCards, e.g. 10m+ for Flickr.com.  Alphabetically sorted by company / service name.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Online_Venues|Online Venues]]''' - which provide listings for businesses or organizations, with a count estimating the # of venues, e.g. ~10k for Upcoming.org. Alphabetically sorted by service/site name, with perhaps a few specific venues listed in a single sub-bullet, comma delimited, sorted by &amp;quot;fn&amp;quot;.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Speakers_Listings|Speakers Listings]]''' - event sites' speakers pages where the speakers are marked up with hCard.  Sort by date, sub-grouped by year.  Most recent first.  Perhaps a few individuals listed in a single sub-bullet each event, comma delimited, sorted by &amp;quot;family-name&amp;quot;.&lt;br /&gt;
# '''[[hcard-examples-in-wild#Group_Blogs|Group Blogs]]''' - blogs with multiple authors marked up with hCard&lt;br /&gt;
# '''[[hcard-examples-in-wild#Authors|Authors]]''' - pages about some other thing, such as books, perhaps reviews etc., which have marked up their authors with hCard&lt;br /&gt;
# '''[[hcard-examples-in-wild#Search_Results|Search Results]]''' - results pages from search engines (either generic or for people/organizations) that return people marked up with hCards.&lt;br /&gt;
&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://christophertcressman.com/ Christopher T. Cressman] put his contact details on [http://christophertcressman.com/ Who is Chris Cressman?] and marked them up with hCard.&lt;br /&gt;
* [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>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=plazes-syntax&amp;diff=34623</id>
		<title>plazes-syntax</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=plazes-syntax&amp;diff=34623"/>
		<updated>2008-11-18T00:14:22Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Set Your Current Location */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Plazes SMS Service Syntax&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Retrieved from the [http://beta.plazes.com/locate/sms_detailed.php Plazes SMS Service page].&lt;br /&gt;
:'''Link broken. Perhaps this one could replace it - I'll let someone else be the judge: http://beta.plazes.com/the/help#faq-12  [[User:WilleRaab|WilleRaab]] 08:32, 25 Jul 2007 (PDT)'''&lt;br /&gt;
&lt;br /&gt;
Once activated, you can send these commands to one of the following numbers and interact with Plazes on your mobile phone.&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;Plazes USA&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;+1 (718) 407-9566 &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;Plazes International&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;+49 176 888 111 33&amp;lt;/span&amp;gt; (German number and charged accordingly)&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Commands ==&lt;br /&gt;
&lt;br /&gt;
=== Set Your Current Location ===&lt;br /&gt;
&lt;br /&gt;
* '''at &amp;amp;lt;plazename&amp;amp;gt;''': set your location to an existing Plaze which is in the same city as your last visited Plaze (no matter if it was visited via SMS, Mobile Plazer or Plazer for Mac/PC).&lt;br /&gt;
** examples:&lt;br /&gt;
*** &amp;lt;code&amp;gt;at bar 25&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;at center pompidou in paris&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;at sony center in berlin&amp;lt;/code&amp;gt;&lt;br /&gt;
* '''in &amp;amp;lt;city&amp;amp;gt;''': to your text message if you have recently changed cities. You can also send in &amp;amp;lt;city&amp;amp;gt; as a single command to just locate yourself within a city.&lt;br /&gt;
** examples:&lt;br /&gt;
*** &amp;lt;code&amp;gt;in münchen&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;in roma&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;in palo alto&amp;lt;/code&amp;gt;&lt;br /&gt;
* '''on &amp;amp;lt;address&amp;amp;gt;''': Add on &amp;amp;lt;address&amp;amp;gt; to your text message if you know you are visiting a new Plaze. You may also send on &amp;amp;lt;address&amp;amp;gt; if you want to locate yourself just at an address. Remember to send in &amp;amp;lt;city&amp;amp;gt; if you are in a new city.&lt;br /&gt;
** examples:&lt;br /&gt;
*** &amp;lt;code&amp;gt;on alexanderplatz&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;on mariahilfer strasse 43 in wien&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;on 11 market street in San Francisco&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that you can freely combine the at, in  and on commands.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
* '''at''' soy luck club '''on''' 115 greenwich avenue '''in''' new york city&lt;br /&gt;
* '''at''' centraal station '''on''' stationsplein '''in''' amsterdam&lt;br /&gt;
* '''at''' hotel new koyo '''on''' 2-26-13 NIHONZUTSUMI TAITO-KU '''in''' tokyo&lt;br /&gt;
&lt;br /&gt;
=== Finding Your Contacts ===&lt;br /&gt;
&lt;br /&gt;
* '''contacts?''': Send '''contacts?''' to see where your friends are. Plazes SMS will return a list of your contacts, their current location and if possible, distance and direction from where you are.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Invite Others while on the Go ===&lt;br /&gt;
&lt;br /&gt;
* '''invite &amp;amp;lt;name of friend&amp;amp;gt; &amp;amp;lt;mobile number of friend&amp;amp;gt;''': to invite someone while on the go. Your friend will get an SMS text message with your current location. Your friend will then get added to your contact list as soon as he/she replies.&amp;lt;br /&amp;gt; &amp;lt;br /&amp;gt;The easy way to invite friends is to forward the contact right out of your phone's address book. If your phone supports sending business cards or vCards via SMS, just send the Plazes SMS the vCard of the friend you would like to invite. &lt;br /&gt;
** examples:&lt;br /&gt;
*** &amp;lt;code&amp;gt;invite tanya 0049 173 12345678&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;invite john_doe +1 555 123-4567&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Help on the Go ===&lt;br /&gt;
&lt;br /&gt;
* '''help''': Send '''help''' to receive a text message with the basic commands for Plazes SMS.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[picoformats]]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=plazes-syntax-fr&amp;diff=34622</id>
		<title>plazes-syntax-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=plazes-syntax-fr&amp;diff=34622"/>
		<updated>2008-11-18T00:13:53Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Régler votre Localisation Actuelle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Plazes SMS Service Syntaxe&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Retrouvée à partir de la page [http://beta.plazes.com/locate/sms_detailed.php Plazes SMS Service].&lt;br /&gt;
&lt;br /&gt;
Une fois activée, vous pouvez envoyer ces commandes à +1 (718) 407-9566 (USA) ou +49 176 888 111 33 et interagir avec Plazes sur votre téléphone mobile.&lt;br /&gt;
&lt;br /&gt;
== Commandes ==&lt;br /&gt;
&lt;br /&gt;
=== Régler votre Localisation Actuelle===&lt;br /&gt;
&lt;br /&gt;
* '''at &amp;amp;lt;plazename&amp;amp;gt;''': règle votre localisation à un Plaze existant qui est dans la même ville que votre Plaze dernièrement visité (peut importe qu'il ait été visité par SMS, Mobile Plazer ou Plazer pour Mac/PC).&lt;br /&gt;
** exemples :&lt;br /&gt;
*** &amp;lt;code&amp;gt;at bar 25&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;at center pompidou in paris&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;at sony center in berlin&amp;lt;/code&amp;gt;&lt;br /&gt;
* '''in &amp;amp;lt;city&amp;amp;gt;''': to your text message if you have recently changed cities. You can also send in &amp;amp;lt;city&amp;amp;gt; as a single command to just locate yourself within a city.&lt;br /&gt;
** examples:&lt;br /&gt;
*** &amp;lt;code&amp;gt;in münchen&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;in roma&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;in palo alto&amp;lt;/code&amp;gt;&lt;br /&gt;
* '''on &amp;amp;lt;address&amp;amp;gt;''': Add on &amp;amp;lt;address&amp;amp;gt; to your text message if you know you are visiting a new Plaze. You may also send on &amp;amp;lt;address&amp;amp;gt; if you want to locate yourself just at an address. Remember to send in &amp;amp;lt;city&amp;amp;gt; if you are in a new city.&lt;br /&gt;
** examples:&lt;br /&gt;
*** &amp;lt;code&amp;gt;on alexanderplatz&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;on mariahilfer strasse 43 in wien&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;on 11 market street in San Francisco&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notez que vous pouvez librement combiner les commandes at, in et on.&lt;br /&gt;
&lt;br /&gt;
Exemples :&lt;br /&gt;
* '''at''' soy luck club '''on''' 115 greenwich avenue '''in''' new york city&lt;br /&gt;
* '''at''' centraal station '''on''' stationsplein '''in''' amsterdam&lt;br /&gt;
* '''at''' hotel new koyo '''on''' 2-26-13 NIHONZUTSUMI TAITO-KU '''in''' tokyo&lt;br /&gt;
&lt;br /&gt;
=== Trouver vos Contacts ===&lt;br /&gt;
&lt;br /&gt;
* '''contacts?''': Envoyez '''contacts?''' pour voir où sont vos amis. Plazes SMS renverra une liste de vos contacts, leur localisation en cours et si possible, la distance et la direction à partir de l'endroit où vous êtes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Invitez d'Autres pendant le Trajet===&lt;br /&gt;
&lt;br /&gt;
* '''invite &amp;amp;lt;name of friend&amp;amp;gt; &amp;amp;lt;mobile number of friend&amp;amp;gt;''': to invite someone while on the go. Your friend will get an SMS text message with your current location. Your friend will then get added to your contact list as soon as he/she replies.&amp;lt;br /&amp;gt; &amp;lt;br /&amp;gt;The easy way to invite friends is to forward the contact right out of your phone's address book. If your phone supports sending business cards or vCards via SMS, just send the Plazes SMS the vCard of the friend you would like to invite. &lt;br /&gt;
** examples:&lt;br /&gt;
*** &amp;lt;code&amp;gt;invite tanya 0049 173 12345678&amp;lt;/code&amp;gt;&lt;br /&gt;
*** &amp;lt;code&amp;gt;invite john_doe +1 555 123-4567&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Help on the Go ===&lt;br /&gt;
&lt;br /&gt;
* '''help''': Send '''help''' to receive a text message with the basic commands for Plazes SMS.&lt;br /&gt;
&lt;br /&gt;
==Voir aussi==&lt;br /&gt;
*[[picoformats-fr|picoformats]]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-02-17-barcamplondon2&amp;diff=34621</id>
		<title>events/2007-02-17-barcamplondon2</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-02-17-barcamplondon2&amp;diff=34621"/>
		<updated>2008-11-18T00:13:25Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats at BarCampLondon&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
&lt;br /&gt;
[http://barcamp.org/BarCampLondon2 BarCampLondon] is the 2nd UK BarCamp event.  &lt;br /&gt;
&lt;br /&gt;
It will be held at the BT Center in London on Saturday 17th February (9am) - Sunday 18th February (5pm), 2007&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;What is BarCampLondon2? Think of it as a way to get the tech/geek community together in London. What will happen during the event? Only one thing is certain: It's up to you to decide. The most important thing you should take away from the event? Relationships with other geeks!&amp;quot;''&lt;br /&gt;
&lt;br /&gt;
== Microformateers in attendance ==&lt;br /&gt;
&lt;br /&gt;
*[[User:Phae|Frances Berriman]] - ''Didn't make it due to illness!''&lt;br /&gt;
*[[User:Brian|Brian Suda]]&lt;br /&gt;
*[[User:Ben Ward|Ben Ward]]&lt;br /&gt;
*[[User:Adactio|Jeremy Keith]]&lt;br /&gt;
*[[User:TomMorris|Tom Morris]]&lt;br /&gt;
*[[User:ChristopheDucamp|Christophe Ducamp]]&lt;br /&gt;
&lt;br /&gt;
== Proposed sessions ==&lt;br /&gt;
&lt;br /&gt;
*Microformats discussion panel - Contestants required! Bug [[User:Phae|Frances]] or [[User:Brian|Brian]] to find out a bit more.&lt;br /&gt;
*[[User:TomMorris|Tom]]'s Semantic Web presentation will contain a fair bit on microformats, especially parsing in to RDF.&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* ..&lt;br /&gt;
&lt;br /&gt;
== Session Comments and Q&amp;amp;A ==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
&lt;br /&gt;
http://farm1.static.flickr.com/188/395210009_7e3f1f0344.jpg&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events-fr/2007-02-17-barcamplondon2&amp;diff=34620</id>
		<title>events-fr/2007-02-17-barcamplondon2</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events-fr/2007-02-17-barcamplondon2&amp;diff=34620"/>
		<updated>2008-11-18T00:11:33Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats au BarCamp à Londres&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
L'un des nombreux [[events-fr|événements]] microformats.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
&lt;br /&gt;
[http://barcamp.org/BarCampLondon2 BarCampLondon] est le second événement BarCamp en Grande Bretagne.&lt;br /&gt;
&lt;br /&gt;
Il aura lieu au BT Center à Londres le Samedi 17 février à 9:00 jusqu'aù Dimanche 18 février  (17:00) 2007&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Qu'est-ce que BarCampLondon2 ? Pensez-le comme un moyen de rassembler ensemble la communauté geek à Londres. Que se passera-t'il durant l'événement ? Seule une chose est certaine : Il n'en tient à vous que de décider. La chose la plus importante que vous devriez tirer de cet événement ? Des relations avec d'autres geeks !&amp;quot;''&lt;br /&gt;
&lt;br /&gt;
== Microformateurs parmi les participants ==&lt;br /&gt;
&lt;br /&gt;
*[[User:Phae|Frances Berriman]]&lt;br /&gt;
*[[User:Brian|Brian Suda]]&lt;br /&gt;
*[[User:Ben Ward|Ben Ward]]&lt;br /&gt;
*[[User:Adactio|Jeremy Keith]]&lt;br /&gt;
*[[User:TomMorris|Tom Morris]]&lt;br /&gt;
*[[User:ChristopheDucamp|Christophe Ducamp]]&lt;br /&gt;
&lt;br /&gt;
== Sessions proposées  ==&lt;br /&gt;
&lt;br /&gt;
*Microformats discussion panel - Besoin de contestataires ! Bug [[User:Phae|Frances]] ou [[User:Brian|Brian]] pour en trouver un peu plus.&lt;br /&gt;
&lt;br /&gt;
== Participants ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* ..&lt;br /&gt;
&lt;br /&gt;
== Commentaires et Q&amp;amp;R sur la Session ==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples-quantitative&amp;diff=34619</id>
		<title>species-examples-quantitative</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples-quantitative&amp;diff=34619"/>
		<updated>2008-11-18T00:11:00Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Contributors */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Species Examples (Quantitative )=&lt;br /&gt;
&lt;br /&gt;
Quantitative examples of common and scientific names of living things, which could be marked up with a &amp;quot;'''[[species]]'''&amp;quot; (or similar) microformat.&lt;br /&gt;
&lt;br /&gt;
:'''Note: the original name of the proposed microformat, &amp;quot;species&amp;quot;, is likely to change, probably to &amp;quot;hbiota&amp;quot; or &amp;quot;htaxon&amp;quot;. The former has been retained here, to avoid having to make many repetitive and perhaps redundant edits'''&lt;br /&gt;
&lt;br /&gt;
'''If you find a link which is no longer working, please replace it with a suitable alternative, rather than simply deleting it. Thank you.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Evidence==&lt;br /&gt;
&lt;br /&gt;
:'''There are perhaps 30 million distinct species in the world today.''' [http://www.simonyi.ox.ac.uk/dawkins/WorldOfDawkins-archive/Dawkins/Work/Articles/1996-11-12dimbleby.shtml]&lt;br /&gt;
&lt;br /&gt;
For earlier evidence of quantitative use of species' and other taxonomic names, see&lt;br /&gt;
[http://microformats.org/discuss/mail/microformats-discuss/2006-September/005790.html] and [http://microformats.org/discuss/mail/microformats-discuss/2006-September/005791.html]. Furthermore:&lt;br /&gt;
&lt;br /&gt;
*Wikipedia:&lt;br /&gt;
** '''All''' species articles, e.g. [http://en.wikipedia.org/wiki/Little_Ringed_Plover Little Ringed Plover] (see [[species-examples#Wikipedia|above]])&lt;br /&gt;
** '''All''' genera articles, e.g. [http://en.wikipedia.org/wiki/Plover Charadrius (Plover)] (e.g [http://en.wikipedia.org/wiki/Category:Genera_of_birds '''200''' pages, for birds] alone)&lt;br /&gt;
** '''All''' higher classes, e.g. [http://en.wikipedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
** '''All''' regional lists, e.g. [http://en.wikipedia.org/wiki/List_of_British_birds:_non-passerines List of British birds]&lt;br /&gt;
** '''All''' dedicatees, e.g. [http://en.wikipedia.org/wiki/Alexander_Wilson Alexander Wilson]&lt;br /&gt;
** '''All''' authorities, e.g. [http://en.wikipedia.org/wiki/Giovanni_Antonio_Scopoli Giovanni Antonio Scopoli]&lt;br /&gt;
** '''All''' images of living things, e.g. [http://en.wikipedia.org/wiki/Image:Charadrius_dubius_4_%28Marek_Szczepanek%29.jpg Charadrius dubius 4 (Marek Szczepanek).jpg]&lt;br /&gt;
** Many reserves, lakes, and other places of interest, e.g. [http://en.wikipedia.org/wiki/Belvide Belvide]&lt;br /&gt;
** Many biological authors and illustrators, e.g. [http://en.wikipedia.org/wiki/John_Audubon John Audubon]; [http://en.wikipedia.org/wiki/Gilbert_White Gilbert White]&lt;br /&gt;
** Random articles on other topics, e.g. [http://en.wikipedia.org/wiki/Balancing_lake Balancing lake}]&lt;br /&gt;
** Wines. E/g/ [http://en.wikipedia.org/wiki/Cabernet_Sauvignon Cabernet Sauvignon]&lt;br /&gt;
** '''All the above, again''', for each alternative language e.g. [http://cy.wikipedia.org/wiki/Cwtiad_Torchog_Bach Welsh]; [http://fr.wikipedia.org/wiki/Petit_gravelot French]; [http://zh.wikipedia.org/wiki/%E9%87%91%E7%9C%B6%E9%B8%BB Chinese]&lt;br /&gt;
&lt;br /&gt;
*Wikimedia Commons&lt;br /&gt;
** '''All''' species indexes, e.g. [http://commons.wikimedia.org/wiki/Charadrius_dubius Charadrius dubius]&lt;br /&gt;
** '''Each individual''' image, e.g. [http://commons.wikimedia.org/wiki/Image:Charadrius_dubius_1_%28Marek_Szczepanek%29.jpg Charadrius dubius 1 (Marek Szczepanek).jpg]&lt;br /&gt;
** '''Each family''' list [http://commons.wikimedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
&lt;br /&gt;
*Wiktionary&lt;br /&gt;
** '''All''' species articles, e.g. [http://en.wiktionary.org/wiki/american_golden_plover American Golden Plover]&lt;br /&gt;
** '''All''' family articles, e.g. [http://en.wiktionary.org/wiki/plover Plover]&lt;br /&gt;
** '''Many of the above, in other langauges''' e.g. [http://en.wiktionary.org/wiki/aquila_reale Italian]; [http://en.wiktionary.org/wiki/%D0%B1%D0%B5%D1%80%D0%BA%D1%83%D1%82 Russian]&lt;br /&gt;
&lt;br /&gt;
*Wikispecies&lt;br /&gt;
** '''Every''' speices, e.g. [http://species.wikimedia.org/wiki/Charadrius_dubius Charadrius dubius]&lt;br /&gt;
** '''Every''' genus, e.g. [http://species.wikimedia.org/wiki/Charadrius Charadrius]&lt;br /&gt;
** '''Every''' sub-family, e.g. [http://species.wikimedia.org/wiki/Charadriinae Charadriinae]&lt;br /&gt;
** '''Every''' family, e.g. [http://species.wikimedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
** and so on, for '''every other rank'''&lt;br /&gt;
** '''Every''' image (e.g. [http://species.wikimedia.org/wiki/Image:Charadrius_hiaticula_He.jpg Charadrius hiaticula He.jpg]&lt;br /&gt;
&lt;br /&gt;
*Birds Wiki (new)&lt;br /&gt;
** e.g. [http://birds.wikia.com/wiki/American_Goldfinch American Goldfinch]&lt;br /&gt;
&lt;br /&gt;
*Wikibooks&lt;br /&gt;
** [http://en.wikibooks.org/wiki/Dichotomous_Key Dichotomous Key]&lt;br /&gt;
&lt;br /&gt;
*WikiFlora&lt;br /&gt;
** All flowering plants of North-western Europe, (e.g [http://www.floralimages.co.uk/pvincaminor.htm ''Vinca minor'']), genus ([http://www.floralwiki.co.uk/wiki/index.php?title=Vinca Vinca])families ([http://www.floralwiki.co.uk/wiki/index.php?title=Apocynaceae Apocynaceae]), etc.&lt;br /&gt;
&lt;br /&gt;
*Google&lt;br /&gt;
**[http://www.google.co.uk/search?hl=en&amp;amp;hs=dBU&amp;amp;client=firefox-a&amp;amp;&amp;amp;resnum=0&amp;amp;ct=result&amp;amp;cd=1&amp;amp;q=%22E+coli%22&amp;amp;spell=1 Google finds about '''37,600,000''' for &amp;quot;E coli&amp;quot;].&lt;br /&gt;
***[http://www.google.co.uk/search?hs=Apo&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;q=%22Escherichia+coli%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''19,500,000''' for &amp;quot;Escherichia coli&amp;quot;]&lt;br /&gt;
***[http://www.google.co.uk/search?hs=zqo&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;q=%22Ecoli%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''722,000''' for &amp;quot;Ecoli&amp;quot;].&lt;br /&gt;
**[http://www.google.co.uk/search?hs=vWC&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;q=%22Homo+sapiens%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''14,200,000''' for &amp;quot;Homo sapiens&amp;quot;] &lt;br /&gt;
***[http://www.google.co.uk/search?hs=vWC&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;q=%22Homo+sapien%22+-sapiens&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''273,000''' for the mis-spelling &amp;quot;Homo sapien&amp;quot; -sapiens.]&lt;br /&gt;
**[http://www.google.co.uk/search?q=%22%22Homo+erectus%22%22&amp;amp;start=0&amp;amp;ie=utf-8&amp;amp;oe=utf-8 Google finds about '''1,260,000''' for &amp;quot;&amp;quot;Homo erectus&amp;quot;]&lt;br /&gt;
**[http://www.google.com/search?svnum=10&amp;amp;as_scoring=r&amp;amp;hl=en&amp;amp;edition=us&amp;amp;as_drrb=q&amp;amp;as_qdr=&amp;amp;as_mind=1&amp;amp;as_minm=9&amp;amp;as_maxd=1&amp;amp;as_maxm=10&amp;amp;q=%22Clostridium+difficile%22&amp;amp;ie=UTF-8&amp;amp;sa=N&amp;amp;tab=nw Google finds about '''1,380,000''' for &amp;quot;Clostridium difficile&amp;quot;].&lt;br /&gt;
**[http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;edition=us&amp;amp;q=%22Passer+domesticus%22&amp;amp;btnG=Search Google finds about '''841,000''' for &amp;quot;Passer domesticus&amp;quot;].&lt;br /&gt;
***[http://images.google.com/images?hl=en&amp;amp;lr=&amp;amp;edition=us&amp;amp;q=%22Passer%20domesticus%22&amp;amp;btnG=Search&amp;amp;sa=N&amp;amp;tab=wi Google images finds about '''3,140''' for &amp;quot;Passer domesticus&amp;quot;].&lt;br /&gt;
**[http://www.google.co.uk/search?hl=en&amp;amp;hs=oEU&amp;amp;client=firefox-a&amp;amp;sa=X&amp;amp;oi=spell&amp;amp;resnum=0&amp;amp;ct=result&amp;amp;cd=1&amp;amp;q=%22Acer+palmatum%22&amp;amp;spell=1 Google finds about '''602,000''' for &amp;quot;Acer palmatum&amp;quot;]&lt;br /&gt;
** At the time of writing, '''every single one''' of the first 20 [http://www.google.com/search?q=%22Noctule+bat%22 Google results for &amp;quot;Noctule Bat&amp;quot;] also includes the scientific name ''Nyctalus noctula''.  &lt;br /&gt;
*A [http://www.google.com/search?q=checklist+NEAR+species Google search for &amp;quot;checklist NEAR species&amp;quot;] finds about '''1,090,000''' - each checklist includes many species e.g. [http://www.earthlife.net/insects/mantchek.html], [http://www.kingsnake.com/dfw/checklist/species_checklist.htm], [http://www.taylor.edu/academics/acadDepts/ees/sedges/checklist.html]&lt;br /&gt;
&lt;br /&gt;
*A [http://www.google.com/search?q=checklist+NEAR+species Google search for &amp;quot;species identification sheet&amp;quot;] finds about ''' 13,400''' - e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm]&lt;br /&gt;
&lt;br /&gt;
*[http://www.arkive.org/ ARKive] - '''2000''' species (&amp;quot;It is ARKive's current aim to compile audio-visual records, where such media exists, for the 15,000-plus species currently threatened with extinction, according to the World Conservation Union's (IUCN) Red List of Threatened Species.&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* [http://zipcodezoo.com/ Zip Code Zoo] '''875,712''' plants and '''932,168''' animals ... '''79,438''' '''1,537''' sound recordings, '''23,704,023''' field observations (from 28,236 data sets and 1,326 data providers which show latitude and longitude, from which they have generated 218,283 State Maps, 715,397 Country Maps, 156,248 Google maps showing up to 200 sightings each, and 18,177 Google Earth maps showing all sightings). Uses full taxonomies e.g. [http://zipcodezoo.com/animals/s/sciurus_carolinensis.asp Eastern Gray Squirrel, ''Sciurus carolinensis'']&lt;br /&gt;
&lt;br /&gt;
* [http://www.gbif.org/ Global Biodiversity Information Facility] '''983,000''' scientific names and '''253,000''' common names [http://www.europe.gbif.net/portal/index.jsp]. Uses full taxonomies, e.g [http://www.secretariat.gbif.net/portal/ecat_browser.jsp?taxonKey=1579222&amp;amp;countryKey=0&amp;amp;resourceKey=0&amp;amp;showIncertae=false&amp;amp;nextTask=ecat_browser.jsp ''Pterothrissus cristatus'']. Has '''118,932,333''' individual records, e.g. [http://www.secretariat.gbif.net/portal/digit_detail.jsp?scientificName=Pterothrissus+cristatus&amp;amp;headingTaxonKey=1579222&amp;amp;serviceKey=310&amp;amp;resourceKey=971&amp;amp;recordKey=0&amp;amp;nextTask=digit_viewer.jsp Pterothrissus cristatus at Lee-on-the-Solent on 2004-07-22]&lt;br /&gt;
&lt;br /&gt;
*[http://www.rhs.org.uk/rhsplantfinder/plantfinder.asp Royal Horticultural Society - RHS Plant Finder] - '''70,000''' plants&lt;br /&gt;
&lt;br /&gt;
*[http://www.bacterio.net List of Prokaryotic Names (formerly List of Bacterial Names)] - 2,032 *files*; '''10,268''' published names (to 2006-09-07)&lt;br /&gt;
&lt;br /&gt;
*[http://nbn.nhm.ac.uk/nhm/ UK National Biodiversity Network's Species Dictionary] - &amp;quot;'''more than 196,000''' versions of taxonomic names&amp;quot;, e.g. ''[http://nbn.nhm.ac.uk/nhm/bin/nbntaxa.dll/taxon_details?taxon_key=NBNSYS0000042001 Phalacrocorax carbo subsp. sinensis]''&lt;br /&gt;
&lt;br /&gt;
*[http://www.searchnbn.net/ UK National Biodiversity Network Gateway] - '''20 million+''' species records&lt;br /&gt;
&lt;br /&gt;
*[http://www.sp2000.org/ Species 2000] - '''450,000 species'''&lt;br /&gt;
&lt;br /&gt;
*[http://www.bioimages.org.uk/index.html BioImages - Virtual Fieldguide] - '''53,000''' images depicting 4,600 species (see [[species-brainstorming#Malcolm_Storey|Wiki comments from site owner]])&lt;br /&gt;
&lt;br /&gt;
*[http://animaldiversity.ummz.umich.edu/ Animal Diversity Web] - &amp;quot;'''Thousands''' of species accounts ['''plus'''] descriptions of levels of organization above the species level, especially phyla, classes, and in some cases, orders and families. Hundreds of hyperlinked pages and images illustrate the traits and general biology of these groups&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubio.org/index.php?pagename=home uBio]&lt;br /&gt;
**NameBank is a repository of '''millions''' of recorded biological names and facts that link those names together.&lt;br /&gt;
**ClassificationBank stores multiple classifications and taxonomic concepts that are the result of expert opinions. It extends the functionality of NameBank.&lt;br /&gt;
**Over '''500,000''' common names are catalogued.&lt;br /&gt;
&lt;br /&gt;
*[http://www.birdlife.org/datazone/species/ BirdLife International] - all birds of the world (~'''10,000''')&lt;br /&gt;
&lt;br /&gt;
*[http://bugguide.net/ Bug Guide] - all insects, spiders, and allies, of the USA and Canada (most with more than one page).&lt;br /&gt;
** e.g. [http://bugguide.net/node/view/70875 Arge pectoralis - Birch Sawfly]&lt;br /&gt;
&lt;br /&gt;
*[http://www.birdforum.net/bird_index.php BirdForum Birds Database] - currently &amp;gt;'''5,000''', working towards all 10,000+, species.&lt;br /&gt;
**[http://www.birdforum.net/bird_view.php?bid=5780 Painted Firetail]&lt;br /&gt;
&lt;br /&gt;
*[http://www.bto.org/birdtrack/ BirdTrack]&lt;br /&gt;
**[http://blx1.bto.org/bt-dailyresults/results/s171-20-06.html Lapwing]&lt;br /&gt;
&lt;br /&gt;
*[http://www.discoverlife.org/ Discover Life] - &amp;quot;contains '''306,553''' species. The Polistes Foundation and its scientific partners plan to add high-quality identification guides, maps, images, and text for '''a million species''' by 2012. [...] Each month Discover Life serves approximately 3 million pages and images to 70,000 IP addresses&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*[http://www.record-lrc.co.uk/ rECOrd] (the Local Biological Records Center serving the Cheshire region of England) - '''1.6 million''' species records available online for the public to search and map&lt;br /&gt;
&lt;br /&gt;
*[http://www.dnabarcoding.ca/ Canadian Center for DNA Barcoding ] multiple sites, covering over '''11,000''' species ('''134,990''' records; target 55,000+ species.&lt;br /&gt;
**[http://www.barcodinglife.org/ Barcode of Life Data Systems] &amp;quot;BOLD-ECS provides web developers and bioinformaticians the ability to build tools and workflows that can be integrated with the BOLD framework. We welcome the addition of new analytical modules.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://hbs.bishopmuseum.org/fiji/checklists.html Fiji Arthropod Survey] - (insects, arachnids, crustaceans, and others) &amp;gt; '''7,000''' Families, Genera and Species&lt;br /&gt;
&lt;br /&gt;
*[http://simile.mit.edu/timeline/examples/dinosaurs/dinosaurs2.html Simile Dinosaur Timeline] '''all''' dinosaurs genus - potential hCalendar mash-up.&lt;br /&gt;
&lt;br /&gt;
* [http://www.fishBase.org/search.php Fishbase] '''29,600''' species, '''222,400''' common names, e.g. [http://www.fishbase.org/comnames/CommonNameSummary.cfm?autoctr=14995 Chinese barb], ''  [http://www.fishbase.org/Summary/SpeciesSummary.php?id=4677&amp;amp;CFID=1552828&amp;amp;CFTOKEN=13861129 Puntius semifasciolatus]'' and [[http://www.fishbase.org/comnames/CommonNamesList.cfm?ID=4677&amp;amp;GenusName=Puntius&amp;amp;SpeciesName=semifasciolatus&amp;amp;StockCode=4895 all its other common names]].&lt;br /&gt;
&lt;br /&gt;
* [http://nmnhgoph.si.edu/msw/  Mammal Species of the World] - ~'''8,000''' species (e.g. [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/12216 Eurasian Badger, ''Meles meles''], plus higher-level ranks (e.g. [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/5001 Order ''Insectivora''], [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/5071 Family ''Erinaceidae''], etc.).&lt;br /&gt;
&lt;br /&gt;
* [http://research.amnh.org/herpetology/amphibia/index.php Amphibian Species of the World] - &amp;gt;'''6,000''' species (e.g. [http://research.amnh.org/herpetology/amphibia/references.php?id=6984 ''Cochranella daidalea '']), plus higher-level ranks (e.g. [http://research.amnh.org/herpetology/amphibia/references.php?id=6815 Family ''Centrolenidae''], etc.).&lt;br /&gt;
&lt;br /&gt;
* [http://www.bacterio.cict.fr/index.html List of Prokaryotic (Bacterial) names with Standing in Nomenclature] - '''2,212''' names of genera, species or subspecies (e.g. [http://www.bacterio.cict.fr/allnamesac.html A-C]), and '''124''' names of higher taxa ([http://www.bacterio.cict.fr/validsupragenerinames.html]]) (number cited seems on low side; note [http://www.bacterio.cict.fr/twothousand/twothousandsix.html 856 additions in 2006]).&lt;br /&gt;
&lt;br /&gt;
* [http://www.kew.org/data/grassbase/ Grassbase] -  There are now '''61,141''' names within the nomenclature database and '''11,086''' accepted species with accompanying descriptions.&lt;br /&gt;
&lt;br /&gt;
*PhotoPic&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=bird&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;bird&amp;quot;] = '''929'''&lt;br /&gt;
*** e.g. [http://parentphoto.fotopic.net/c1119884.html Ryan Parent's pictures]&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=insect&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;insect&amp;quot;] = '''194''' &lt;br /&gt;
***e.g. [http://foto-fountain.fotopic.net/ Foto Fountain]&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=wildlife&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;wildlife&amp;quot;] = '''458''' &lt;br /&gt;
***e.g. [http://johnmartin.photos.gb.com/c1113758.html Martin's Photo Images]&lt;br /&gt;
**etc.&lt;br /&gt;
&lt;br /&gt;
* [http://www.nhm.ac.uk/nature-online/biodiversity/nature-navigator/ Nature Navigator]: &amp;quot;information on '''more than 8,000''' of the best-known species that occur in Britain&amp;quot;, e.g. [http://internt.nhm.ac.uk/jobj/runjava.jobj?java=ctol.CTOLServer&amp;amp;method=printNamePage&amp;amp;accountref=987&amp;amp;NAMEID=2384 Eurasian jay]&lt;br /&gt;
&lt;br /&gt;
===Planned sites===&lt;br /&gt;
*[http://herbariaunited.org/atHome/ Herbaria United] (part of The website of the Botanical Collection Managers Group (BCMG), a special ist group of the Linnean Society of London) - &amp;quot;The UK has the world's largest and oldest collections of herbarium specimens held in trust by museums and universities. A new project is just getting underway to put all this online.&amp;quot;&lt;br /&gt;
**Update (2007-02-28) - work has started, and the first pages are available to view.&lt;br /&gt;
&lt;br /&gt;
===Misc===&lt;br /&gt;
*[http://darwin.zoology.gla.ac.uk/~rpage/ispecies/ iSpecies] - a species search engine (e.g. [http://darwin.zoology.gla.ac.uk/~rpage/ispecies/?q=bullfinch&amp;amp;submit=Go search for &amp;quot;Bullfinch&amp;quot;], [http://darwin.zoology.gla.ac.uk/~rpage/ispecies/?q=Charadrius+dubius&amp;amp;submit=Go search for &amp;quot;''Charadrius dubius''&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proponent)&lt;br /&gt;
*Malcolm Storey (per e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Center] (proponent)&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{species}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples-quantitative&amp;diff=34618</id>
		<title>species-examples-quantitative</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples-quantitative&amp;diff=34618"/>
		<updated>2008-11-18T00:10:35Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Evidence */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Species Examples (Quantitative )=&lt;br /&gt;
&lt;br /&gt;
Quantitative examples of common and scientific names of living things, which could be marked up with a &amp;quot;'''[[species]]'''&amp;quot; (or similar) microformat.&lt;br /&gt;
&lt;br /&gt;
:'''Note: the original name of the proposed microformat, &amp;quot;species&amp;quot;, is likely to change, probably to &amp;quot;hbiota&amp;quot; or &amp;quot;htaxon&amp;quot;. The former has been retained here, to avoid having to make many repetitive and perhaps redundant edits'''&lt;br /&gt;
&lt;br /&gt;
'''If you find a link which is no longer working, please replace it with a suitable alternative, rather than simply deleting it. Thank you.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Evidence==&lt;br /&gt;
&lt;br /&gt;
:'''There are perhaps 30 million distinct species in the world today.''' [http://www.simonyi.ox.ac.uk/dawkins/WorldOfDawkins-archive/Dawkins/Work/Articles/1996-11-12dimbleby.shtml]&lt;br /&gt;
&lt;br /&gt;
For earlier evidence of quantitative use of species' and other taxonomic names, see&lt;br /&gt;
[http://microformats.org/discuss/mail/microformats-discuss/2006-September/005790.html] and [http://microformats.org/discuss/mail/microformats-discuss/2006-September/005791.html]. Furthermore:&lt;br /&gt;
&lt;br /&gt;
*Wikipedia:&lt;br /&gt;
** '''All''' species articles, e.g. [http://en.wikipedia.org/wiki/Little_Ringed_Plover Little Ringed Plover] (see [[species-examples#Wikipedia|above]])&lt;br /&gt;
** '''All''' genera articles, e.g. [http://en.wikipedia.org/wiki/Plover Charadrius (Plover)] (e.g [http://en.wikipedia.org/wiki/Category:Genera_of_birds '''200''' pages, for birds] alone)&lt;br /&gt;
** '''All''' higher classes, e.g. [http://en.wikipedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
** '''All''' regional lists, e.g. [http://en.wikipedia.org/wiki/List_of_British_birds:_non-passerines List of British birds]&lt;br /&gt;
** '''All''' dedicatees, e.g. [http://en.wikipedia.org/wiki/Alexander_Wilson Alexander Wilson]&lt;br /&gt;
** '''All''' authorities, e.g. [http://en.wikipedia.org/wiki/Giovanni_Antonio_Scopoli Giovanni Antonio Scopoli]&lt;br /&gt;
** '''All''' images of living things, e.g. [http://en.wikipedia.org/wiki/Image:Charadrius_dubius_4_%28Marek_Szczepanek%29.jpg Charadrius dubius 4 (Marek Szczepanek).jpg]&lt;br /&gt;
** Many reserves, lakes, and other places of interest, e.g. [http://en.wikipedia.org/wiki/Belvide Belvide]&lt;br /&gt;
** Many biological authors and illustrators, e.g. [http://en.wikipedia.org/wiki/John_Audubon John Audubon]; [http://en.wikipedia.org/wiki/Gilbert_White Gilbert White]&lt;br /&gt;
** Random articles on other topics, e.g. [http://en.wikipedia.org/wiki/Balancing_lake Balancing lake}]&lt;br /&gt;
** Wines. E/g/ [http://en.wikipedia.org/wiki/Cabernet_Sauvignon Cabernet Sauvignon]&lt;br /&gt;
** '''All the above, again''', for each alternative language e.g. [http://cy.wikipedia.org/wiki/Cwtiad_Torchog_Bach Welsh]; [http://fr.wikipedia.org/wiki/Petit_gravelot French]; [http://zh.wikipedia.org/wiki/%E9%87%91%E7%9C%B6%E9%B8%BB Chinese]&lt;br /&gt;
&lt;br /&gt;
*Wikimedia Commons&lt;br /&gt;
** '''All''' species indexes, e.g. [http://commons.wikimedia.org/wiki/Charadrius_dubius Charadrius dubius]&lt;br /&gt;
** '''Each individual''' image, e.g. [http://commons.wikimedia.org/wiki/Image:Charadrius_dubius_1_%28Marek_Szczepanek%29.jpg Charadrius dubius 1 (Marek Szczepanek).jpg]&lt;br /&gt;
** '''Each family''' list [http://commons.wikimedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
&lt;br /&gt;
*Wiktionary&lt;br /&gt;
** '''All''' species articles, e.g. [http://en.wiktionary.org/wiki/american_golden_plover American Golden Plover]&lt;br /&gt;
** '''All''' family articles, e.g. [http://en.wiktionary.org/wiki/plover Plover]&lt;br /&gt;
** '''Many of the above, in other langauges''' e.g. [http://en.wiktionary.org/wiki/aquila_reale Italian]; [http://en.wiktionary.org/wiki/%D0%B1%D0%B5%D1%80%D0%BA%D1%83%D1%82 Russian]&lt;br /&gt;
&lt;br /&gt;
*Wikispecies&lt;br /&gt;
** '''Every''' speices, e.g. [http://species.wikimedia.org/wiki/Charadrius_dubius Charadrius dubius]&lt;br /&gt;
** '''Every''' genus, e.g. [http://species.wikimedia.org/wiki/Charadrius Charadrius]&lt;br /&gt;
** '''Every''' sub-family, e.g. [http://species.wikimedia.org/wiki/Charadriinae Charadriinae]&lt;br /&gt;
** '''Every''' family, e.g. [http://species.wikimedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
** and so on, for '''every other rank'''&lt;br /&gt;
** '''Every''' image (e.g. [http://species.wikimedia.org/wiki/Image:Charadrius_hiaticula_He.jpg Charadrius hiaticula He.jpg]&lt;br /&gt;
&lt;br /&gt;
*Birds Wiki (new)&lt;br /&gt;
** e.g. [http://birds.wikia.com/wiki/American_Goldfinch American Goldfinch]&lt;br /&gt;
&lt;br /&gt;
*Wikibooks&lt;br /&gt;
** [http://en.wikibooks.org/wiki/Dichotomous_Key Dichotomous Key]&lt;br /&gt;
&lt;br /&gt;
*WikiFlora&lt;br /&gt;
** All flowering plants of North-western Europe, (e.g [http://www.floralimages.co.uk/pvincaminor.htm ''Vinca minor'']), genus ([http://www.floralwiki.co.uk/wiki/index.php?title=Vinca Vinca])families ([http://www.floralwiki.co.uk/wiki/index.php?title=Apocynaceae Apocynaceae]), etc.&lt;br /&gt;
&lt;br /&gt;
*Google&lt;br /&gt;
**[http://www.google.co.uk/search?hl=en&amp;amp;hs=dBU&amp;amp;client=firefox-a&amp;amp;&amp;amp;resnum=0&amp;amp;ct=result&amp;amp;cd=1&amp;amp;q=%22E+coli%22&amp;amp;spell=1 Google finds about '''37,600,000''' for &amp;quot;E coli&amp;quot;].&lt;br /&gt;
***[http://www.google.co.uk/search?hs=Apo&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;q=%22Escherichia+coli%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''19,500,000''' for &amp;quot;Escherichia coli&amp;quot;]&lt;br /&gt;
***[http://www.google.co.uk/search?hs=zqo&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;q=%22Ecoli%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''722,000''' for &amp;quot;Ecoli&amp;quot;].&lt;br /&gt;
**[http://www.google.co.uk/search?hs=vWC&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;q=%22Homo+sapiens%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''14,200,000''' for &amp;quot;Homo sapiens&amp;quot;] &lt;br /&gt;
***[http://www.google.co.uk/search?hs=vWC&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;q=%22Homo+sapien%22+-sapiens&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''273,000''' for the mis-spelling &amp;quot;Homo sapien&amp;quot; -sapiens.]&lt;br /&gt;
**[http://www.google.co.uk/search?q=%22%22Homo+erectus%22%22&amp;amp;start=0&amp;amp;ie=utf-8&amp;amp;oe=utf-8 Google finds about '''1,260,000''' for &amp;quot;&amp;quot;Homo erectus&amp;quot;]&lt;br /&gt;
**[http://www.google.com/search?svnum=10&amp;amp;as_scoring=r&amp;amp;hl=en&amp;amp;edition=us&amp;amp;as_drrb=q&amp;amp;as_qdr=&amp;amp;as_mind=1&amp;amp;as_minm=9&amp;amp;as_maxd=1&amp;amp;as_maxm=10&amp;amp;q=%22Clostridium+difficile%22&amp;amp;ie=UTF-8&amp;amp;sa=N&amp;amp;tab=nw Google finds about '''1,380,000''' for &amp;quot;Clostridium difficile&amp;quot;].&lt;br /&gt;
**[http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;edition=us&amp;amp;q=%22Passer+domesticus%22&amp;amp;btnG=Search Google finds about '''841,000''' for &amp;quot;Passer domesticus&amp;quot;].&lt;br /&gt;
***[http://images.google.com/images?hl=en&amp;amp;lr=&amp;amp;edition=us&amp;amp;q=%22Passer%20domesticus%22&amp;amp;btnG=Search&amp;amp;sa=N&amp;amp;tab=wi Google images finds about '''3,140''' for &amp;quot;Passer domesticus&amp;quot;].&lt;br /&gt;
**[http://www.google.co.uk/search?hl=en&amp;amp;hs=oEU&amp;amp;client=firefox-a&amp;amp;sa=X&amp;amp;oi=spell&amp;amp;resnum=0&amp;amp;ct=result&amp;amp;cd=1&amp;amp;q=%22Acer+palmatum%22&amp;amp;spell=1 Google finds about '''602,000''' for &amp;quot;Acer palmatum&amp;quot;]&lt;br /&gt;
** At the time of writing, '''every single one''' of the first 20 [http://www.google.com/search?q=%22Noctule+bat%22 Google results for &amp;quot;Noctule Bat&amp;quot;] also includes the scientific name ''Nyctalus noctula''.  &lt;br /&gt;
*A [http://www.google.com/search?q=checklist+NEAR+species Google search for &amp;quot;checklist NEAR species&amp;quot;] finds about '''1,090,000''' - each checklist includes many species e.g. [http://www.earthlife.net/insects/mantchek.html], [http://www.kingsnake.com/dfw/checklist/species_checklist.htm], [http://www.taylor.edu/academics/acadDepts/ees/sedges/checklist.html]&lt;br /&gt;
&lt;br /&gt;
*A [http://www.google.com/search?q=checklist+NEAR+species Google search for &amp;quot;species identification sheet&amp;quot;] finds about ''' 13,400''' - e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm]&lt;br /&gt;
&lt;br /&gt;
*[http://www.arkive.org/ ARKive] - '''2000''' species (&amp;quot;It is ARKive's current aim to compile audio-visual records, where such media exists, for the 15,000-plus species currently threatened with extinction, according to the World Conservation Union's (IUCN) Red List of Threatened Species.&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* [http://zipcodezoo.com/ Zip Code Zoo] '''875,712''' plants and '''932,168''' animals ... '''79,438''' '''1,537''' sound recordings, '''23,704,023''' field observations (from 28,236 data sets and 1,326 data providers which show latitude and longitude, from which they have generated 218,283 State Maps, 715,397 Country Maps, 156,248 Google maps showing up to 200 sightings each, and 18,177 Google Earth maps showing all sightings). Uses full taxonomies e.g. [http://zipcodezoo.com/animals/s/sciurus_carolinensis.asp Eastern Gray Squirrel, ''Sciurus carolinensis'']&lt;br /&gt;
&lt;br /&gt;
* [http://www.gbif.org/ Global Biodiversity Information Facility] '''983,000''' scientific names and '''253,000''' common names [http://www.europe.gbif.net/portal/index.jsp]. Uses full taxonomies, e.g [http://www.secretariat.gbif.net/portal/ecat_browser.jsp?taxonKey=1579222&amp;amp;countryKey=0&amp;amp;resourceKey=0&amp;amp;showIncertae=false&amp;amp;nextTask=ecat_browser.jsp ''Pterothrissus cristatus'']. Has '''118,932,333''' individual records, e.g. [http://www.secretariat.gbif.net/portal/digit_detail.jsp?scientificName=Pterothrissus+cristatus&amp;amp;headingTaxonKey=1579222&amp;amp;serviceKey=310&amp;amp;resourceKey=971&amp;amp;recordKey=0&amp;amp;nextTask=digit_viewer.jsp Pterothrissus cristatus at Lee-on-the-Solent on 2004-07-22]&lt;br /&gt;
&lt;br /&gt;
*[http://www.rhs.org.uk/rhsplantfinder/plantfinder.asp Royal Horticultural Society - RHS Plant Finder] - '''70,000''' plants&lt;br /&gt;
&lt;br /&gt;
*[http://www.bacterio.net List of Prokaryotic Names (formerly List of Bacterial Names)] - 2,032 *files*; '''10,268''' published names (to 2006-09-07)&lt;br /&gt;
&lt;br /&gt;
*[http://nbn.nhm.ac.uk/nhm/ UK National Biodiversity Network's Species Dictionary] - &amp;quot;'''more than 196,000''' versions of taxonomic names&amp;quot;, e.g. ''[http://nbn.nhm.ac.uk/nhm/bin/nbntaxa.dll/taxon_details?taxon_key=NBNSYS0000042001 Phalacrocorax carbo subsp. sinensis]''&lt;br /&gt;
&lt;br /&gt;
*[http://www.searchnbn.net/ UK National Biodiversity Network Gateway] - '''20 million+''' species records&lt;br /&gt;
&lt;br /&gt;
*[http://www.sp2000.org/ Species 2000] - '''450,000 species'''&lt;br /&gt;
&lt;br /&gt;
*[http://www.bioimages.org.uk/index.html BioImages - Virtual Fieldguide] - '''53,000''' images depicting 4,600 species (see [[species-brainstorming#Malcolm_Storey|Wiki comments from site owner]])&lt;br /&gt;
&lt;br /&gt;
*[http://animaldiversity.ummz.umich.edu/ Animal Diversity Web] - &amp;quot;'''Thousands''' of species accounts ['''plus'''] descriptions of levels of organization above the species level, especially phyla, classes, and in some cases, orders and families. Hundreds of hyperlinked pages and images illustrate the traits and general biology of these groups&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubio.org/index.php?pagename=home uBio]&lt;br /&gt;
**NameBank is a repository of '''millions''' of recorded biological names and facts that link those names together.&lt;br /&gt;
**ClassificationBank stores multiple classifications and taxonomic concepts that are the result of expert opinions. It extends the functionality of NameBank.&lt;br /&gt;
**Over '''500,000''' common names are catalogued.&lt;br /&gt;
&lt;br /&gt;
*[http://www.birdlife.org/datazone/species/ BirdLife International] - all birds of the world (~'''10,000''')&lt;br /&gt;
&lt;br /&gt;
*[http://bugguide.net/ Bug Guide] - all insects, spiders, and allies, of the USA and Canada (most with more than one page).&lt;br /&gt;
** e.g. [http://bugguide.net/node/view/70875 Arge pectoralis - Birch Sawfly]&lt;br /&gt;
&lt;br /&gt;
*[http://www.birdforum.net/bird_index.php BirdForum Birds Database] - currently &amp;gt;'''5,000''', working towards all 10,000+, species.&lt;br /&gt;
**[http://www.birdforum.net/bird_view.php?bid=5780 Painted Firetail]&lt;br /&gt;
&lt;br /&gt;
*[http://www.bto.org/birdtrack/ BirdTrack]&lt;br /&gt;
**[http://blx1.bto.org/bt-dailyresults/results/s171-20-06.html Lapwing]&lt;br /&gt;
&lt;br /&gt;
*[http://www.discoverlife.org/ Discover Life] - &amp;quot;contains '''306,553''' species. The Polistes Foundation and its scientific partners plan to add high-quality identification guides, maps, images, and text for '''a million species''' by 2012. [...] Each month Discover Life serves approximately 3 million pages and images to 70,000 IP addresses&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*[http://www.record-lrc.co.uk/ rECOrd] (the Local Biological Records Center serving the Cheshire region of England) - '''1.6 million''' species records available online for the public to search and map&lt;br /&gt;
&lt;br /&gt;
*[http://www.dnabarcoding.ca/ Canadian Center for DNA Barcoding ] multiple sites, covering over '''11,000''' species ('''134,990''' records; target 55,000+ species.&lt;br /&gt;
**[http://www.barcodinglife.org/ Barcode of Life Data Systems] &amp;quot;BOLD-ECS provides web developers and bioinformaticians the ability to build tools and workflows that can be integrated with the BOLD framework. We welcome the addition of new analytical modules.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://hbs.bishopmuseum.org/fiji/checklists.html Fiji Arthropod Survey] - (insects, arachnids, crustaceans, and others) &amp;gt; '''7,000''' Families, Genera and Species&lt;br /&gt;
&lt;br /&gt;
*[http://simile.mit.edu/timeline/examples/dinosaurs/dinosaurs2.html Simile Dinosaur Timeline] '''all''' dinosaurs genus - potential hCalendar mash-up.&lt;br /&gt;
&lt;br /&gt;
* [http://www.fishBase.org/search.php Fishbase] '''29,600''' species, '''222,400''' common names, e.g. [http://www.fishbase.org/comnames/CommonNameSummary.cfm?autoctr=14995 Chinese barb], ''  [http://www.fishbase.org/Summary/SpeciesSummary.php?id=4677&amp;amp;CFID=1552828&amp;amp;CFTOKEN=13861129 Puntius semifasciolatus]'' and [[http://www.fishbase.org/comnames/CommonNamesList.cfm?ID=4677&amp;amp;GenusName=Puntius&amp;amp;SpeciesName=semifasciolatus&amp;amp;StockCode=4895 all its other common names]].&lt;br /&gt;
&lt;br /&gt;
* [http://nmnhgoph.si.edu/msw/  Mammal Species of the World] - ~'''8,000''' species (e.g. [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/12216 Eurasian Badger, ''Meles meles''], plus higher-level ranks (e.g. [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/5001 Order ''Insectivora''], [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/5071 Family ''Erinaceidae''], etc.).&lt;br /&gt;
&lt;br /&gt;
* [http://research.amnh.org/herpetology/amphibia/index.php Amphibian Species of the World] - &amp;gt;'''6,000''' species (e.g. [http://research.amnh.org/herpetology/amphibia/references.php?id=6984 ''Cochranella daidalea '']), plus higher-level ranks (e.g. [http://research.amnh.org/herpetology/amphibia/references.php?id=6815 Family ''Centrolenidae''], etc.).&lt;br /&gt;
&lt;br /&gt;
* [http://www.bacterio.cict.fr/index.html List of Prokaryotic (Bacterial) names with Standing in Nomenclature] - '''2,212''' names of genera, species or subspecies (e.g. [http://www.bacterio.cict.fr/allnamesac.html A-C]), and '''124''' names of higher taxa ([http://www.bacterio.cict.fr/validsupragenerinames.html]]) (number cited seems on low side; note [http://www.bacterio.cict.fr/twothousand/twothousandsix.html 856 additions in 2006]).&lt;br /&gt;
&lt;br /&gt;
* [http://www.kew.org/data/grassbase/ Grassbase] -  There are now '''61,141''' names within the nomenclature database and '''11,086''' accepted species with accompanying descriptions.&lt;br /&gt;
&lt;br /&gt;
*PhotoPic&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=bird&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;bird&amp;quot;] = '''929'''&lt;br /&gt;
*** e.g. [http://parentphoto.fotopic.net/c1119884.html Ryan Parent's pictures]&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=insect&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;insect&amp;quot;] = '''194''' &lt;br /&gt;
***e.g. [http://foto-fountain.fotopic.net/ Foto Fountain]&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=wildlife&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;wildlife&amp;quot;] = '''458''' &lt;br /&gt;
***e.g. [http://johnmartin.photos.gb.com/c1113758.html Martin's Photo Images]&lt;br /&gt;
**etc.&lt;br /&gt;
&lt;br /&gt;
* [http://www.nhm.ac.uk/nature-online/biodiversity/nature-navigator/ Nature Navigator]: &amp;quot;information on '''more than 8,000''' of the best-known species that occur in Britain&amp;quot;, e.g. [http://internt.nhm.ac.uk/jobj/runjava.jobj?java=ctol.CTOLServer&amp;amp;method=printNamePage&amp;amp;accountref=987&amp;amp;NAMEID=2384 Eurasian jay]&lt;br /&gt;
&lt;br /&gt;
===Planned sites===&lt;br /&gt;
*[http://herbariaunited.org/atHome/ Herbaria United] (part of The website of the Botanical Collection Managers Group (BCMG), a special ist group of the Linnean Society of London) - &amp;quot;The UK has the world's largest and oldest collections of herbarium specimens held in trust by museums and universities. A new project is just getting underway to put all this online.&amp;quot;&lt;br /&gt;
**Update (2007-02-28) - work has started, and the first pages are available to view.&lt;br /&gt;
&lt;br /&gt;
===Misc===&lt;br /&gt;
*[http://darwin.zoology.gla.ac.uk/~rpage/ispecies/ iSpecies] - a species search engine (e.g. [http://darwin.zoology.gla.ac.uk/~rpage/ispecies/?q=bullfinch&amp;amp;submit=Go search for &amp;quot;Bullfinch&amp;quot;], [http://darwin.zoology.gla.ac.uk/~rpage/ispecies/?q=Charadrius+dubius&amp;amp;submit=Go search for &amp;quot;''Charadrius dubius''&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proponent)&lt;br /&gt;
*Malcolm Storey (per e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Centre] (proponent)&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{species}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-fr&amp;diff=34617</id>
		<title>species-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-fr&amp;diff=34617"/>
		<updated>2008-11-18T00:10:31Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Contributeurs &amp;amp; Supporters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Species (Les Espèces)=&lt;br /&gt;
&lt;br /&gt;
:'''Pour les idées les plus récentes et faire des commentaires, regardez svp la page en [[species-brainstorming-fr|species-brainstorming]].'''&lt;br /&gt;
&lt;br /&gt;
:'''Note : Le nom original du microformat, &amp;quot;species&amp;quot;, va probablement changer, probablement vers &amp;quot;biota&amp;quot; ou &amp;quot;taxon&amp;quot;. Le précédent a été maintenu ici, pour éviter de faire trop de changements répétitifs et peut-être des éditions redondantes.'''&lt;br /&gt;
&lt;br /&gt;
:'''{{UpdateMarker-fr}} La nouvelle version [http://www.kaply.com/weblog/2007/02/16/operator-07a-is-available/ beta d'Operator] détecte ''Species''.  [http://www.westmidlandbirdclub.com/records/lists-2004uf.htm Une page test est disponible]. Les travaux sur les deux continuent !'''&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
Que ce soit à l'oral ou à l'écrit, les personnes utilisent au quotidien les noms vernaculaires ET taxonomiques des espèces - lisez simplement ou regardez n'importe quel magazine populaire de jardin ou quelque programme de télévision.&lt;br /&gt;
&lt;br /&gt;
Considérons cette liste: &amp;quot;'''merle'''&amp;quot;, &amp;quot;'''caniche'''&amp;quot;, &amp;quot;'''T Rex'''&amp;quot;, &amp;quot;'''patate'''&amp;quot;, &amp;quot;'''Nénuphar'''&amp;quot;, &amp;quot;'''Glycine'''&amp;quot;, &amp;quot;'''Ver Solitaire'''&amp;quot;, &amp;quot;'''HIV'''&amp;quot;, &amp;quot;'''Rubéole'''&amp;quot; et &amp;quot;'''être humain'''&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;'''T Rex'''&amp;quot; est &amp;quot;''Tyrannosaurus rex''&amp;quot;; &amp;quot;'''E. Coli'''&amp;quot; est &amp;quot;''Escherichia coli''&amp;quot;; &amp;quot;'''HIV'''&amp;quot; est &amp;quot;''Human immunodeficiency virus''&amp;quot; et &amp;quot;'''Rubéole'''&amp;quot; est le &amp;quot;''virus Rubella''&amp;quot;. Tous sont des noms taxonomiques (ou scientifiques) d'espèces uniques.&lt;br /&gt;
&lt;br /&gt;
La &amp;quot;'''''[http://fr.wikipedia.org/wiki/Wisteria Wisteria]'''''&amp;quot; est un genre taxonomique.&lt;br /&gt;
&lt;br /&gt;
Le &amp;quot;'''Merle'''&amp;quot;; le &amp;quot;'''caniche'''&amp;quot;; la &amp;quot;'''patate'''&amp;quot;; le &amp;quot;'''Nénuphar'''&amp;quot; et l'&amp;quot;'''être humain'''&amp;quot; (les disputes à propos de l'homme de Néanderthal n'y résistant pas) sont des noms vernaculaires (ou communs), mais font encore référence à des espèces individuelles.&lt;br /&gt;
&lt;br /&gt;
Le nommage scientifique des organismes fait partie de la [http://www.calacademy.org/research/informatics/sblum/pub/biodiv_informatics.html biodiversité informatique] - &amp;quot;the application of information technology to the domain of biodiversity&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Aussi, pour plus de précisions, voir la Note 4 en anglais sur  [http://www.w3.org/MarkUp/future/papers/rothenburg-19980412.html l'article de recherche de Robert Rothenburg - Avril 1998 à propos des dictionnaires]. Il est intéressant que les microformats nous aient donnés les trois premiers items manquants - et que nous soyons maintenant en train de débattre du quatrième !&lt;br /&gt;
&lt;br /&gt;
==Proposition==&lt;br /&gt;
&lt;br /&gt;
Imaginez voir une page web avec une référence vers une espèce - et pouvoir utiliser un ajout à votre navigateur pour être embarqué directement vers l'information concernant cette espèce, sur, disons, Wikipedia, ou Wikispecies, ou Google Images, ou tout autre site, tels qu'une base de données académique ou tout autre site de votre choix.&lt;br /&gt;
&lt;br /&gt;
Votre logiciel saurait automatiquement chercher sur le site A si le nom scientifique pointait vers un papillon, site B pour un oiseau, et le site C pour une plante - et vous pourriez régler vos préférences sur quels sites seraient choisis et dans quel ordre deux ou plus de sites seraient cherchés (par ex. pour les lépidoptères, essayer d'abord [http://ukmoths.org.uk/ UK Moths], si non trouvé essayer [http://www.nhm.ac.uk/research-curation/projects/lepindex/index.html The Global Lepidoptera Names Index]).&lt;br /&gt;
&lt;br /&gt;
Ou en supposant que quelqu'un écrit une longue page web, triée chronologiquement sur les oiseaux, insectes, mammifères et plantes qu'il a pu croiser sur un safari, avec beaucoup de description en prose sur les sentiers qu'il a traversés et les gens avec qui il était, mais que vous vouliez extraire une liste d'espèces, triées par ordre alphabétique dans une classe taxonomique (les oiseaux d'abord, puis les insectes, puis...) ou en ordre taxonomique.&lt;br /&gt;
&lt;br /&gt;
Ce sont tout simplement deux des choses que pourrait faire pour vous un microformat.&lt;br /&gt;
&lt;br /&gt;
Votre logiciel, ou un moteur de recherche, pourrait faire la [http://fr.wikipedia.org/wiki/Beagle_%28homonymie%29 différence] entre les pages discutant du logiciel beagle, du bateau et du chien de compagnie ; ou des oiseaux qui volent à l'opposé du film d'Hitchcock.&lt;br /&gt;
&lt;br /&gt;
Un autre avantage serait que les agents utilisateurs pourraient être instruits pour traiter le texte balisé de cette manière comme n'étant pas dans la base de langage du document ou de l'élément dans lequel il apparaît - la prononciation serait comme pour le Latin, elle ne devrait pas être traduite (par ex. là où un mot composé apparaît aussi être un mot valide dans cette langue, comme le genre biologique '''''Colon''''', '''''Circus''' cyaneus'', ''Hesperia '''comma''''', ou tout ce qui apparaît avec ''major'' ou ''minor'' sur une page écrite en anglais) et ne devrait pas être vérifiable en orthographe, ou être vérifié par un dictionnaire spécialisé. (identifié comme un besoin dans cette [http://www.alvestrand.no/pipermail/ietf-languages/2003-February/000590.html discussion de 2003 à propos des valeurs de langage pour les noms taxonomiques]).&lt;br /&gt;
&lt;br /&gt;
Un avantage supplémentaire qu'apporterait le microformat des espèces serait l'enrichissement et l'amélioration des checklists d'espèces, qui sont communément trouvées sur le web. Généralement parlant, une checklist d'espèces est une liste de taxos, usuellement pour un groupe particulier ou des organismes équivalents telles que les oiseaux ou plantes vasculaires, trouvés dans une région géographique particulière (un pays, [http://www.westmidlandbirdclub.com/records/lists.htm a region], un département, un site spécifique, qu'il soit petit ou grand). Un exemple typique de checklist d'espèces est la [http://www.coleopterist.org.uk/checklist.htm Checklist des Coléoptères des Iles Britanniques] qui, comme le nom le laisse entendre, liste les coléoptères connus pour être trouvés dans les Iles Britanniques. Une [http://www.google.com/search?q=species+checklist Recherche Google sur  &amp;quot;species checklist&amp;quot;] révélera bien plus d'exemples équivalents. Les &amp;quot;Species checklists&amp;quot; sont présentés généralement de façon cohérente mais sont généralement impossibles à parser et à utiliser par les ordinateurs du fait d'un manque de standard commun pour les baliser en HTML. Le microformat des espèces fournirait ce standard commun. Une check-list autorisant complètement le microformat serait parsable par les ordinateurs et de ce fait fournirait aux développeurs un moyen par lequel agréger et autrement faire usage de ce contenu de valeur au dessus de la vision en ligne actuelle mais plutôt limitée.&lt;br /&gt;
&lt;br /&gt;
Un exemple spécifique d'utilisation de checklist pourrait consister à permettre à un [http://www.aditsite.co.uk/html/choosing_recording_software.html logiciel d'enregistrement biologique] de parser et agréger les checklists afin de les inclure dans leurs propres dictionnaires d'espèces. Généralement, il existe des attentes de plusieurs mois voire plusieurs années pour que les humains réunissent à la main les modifications de checklists pour une inclusion dans un logiciel d'enregistrement ; le parsage automatique de checklist et l'agrégation faciliterait cela grandement et améliorerait l'efficacité de ce processus.&lt;br /&gt;
&lt;br /&gt;
==Taxonomies existantes==&lt;br /&gt;
La proposition respecte toutes les taxonomies biologiques existantes, et n'est pas destinée à changer ou supplanter quelque taxonomie existante - elle est simplement destinée à fourir aux webmestres (que ce soit pour les sites personnels de hobbies jusqu'aux grosses bases de données académiques ; des magazines jusqu'aux commerces de détail) avec une méthode consistant soit : &lt;br /&gt;
# à baliser un nom taxonomique (ou une paire taxo-nom commun) de telle manière que ses composants puissent être reconnus par les ordinateurs '''ou'''&lt;br /&gt;
# à baliser un nom commun, de manière à l'associer à un nom taxonomique, de façon que les composants du dernier puissent être reconnus par les ordinateurs.&lt;br /&gt;
&lt;br /&gt;
==Embarquement dans d'autres microformats==&lt;br /&gt;
Les microformats proposés [[plant-fr|plant]] (avec régime de soin, fournisseur, etc.), [[hlisting-fr|hlisting]], [[recipe-fr|recipe]] ou [[hreview-fr|hReview]] (et probablement d'autres) pourraient contenir un nom de microformat scientifique, de la même façon qu'un [[hcalendar-fr|hCalendar]] peut contenir une [[hcard-fr|hCard]].&lt;br /&gt;
&lt;br /&gt;
Voir aussi en anglais : [[species-brainstorming#Future development]]&lt;br /&gt;
&lt;br /&gt;
==Références ==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Scientific_classification Wikipedia: Scientific classification]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Binomial_nomenclature Wikipedia: Binomial nomenclature]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Trinomial_nomenclature  Wikipedia: Trinomial nomenclature]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Taxon Wikipedia: Taxon]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivars]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Variety_%28biology%29 Wikipedia: Varieties]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Subvariety Wikipedia: Sub-varieties]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Form_%28botany%29 Wikipedia: forms]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Synonym_%28taxonomy%29 Wikipedia: Synonyms]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Wikipedia:How_to_read_a_taxobox How to read a taxobox]&lt;br /&gt;
*[http://www.iczn.org/ http://www.iczn.org/ International Commission on Zoological Nomenclature]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Binomial_nomenclature Wikipedia: International Commission on Zoological Nomenclature]&lt;br /&gt;
*[http://www.iczn.org/ International Code of Botanical Nomenclature]&lt;br /&gt;
*[http://www.rhs.org.uk/rhsplantfinder/plantnaming.asp RHS Plant Finder: The naming of plants] &lt;br /&gt;
*[http://www.ishs.org/sci/icracpco.htm International Code of Nomenclature for Cultivated Plants]&lt;br /&gt;
*[http://www.tdwg.org/index.html Taxonomic Databases Working Group]&lt;br /&gt;
*[http://www.hortax.org.uk/ Hortax] - The Names of Garden Plants&lt;br /&gt;
*[http://www.bgbm.fu-berlin.de/iapt/nomenclature/code/SaintLouis/0000St.Luistitle.htm www.bgbm.fu-berlin.de/iapt/nomenclature/code/SaintLouis/0000St.Luistitle.htm]&lt;br /&gt;
*[http://species.wikimedia.org/wiki/Main_Page WikiSpecies]&lt;br /&gt;
*[http://en.wiktionary.org/wiki/taxonomy Wiktionary: Taxonomy]&lt;br /&gt;
*[http://jbi.nhm.ku.edu/index.php/jbi/article/view/25 Biodiversity Informatics: Taxonomic names, metadata, and the Semantic Web]&lt;br /&gt;
&lt;br /&gt;
==Contributeurs &amp;amp; Supporters==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proposition)&lt;br /&gt;
*[[User:RogerHyam|Roger Hyam]] (partie intéressée ?)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Center] (proposition)&lt;br /&gt;
*[[User:SteveMcBill|Steve McWilliam]], [http://www.rECOrd-LRC.co.uk/ rECOrd - The Biodiversity Information System for the Cheshire region] (supporteur)&lt;br /&gt;
*[[User:KierenPitts|Kieren Pitts]], [http://www.ilrt.bris.ac.uk/ ILRT - Institute for Learning and Research Technology] and the [http://www.amentsoc.org/ Amateur Entomologists' Society] (supporteur)&lt;br /&gt;
*[[User:CyndyParr|Cyndy Parr]], [http://spire.umbc.edu Spire project] (partie intéressée)&lt;br /&gt;
*[[User:AnimalDiversity|Animal Diversity Web]], [http://animaldiversity.org] (partie intéressée)&lt;br /&gt;
*[[User:Christoph|Christoph Champ]], [http://www.christophchamp.com/] (supporteur avec parcours en biochimie, biophysique et bioinformatique)&lt;br /&gt;
*[[Christophe Ducamp]] (supporteur amateur, traduction et prêt à étudier localisation en français)&lt;br /&gt;
&lt;br /&gt;
==Voir aussi==&lt;br /&gt;
Voici quelques chantiers en cours : &lt;br /&gt;
{{species-fr}}&lt;br /&gt;
*[https://addons.mozilla.org/firefox/169/ Biobar] - Une Extension Firefox personnalisable fournissant une barre d'outils et des options de contenus de menus pour naviguer dans les données biologiques et bases de données, qui montre ce qu'un agent utilisateur pourrait faire, avec des données extraites d'un microformat dédié sur les espèces.&lt;br /&gt;
&lt;br /&gt;
==Implémentations (en attente)==&lt;br /&gt;
*[http://www.spacefornature.co.uk/biorec/taxoncheck.htm Taxon Checker] - un outil logiciel qui, compte tenu d'un nom commun, cherche les données taxonomiques appropriées et affiche les détails sélectionnés de l'espèce sous forme (parmi d'autres options) d'un fragment HTML. Il a pour but de fournir des gabarits pour afficher de tels fragments avec un balisage microformat &amp;quot;species&amp;quot;, une fois que cette proposition sera implémentée.&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples-quantitative-fr&amp;diff=34616</id>
		<title>species-examples-quantitative-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples-quantitative-fr&amp;diff=34616"/>
		<updated>2008-11-18T00:09:47Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Contributeurs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Exemples d'Espèces (Quantitatif) =&lt;br /&gt;
&lt;br /&gt;
Des exemples quantitatifs de noms communs et scientifiques des choses vivantes, qui pourraient être balisés avec un microformat &amp;quot;'''[[species-fr|espèces]]'''&amp;quot; (ou similaire).&lt;br /&gt;
&lt;br /&gt;
:'''Note : Le nom original du microformat, &amp;quot;species&amp;quot;, va probablement changer, probablement vers &amp;quot;biota&amp;quot; ou &amp;quot;taxon&amp;quot;. Le précédent a été maintenu ici, pour éviter de faire trop de changements répétitifs et peut-être des éditions redondantes.'''&lt;br /&gt;
&lt;br /&gt;
'''Si vous trouvez un lien qui ne fonctionne plus, remplacez-le svp avec une alternative correspondantes, plutôt que de l'effacer simplement. Merci.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Evidence==&lt;br /&gt;
&lt;br /&gt;
For earlier evidence of quantitative use of species' and other taxonomic names, see&lt;br /&gt;
[http://microformats.org/discuss/mail/microformats-discuss/2006-September/005790.html] and [http://microformats.org/discuss/mail/microformats-discuss/2006-September/005791.html]. Furthermore:&lt;br /&gt;
&lt;br /&gt;
*Wikipedia:&lt;br /&gt;
** '''Tous''' les articles sur l'espèce, par ex. [http://en.wikipedia.org/wiki/Little_Ringed_Plover Little Ringed Plover] (voir [[species-examples#Wikipedia|au-dessus]])&lt;br /&gt;
** '''All''' genera articles, e.g. [http://en.wikipedia.org/wiki/Plover Charadrius (Plover)] (e.g [http://en.wikipedia.org/wiki/Category:Genera_of_birds '''200''' pages, for birds] alone)&lt;br /&gt;
** '''All''' higher classes, e.g. [http://en.wikipedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
** '''All''' regional lists, e.g. [http://en.wikipedia.org/wiki/List_of_British_birds:_non-passerines List of British birds]&lt;br /&gt;
** '''All''' dedicatees, e.g. [http://en.wikipedia.org/wiki/Alexander_Wilson Alexander Wilson]&lt;br /&gt;
** '''All''' authorities, e.g. [http://en.wikipedia.org/wiki/Giovanni_Antonio_Scopoli Giovanni Antonio Scopoli]&lt;br /&gt;
** '''All''' images of living things, e.g. [http://en.wikipedia.org/wiki/Image:Charadrius_dubius_4_%28Marek_Szczepanek%29.jpg Charadrius dubius 4 (Marek Szczepanek).jpg]&lt;br /&gt;
** Many reserves, lakes, and other places of interest, e.g. [http://en.wikipedia.org/wiki/Belvide Belvide]&lt;br /&gt;
** Many biological authors and illustrators, e.g. [http://en.wikipedia.org/wiki/John_Audubon John Audubon]; [http://en.wikipedia.org/wiki/Gilbert_White Gilbert White]&lt;br /&gt;
** Random articles on other topics, e.g. [http://en.wikipedia.org/wiki/Balancing_lake Balancing lake}]&lt;br /&gt;
** Wines. E/g/ [http://en.wikipedia.org/wiki/Cabernet_Sauvignon Cabernet Sauvignon]&lt;br /&gt;
** '''All the above, again''', for each alternative language e.g. [http://cy.wikipedia.org/wiki/Cwtiad_Torchog_Bach Welsh]; [http://fr.wikipedia.org/wiki/Petit_gravelot French]; [http://zh.wikipedia.org/wiki/%E9%87%91%E7%9C%B6%E9%B8%BB Chinese]&lt;br /&gt;
&lt;br /&gt;
*Wikimedia Commons&lt;br /&gt;
** '''All''' species indexes, e.g. [http://commons.wikimedia.org/wiki/Charadrius_dubius Charadrius dubius]&lt;br /&gt;
** '''Each individual''' image, e.g. [http://commons.wikimedia.org/wiki/Image:Charadrius_dubius_1_%28Marek_Szczepanek%29.jpg Charadrius dubius 1 (Marek Szczepanek).jpg]&lt;br /&gt;
** '''Each family''' list [http://commons.wikimedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
&lt;br /&gt;
*Wiktionary&lt;br /&gt;
** '''All''' species articles, e.g. [http://en.wiktionary.org/wiki/american_golden_plover American Golden Plover]&lt;br /&gt;
** '''All''' family articles, e.g. [http://en.wiktionary.org/wiki/plover Plover]&lt;br /&gt;
** '''Many of the above, in other langauges''' e.g. [http://en.wiktionary.org/wiki/aquila_reale Italian]; [http://en.wiktionary.org/wiki/%D0%B1%D0%B5%D1%80%D0%BA%D1%83%D1%82 Russian]&lt;br /&gt;
&lt;br /&gt;
*Wikispecies&lt;br /&gt;
** '''Every''' speices, e.g. [http://species.wikimedia.org/wiki/Charadrius_dubius Charadrius dubius]&lt;br /&gt;
** '''Every''' genus, e.g. [http://species.wikimedia.org/wiki/Charadrius Charadrius]&lt;br /&gt;
** '''Every''' sub-family, e.g. [http://species.wikimedia.org/wiki/Charadriinae Charadriinae]&lt;br /&gt;
** '''Every''' family, e.g. [http://species.wikimedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
** and so on, for '''every other rank'''&lt;br /&gt;
** '''Every''' image (e.g. [http://species.wikimedia.org/wiki/Image:Charadrius_hiaticula_He.jpg Charadrius hiaticula He.jpg]&lt;br /&gt;
&lt;br /&gt;
*Wikibooks&lt;br /&gt;
** [http://en.wikibooks.org/wiki/Dichotomous_Key Dichotomous Key]&lt;br /&gt;
&lt;br /&gt;
*Google&lt;br /&gt;
**[http://www.google.co.uk/search?hl=en&amp;amp;hs=dBU&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla:en-US:official&amp;amp;sa=X&amp;amp;oi=spell&amp;amp;resnum=0&amp;amp;ct=result&amp;amp;cd=1&amp;amp;q=%22E+coli%22&amp;amp;spell=1 Google finds about '''37,600,000''' for &amp;quot;E coli&amp;quot;].&lt;br /&gt;
***[http://www.google.co.uk/search?hs=Apo&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;amp;q=%22Escherichia+coli%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''19,500,000''' for &amp;quot;Escherichia coli&amp;quot;]&lt;br /&gt;
***[http://www.google.co.uk/search?hs=zqo&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;amp;q=%22Ecoli%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''722,000''' for &amp;quot;Ecoli&amp;quot;].&lt;br /&gt;
**[http://www.google.co.uk/search?hs=vWC&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;amp;q=%22Homo+sapiens%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''14,200,000''' for &amp;quot;Homo sapiens&amp;quot;] &lt;br /&gt;
***[http://www.google.co.uk/search?hs=vWC&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;amp;q=%22Homo+sapien%22+-sapiens&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''273,000''' for the mis-spelling &amp;quot;Homo sapien&amp;quot; -sapiens.]&lt;br /&gt;
**[http://www.google.co.uk/search?q=%22%22Homo+erectus%22%22&amp;amp;start=0&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla:en-US:official Google finds about '''1,260,000''' for &amp;quot;&amp;quot;Homo erectus&amp;quot;]&lt;br /&gt;
**[http://www.google.com/search?svnum=10&amp;amp;as_scoring=r&amp;amp;hl=en&amp;amp;edition=us&amp;amp;as_drrb=q&amp;amp;as_qdr=&amp;amp;as_mind=1&amp;amp;as_minm=9&amp;amp;as_maxd=1&amp;amp;as_maxm=10&amp;amp;q=%22Clostridium+difficile%22&amp;amp;ie=UTF-8&amp;amp;sa=N&amp;amp;tab=nw Google finds about '''1,380,000''' for &amp;quot;Clostridium difficile&amp;quot;].&lt;br /&gt;
**[http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;edition=us&amp;amp;q=%22Passer+domesticus%22&amp;amp;btnG=Search Google finds about '''841,000''' for &amp;quot;Passer domesticus&amp;quot;].&lt;br /&gt;
***[http://images.google.com/images?hl=en&amp;amp;lr=&amp;amp;edition=us&amp;amp;q=%22Passer%20domesticus%22&amp;amp;btnG=Search&amp;amp;sa=N&amp;amp;tab=wi Google images finds about '''3,140''' for &amp;quot;Passer domesticus&amp;quot;].&lt;br /&gt;
**[http://www.google.co.uk/search?hl=en&amp;amp;hs=oEU&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla:en-US:official&amp;amp;sa=X&amp;amp;oi=spell&amp;amp;resnum=0&amp;amp;ct=result&amp;amp;cd=1&amp;amp;q=%22Acer+palmatum%22&amp;amp;spell=1 Google finds about '''602,000''' for &amp;quot;Acer palmatum&amp;quot;]&lt;br /&gt;
** At the time of writing, '''every single one''' of the first 20 [http://www.google.com/search?q=%22Noctule+bat%22 Google results for &amp;quot;Noctule Bat&amp;quot;] also includes the scientific name ''Nyctalus noctula''.  &lt;br /&gt;
*A [http://www.google.com/search?q=checklist+NEAR+species Google search for &amp;quot;checklist NEAR species&amp;quot;] finds about '''1,090,000''' - each checklist includes many species e.g. [http://www.earthlife.net/insects/mantchek.html], [http://www.kingsnake.com/dfw/checklist/species_checklist.htm], [http://www.taylor.edu/academics/acadDepts/ees/sedges/checklist.html]&lt;br /&gt;
&lt;br /&gt;
*A [http://www.google.com/search?q=checklist+NEAR+species Google search for &amp;quot;species identification sheet&amp;quot;] finds about ''' 13,400''' - e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm]&lt;br /&gt;
&lt;br /&gt;
*[http://www.arkive.org/ ARKive] - '''2000''' species (&amp;quot;It is ARKive's current aim to compile audio-visual records, where such media exists, for the 15,000-plus species currently threatened with extinction, according to the World Conservation Union's (IUCN) Red List of Threatened Species.&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* [http://zipcodezoo.com/ Zip Code Zoo] '''875,712''' plants and '''932,168''' animals ... '''79,438''' '''1,537''' sound recordings, '''23,704,023''' field observations (from 28,236 data sets and 1,326 data providers which show latitude and longitude, from which they have generated 218,283 State Maps, 715,397 Country Maps, 156,248 Google maps showing up to 200 sightings each, and 18,177 Google Earth maps showing all sightings). Uses full taxonomies e.g. [http://zipcodezoo.com/animals/s/sciurus_carolinensis.asp Eastern Gray Squirrel, ''Sciurus carolinensis'']&lt;br /&gt;
&lt;br /&gt;
* [http://www.gbif.org/ Global Biodiversity Information Facility] '''983,000''' scientific names and '''253,000''' common names [http://www.europe.gbif.net/portal/index.jsp]. Uses full taxonomies, e.g [http://www.secretariat.gbif.net/portal/ecat_browser.jsp?taxonKey=1579222&amp;amp;countryKey=0&amp;amp;resourceKey=0&amp;amp;showIncertae=false&amp;amp;nextTask=ecat_browser.jsp ''Pterothrissus cristatus'']. Has '''118,932,333''' individual records, e.g. [http://www.secretariat.gbif.net/portal/digit_detail.jsp?scientificName=Pterothrissus+cristatus&amp;amp;headingTaxonKey=1579222&amp;amp;serviceKey=310&amp;amp;resourceKey=971&amp;amp;recordKey=0&amp;amp;nextTask=digit_viewer.jsp Pterothrissus cristatus at Lee-on-the-Solent on 2004-07-22]&lt;br /&gt;
&lt;br /&gt;
*[http://www.rhs.org.uk/rhsplantfinder/plantfinder.asp Royal Horticultural Society - RHS Plant Finder] - '''70,000''' plants&lt;br /&gt;
&lt;br /&gt;
*[http://www.bacterio.net List of Prokaryotic Names (formerly List of Bacterial Names)] - 2,032 *files*; '''10,268''' published names (to 2006-09-07)&lt;br /&gt;
&lt;br /&gt;
*[http://nbn.nhm.ac.uk/nhm/ UK National Biodiversity Network's Species Dictionary]&lt;br /&gt;
&lt;br /&gt;
*[http://www.searchnbn.net/ UK National Biodiversity Network Gateway] - '''20 million+''' species records&lt;br /&gt;
&lt;br /&gt;
*[http://www.sp2000.org/ Species 2000] - '''450,000 species'''&lt;br /&gt;
&lt;br /&gt;
*[http://www.bioimages.org.uk/index.html BioImages - Virtual Fieldguide] - '''53,000''' images depicting 4,600 species (see [[species-brainstorming#Malcolm_Storey|Wiki comments from site owner]])&lt;br /&gt;
&lt;br /&gt;
*[http://animaldiversity.ummz.umich.edu/ Animal Diversity Web] - &amp;quot;'''Thousands''' of species accounts ['''plus'''] descriptions of levels of organization above the species level, especially phyla, classes, and in some cases, orders and families. Hundreds of hyperlinked pages and images illustrate the traits and general biology of these groups&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubio.org/index.php?pagename=home uBio]&lt;br /&gt;
**NameBank is a repository of '''millions''' of recorded biological names and facts that link those names together.&lt;br /&gt;
**ClassificationBank stores multiple classifications and taxonomic concepts that are the result of expert opinions. It extends the functionality of NameBank.&lt;br /&gt;
**Over '''500,000''' common names are catalogued.&lt;br /&gt;
&lt;br /&gt;
*[http://www.birdlife.org/datazone/species/ BirdLife International] - all birds of the world (~'''10,000''')&lt;br /&gt;
&lt;br /&gt;
*[http://bugguide.net/ Bug Guide] - all insects, spiders, and allies, of the USA and Canada (most with more than one page).&lt;br /&gt;
** e.g. [http://bugguide.net/node/view/70875 Arge pectoralis - Birch Sawfly]&lt;br /&gt;
&lt;br /&gt;
*[http://www.bto.org/birdtrack/ BirdTrack]&lt;br /&gt;
**[http://blx1.bto.org/bt-dailyresults/results/s171-20-06.html Lapwing]&lt;br /&gt;
&lt;br /&gt;
*[http://www.discoverlife.org/ Discover Life] - &amp;quot;contains '''306,553''' species. The Polistes Foundation and its scientific partners plan to add high-quality identification guides, maps, images, and text for '''a million species''' by 2012. [...] Each month Discover Life serves approximately 3 million pages and images to 70,000 IP addresses&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*[http://www.record-lrc.co.uk/ rECOrd] (the Local Biological Records Center serving the Cheshire region of England) - '''1.6 million''' species records available online for the public to search and map&lt;br /&gt;
&lt;br /&gt;
*[http://www.dnabarcoding.ca/ Canadian Center for DNA Barcoding ] multiple sites, covering over '''11,000''' species ('''134,990''' records; target 55,000+ species.&lt;br /&gt;
**[http://www.barcodinglife.org/ Barcode of Life Data Systems] &amp;quot;BOLD-ECS provides web developers and bioinformaticians the ability to build tools and workflows that can be integrated with the BOLD framework. We welcome the addition of new analytical modules.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://hbs.bishopmuseum.org/fiji/checklists.html Fiji Arthropod Survey] - (insects, arachnids, crustaceans, and others) &amp;gt; '''7,000''' Families, Genera and Species&lt;br /&gt;
&lt;br /&gt;
*[http://simile.mit.edu/timeline/examples/dinosaurs/dinosaurs2.html Simile Dinosaur Timeline] '''all''' dinosaurs genus - potential hCalendar mash-up.&lt;br /&gt;
&lt;br /&gt;
* [http://www.fishBase.org/search.php Fishbase] '''29,600''' species, '''222,400''' common names, e.g. [http://www.fishbase.org/comnames/CommonNameSummary.cfm?autoctr=14995 Chinese barb], ''  [http://www.fishbase.org/Summary/SpeciesSummary.php?id=4677&amp;amp;CFID=1552828&amp;amp;CFTOKEN=13861129 Puntius semifasciolatus]'' and [[http://www.fishbase.org/comnames/CommonNamesList.cfm?ID=4677&amp;amp;GenusName=Puntius&amp;amp;SpeciesName=semifasciolatus&amp;amp;StockCode=4895 all its other common names]].&lt;br /&gt;
&lt;br /&gt;
* [http://nmnhgoph.si.edu/msw/  Mammal Species of the World] - ~'''8,000''' species (e.g. [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/12216 Eurasian Badger, ''Meles meles''], plus higher-level ranks (e.g. [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/5001 Order ''Insectivora''], [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/5071 Family ''Erinaceidae''], etc.).&lt;br /&gt;
&lt;br /&gt;
* [http://research.amnh.org/herpetology/amphibia/index.php Amphibian Species of the World] - &amp;gt;'''6,000''' species (e.g. [http://research.amnh.org/herpetology/amphibia/references.php?id=6984 ''Cochranella daidalea ''], plus higher-level ranks (e.g. [http://research.amnh.org/herpetology/amphibia/references.php?id=6815 Family ''Centrolenidae''], etc.).&lt;br /&gt;
&lt;br /&gt;
*PhotoPic&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=bird&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;bird&amp;quot;] = '''929'''&lt;br /&gt;
*** e.g. [http://parentphoto.fotopic.net/c1119884.html Ryan Parent's pictures]&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=insect&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;insect&amp;quot;] = '''194''' &lt;br /&gt;
***e.g. [http://foto-fountain.fotopic.net/ Foto Fountain]&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=wildlife&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;wildlife&amp;quot;] = '''458''' &lt;br /&gt;
***e.g. [http://johnmartin.photos.gb.com/c1113758.html Martin's Photo Images]&lt;br /&gt;
**etc.&lt;br /&gt;
&lt;br /&gt;
===Sites en projet===&lt;br /&gt;
*[http://herbariaunited.org/atHome/ Herbaria United] (section du site web du &amp;quot;Botanical Collection Managers Group&amp;quot; (BCMG), un groupe spécialiste de la Linnean Society of London) - &amp;quot;The UK has the world's largest and oldest collections of herbarium specimens held in trust by museums and universities. A new project is just getting underway to put all this online.&amp;quot;&lt;br /&gt;
**Mise à jour (2007-02-28) - le travail a démarré et les première pages sont disponibles.&lt;br /&gt;
&lt;br /&gt;
===Divers===&lt;br /&gt;
*[http://darwin.zoology.gla.ac.uk/~rpage/ispecies/ iSpecies] - un moteur de recherche d'espèces (par ex. [http://darwin.zoology.gla.ac.uk/~rpage/ispecies/?q=bullfinch&amp;amp;submit=Go cherchez &amp;quot;Bullfinch&amp;quot;], [http://darwin.zoology.gla.ac.uk/~rpage/ispecies/?q=Charadrius+dubius&amp;amp;submit=Go cherchez &amp;quot;''Charadrius dubius''&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Contributeurs==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proponent)&lt;br /&gt;
*Malcolm Storey (per e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Center] (proponent)&lt;br /&gt;
&lt;br /&gt;
==Voir aussi==&lt;br /&gt;
{{species-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples-quantitative-fr&amp;diff=34615</id>
		<title>species-examples-quantitative-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples-quantitative-fr&amp;diff=34615"/>
		<updated>2008-11-18T00:09:13Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Evidence */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Exemples d'Espèces (Quantitatif) =&lt;br /&gt;
&lt;br /&gt;
Des exemples quantitatifs de noms communs et scientifiques des choses vivantes, qui pourraient être balisés avec un microformat &amp;quot;'''[[species-fr|espèces]]'''&amp;quot; (ou similaire).&lt;br /&gt;
&lt;br /&gt;
:'''Note : Le nom original du microformat, &amp;quot;species&amp;quot;, va probablement changer, probablement vers &amp;quot;biota&amp;quot; ou &amp;quot;taxon&amp;quot;. Le précédent a été maintenu ici, pour éviter de faire trop de changements répétitifs et peut-être des éditions redondantes.'''&lt;br /&gt;
&lt;br /&gt;
'''Si vous trouvez un lien qui ne fonctionne plus, remplacez-le svp avec une alternative correspondantes, plutôt que de l'effacer simplement. Merci.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Evidence==&lt;br /&gt;
&lt;br /&gt;
For earlier evidence of quantitative use of species' and other taxonomic names, see&lt;br /&gt;
[http://microformats.org/discuss/mail/microformats-discuss/2006-September/005790.html] and [http://microformats.org/discuss/mail/microformats-discuss/2006-September/005791.html]. Furthermore:&lt;br /&gt;
&lt;br /&gt;
*Wikipedia:&lt;br /&gt;
** '''Tous''' les articles sur l'espèce, par ex. [http://en.wikipedia.org/wiki/Little_Ringed_Plover Little Ringed Plover] (voir [[species-examples#Wikipedia|au-dessus]])&lt;br /&gt;
** '''All''' genera articles, e.g. [http://en.wikipedia.org/wiki/Plover Charadrius (Plover)] (e.g [http://en.wikipedia.org/wiki/Category:Genera_of_birds '''200''' pages, for birds] alone)&lt;br /&gt;
** '''All''' higher classes, e.g. [http://en.wikipedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
** '''All''' regional lists, e.g. [http://en.wikipedia.org/wiki/List_of_British_birds:_non-passerines List of British birds]&lt;br /&gt;
** '''All''' dedicatees, e.g. [http://en.wikipedia.org/wiki/Alexander_Wilson Alexander Wilson]&lt;br /&gt;
** '''All''' authorities, e.g. [http://en.wikipedia.org/wiki/Giovanni_Antonio_Scopoli Giovanni Antonio Scopoli]&lt;br /&gt;
** '''All''' images of living things, e.g. [http://en.wikipedia.org/wiki/Image:Charadrius_dubius_4_%28Marek_Szczepanek%29.jpg Charadrius dubius 4 (Marek Szczepanek).jpg]&lt;br /&gt;
** Many reserves, lakes, and other places of interest, e.g. [http://en.wikipedia.org/wiki/Belvide Belvide]&lt;br /&gt;
** Many biological authors and illustrators, e.g. [http://en.wikipedia.org/wiki/John_Audubon John Audubon]; [http://en.wikipedia.org/wiki/Gilbert_White Gilbert White]&lt;br /&gt;
** Random articles on other topics, e.g. [http://en.wikipedia.org/wiki/Balancing_lake Balancing lake}]&lt;br /&gt;
** Wines. E/g/ [http://en.wikipedia.org/wiki/Cabernet_Sauvignon Cabernet Sauvignon]&lt;br /&gt;
** '''All the above, again''', for each alternative language e.g. [http://cy.wikipedia.org/wiki/Cwtiad_Torchog_Bach Welsh]; [http://fr.wikipedia.org/wiki/Petit_gravelot French]; [http://zh.wikipedia.org/wiki/%E9%87%91%E7%9C%B6%E9%B8%BB Chinese]&lt;br /&gt;
&lt;br /&gt;
*Wikimedia Commons&lt;br /&gt;
** '''All''' species indexes, e.g. [http://commons.wikimedia.org/wiki/Charadrius_dubius Charadrius dubius]&lt;br /&gt;
** '''Each individual''' image, e.g. [http://commons.wikimedia.org/wiki/Image:Charadrius_dubius_1_%28Marek_Szczepanek%29.jpg Charadrius dubius 1 (Marek Szczepanek).jpg]&lt;br /&gt;
** '''Each family''' list [http://commons.wikimedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
&lt;br /&gt;
*Wiktionary&lt;br /&gt;
** '''All''' species articles, e.g. [http://en.wiktionary.org/wiki/american_golden_plover American Golden Plover]&lt;br /&gt;
** '''All''' family articles, e.g. [http://en.wiktionary.org/wiki/plover Plover]&lt;br /&gt;
** '''Many of the above, in other langauges''' e.g. [http://en.wiktionary.org/wiki/aquila_reale Italian]; [http://en.wiktionary.org/wiki/%D0%B1%D0%B5%D1%80%D0%BA%D1%83%D1%82 Russian]&lt;br /&gt;
&lt;br /&gt;
*Wikispecies&lt;br /&gt;
** '''Every''' speices, e.g. [http://species.wikimedia.org/wiki/Charadrius_dubius Charadrius dubius]&lt;br /&gt;
** '''Every''' genus, e.g. [http://species.wikimedia.org/wiki/Charadrius Charadrius]&lt;br /&gt;
** '''Every''' sub-family, e.g. [http://species.wikimedia.org/wiki/Charadriinae Charadriinae]&lt;br /&gt;
** '''Every''' family, e.g. [http://species.wikimedia.org/wiki/Charadriidae Charadriidae]&lt;br /&gt;
** and so on, for '''every other rank'''&lt;br /&gt;
** '''Every''' image (e.g. [http://species.wikimedia.org/wiki/Image:Charadrius_hiaticula_He.jpg Charadrius hiaticula He.jpg]&lt;br /&gt;
&lt;br /&gt;
*Wikibooks&lt;br /&gt;
** [http://en.wikibooks.org/wiki/Dichotomous_Key Dichotomous Key]&lt;br /&gt;
&lt;br /&gt;
*Google&lt;br /&gt;
**[http://www.google.co.uk/search?hl=en&amp;amp;hs=dBU&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla:en-US:official&amp;amp;sa=X&amp;amp;oi=spell&amp;amp;resnum=0&amp;amp;ct=result&amp;amp;cd=1&amp;amp;q=%22E+coli%22&amp;amp;spell=1 Google finds about '''37,600,000''' for &amp;quot;E coli&amp;quot;].&lt;br /&gt;
***[http://www.google.co.uk/search?hs=Apo&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;amp;q=%22Escherichia+coli%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''19,500,000''' for &amp;quot;Escherichia coli&amp;quot;]&lt;br /&gt;
***[http://www.google.co.uk/search?hs=zqo&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;amp;q=%22Ecoli%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''722,000''' for &amp;quot;Ecoli&amp;quot;].&lt;br /&gt;
**[http://www.google.co.uk/search?hs=vWC&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;amp;q=%22Homo+sapiens%22&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''14,200,000''' for &amp;quot;Homo sapiens&amp;quot;] &lt;br /&gt;
***[http://www.google.co.uk/search?hs=vWC&amp;amp;hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;amp;q=%22Homo+sapien%22+-sapiens&amp;amp;btnG=Search&amp;amp;meta= Google finds about '''273,000''' for the mis-spelling &amp;quot;Homo sapien&amp;quot; -sapiens.]&lt;br /&gt;
**[http://www.google.co.uk/search?q=%22%22Homo+erectus%22%22&amp;amp;start=0&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla:en-US:official Google finds about '''1,260,000''' for &amp;quot;&amp;quot;Homo erectus&amp;quot;]&lt;br /&gt;
**[http://www.google.com/search?svnum=10&amp;amp;as_scoring=r&amp;amp;hl=en&amp;amp;edition=us&amp;amp;as_drrb=q&amp;amp;as_qdr=&amp;amp;as_mind=1&amp;amp;as_minm=9&amp;amp;as_maxd=1&amp;amp;as_maxm=10&amp;amp;q=%22Clostridium+difficile%22&amp;amp;ie=UTF-8&amp;amp;sa=N&amp;amp;tab=nw Google finds about '''1,380,000''' for &amp;quot;Clostridium difficile&amp;quot;].&lt;br /&gt;
**[http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;edition=us&amp;amp;q=%22Passer+domesticus%22&amp;amp;btnG=Search Google finds about '''841,000''' for &amp;quot;Passer domesticus&amp;quot;].&lt;br /&gt;
***[http://images.google.com/images?hl=en&amp;amp;lr=&amp;amp;edition=us&amp;amp;q=%22Passer%20domesticus%22&amp;amp;btnG=Search&amp;amp;sa=N&amp;amp;tab=wi Google images finds about '''3,140''' for &amp;quot;Passer domesticus&amp;quot;].&lt;br /&gt;
**[http://www.google.co.uk/search?hl=en&amp;amp;hs=oEU&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla:en-US:official&amp;amp;sa=X&amp;amp;oi=spell&amp;amp;resnum=0&amp;amp;ct=result&amp;amp;cd=1&amp;amp;q=%22Acer+palmatum%22&amp;amp;spell=1 Google finds about '''602,000''' for &amp;quot;Acer palmatum&amp;quot;]&lt;br /&gt;
** At the time of writing, '''every single one''' of the first 20 [http://www.google.com/search?q=%22Noctule+bat%22 Google results for &amp;quot;Noctule Bat&amp;quot;] also includes the scientific name ''Nyctalus noctula''.  &lt;br /&gt;
*A [http://www.google.com/search?q=checklist+NEAR+species Google search for &amp;quot;checklist NEAR species&amp;quot;] finds about '''1,090,000''' - each checklist includes many species e.g. [http://www.earthlife.net/insects/mantchek.html], [http://www.kingsnake.com/dfw/checklist/species_checklist.htm], [http://www.taylor.edu/academics/acadDepts/ees/sedges/checklist.html]&lt;br /&gt;
&lt;br /&gt;
*A [http://www.google.com/search?q=checklist+NEAR+species Google search for &amp;quot;species identification sheet&amp;quot;] finds about ''' 13,400''' - e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm]&lt;br /&gt;
&lt;br /&gt;
*[http://www.arkive.org/ ARKive] - '''2000''' species (&amp;quot;It is ARKive's current aim to compile audio-visual records, where such media exists, for the 15,000-plus species currently threatened with extinction, according to the World Conservation Union's (IUCN) Red List of Threatened Species.&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* [http://zipcodezoo.com/ Zip Code Zoo] '''875,712''' plants and '''932,168''' animals ... '''79,438''' '''1,537''' sound recordings, '''23,704,023''' field observations (from 28,236 data sets and 1,326 data providers which show latitude and longitude, from which they have generated 218,283 State Maps, 715,397 Country Maps, 156,248 Google maps showing up to 200 sightings each, and 18,177 Google Earth maps showing all sightings). Uses full taxonomies e.g. [http://zipcodezoo.com/animals/s/sciurus_carolinensis.asp Eastern Gray Squirrel, ''Sciurus carolinensis'']&lt;br /&gt;
&lt;br /&gt;
* [http://www.gbif.org/ Global Biodiversity Information Facility] '''983,000''' scientific names and '''253,000''' common names [http://www.europe.gbif.net/portal/index.jsp]. Uses full taxonomies, e.g [http://www.secretariat.gbif.net/portal/ecat_browser.jsp?taxonKey=1579222&amp;amp;countryKey=0&amp;amp;resourceKey=0&amp;amp;showIncertae=false&amp;amp;nextTask=ecat_browser.jsp ''Pterothrissus cristatus'']. Has '''118,932,333''' individual records, e.g. [http://www.secretariat.gbif.net/portal/digit_detail.jsp?scientificName=Pterothrissus+cristatus&amp;amp;headingTaxonKey=1579222&amp;amp;serviceKey=310&amp;amp;resourceKey=971&amp;amp;recordKey=0&amp;amp;nextTask=digit_viewer.jsp Pterothrissus cristatus at Lee-on-the-Solent on 2004-07-22]&lt;br /&gt;
&lt;br /&gt;
*[http://www.rhs.org.uk/rhsplantfinder/plantfinder.asp Royal Horticultural Society - RHS Plant Finder] - '''70,000''' plants&lt;br /&gt;
&lt;br /&gt;
*[http://www.bacterio.net List of Prokaryotic Names (formerly List of Bacterial Names)] - 2,032 *files*; '''10,268''' published names (to 2006-09-07)&lt;br /&gt;
&lt;br /&gt;
*[http://nbn.nhm.ac.uk/nhm/ UK National Biodiversity Network's Species Dictionary]&lt;br /&gt;
&lt;br /&gt;
*[http://www.searchnbn.net/ UK National Biodiversity Network Gateway] - '''20 million+''' species records&lt;br /&gt;
&lt;br /&gt;
*[http://www.sp2000.org/ Species 2000] - '''450,000 species'''&lt;br /&gt;
&lt;br /&gt;
*[http://www.bioimages.org.uk/index.html BioImages - Virtual Fieldguide] - '''53,000''' images depicting 4,600 species (see [[species-brainstorming#Malcolm_Storey|Wiki comments from site owner]])&lt;br /&gt;
&lt;br /&gt;
*[http://animaldiversity.ummz.umich.edu/ Animal Diversity Web] - &amp;quot;'''Thousands''' of species accounts ['''plus'''] descriptions of levels of organization above the species level, especially phyla, classes, and in some cases, orders and families. Hundreds of hyperlinked pages and images illustrate the traits and general biology of these groups&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://www.ubio.org/index.php?pagename=home uBio]&lt;br /&gt;
**NameBank is a repository of '''millions''' of recorded biological names and facts that link those names together.&lt;br /&gt;
**ClassificationBank stores multiple classifications and taxonomic concepts that are the result of expert opinions. It extends the functionality of NameBank.&lt;br /&gt;
**Over '''500,000''' common names are catalogued.&lt;br /&gt;
&lt;br /&gt;
*[http://www.birdlife.org/datazone/species/ BirdLife International] - all birds of the world (~'''10,000''')&lt;br /&gt;
&lt;br /&gt;
*[http://bugguide.net/ Bug Guide] - all insects, spiders, and allies, of the USA and Canada (most with more than one page).&lt;br /&gt;
** e.g. [http://bugguide.net/node/view/70875 Arge pectoralis - Birch Sawfly]&lt;br /&gt;
&lt;br /&gt;
*[http://www.bto.org/birdtrack/ BirdTrack]&lt;br /&gt;
**[http://blx1.bto.org/bt-dailyresults/results/s171-20-06.html Lapwing]&lt;br /&gt;
&lt;br /&gt;
*[http://www.discoverlife.org/ Discover Life] - &amp;quot;contains '''306,553''' species. The Polistes Foundation and its scientific partners plan to add high-quality identification guides, maps, images, and text for '''a million species''' by 2012. [...] Each month Discover Life serves approximately 3 million pages and images to 70,000 IP addresses&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*[http://www.record-lrc.co.uk/ rECOrd] (the Local Biological Records Center serving the Cheshire region of England) - '''1.6 million''' species records available online for the public to search and map&lt;br /&gt;
&lt;br /&gt;
*[http://www.dnabarcoding.ca/ Canadian Center for DNA Barcoding ] multiple sites, covering over '''11,000''' species ('''134,990''' records; target 55,000+ species.&lt;br /&gt;
**[http://www.barcodinglife.org/ Barcode of Life Data Systems] &amp;quot;BOLD-ECS provides web developers and bioinformaticians the ability to build tools and workflows that can be integrated with the BOLD framework. We welcome the addition of new analytical modules.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* [http://hbs.bishopmuseum.org/fiji/checklists.html Fiji Arthropod Survey] - (insects, arachnids, crustaceans, and others) &amp;gt; '''7,000''' Families, Genera and Species&lt;br /&gt;
&lt;br /&gt;
*[http://simile.mit.edu/timeline/examples/dinosaurs/dinosaurs2.html Simile Dinosaur Timeline] '''all''' dinosaurs genus - potential hCalendar mash-up.&lt;br /&gt;
&lt;br /&gt;
* [http://www.fishBase.org/search.php Fishbase] '''29,600''' species, '''222,400''' common names, e.g. [http://www.fishbase.org/comnames/CommonNameSummary.cfm?autoctr=14995 Chinese barb], ''  [http://www.fishbase.org/Summary/SpeciesSummary.php?id=4677&amp;amp;CFID=1552828&amp;amp;CFTOKEN=13861129 Puntius semifasciolatus]'' and [[http://www.fishbase.org/comnames/CommonNamesList.cfm?ID=4677&amp;amp;GenusName=Puntius&amp;amp;SpeciesName=semifasciolatus&amp;amp;StockCode=4895 all its other common names]].&lt;br /&gt;
&lt;br /&gt;
* [http://nmnhgoph.si.edu/msw/  Mammal Species of the World] - ~'''8,000''' species (e.g. [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/12216 Eurasian Badger, ''Meles meles''], plus higher-level ranks (e.g. [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/5001 Order ''Insectivora''], [http://nmnhgoph.si.edu/cgi-bin/wdb/msw/names/query/5071 Family ''Erinaceidae''], etc.).&lt;br /&gt;
&lt;br /&gt;
* [http://research.amnh.org/herpetology/amphibia/index.php Amphibian Species of the World] - &amp;gt;'''6,000''' species (e.g. [http://research.amnh.org/herpetology/amphibia/references.php?id=6984 ''Cochranella daidalea ''], plus higher-level ranks (e.g. [http://research.amnh.org/herpetology/amphibia/references.php?id=6815 Family ''Centrolenidae''], etc.).&lt;br /&gt;
&lt;br /&gt;
*PhotoPic&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=bird&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;bird&amp;quot;] = '''929'''&lt;br /&gt;
*** e.g. [http://parentphoto.fotopic.net/c1119884.html Ryan Parent's pictures]&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=insect&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;insect&amp;quot;] = '''194''' &lt;br /&gt;
***e.g. [http://foto-fountain.fotopic.net/ Foto Fountain]&lt;br /&gt;
**[http://community.fotopic.net/search/simple.php?txt=wildlife&amp;amp;action.x=0&amp;amp;action.y=0&amp;amp;action=Go galleries for &amp;quot;wildlife&amp;quot;] = '''458''' &lt;br /&gt;
***e.g. [http://johnmartin.photos.gb.com/c1113758.html Martin's Photo Images]&lt;br /&gt;
**etc.&lt;br /&gt;
&lt;br /&gt;
===Sites en projet===&lt;br /&gt;
*[http://herbariaunited.org/atHome/ Herbaria United] (section du site web du &amp;quot;Botanical Collection Managers Group&amp;quot; (BCMG), un groupe spécialiste de la Linnean Society of London) - &amp;quot;The UK has the world's largest and oldest collections of herbarium specimens held in trust by museums and universities. A new project is just getting underway to put all this online.&amp;quot;&lt;br /&gt;
**Mise à jour (2007-02-28) - le travail a démarré et les première pages sont disponibles.&lt;br /&gt;
&lt;br /&gt;
===Divers===&lt;br /&gt;
*[http://darwin.zoology.gla.ac.uk/~rpage/ispecies/ iSpecies] - un moteur de recherche d'espèces (par ex. [http://darwin.zoology.gla.ac.uk/~rpage/ispecies/?q=bullfinch&amp;amp;submit=Go cherchez &amp;quot;Bullfinch&amp;quot;], [http://darwin.zoology.gla.ac.uk/~rpage/ispecies/?q=Charadrius+dubius&amp;amp;submit=Go cherchez &amp;quot;''Charadrius dubius''&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Contributeurs==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proponent)&lt;br /&gt;
*Malcolm Storey (per e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Centre] (proponent)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Voir aussi==&lt;br /&gt;
{{species-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples-regrouped-fr&amp;diff=34614</id>
		<title>species-examples-regrouped-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples-regrouped-fr&amp;diff=34614"/>
		<updated>2008-11-18T00:08:32Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Sussex Biodiversity Record Centre */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ceci est un re-groupement des exemples déposés sur [[species-examples-fr|species-exemples]]&lt;br /&gt;
&lt;br /&gt;
:'''Note: the original name of the proposed microformat, &amp;quot;species&amp;quot;, is likely to change, probably to &amp;quot;biota&amp;quot; or &amp;quot;taxon&amp;quot;. The former has been retained here, to avoid having to make many repetitive and perhaps redundant edits'''&lt;br /&gt;
&lt;br /&gt;
== Groupé par l'Auteur ==&lt;br /&gt;
&lt;br /&gt;
=== West Midland Bird Club ===&lt;br /&gt;
* [http://www.westmidlandbirdclub.com/ladywalk/latest.htm Black-tailed Godwit]&lt;br /&gt;
  &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [http://www.westmidlandbirdclub.com/records/lists.htm Limosa limosa ]&lt;br /&gt;
  &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Common Name&amp;lt;/th&amp;gt;&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Scientific Name&amp;lt;/th&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&amp;lt;th scope=&amp;quot;row&amp;quot; class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/th&amp;gt;&amp;lt;td class=&amp;quot;sci&amp;quot;&amp;gt;Limosa limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [http://www.westmidlandbirdclub.com/ladywalk/BITTE.htm Eurasian Bittern]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Eurasian Bitterns&amp;lt;/b&amp;gt;, (&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Botaurus stellaris&amp;lt;/i&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm Galeopsis tetrahit s.s.]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Galeopsis tetrahit&amp;amp;nbsp;&amp;lt;abbr lang=&amp;quot;la&amp;quot; title=&amp;quot;sensu stricto&amp;quot;&amp;gt;s.s.&amp;lt;/abbr&amp;gt;&amp;lt;/i&amp;gt; (&amp;lt;b class=&amp;quot;plant&amp;quot;&amp;gt;Common Hemp-nettle&amp;lt;/b&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [http://www.westmidlandbirdclub.com/ladywalk/index.htm Ladywalk]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
The shallow scrapes are now home to many &amp;lt;strong&amp;gt;dragonflies&amp;lt;/strong&amp;gt; and &amp;lt;strong&amp;gt;damselflies&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Comments&lt;br /&gt;
** Occurrences of common bird names are consistently bolded &amp;amp;lt;b&amp;amp;gt; and given a class of &amp;quot;bird&amp;quot;. Occurrences of scientific names are consistently italisized &amp;amp;lt;i&amp;amp;gt; and given a class name of &amp;quot;sci&amp;quot;. Common plant names are bolded and given a class name of &amp;quot;plant&amp;quot;. In the last example, common insect names (in this case at the order rank) are tagged with &amp;amp;lt;strong&amp;amp;gt;. - [[User:CharlesRoper|Charles Roper]]&lt;br /&gt;
&lt;br /&gt;
===  species.mediawiki.org  ===&lt;br /&gt;
[http://species.wikimedia.org/wiki/Charadrius_dubius species.mediawiki.org media bird ] .&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Regnum: &amp;lt;a href=&amp;quot;/wiki/Animalia&amp;quot; title=&amp;quot;Animalia&amp;quot;&amp;gt;Animalia&amp;lt;/a&amp;gt; (Metazoa)&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Subregnum: &amp;lt;a href=&amp;quot;/wiki/Eumetazoa&amp;quot; title=&amp;quot;Eumetazoa&amp;quot;&amp;gt;Eumetazoa&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Superphylum: Bilateria: &amp;lt;a href=&amp;quot;/wiki/Deuterostomia&amp;quot; title=&amp;quot;Deuterostomia&amp;quot;&amp;gt;Deuterostomia&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Phylum: &amp;lt;a href=&amp;quot;/wiki/Chordata&amp;quot; title=&amp;quot;Chordata&amp;quot;&amp;gt;Chordata&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;Subphylum: &amp;lt;a href=&amp;quot;/wiki/Vertebrata&amp;quot; title=&amp;quot;Vertebrata&amp;quot;&amp;gt;Vertebrata&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Classis: &amp;lt;a href=&amp;quot;/wiki/Aves&amp;quot; title=&amp;quot;Aves&amp;quot;&amp;gt;Aves&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Subclassis: &amp;lt;a href=&amp;quot;/wiki/Neognathae&amp;quot; title=&amp;quot;Neognathae&amp;quot;&amp;gt;Neognathae&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Ordo: &amp;lt;a href=&amp;quot;/wiki/Charadriiformes&amp;quot; title=&amp;quot;Charadriiformes&amp;quot;&amp;gt;Charadriiformes&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Subordo: &amp;lt;a href=&amp;quot;/wiki/Charadrii&amp;quot; title=&amp;quot;Charadrii&amp;quot;&amp;gt;Charadrii&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Familia: &amp;lt;a href=&amp;quot;/wiki/Charadriidae&amp;quot; title=&amp;quot;Charadriidae&amp;quot;&amp;gt;Charadriidae&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Subfamily: &amp;lt;a href=&amp;quot;/wiki/Charadriinae&amp;quot; title=&amp;quot;Charadriinae&amp;quot;&amp;gt;Charadriinae&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Genus: &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/wiki/Charadrius&amp;quot; title=&amp;quot;Charadrius&amp;quot;&amp;gt;Charadrius&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Species: &amp;lt;i&amp;gt;&amp;lt;strong class=&amp;quot;selflink&amp;quot;&amp;gt;Charadrius dubius&amp;lt;/strong&amp;gt;&amp;lt;/i&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;Subspecies: &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/w/index.php?title=Charadrius_dubius_curonicus&amp;amp;amp;action=edit&amp;quot; class=&amp;quot;new&amp;quot; title=&amp;quot;Charadrius dubius curonicus&amp;quot;&amp;gt;C.&amp;amp;nbsp;d.&amp;amp;nbsp;curonicus&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&amp;amp;nbsp;- &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/w/index.php?title=Charadrius_dubius_dubius&amp;amp;amp;action=edit&amp;quot; class=&amp;quot;new&amp;quot; title=&amp;quot;Charadrius dubius dubius&amp;quot;&amp;gt;C.&amp;amp;nbsp;d.&amp;amp;nbsp;dubius&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&amp;amp;nbsp;- &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/w/index.php?title=Charadrius_dubius_jerdoni&amp;amp;amp;action=edit&amp;quot; class=&amp;quot;new&amp;quot; title=&amp;quot;Charadrius dubius jerdoni&amp;quot;&amp;gt;C.&amp;amp;nbsp;d.&amp;amp;nbsp;jerdoni&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&amp;amp;nbsp;- &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/w/index.php?title=Charadrius_dubius_papuanus&amp;amp;amp;action=edit&amp;quot; class=&amp;quot;new&amp;quot; title=&amp;quot;Charadrius dubius papuanus&amp;quot;&amp;gt;C.&amp;amp;nbsp;d.&amp;amp;nbsp;papuanus&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Comments&lt;br /&gt;
** This feels similar to tagging to me.  This particular example has a resolves the whole heirarchy, correct?  [[User:BenWest|BenWest]] 17:57, 21 Oct 2006 (PDT)&lt;br /&gt;
*** In what way is it similar to tagging?  Your question cannot be parsed. [[User:AndyMabbett|AndyMabbett]] 04:10, 22 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
=== International Wolf Center ===&lt;br /&gt;
&lt;br /&gt;
[http://www.wolf.org/wolves/index.asp Wolf Exemple]&lt;br /&gt;
* Comments&lt;br /&gt;
** The word &amp;quot;wolf&amp;quot; appears all over, a brief look only revealed &amp;quot;delist&lt;br /&gt;
wolves&amp;quot; as more resolution in some free text.  Is this a good example of how&lt;br /&gt;
species data is marked up on the web? [[User:BenWest|BenWest]] 22:20, 21 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===  Minnesota Department of Natural Resources ===&lt;br /&gt;
[http://www.dnr.state.mn.us/fish/northern/index.html Northern Pike Example]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;h1 class=&amp;quot;last&amp;quot;&amp;gt;Northern pike&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Pike &amp;amp;amp; Zander ===&lt;br /&gt;
&lt;br /&gt;
[http://www.pikezander.co.uk/pike.htm Pike &amp;amp; Zander]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
The Pike is known worldwide, a species of the family Esocidae...&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
In Europe and Asia, Esox lucius had to...&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Comments&lt;br /&gt;
** Free text, in paragraph elements.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== funkman.org ===&lt;br /&gt;
[http://funkman.org/animal/insect/deathheadmoth.html Death's Head Hawkmoth Example]&lt;br /&gt;
Free text in paragraph elements.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== UK Moths ===&lt;br /&gt;
[http://ukmoths.org.uk/show.php?id=2540 Acherontia atropos]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt; &lt;br /&gt;
&amp;lt;i&amp;gt;Acherontia atropos&amp;lt;/i&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt; &lt;br /&gt;
&amp;lt;div id=&amp;quot;title&amp;quot;&amp;gt;Sphingidae: Sphinginae&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt; &lt;br /&gt;
(&amp;lt;i&amp;gt;Solanum tuberosum&amp;lt;/i&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
[http://ukmoths.org.uk/cirsiumkey.php Cirsium arvense Key]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt; &lt;br /&gt;
&amp;lt;b&amp;gt;Key to leaf-feeding micro-moth larvae on creeping thistle (&amp;lt;i&amp;gt;Cirsium arvense&amp;lt;/i&amp;gt;)&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt; &lt;br /&gt;
1076 &amp;lt;a href=&amp;quot;show.php?bf=1076&amp;quot;&amp;gt;&amp;lt;i&amp;gt;Celypha lacunana&amp;lt;/i&amp;gt;&amp;lt;/a&amp;gt;. A very common polyphage, but too many varieties to include.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt; &lt;br /&gt;
1380 &amp;lt;a href=&amp;quot;show.php?bf=1380&amp;quot;&amp;gt;&amp;lt;i&amp;gt;Phlyctaenia perlucidalis&amp;lt;/i&amp;gt;&amp;lt;/a&amp;gt;. No larval description or photographs available Feb. 2004.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt; &lt;br /&gt;
814a &amp;lt;i&amp;gt;Scrobipalpa pauperella&amp;lt;/i&amp;gt;. No larval description or photographs available Feb. 2004.&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
* Comments&lt;br /&gt;
** Use of &amp;amp;lt;i&amp;amp;gt; to italicize.  Use of scientific names and latin. [[User:BenWest|BenWest]] 22:20, 21 Oct 2006 (PDT)&lt;br /&gt;
** Again, two next to last examples look like tagging. [[User:BenWest|BenWest]] 22:20, 21 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
=== Sussex Biodiversity Record Center ===&lt;br /&gt;
&lt;br /&gt;
[http://www.sxbrc.org.uk/news/friston-forest-recording-day Migrant Hawker (''Aeshna mixta'')]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt; &lt;br /&gt;
include a &amp;lt;strong&amp;gt;White Admiral&amp;lt;/strong&amp;gt; (&amp;lt;i&amp;gt;Limenitis camilla&amp;lt;/i&amp;gt;), an &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;http://www.britishspiders.org.uk/html/nbn.php?spn=375&amp;quot;&amp;gt;Araneus angulatus&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;, &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
All common names are in strong elements, the species is in an italic element,&lt;br /&gt;
with resolution as link text, which turns out to be a fairly consistent&lt;br /&gt;
convention on this particular site.&lt;br /&gt;
&lt;br /&gt;
* Comments&lt;br /&gt;
** Again, some part of the resolution is the link text to a resource presumably considered authoritative.  Resembles tagging. This particular site also puts common names in a strong tag, with the species in an italic tag.&lt;br /&gt;
*** No, it's not necessarily an authoritative resource; it's just a link to a site I consider ''useful'' for those seeking further information on this species. - [[User:CharlesRoper|Charles Roper]]&lt;br /&gt;
** The use of an italicized scientific name is a very common convention, particularly in printed media but also online. The use of strong names is also a common convention, particularly online, as it helps readers scan a page quickly for species they are interested in. Further examples of this convention can be found here:&lt;br /&gt;
*** [http://www.sos.org.uk/ Sussex Ornithological Society]&lt;br /&gt;
*** [http://www.rxwildlife.org.uk/ RXWildlife weblog]&lt;br /&gt;
*** [http://ramblingsofanaturalist.blogspot.com/ Ramblings of a Naturalist weblog]. This site also has examples of italicizing scientific names.&lt;br /&gt;
[[User:CharlesRoper|Charles Roper]]&lt;br /&gt;
&lt;br /&gt;
=== WildRye.info ===&lt;br /&gt;
[http://www.wildrye.info/recent-sightings/september-2006 Temmick's Stint]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;Bird highlight during September was a &amp;lt;strong&amp;gt;Temminck’s Stint&amp;lt;/strong&amp;gt; (below)&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://www.wildrye.info/reserve/wildlife/moths.php Pinion-streaked Snout Schrankia costaestrigalis]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;strong&amp;gt;Pinion-streaked Snout&amp;lt;/strong&amp;gt; &amp;lt;em&amp;gt;Schrankia costaestrigalis&amp;lt;/em&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://www.wildrye.info/reserve/wildlife/moths.php Festoon A. limacodes]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;strong&amp;gt;Festoon&amp;lt;/strong&amp;gt; &amp;lt;em&amp;gt;A. limacodes&amp;lt;/em&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Comments&lt;br /&gt;
** This site uses the common bold common name/italisized scientific name pattern. Of note is the last example which uses an abbreviated genus (A.) --[[User:CharlesRoper|Charles Roper]] 01:23, 24 Oct 2006 (PDT)&lt;br /&gt;
** &amp;quot;&amp;lt;nowiki&amp;gt;&amp;lt;em&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;quot; and &amp;quot;&amp;lt;nowiki&amp;gt;&amp;lt;strong&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;quot; should not be used (according to a lengthy debate on a web authoring forum some time ago), because text thus marked will be emphasised/ &amp;quot;shouted&amp;quot; verbally in an aural browser or text reader. Either &amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;&amp;lt;/nowiki&amp;gt;/ &amp;lt;nowiki&amp;gt;&amp;lt;b&amp;gt;&amp;lt;/nowiki&amp;gt; should be used, or a style with italicised/ heavier-font-weight text, or both (the later happens on the West Midland Bird Club website). [[User:AndyMabbett|Andy Mabbett]] 01:30, 24 Oct 2006 (PDT)&lt;br /&gt;
*** I agree regarding the use of &amp;amp;lt;i&amp;amp;gt; over &amp;amp;lt;em&amp;amp;gt; as the italisizing of a scientific name is not necessarily an emphasis. However, I believe the use of &amp;amp;lt;strong&amp;amp;gt; is valid as the intent is to emphasise the content, drawing the reader's eye. I see no problem with strong content being emphasised aurally. I am comfortable with the use of &amp;amp;lt;i&amp;amp;gt; tags for scientific names as they are often referred to a Latin names (even though they are not necessarily Latin) and could be considered a form of ''[http://en.wikipedia.org/wiki/Italic_languages Italic language]''  --[[User:CharlesRoper|Charles Roper]] 09:49, 24 Oct 2006 (PDT)&lt;br /&gt;
****There is no &amp;quot;reader's eye&amp;quot; in an aural browser or text reader! Try reading a page with such names emboldened and speaking &amp;quot;strongly&amp;quot; (i.e. raising your voice slightly) each time you say one. Preferably in a busy office ;-) [[User:AndyMabbett|Andy Mabbett]] 10:58, 24 Oct 2006 (PDT)&lt;br /&gt;
*****True, there is no reader's eye, but aural properties can be [http://www.w3.org/TR/CSS-access#ACSS styled with CSS]. Better to use stylesheets to change the style of the content rather than demand a change in markup. Remember, microformats are supposed to be based on existing markup practices where possible. --[[User:CharlesRoper|Charles Roper]] 03:28, 31 Oct 2006 (PST)&lt;br /&gt;
******How widely supported is aural styling? And yes, you're right about existing mark-up practices; but I was explaining why those practices are wrong, not that uFs should change them. [[User:AndyMabbett|AndyMabbett]] 06:25, 31 Oct 2006 (PST)&lt;br /&gt;
&lt;br /&gt;
===A faire===&lt;br /&gt;
&amp;lt;span class=&amp;quot;todo&amp;quot; style=&amp;quot;1px dotted silver;&amp;quot;&amp;gt;TODO: remove, or at least&lt;br /&gt;
coalesce free text examples. create a commonalities section. [[User:BenWest|BenWest]] 22:20, 21 Oct 2006 (PDT)&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;todo&amp;quot; style=&amp;quot;1px dotted silver;&amp;quot;&amp;gt;TODO: &lt;br /&gt;
I've been working down the examples list, item by item to&lt;br /&gt;
reorganize by publisher, like the other *-examples pages have done.  So far,&lt;br /&gt;
I've gone from the top of binominals to the top of the Plant section.  It's a&lt;br /&gt;
Saturday night and time to have some fun so.... If someone continues this work&lt;br /&gt;
before I get a chance to continue, please note where you left off. [[User:BenWest|BenWest]] 22:20, 21 Oct 2006 (PDT)&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Stratégie Alternative de Groupage ==&lt;br /&gt;
&amp;lt;span class=&amp;quot;todo&amp;quot;&amp;gt;I'd like to regroup these examples... perhaps by publishing strategy instead of a list of what is being published. Should this be available as an alternate grouping section?  In the mean time, a grouping by publisher would help analysis go smoother. [[User:BenWest|BenWest]] 17:57, 21 Oct 2006 (PDT)&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span class=&amp;quot;todo&amp;quot;&amp;gt;I looked at several examples.  Several of them feel like tagging to me.  Should we attempt to note what level or resolution is available in each example?&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tagging ===&lt;br /&gt;
The [[http://species.wikimedia.org/wiki/Charadrius_dubius wiki media bird example]] is particularly interesting.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Regnum: &amp;lt;a href=&amp;quot;/wiki/Animalia&amp;quot; title=&amp;quot;Animalia&amp;quot;&amp;gt;Animalia&amp;lt;/a&amp;gt; (Metazoa)&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Subregnum: &amp;lt;a href=&amp;quot;/wiki/Eumetazoa&amp;quot; title=&amp;quot;Eumetazoa&amp;quot;&amp;gt;Eumetazoa&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Superphylum: Bilateria: &amp;lt;a href=&amp;quot;/wiki/Deuterostomia&amp;quot; title=&amp;quot;Deuterostomia&amp;quot;&amp;gt;Deuterostomia&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Phylum: &amp;lt;a href=&amp;quot;/wiki/Chordata&amp;quot; title=&amp;quot;Chordata&amp;quot;&amp;gt;Chordata&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;Subphylum: &amp;lt;a href=&amp;quot;/wiki/Vertebrata&amp;quot; title=&amp;quot;Vertebrata&amp;quot;&amp;gt;Vertebrata&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Classis: &amp;lt;a href=&amp;quot;/wiki/Aves&amp;quot; title=&amp;quot;Aves&amp;quot;&amp;gt;Aves&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Subclassis: &amp;lt;a href=&amp;quot;/wiki/Neognathae&amp;quot; title=&amp;quot;Neognathae&amp;quot;&amp;gt;Neognathae&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Ordo: &amp;lt;a href=&amp;quot;/wiki/Charadriiformes&amp;quot; title=&amp;quot;Charadriiformes&amp;quot;&amp;gt;Charadriiformes&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Subordo: &amp;lt;a href=&amp;quot;/wiki/Charadrii&amp;quot; title=&amp;quot;Charadrii&amp;quot;&amp;gt;Charadrii&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Familia: &amp;lt;a href=&amp;quot;/wiki/Charadriidae&amp;quot; title=&amp;quot;Charadriidae&amp;quot;&amp;gt;Charadriidae&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Subfamily: &amp;lt;a href=&amp;quot;/wiki/Charadriinae&amp;quot; title=&amp;quot;Charadriinae&amp;quot;&amp;gt;Charadriinae&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Genus: &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/wiki/Charadrius&amp;quot; title=&amp;quot;Charadrius&amp;quot;&amp;gt;Charadrius&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&amp;lt;dd&amp;gt;Species: &amp;lt;i&amp;gt;&amp;lt;strong class=&amp;quot;selflink&amp;quot;&amp;gt;Charadrius dubius&amp;lt;/strong&amp;gt;&amp;lt;/i&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dd&amp;gt;Subspecies: &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/w/index.php?title=Charadrius_dubius_curonicus&amp;amp;amp;action=edit&amp;quot; class=&amp;quot;new&amp;quot; title=&amp;quot;Charadrius dubius curonicus&amp;quot;&amp;gt;C.&amp;amp;nbsp;d.&amp;amp;nbsp;curonicus&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&amp;amp;nbsp;- &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/w/index.php?title=Charadrius_dubius_dubius&amp;amp;amp;action=edit&amp;quot; class=&amp;quot;new&amp;quot; title=&amp;quot;Charadrius dubius dubius&amp;quot;&amp;gt;C.&amp;amp;nbsp;d.&amp;amp;nbsp;dubius&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&amp;amp;nbsp;- &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/w/index.php?title=Charadrius_dubius_jerdoni&amp;amp;amp;action=edit&amp;quot; class=&amp;quot;new&amp;quot; title=&amp;quot;Charadrius dubius jerdoni&amp;quot;&amp;gt;C.&amp;amp;nbsp;d.&amp;amp;nbsp;jerdoni&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&amp;amp;nbsp;- &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;/w/index.php?title=Charadrius_dubius_papuanus&amp;amp;amp;action=edit&amp;quot; class=&amp;quot;new&amp;quot; title=&amp;quot;Charadrius dubius papuanus&amp;quot;&amp;gt;C.&amp;amp;nbsp;d.&amp;amp;nbsp;papuanus&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This feels similar to tagging to me.  This particular example has a resolves the whole heirarchy, correct?  [[User:BenWest|BenWest]] 17:57, 21 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==voir aussi==&lt;br /&gt;
{{species-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-06-07-at-media-europe&amp;diff=34613</id>
		<title>events/2007-06-07-at-media-europe</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-06-07-at-media-europe&amp;diff=34613"/>
		<updated>2008-11-18T00:07:56Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Related Articles/Blogs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats, Building Blocks, and You at @media Europe&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
[http://www.vivabit.com/atmedia2007/europe/ @media 2007 Europe]&lt;br /&gt;
&lt;br /&gt;
From the [http://www.vivabit.com/atmedia2007/europe/sessions/#microformats session description] page:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Taking microformats another step forward, Tantek Çelik, the foremost authority on the subject, will explain how to both use microformats to make your site more indexable, parsable, and reusable, and how to get it built into other services and also how to use microformats to build other sites and services into your site.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
* Title: Microformats, Building Blocks, and You&lt;br /&gt;
* Where: the auditorium in the Business Design Center, 52 Upper Street, London, UK.&lt;br /&gt;
* When: 3pm&lt;br /&gt;
* [[Presentation]]: http://tantek.com/presentations/2007/06/microformats-bb-you/&lt;br /&gt;
&lt;br /&gt;
== Tags ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging content (blog posts, photos) published related to the microformats session at @media07 Europe:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncenter microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
== Presenter ==&lt;br /&gt;
*[http://tantek.com/ Tantek Çelik]&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
Please note yourself in the Flickr photos and add yourself to the list below:&lt;br /&gt;
&lt;br /&gt;
[http://www.flickr.com/photos/tantek/795486754/ http://farm2.static.flickr.com/1090/795486754_88b77c79fc_m.jpg][http://www.flickr.com/photos/tantek/795481766/ http://farm2.static.flickr.com/1327/795481766_925577d66c_m.jpg][http://www.flickr.com/photos/tantek/795476880/ http://farm2.static.flickr.com/1293/795476880_405ac10167_m.jpg]&lt;br /&gt;
&lt;br /&gt;
Alphabetically sorted by last name.&lt;br /&gt;
&lt;br /&gt;
*[http://tantek.com/ Tantek Çelik]&lt;br /&gt;
*[http://staffnet.kingston.ac.uk/~ku13043/ James Denholm-Price]&lt;br /&gt;
*[http://thinkdrastic.net/ Olly Hodgson]&lt;br /&gt;
*[http://adactio.com/ Jeremy Keith]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Session Comments and Q&amp;amp;A ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging photos published related to the microformats session at @media07 San Francisco:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncenter microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
[http://flickr.com/photos/low/538901080/ http://farm2.static.flickr.com/1013/538901080_21c3675d53_m.jpg]&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Related Articles/Blogs ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging blog posts published related to the microformats session at @media07 San Francisco:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncenter microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[events/2007-05-25-at-media-america]]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-06-07-at-media-europe&amp;diff=34612</id>
		<title>events/2007-06-07-at-media-europe</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-06-07-at-media-europe&amp;diff=34612"/>
		<updated>2008-11-18T00:07:28Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Photos */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats, Building Blocks, and You at @media Europe&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
[http://www.vivabit.com/atmedia2007/europe/ @media 2007 Europe]&lt;br /&gt;
&lt;br /&gt;
From the [http://www.vivabit.com/atmedia2007/europe/sessions/#microformats session description] page:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Taking microformats another step forward, Tantek Çelik, the foremost authority on the subject, will explain how to both use microformats to make your site more indexable, parsable, and reusable, and how to get it built into other services and also how to use microformats to build other sites and services into your site.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
* Title: Microformats, Building Blocks, and You&lt;br /&gt;
* Where: the auditorium in the Business Design Center, 52 Upper Street, London, UK.&lt;br /&gt;
* When: 3pm&lt;br /&gt;
* [[Presentation]]: http://tantek.com/presentations/2007/06/microformats-bb-you/&lt;br /&gt;
&lt;br /&gt;
== Tags ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging content (blog posts, photos) published related to the microformats session at @media07 Europe:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncenter microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
== Presenter ==&lt;br /&gt;
*[http://tantek.com/ Tantek Çelik]&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
Please note yourself in the Flickr photos and add yourself to the list below:&lt;br /&gt;
&lt;br /&gt;
[http://www.flickr.com/photos/tantek/795486754/ http://farm2.static.flickr.com/1090/795486754_88b77c79fc_m.jpg][http://www.flickr.com/photos/tantek/795481766/ http://farm2.static.flickr.com/1327/795481766_925577d66c_m.jpg][http://www.flickr.com/photos/tantek/795476880/ http://farm2.static.flickr.com/1293/795476880_405ac10167_m.jpg]&lt;br /&gt;
&lt;br /&gt;
Alphabetically sorted by last name.&lt;br /&gt;
&lt;br /&gt;
*[http://tantek.com/ Tantek Çelik]&lt;br /&gt;
*[http://staffnet.kingston.ac.uk/~ku13043/ James Denholm-Price]&lt;br /&gt;
*[http://thinkdrastic.net/ Olly Hodgson]&lt;br /&gt;
*[http://adactio.com/ Jeremy Keith]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Session Comments and Q&amp;amp;A ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging photos published related to the microformats session at @media07 San Francisco:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncenter microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
[http://flickr.com/photos/low/538901080/ http://farm2.static.flickr.com/1013/538901080_21c3675d53_m.jpg]&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Related Articles/Blogs ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging blog posts published related to the microformats session at @media07 San Francisco:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncentre microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[events/2007-05-25-at-media-america]]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-06-07-at-media-europe&amp;diff=34611</id>
		<title>events/2007-06-07-at-media-europe</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-06-07-at-media-europe&amp;diff=34611"/>
		<updated>2008-11-18T00:07:06Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Tags */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats, Building Blocks, and You at @media Europe&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
[http://www.vivabit.com/atmedia2007/europe/ @media 2007 Europe]&lt;br /&gt;
&lt;br /&gt;
From the [http://www.vivabit.com/atmedia2007/europe/sessions/#microformats session description] page:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Taking microformats another step forward, Tantek Çelik, the foremost authority on the subject, will explain how to both use microformats to make your site more indexable, parsable, and reusable, and how to get it built into other services and also how to use microformats to build other sites and services into your site.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
* Title: Microformats, Building Blocks, and You&lt;br /&gt;
* Where: the auditorium in the Business Design Center, 52 Upper Street, London, UK.&lt;br /&gt;
* When: 3pm&lt;br /&gt;
* [[Presentation]]: http://tantek.com/presentations/2007/06/microformats-bb-you/&lt;br /&gt;
&lt;br /&gt;
== Tags ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging content (blog posts, photos) published related to the microformats session at @media07 Europe:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncenter microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
== Presenter ==&lt;br /&gt;
*[http://tantek.com/ Tantek Çelik]&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
Please note yourself in the Flickr photos and add yourself to the list below:&lt;br /&gt;
&lt;br /&gt;
[http://www.flickr.com/photos/tantek/795486754/ http://farm2.static.flickr.com/1090/795486754_88b77c79fc_m.jpg][http://www.flickr.com/photos/tantek/795481766/ http://farm2.static.flickr.com/1327/795481766_925577d66c_m.jpg][http://www.flickr.com/photos/tantek/795476880/ http://farm2.static.flickr.com/1293/795476880_405ac10167_m.jpg]&lt;br /&gt;
&lt;br /&gt;
Alphabetically sorted by last name.&lt;br /&gt;
&lt;br /&gt;
*[http://tantek.com/ Tantek Çelik]&lt;br /&gt;
*[http://staffnet.kingston.ac.uk/~ku13043/ James Denholm-Price]&lt;br /&gt;
*[http://thinkdrastic.net/ Olly Hodgson]&lt;br /&gt;
*[http://adactio.com/ Jeremy Keith]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Session Comments and Q&amp;amp;A ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging photos published related to the microformats session at @media07 San Francisco:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncentre microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
[http://flickr.com/photos/low/538901080/ http://farm2.static.flickr.com/1013/538901080_21c3675d53_m.jpg]&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related Articles/Blogs ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging blog posts published related to the microformats session at @media07 San Francisco:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncentre microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[events/2007-05-25-at-media-america]]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-06-07-at-media-europe&amp;diff=34610</id>
		<title>events/2007-06-07-at-media-europe</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-06-07-at-media-europe&amp;diff=34610"/>
		<updated>2008-11-18T00:06:33Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Details */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformats, Building Blocks, and You at @media Europe&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
[http://www.vivabit.com/atmedia2007/europe/ @media 2007 Europe]&lt;br /&gt;
&lt;br /&gt;
From the [http://www.vivabit.com/atmedia2007/europe/sessions/#microformats session description] page:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;Taking microformats another step forward, Tantek Çelik, the foremost authority on the subject, will explain how to both use microformats to make your site more indexable, parsable, and reusable, and how to get it built into other services and also how to use microformats to build other sites and services into your site.&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
* Title: Microformats, Building Blocks, and You&lt;br /&gt;
* Where: the auditorium in the Business Design Center, 52 Upper Street, London, UK.&lt;br /&gt;
* When: 3pm&lt;br /&gt;
* [[Presentation]]: http://tantek.com/presentations/2007/06/microformats-bb-you/&lt;br /&gt;
&lt;br /&gt;
== Tags ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging content (blog posts, photos) published related to the microformats session at @media07 Europe:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncentre microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
== Presenter ==&lt;br /&gt;
*[http://tantek.com/ Tantek Çelik]&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
Please note yourself in the Flickr photos and add yourself to the list below:&lt;br /&gt;
&lt;br /&gt;
[http://www.flickr.com/photos/tantek/795486754/ http://farm2.static.flickr.com/1090/795486754_88b77c79fc_m.jpg][http://www.flickr.com/photos/tantek/795481766/ http://farm2.static.flickr.com/1327/795481766_925577d66c_m.jpg][http://www.flickr.com/photos/tantek/795476880/ http://farm2.static.flickr.com/1293/795476880_405ac10167_m.jpg]&lt;br /&gt;
&lt;br /&gt;
Alphabetically sorted by last name.&lt;br /&gt;
&lt;br /&gt;
*[http://tantek.com/ Tantek Çelik]&lt;br /&gt;
*[http://staffnet.kingston.ac.uk/~ku13043/ James Denholm-Price]&lt;br /&gt;
*[http://thinkdrastic.net/ Olly Hodgson]&lt;br /&gt;
*[http://adactio.com/ Jeremy Keith]&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Session Comments and Q&amp;amp;A ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging photos published related to the microformats session at @media07 San Francisco:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncentre microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
[http://flickr.com/photos/low/538901080/ http://farm2.static.flickr.com/1013/538901080_21c3675d53_m.jpg]&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related Articles/Blogs ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging blog posts published related to the microformats session at @media07 San Francisco:&lt;br /&gt;
&lt;br /&gt;
tags: '''london uk upperstreet businessdesigncentre microformats atmedia atmedia07 atmedia2007 atmedia2007europe microformats-atmedia microformats-atmedia07 microformats-atmedia2007 microformats-atmedia2007europe upcoming:event=110091'''&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[events/2007-05-25-at-media-america]]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2007-07-23-geoweb2007&amp;diff=34609</id>
		<title>events/2007-07-23-geoweb2007</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2007-07-23-geoweb2007&amp;diff=34609"/>
		<updated>2008-11-18T00:06:09Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Details */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;GeoWeb 2007&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One of several microformats [[events]].&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
http://www.geoweb.org/&lt;br /&gt;
&lt;br /&gt;
GeoWeb 2007's principal theme, &amp;quot;From Mashups to Infrastructure&amp;quot;, reflects the breadth, the evolution, and the growing maturity of the GeoWeb. This theme acknowledges the highly visible consumer applications that helped spawn the GeoWeb while emphasizing that the GeoWeb is increasingly playing a meaningful role in mainstream, mission-critical applications. As such, the GeoWeb is now a key component in critical decision-making across a broad spectrum of market segments and application domains. &lt;br /&gt;
&lt;br /&gt;
Though no microformat-specific content has been announced, there is obvious relevance to the [[geo|Geo microformat]], and vice versa.&lt;br /&gt;
&lt;br /&gt;
*[http://www.geowebblog.org/ GeoWeb 2007 blog]&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
* Title: GeoWeb 2007&lt;br /&gt;
* Where: Morris J. Wosk Center for Dialogue , Vancouver, British Columbia, Canada&lt;br /&gt;
* When: 23-27 July 2007&lt;br /&gt;
&lt;br /&gt;
== Tags ==&lt;br /&gt;
&lt;br /&gt;
tags: '''GeoWeb2007 GeoWeb'''&lt;br /&gt;
&lt;br /&gt;
== Presenter ==&lt;br /&gt;
*Guest Speaker Vinton Cerf, a &amp;quot;Father of the Internet &amp;quot; &lt;br /&gt;
*Keynoter Jack Dangermond, ESRI  &lt;br /&gt;
*Keynoter Michael Jones, Google Earth  &lt;br /&gt;
*Keynoter Geoff Zeiss, Autodesk  &lt;br /&gt;
*Plenary Speaker Vincent Tao, Microsoft  &lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
*[xxxUrlxxx xxxNamexxx]&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
Alphabetically sorted by last name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
*[xxxUrlxxx xxxNamexxx]&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Session Comments and Q&amp;amp;A ==&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging photos published related to GeoWeb 2007:&lt;br /&gt;
&lt;br /&gt;
tags: '''GeoWeb2007 GeoWeb'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
*[xxxUrlxxx] &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Related Articles/Blogs ==&lt;br /&gt;
Please use ''all'' of the following tags when tagging blog posts published related to GeoWeb 2007:&lt;br /&gt;
&lt;br /&gt;
tags: '''GeoWeb2007 GeoWeb'''&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;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events-2007-fr&amp;diff=34608</id>
		<title>events-2007-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events-2007-fr&amp;diff=34608"/>
		<updated>2008-11-18T00:06:06Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Juin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Les événements 2007 en rapport avec les Microformats&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Pour les événements actuels, récents et à venir, voir [[events-fr|événements microformats]]&lt;br /&gt;
&lt;br /&gt;
=== Juillet ===&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-07-28&amp;lt;/span&amp;gt; : &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt; [[events/2007-07-28-portable-social-networks-meetup|meetup réseaux sociaux portables]]&amp;lt;/span&amp;gt; au &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Ritual Coffee Roasters&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&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;2007-07-23&amp;lt;/span&amp;gt;- 2007-07-27: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-07-23-geoweb2007|GeoWeb 2007]]&amp;lt;/span&amp;gt; à &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.geoweb.org/&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;le principal thème de GeoWeb 2007, &amp;quot;From Mashups to Infrastructure&amp;quot;, renvoie le souffle, l'évolution et la mâturité croissante du GeoWeb.&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;2007-07-11&amp;lt;/span&amp;gt; : &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-07-11-explorcampparis2-fr|Atelier microformats à l'ExplorCamp]] - 20 minutes pour découvrir la grande image des Microformats&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Paris&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;France&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Juin ===&lt;br /&gt;
* 2007-06-18 - 2007-06-19 [http://events.eife-l.org/cv07/ séminaire sur l'interopérabilité du CV et son exploitation à l'IMI dans Paris]. Présentation du hResume par [[Christophe Ducamp]] (Comptes-rendus [http://www.eife-l.org/publications/proceedings/cv07/cv2007news/view globalview (en)], [http://xtof.viabloga.com/news/hresume-a-cv2007 (fr)] + [http://www.slideshare.net/ChristopheDucamp/microformats-hresume dias])&lt;br /&gt;
* 2007-06-07 [[events/2007-06-07-at-media-europe|Microformats, Building Blocks, and You]] lors de [http://www.vivabit.com/atmedia2007/europe @media Europe] à l'auditorium -  Business Design Center, 52 Upper Street, London, UK.&lt;br /&gt;
* 2007-06-01 - 2007-08-08 [[events/2007-06-01-sandbox-designs-competition-fr|Le Concours de Design sur le Thème Sandbox]] sur [http://www.sndbx.org/ www.sndbx.org] &amp;amp;mdash; Utiliser Sandbox le thème riche en Microformats pour WordPress&lt;br /&gt;
&lt;br /&gt;
=== Mai===&lt;br /&gt;
* 2007-05-29 [[events/2007-05-29-where-2|Microformats BoF]] lors de [http://conferences.oreillynet.com/pub/w/56/schedule.html Where 2.0] à San Jose&lt;br /&gt;
* 2007-05-25 [[events/2007-05-25-atmediaamerica07|Microformats, Building Blocks, and You]] at [http://www.vivabit.com/atmedia2007/america @media America] à San Francisco&lt;br /&gt;
* 2007-05-16 [[events-fr/2007-05-16-XTech|Microformats: la nanotechnologie du web sémantique]] lors de la conférence [http://2007.xtech.org/ XTech 2007] à Paris.&lt;br /&gt;
* 2007-05-14 [http://upcoming.org/event/151198/ GeekDinner à Paris avec Brian Suda et ses amis] à l'avant-veille de la conférence XTech à Paris 1.&lt;br /&gt;
* 2007-05-10 [[events/2007-05-10-Skillswap|Microformats skillswap]] at 28 Kensington Street, Brighton.&lt;br /&gt;
* 2007-05-03 - 2007-05-04: [[events/2007-05-03-wow-web2-workshop|WoW workshop: Best Practices of Web Design with Web 2. Now for Everyone]] at MGM Grand conference center rooms 207-208, Las Vegas, Nevada. Discussing microformats and other modern web design best practices.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Avril===&lt;br /&gt;
* 2007-04-30 [[events/2007-04-30-mix07|Microformats: Data Formats That Put Humans First]] in room Lando 4204 at the [http://visitmix.com/ Mix07 Conference] in The Venetian, Las Vegas, NV.&lt;br /&gt;
* 2007-04-17 13h00 [[events-fr/2007-04-17-web-2-expo#Microformats_for_Web_Services_and_Portable_Content|Microformats for Web Services and Portable Content]] par Kevin Lawver à [http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo] à San Francisco.&lt;br /&gt;
* 2007-04-17 [[events-fr/2007-04-17-web-2-expo#Microformats.2C_Much_More_Than_Just_Promise|Microformats: Much more than just promise]] par John Allsopp, à [http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo] à San Francisco.&lt;br /&gt;
* 2007-04-18 [[events/2007-04-18-web-2-expo-dinner|Dîner Microformats]] suite à la [http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo] à San Francisco.&lt;br /&gt;
* 2007-04-18 14:00 [[events-fr/2007-04-17-web-2-expo#Microformats_for_media|Microformats for media]] par Mary Hodder et Kevin Marks au [https://www.socialtext.net/web2open/index.cgi?mary_hodder Web 2.0 Open] à San Francisco.&lt;br /&gt;
* 2007-04-05 12:30pm [http://upcoming.org/event/172611 Déjeuner Microformats dans South Park avec Rohit et le livre &amp;quot;Microformats&amp;quot;], South Park, San Francisco, CA, USA&lt;br /&gt;
&lt;br /&gt;
===Mars===&lt;br /&gt;
* 2007-03-23 [[events-fr/2007-03-23-stanford|Microformats à Stanford]]&lt;br /&gt;
* 2007-03-22 [http://www.webdu.com.au/go/session/microformats--hidden-treasures Microformats—the hidden treasure] par Dmitry Baranovskiy à la conférence [http://www.webdu.com.au/ webDU 2007] à Sydney, Australie. [http://dmitry.baranovskiy.com/microformats-webdu.pdf Dias de Présentation (PDF 5.1 Mb)]&lt;br /&gt;
* 2007-03-20 : [http://upcoming.org/event/161681/ Semantic London], un rassemblement social pour les personnes intéressées par les microformats, le web sémantique, etc.&lt;br /&gt;
* 2007-03-12: [[events-fr/2006-03-12-sxsw-growth-evolution-of|The Growth and Evolution of Microformats]] au [http://2007.sxsw.com/interactive Festival Interactif de Southwest] du 10 au 13 mars. Voir aussi [http://2007.sxsw.com/interactive/programming/panels/ les panels confirmés SXSWi 2007].&lt;br /&gt;
&lt;br /&gt;
===Février===&lt;br /&gt;
* 2007-02-17 - 2007-02-18 : Différents microformateurs étaient présents lors du [http://barcamp.org/BarCampLondon2 BarCampLondon] avec différentes sessions en rapport avec les microformats. Voir [[events-fr/2007-02-17-barcamplondon2|Microformats au BarCampLondon]]&lt;br /&gt;
* 2007-02-07 1:45pm-3:45pm : [http://north.webdirections.org/schedule/ Web Directions North] Session 4 : Microformats - more than just promise with John Allsopp, Dan Cederholm, Tantek Çelik.&lt;br /&gt;
* 2007-02-03: [http://barcamp.org/BarCampBank3 comment utiliser les microformats dans la banque ?] - atelier animé par Christophe Ducamp (3pm-4pm) à l'Atelier BnpParibas 29 rue la Pérouse 75116 Paris - France (Métro Etoile). Animé conjointement suite à un atelier sur le VRM.&lt;br /&gt;
&lt;br /&gt;
===Janvier===&lt;br /&gt;
* 2007-01-27: [[events/2007-01-la-get-together|Los Angeles Microformats Get Together]]&lt;br /&gt;
* 2007-01-20 :[http://barcamp.org/BarCampParis8 BarCampParis8] : présentation du projet 'cettesemaineenmicroformats' et proposition de brainstorming pour développer le [[advocacy-fr|soutien francophone]] sur le microformat hCard. (cf ordre du jour proposé sur   [http://www.elanceur.org/microformats/blog/barcampparis8.html activisme microformats sur le barcampparis8])&lt;br /&gt;
* 2007-01-18: [[events/2007-01-18-sf-microformats-dinner|San Francisco Microformats Dinner]] 6pm-? @ Nova on 2nd street. Details inside.&lt;br /&gt;
&lt;br /&gt;
==Pages en rapport==&lt;br /&gt;
{{events-related-pages-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events-2007&amp;diff=34607</id>
		<title>events-2007</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events-2007&amp;diff=34607"/>
		<updated>2008-11-18T00:05:25Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* June */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Microformat related events in 2007&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Microformats [[events|current events]], [[events-2007|2007 events]], [[events-2006|2006 events]].&lt;br /&gt;
See also [[presentations]] which may refer to additional events not yet documented here.&lt;br /&gt;
&lt;br /&gt;
==December==&lt;br /&gt;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;abbr class=&amp;quot;dtstart&amp;quot; title=&amp;quot;2007-12-11T17:00-0800&amp;quot;&amp;gt;2007-12-11 5pm&amp;lt;/abbr&amp;gt;&amp;amp;ndash;&amp;lt;abbr class=&amp;quot;dtend&amp;quot; title=&amp;quot;2007-12-11T20:00-0800&amp;quot;&amp;gt;8pm&amp;lt;/abbr&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-12-11-open-media-web|Open Media Web Meetup]]&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;Songbird&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;585 Howard 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 class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Portable Playlists and other POSH-ibilities&amp;lt;/span&amp;gt;&amp;lt;/span&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;2007-11-16&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-11-16-portable-social-networks-3|Portable Social Networks III]]&amp;lt;/span&amp;gt; 11am-1pm 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;Satisfaction Unlimited&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;370 Brannan 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;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&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;2007-11-07&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-11-07-w3c-tech-plenary|W3C Technical Plenary Day]]&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Documenting sessions and participation both onsite in Cambridge, MA, and remote participation, e.g. in 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;2007-11-07&amp;lt;/span&amp;gt; : &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-11-07-microfomats-nanotechonology|Microformats: the nanotechnology of the semantic web]]&amp;lt;/span&amp;gt; at [http://berlin.web2expo.com/conference/conference-by-day.php#1194422400 Web 2.0 Expo Berlin] by Jeremy Keith &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;Berlin&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;Germany&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;2007-11-06&amp;lt;/span&amp;gt; : &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-11-06-microfomats-a-web-of-data|Microformats a Web of data]]&amp;lt;/span&amp;gt; at [http://berlin.web2expo.com/conference/conference-by-day.php#1194336000 Web 2.0 Expo Berlin] by Brian Suda &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;Berlin&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;Germany&amp;lt;/span&amp;gt;&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;2007-10-25&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-10-25-what-are-microformats|Microformats: what are they and why do I care?]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;[http://www.voicesthatmatter.com/WebDesign2007/wdsessions.html#microformats Voices That Matter: Web Design Conference]&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;by Jeremy Keith.&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;2007-10-13&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;BarCamp Milwaukee2: An Intro to Microformats by Ashe Dryden &amp;amp; Matt Gauger&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Milwaukee, Wisconsin, USA&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;2007-10-09&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-10-09-open-social-graph|OpenFaced panel: Opening Up the Social Graph]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;[http://graphingsocial.com/ Graphing Social Patterns]&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;2007-10-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-10-05-fundamentos-web-microformats-workshop|Fundamentos Web: Microformats Workshop]]&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.fundamentosweb.org/2007/Programa/Dia3/&amp;lt;/span&amp;gt; by Tantek Çelik &amp;amp;mdash; &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Gij&amp;amp;oacute;n, Spain&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;2007-10-04&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-10-04-future-of-web-apps|Future Of Web Apps]]&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;London, England&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
**Session: &amp;quot;Practical Semantic Web&amp;quot; by Jon Aizen &amp;amp; Eran Shir of [http://www.dapper.net/ Dapper] included microformats [http://www.xlml.com/aehso/2007/10/05/future-of-web-apps-london-2007-notes/]&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;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;
*&amp;lt;span class=&amp;quot;vevent&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;dtstart&amp;quot;&amp;gt;2007-10-02&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-10-02-dallas-ruby-brigade|Dallas Ruby Brigade]]&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;location&amp;quot;&amp;gt;Dallas, TX, USA&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;2007-09-28&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-09-28-portable-social-networks-meetup-amsterdam|Meet-up at at PICNIC in Amsterdam]], Netherlands &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;2007-09-25T17:30-0700&amp;lt;/span&amp;gt; - 20:00-0700: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-09-25-social-network-portability|Portable Social Network Micro Meetup]]&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;Citizen Space&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;CA&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&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;2007-09-18&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-09-18-calconnect-vcard-workshop|CalConnect vCard Workshop]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.calconnect.org/vcardworkshop.shtml&amp;lt;/span&amp;gt;) &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt; a one day vCard-focused workshop event 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;M.I.T.&amp;lt;/span&amp;gt;. in &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Cambridge&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;Massachusetts&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; with the goal of bringing together the key players to help move forward vCard revision efforts&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;2007-09-08T15:45+0100&amp;lt;/span&amp;gt;-16:30+0100: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-09-08-social-network-portability|Social Network Portability at BarCampBrighton]]&amp;lt;/span&amp;gt; at [http://barcamp.org/BarCampBrighton BarCampBrighton], &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Madgex&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;31 North Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Brighton&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;England&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;2007-09-06T17:30-0400&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;Meetup on Microformats&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://webstandards.meetup.com/122/calendar/6116740/&amp;lt;/span&amp;gt;) &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Short introduction to microformats  by Catherine Devlin, at the Web Standards Meetup Group, &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Panera Bread&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;1203 Brown Street&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Dayton&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;Ohio&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;OH 45409&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; (Ccoordinates: &amp;lt;span class=&amp;quot;geo&amp;quot;&amp;gt;39.7420;-84.1823&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;2007-09-05&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-09-05-dconstruct-microformats-workshop|dConstruct Microformats Workshop]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://2007.dconstruct.org/workshops/#jeremytantek&amp;lt;/span&amp;gt;) &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt; Tantek Çelik and Jeremy Keith cover just about everything related to microformats in this one-day workshop as part of the dConstruct conference&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&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== August ==&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;2007-08-28&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-08-28-social-network-portability-today|Social Network Portability Today lunchtime meetup]]&amp;lt;/span&amp;gt; noon-2pm 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;Satisfaction Unlimited&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;370 Brannan 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;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&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;2007-08-19&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-08-19-social-network-portability-today|social network portability today with hCard and XFN]]&amp;lt;/span&amp;gt; 3pm-4pm at [http://barcamp.org/BarCampBlock BarCampBlock], &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Princeton Review&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;Palo Alto&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&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;2007-08-18&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-08-18-social-graph|social graph discussion]], 3:30pm-4pm&amp;lt;/span&amp;gt; at [http://barcamp.org/BarCampBlock BarCampBlock], &amp;lt;span class=&amp;quot;vcard location&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;SocialText&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;co-working space room B&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Palo Alto&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;
&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-08-18&amp;lt;/span&amp;gt;:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt; [[events/2007-08-18-community-meetup|microformats community meetup]], 12:15pm-1pm&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;vcard location&amp;quot;&amp;gt;[http://barcamp.org/BarCampBlock BarCampBlock], &amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;SocialText&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;co-working space room A&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Palo Alto&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;
&lt;br /&gt;
*2007-08-18 - 2007-08-19 [http://barcamp.org/BarCampBlock BarCampBlock]&lt;br /&gt;
&lt;br /&gt;
== July ==&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;2007-07-28&amp;lt;/span&amp;gt;:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt; [[events/2007-07-28-portable-social-networks-meetup|portable social networks meetup]]&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;Ritual Coffee Roasters&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&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;2007-07-23&amp;lt;/span&amp;gt;- 2007-07-27: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-07-23-geoweb2007|GeoWeb 2007]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://www.geoweb.org/&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;GeoWeb 2007's principal theme, &amp;quot;From Mashups to Infrastructure&amp;quot;, reflects the breadth, the evolution, and the growing maturity of the GeoWeb.&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== June ==&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;2007-06-18&amp;lt;/span&amp;gt; - 2007-06-19 &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-06-18-cv07|CV seminar (including hResume Microformat) at IMI]] [http://events.eife-l.org/cv07/ CV interoperability and exploitation seminar]&amp;lt;/span&amp;gt; at vC&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;IMI&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Paris&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;France&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. ([http://www.slideshare.net/ChristopheDucamp/microformats-hresume presentation] and [http://xtof.viabloga.com/news/hresume-a-cv2007 report])&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;2007-06-07&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-06-07-at-media-europe|Microformats, Building Blocks, and You]] at [http://www.vivabit.com/atmedia2007/europe @media Europe]&amp;lt;/span&amp;gt; at the vC&amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;auditorium&amp;lt;/span&amp;gt; in the &amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Business Design Center&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;52 Upper Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;London&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;England&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;2007-06-01&amp;lt;/span&amp;gt; - 2007-08-08 &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-06-01-sandbox-designs-competition|Sandbox Designs Competition]] at [http://www.sndbx.org/ www.sndbx.org]&amp;lt;/span&amp;gt; &amp;amp;mdash; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Utilizing the Microformats-rich Sandbox theme for WordPress&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== May ==&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;2007-05-29&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-05-29-where-2|Microformats BoF]] at [http://conferences.oreillynet.com/pub/w/56/schedule.html Where 2.0]&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;location 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;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;
&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-05-25&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-05-25-at-media-america|Microformats, Building Blocks, and You]] at [http://www.vivabit.com/atmedia2007/america @media America]&amp;lt;/span&amp;gt; in the &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;Metropolitain III Ballroom&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Westin San Francisco Market Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;50 Third 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 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;
&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-05-16&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-05-16-XTech|Microformats: the nanotechnology of the semantic web]] at the [http://2007.xtech.org/ XTech 2007] conference&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Paris&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;France&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;2007-05-10&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-05-10-Skillswap|Microformats skillswap]]&amp;lt;/span&amp;gt; at &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;28 Kensington Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Brighton&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;England&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;2007-05-03&amp;lt;/span&amp;gt; - 2007-05-04: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-05-03-wow-web2-workshop|WoW workshop: Best Practices of Web Design with Web 2&amp;lt;/span&amp;gt;. Now for Everyone]] 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;MGM Grand conference center&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;rooms 207-208&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Las Vegas&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;Nevada&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;. Discussing microformats and other modern web design best practices.&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;2007-04-30&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-04-30-mix07|Microformats: Data Formats That Put Humans First]] in room Lando 4204 at the [http://visitmix.com/ Mix07 Conference]&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;location vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;The Venetian&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Las Vegas&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;Nevada&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;
&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-04-18&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-04-18-web-2-expo-dinner|Microformats Dinner]] following [http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo]&amp;lt;/span&amp;gt; in &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;California&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;
&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-04-18T14:00&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-04-18-web-2-open-media|Microformats for media]] by Mary Hodder and Kevin Marks at [https://www.socialtext.net/web2open/index.cgi?mary_hodder Web 2.0 Open]&amp;lt;/span&amp;gt; in &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;California&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;
&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-04-17T13:00&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-04-17-web-2-expo#Microformats_for_Web_Services_and_Portable_Content|Microformats for Web Services and Portable Content]] by Kevin Lawver at [http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo]&amp;lt;/span&amp;gt; in &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;California&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;
&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-04-17&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-04-17-web-2-expo#Microformats.2C_Much_More_Than_Just_Promise|Microformats: Much more than just promise]] by John Allsopp, at [http://www.web2expo.com/cs/webex2007/view/e_sess/11831 Web 2.0 Expo]&amp;lt;/span&amp;gt; in &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;California&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;
&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-04-05T12:30&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[http://upcoming.org/event/172611 Microformats lunch in South Park with Rohit and &amp;quot;Microformats&amp;quot; book]&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;South Park, &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 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;
&lt;br /&gt;
== March ==&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;2007-03-27&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-03-27-ETech07Proposal|ETech07]]&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;2007-03-23&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-03-23-stanford|Microformats at Stanford]]&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;2007-03-22&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[http://www.webdu.com.au/go/session/microformats--hidden-treasures Microformats—the hidden treasure] by Dmitry Baranovskiy at the [http://www.webdu.com.au/ webDU 2007] conference&amp;lt;/span&amp;gt; in &amp;lt;span class=&amp;quot;location adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Sydney&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;Australia&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;. [http://dmitry.baranovskiy.com/microformats-webdu.pdf Presentation slides (PDF 5.1 Mb)]&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;2007-03-20&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[http://upcoming.org/event/161681/ Semantic London]&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;a social gathering for people interested in microformats, SemWeb etc.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;location 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 class=&amp;quot;country-name&amp;quot;&amp;gt;England&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;2007-03-12&amp;lt;/span&amp;gt;:&amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt; [[events/2007-03-12-sxsw-growth-evolution-of|The Growth and Evolution of Microformats]] at [http://2007.sxsw.com/interactive South by Southwest Interactive Festival] 2007 3/10-13&amp;lt;/span&amp;gt;. &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;See also [http://2007.sxsw.com/interactive/programming/panels/ confirmed SXSWi 2007 panels].&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== February ==&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;2007-02-17&amp;lt;/span&amp;gt; - 2007-02-18: &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;Various microformateers were in attendance at [http://barcamp.org/BarCampLondon2 BarCampLondon] so various microformat related sessions featured.&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-02-17-barcamplondon2|Microformats at BarCampLondon]]&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;location 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 class=&amp;quot;country-name&amp;quot;&amp;gt;England&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;2007-02-07T11:45&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[[events/2007-02-07-web-directions-north|microformats presentations at Web Directions North]]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;11:45am-12:45pm &amp;quot;Microformats - The Big Picture&amp;quot; with Tantek Çelik in ballroom I , 1:45pm-3:45pm: &amp;quot;Microformats - more than just promise&amp;quot; with John Allsopp and Dan Cederholm in ballroom II.&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;2007-02-03T15:00&amp;lt;/span&amp;gt;: &amp;lt;span class=&amp;quot;summary&amp;quot;&amp;gt;[http://barcamp.org/BarCampBank3 how could we use microformats in banks]&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt;proposal from Christophe Ducamp (3pm-4pm)&amp;lt;/span&amp;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;Atelier BnpParibas&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;29 rue la Pérouse&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;75116&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Paris&amp;lt;/span&amp;gt; - &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;France&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;note&amp;quot;&amp;gt;Métro Etoile&amp;lt;/span&amp;gt;)&amp;lt;/span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== January ==&lt;br /&gt;
&lt;br /&gt;
* 2007-01-27: [[events/2007-01-la-get-together|Los Angeles Microformats Get Together]]&lt;br /&gt;
&lt;br /&gt;
* 2007-01-18: [[events/2007-01-18-sf-microformats-dinner|San Francisco Microformats Dinner]] 6pm-? @ Nova on 2nd street. Details inside.&lt;br /&gt;
&lt;br /&gt;
* 2007-01-03: [http://eventful.com/events/E0-001-002386631-6 Lancement du projet 'Cette Semaine en MicroFormats'] in Paris, France.&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
{{events-related-pages}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=citation-examples-markup-wild&amp;diff=34606</id>
		<title>citation-examples-markup-wild</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=citation-examples-markup-wild&amp;diff=34606"/>
		<updated>2008-11-18T00:04:53Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Marshall Cavendish product page */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Citation Mark-Up in the Wild=&lt;br /&gt;
&lt;br /&gt;
This is a sub-page of [[citation-examples-markup]]&lt;br /&gt;
&lt;br /&gt;
Mark up examples from reference publisher's websites (online catalogs), including ABC-CLIO, Greenwood Press, Marshall Cavendish, Oxford University Press (USA) and Thomson Gale. Examples are broken down and organized by element. &lt;br /&gt;
&lt;br /&gt;
(For a cleaner version, see [http://www.tjameswhite.com/citation-examples.htm])&lt;br /&gt;
&lt;br /&gt;
== Google ==&lt;br /&gt;
from google cache&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;font face=arial,sans-serif color=black size=-1&amp;gt;This is &amp;lt;b&amp;gt;&amp;lt;font&lt;br /&gt;
color=#0039b6&amp;gt;G&amp;lt;/font&amp;gt; &amp;lt;font color=#c41200&amp;gt;o&amp;lt;/font&amp;gt; &amp;lt;font&lt;br /&gt;
color=#f3c518&amp;gt;o&amp;lt;/font&amp;gt; &amp;lt;font color=#0039b6&amp;gt;g&amp;lt;/font&amp;gt; &amp;lt;font&lt;br /&gt;
color=#30a72f&amp;gt;l&amp;lt;/font&amp;gt; &amp;lt;font color=#c41200&amp;gt;e&amp;lt;/font&amp;gt;&amp;lt;/b&amp;gt;'s &amp;lt;a&lt;br /&gt;
href=&amp;quot;http://www.google.com/intl/en/help/features.html#cached&amp;quot;&amp;gt;&amp;lt;font&lt;br /&gt;
color=blue&amp;gt;cache&amp;lt;/font&amp;gt;&amp;lt;/a&amp;gt; of &amp;lt;A&lt;br /&gt;
HREF=&amp;quot;http://direct.sref.org/1680-7375/acpd/2006-6-9723&amp;quot;&amp;gt;&amp;lt;font&lt;br /&gt;
color=blue&amp;gt;http://direct.sref.org/1680-7375/acpd/2006-6-9723&amp;lt;/font&amp;gt;&amp;lt;/a&amp;gt; as&lt;br /&gt;
retrieved on Oct 10, 2006 18:34:10 GMT.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Wikipedia ==&lt;br /&gt;
from Wikipedia&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;li id=&amp;quot;_note-2&amp;quot;&amp;gt;&amp;lt;b&amp;gt;&amp;lt;a href=&amp;quot;#_ref-2&amp;quot; title=&amp;quot;&amp;quot;&amp;gt;^&amp;lt;/a&amp;gt;&amp;lt;/b&amp;gt; &amp;lt;a&lt;br /&gt;
href=&amp;quot;http://msdn.microsoft.com/msdnmag/issues/04/08/CuttingEdge/&amp;quot;&lt;br /&gt;
class=&amp;quot;external text&amp;quot;&lt;br /&gt;
title=&amp;quot;http://msdn.microsoft.com/msdnmag/issues/04/08/CuttingEdge/&amp;quot;&amp;gt;Cutting&lt;br /&gt;
Edge: Script Callbacks in ASP.NET&amp;lt;/a&amp;gt;. &amp;lt;a href=&amp;quot;/wiki/MSDN&amp;quot;&lt;br /&gt;
title=&amp;quot;MSDN&amp;quot;&amp;gt;MSDN&amp;lt;/a&amp;gt; Magazine (2004-08-08). Retrieved on &amp;lt;a&lt;br /&gt;
href=&amp;quot;/wiki/2006&amp;quot; title=&amp;quot;2006&amp;quot;&amp;gt;2006&amp;lt;/a&amp;gt;-&amp;lt;a href=&amp;quot;/wiki/August_1&amp;quot;&lt;br /&gt;
title=&amp;quot;August 1&amp;quot;&amp;gt;08-01&amp;lt;/a&amp;gt;.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;li id=&amp;quot;_note-0&amp;quot;&amp;gt;&amp;lt;b&amp;gt;&amp;lt;a href=&amp;quot;#_ref-0&amp;quot; title=&amp;quot;&amp;quot;&amp;gt;^&amp;lt;/a&amp;gt;&amp;lt;/b&amp;gt; &amp;quot;&amp;lt;a&lt;br /&gt;
href=&amp;quot;http://www.opsi.gov.uk/acts/acts1998/98037--b.htm#1&amp;quot; class=&amp;quot;external&lt;br /&gt;
text&amp;quot; title=&amp;quot;http://www.opsi.gov.uk/acts/acts1998/98037--b.htm#1&amp;quot;&amp;gt;s1(1)&lt;br /&gt;
Crime and Disorder Act 1998&amp;lt;/a&amp;gt;&amp;quot;, Office of Public Sector Information. URL&lt;br /&gt;
accessed on 18 June 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CiteSeer ==&lt;br /&gt;
[http://citeseer.ist.psu.edu/context/1700402/0 uses Accessed On both in the &amp;lt;HEAD&amp;gt; and in the] &amp;lt;BODY&amp;gt;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Citations: html accessed on the 29th of October - Trec, August, trec,&lt;br /&gt;
gov (ResearchIndex)&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;meta name=&amp;quot;keywords&amp;quot; content=&amp;quot;TREC, \Trec overview,  August 2000.&lt;br /&gt;
http://trec.nist.gov/overview.html accessed on the 29th of October, 2000.&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;meta name=&amp;quot;description&amp;quot; content=&amp;quot;TREC, \Trec overview, August 2000.&lt;br /&gt;
http://trec.nist.gov/overview.html accessed on the 29th of October, 2000.&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
and&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=h&amp;gt; &amp;lt;b&amp;gt;TREC. Trec overview, August 2000.&lt;br /&gt;
http://trec.nist.gov/overview. &amp;lt;i&amp;gt;html accessed on the 29th of October&amp;lt;/i&amp;gt;,&lt;br /&gt;
2000.&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Ning.com ==&lt;br /&gt;
[http://girlongirl.ning.com/detail.php?DetailID=258667 Ning.com's Girl-on-Girl page for Scarlett Johanson]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;h2&amp;gt;References&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; Neil Young's Film Lounge.&lt;br /&gt;
Peter Webber on Girl with a Pearl Earring. Retrieved on April 12, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; The Jewish Forward. The Scarlett Grandma. Retrieved on April&lt;br /&gt;
12, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; MSNBC. Scarlett Johansson escapes Cruise's clutches. Retrieved on&lt;br /&gt;
July 18, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; MovieWeb. Scarlett Johansson Is The Other Boleyn Girl. Retrieved on&lt;br /&gt;
July 18, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; Life Style Extra. Scarlett Johansson to star in Dallas. Retrieved&lt;br /&gt;
on July&lt;br /&gt;
23, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; ScarlettFan. 21 Jul 2006 - Dallas Movie and Reebok. Retrieved on&lt;br /&gt;
July&lt;br /&gt;
23, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; IMDB News. Johansson: Because I'm Worth It. Retrieved on July 18,&lt;br /&gt;
2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; Maxim's 2006 Top 100&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; BusinessWire. Reebok Partners with Screen Star Scarlett Johansson&lt;br /&gt;
to Create Red-Hot Fashion&lt;br /&gt;
Collection, Scarlett Hearts Rbk. Retrieved on July 25, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; ContactMusic. JOHANSSON: AMERICANS DISAPPOINTED BY BUSH'S&lt;br /&gt;
RE-ELECTION. Retrieved on&lt;br /&gt;
July 18, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; Reuters. Could Scarlett Johansson be Woody's next muse?. Retrieved&lt;br /&gt;
on&lt;br /&gt;
July 25, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; TheObserver.&lt;br /&gt;
Retrieved on August 09, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; BangItOut. Match Point (2005). Retrieved on July 18,&lt;br /&gt;
2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; FemaleFirst. Scarlett Johansson&lt;br /&gt;
slams God acceptance speechs. Retrieved on July 18, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;^&amp;lt;/b&amp;gt; ContactMusic. JOHANSSON'S BIZARRE RELIGIOUS MOMENT. Retrieved on&lt;br /&gt;
July&lt;br /&gt;
18, 2006.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== University of Virginia ==&lt;br /&gt;
[http://www.virginia.edu/vpfa/ref-alphabetical.html University of Virginia]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;P&amp;gt;American Council on Education and American Association of University&lt;br /&gt;
Professors. 2000. &amp;lt;I&amp;gt;Does Diversity Make a Difference? Three Research &lt;br /&gt;
Studies on Diversity in College Classrooms&amp;lt;/I&amp;gt;. Executive&lt;br /&gt;
Summary. Washington, D.C. Retrieved on November 28, 2004 from &lt;br /&gt;
&amp;lt;A&lt;br /&gt;
HREF=&amp;quot;http://www.aaup.org/Issues/AffirmativeAction/Archives/2000/DIVSUMY.PDF&lt;br /&gt;
&amp;quot;&amp;gt;http://www.aaup.org/&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Issues/AffirmativeAction/Archives/2000/DIVSUMY.PDF&amp;lt;/A&amp;gt;. [Question 3]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;P&amp;gt;Affirmative Action Office, Pennsylvania State University. &amp;lt;I&amp;gt;Getting&lt;br /&gt;
Different Results: Affirmative Action Guidelines for Searches to &lt;br /&gt;
Achieve Diversity&amp;lt;/I&amp;gt;. University Park, PA. Retrieved on November 11, 2004&lt;br /&gt;
from &lt;br /&gt;
&amp;lt;A&lt;br /&gt;
HREF=&amp;quot;http://www.psu.edu/dept/aaoffice/GettingResults/index.htm&amp;quot;&amp;gt;http://www.&lt;br /&gt;
psu.edu/dept/aaoffice/GettingResults/index.htm&amp;lt;/A&amp;gt;. [Question 6]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;P&amp;gt;American Association of University Professors. 1973. &amp;lt;I&amp;gt;Diversity &amp;amp;&lt;br /&gt;
Affirmative Action in Higher Education: &lt;br /&gt;
A Report by the Council Committee on Discrimination&amp;lt;/I&amp;gt;. Washington, DC.&lt;br /&gt;
Retrieved on December 9, 2004 from &lt;br /&gt;
&amp;lt;A&lt;br /&gt;
HREF=&amp;quot;http://www.aaup.org/Issues/AffirmativeAction/Archives/pre1996/AARDAFHE&lt;br /&gt;
.HTM&amp;quot;&amp;gt;http://www.aaup.org/&amp;lt;BR&amp;gt;&lt;br /&gt;
Issues/AffirmativeAction/Archives/pre1996/AARDAFHE.HTM&amp;lt;/A&amp;gt;  [Question 6]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;P&amp;gt;Bingham McCutcheon LLP, Morrison &amp;amp; Foerster LLP, and Heller Erhman White&lt;br /&gt;
&amp;amp; McAuliffe LLP. &amp;lt;I&amp;gt;Preserving Diversity in Higher &lt;br /&gt;
Education: A Manual on Admissions Policies and Procedures After the&lt;br /&gt;
University of Michigan Decisions&amp;lt;/I&amp;gt;. &lt;br /&gt;
Retrieved on January 6, 2005 from &lt;br /&gt;
&lt;br /&gt;
&amp;lt;A&lt;br /&gt;
HREF=&amp;quot;http://www.equaljusticesociety.org/compliancemanual/Preserving_Diversi&lt;br /&gt;
ty_In_Higher_Education.pdf&amp;quot;&amp;gt;http://www.equaljusticesociety.org/&amp;lt;BR&amp;gt;&lt;br /&gt;
compliancemanual/Preserving_Diversity_In_Higher_Education.pdf&amp;lt;/A&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Greenwood Press home page featured book ==&lt;br /&gt;
from [http://www.greenwood.com/ home page] &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;title&amp;quot;&amp;gt; &amp;lt;a href=&amp;quot;/books/BookDetail.asp?sku=GR2847&amp;quot;&amp;gt;The Greenwood Encyclopedia of World Folklore&lt;br /&gt;
     and Folklife&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;img_box&amp;quot;&amp;gt; &amp;lt;a href=&amp;quot;/books/BookDetail.asp?sku=GR2847&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;img src=&amp;quot;/_net.templates/showImage.aspx?imgName=0313328471.jpg&amp;amp;s=140&amp;quot; alt=&amp;quot;The Greenwood Encyclopedia&lt;br /&gt;
    of World Folklore and Folklife&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;sub_title&amp;quot;&amp;gt;Four Volumes&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;author&amp;quot;&amp;gt;William M. Clements&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;isbn&amp;quot;&amp;gt;0-313-32847-1&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;price&amp;quot;&amp;gt;$449.95 &amp;lt;span class=&amp;quot;pipe&amp;quot;&amp;gt;|&amp;lt;/span&amp;gt; &amp;amp;pound;255.00&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;!--&amp;lt;div class=&amp;quot;clearing&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;--&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;bookDescription&amp;quot;&amp;gt; China . . . Malta . . . Madagascar . . . Wales . . . and Texas: these are &lt;br /&gt;
    among the many exotic, distant lands that capture our minds and imaginations. In an era of increasing &lt;br /&gt;
    globalization, students, general readers, and business professionals need to know about... &lt;br /&gt;
    &amp;lt;a href=&amp;quot;/books/BookDetail.asp?sku=GR2847&amp;quot;&amp;gt;Read&amp;amp;nbsp;more&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Greenwood Press Product detail page ==&lt;br /&gt;
[http://www.greenwood.com/catalog/GR2847.aspx Product detail page] ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div id=&amp;quot;pnlContent&amp;quot; class=&amp;quot;pnlContent&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div id=&amp;quot;pnlFlyerBox&amp;quot; class=&amp;quot;flyerBox&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlFlyer&amp;quot; class=&amp;quot;flyerLink&amp;quot; href=&amp;quot;/books/printFlyer.aspx?sku=GR2847&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Print &lt;br /&gt;
        book flyer&amp;lt;/a&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlFlyerInternational&amp;quot; class=&amp;quot;international_flyer&amp;quot; &lt;br /&gt;
      href=&amp;quot;/books/printFlyer.aspx?sku=GR2847&amp;amp;amp;location=international&amp;quot; ...&amp;gt;(International version)&amp;lt;/a&amp;gt; &lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;span id=&amp;quot;lblTitle&amp;quot; class=&amp;quot;book_headline block&amp;quot;&amp;gt;The Greenwood Encyclopedia of World Folklore and Folklife&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span id=&amp;quot;lblSubTitle&amp;quot; class=&amp;quot;book_subline&amp;quot;&amp;gt;Four Volumes&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;div id=&amp;quot;pnlBookDetails&amp;quot; class=&amp;quot;detailsBox&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlImgBox&amp;quot; class=&amp;quot;imgBox&amp;quot;&amp;gt; &lt;br /&gt;
        &amp;lt;img src=&amp;quot;/_net.templates/showImage.aspx?imgName=0313328471.jpg&amp;amp;amp;s=135&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt; &lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlAddToCart&amp;quot; title=&amp;quot;Add this item to your shopping cart&amp;quot; href=&amp;quot;/shopping_cart/?sku=GR2847&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;img title=&amp;quot;Add this item to your shopping cart&amp;quot; &lt;br /&gt;
          src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Add to Cart&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt; &lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlAddToWishList&amp;quot; title=&amp;quot;Save this item to your wish list&amp;quot; href=&amp;quot;/wish_list/?sku=GR2847&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;img title=&amp;quot;Save this item to your wish list&amp;quot; &lt;br /&gt;
          src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Add to Wish List&amp;quot;.../&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlSharePage&amp;quot; title=&amp;quot;Email this page to a friend&amp;quot; href=&amp;quot;/books/sendform.asp?sku=GR2847&amp;quot;...&amp;gt;&lt;br /&gt;
        &amp;lt;img title=&amp;quot;Email this page to a friend&amp;quot; src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Email&amp;quot;.../&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt; &lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlPrintPage&amp;quot; title=&amp;quot;Version of this page optimized for printing&amp;quot; href=&amp;quot;/catalog/GR2847.aspx?print=1&amp;quot; ...&amp;gt;&lt;br /&gt;
        &amp;lt;img title=&amp;quot;Version of this page optimized for printing&amp;quot; src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Print&amp;quot;.../&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlWorldCat&amp;quot; href=&amp;quot;http://worldcatlibraries.org/wcpa/isbn/0313328471&amp;quot;...&amp;gt;&lt;br /&gt;
        &amp;lt;img src=&amp;quot;/images/world_catalog.gif&amp;quot;.../&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;authors&amp;quot;&amp;gt;&amp;lt;span&amp;gt;&amp;lt;a href=&amp;quot;/catalog/author/C/229.aspx&amp;quot;&amp;gt;William M. Clements&amp;lt;/a&amp;gt; (ed.)&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;span id=&amp;quot;lblAuthorsNote&amp;quot; class=&amp;quot;block&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;div&amp;gt;&amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Book Code:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblBookCode&amp;quot;&amp;gt;GR2847&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlIsbn&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;ISBN:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblIsbn&amp;quot;&amp;gt;0-313-32847-1&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlPageColation&amp;quot;&amp;gt; 1972 pages, maps; photos &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;span id=&amp;quot;lblImprint&amp;quot; class=&amp;quot;block&amp;quot;&amp;gt;Greenwood Press&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlPubDate&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Publication Date:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblPubDate&amp;quot;&amp;gt;12/30/2005&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlListPrice&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;List Price:&amp;lt;/span&amp;gt; &lt;br /&gt;
        &amp;lt;span id=&amp;quot;lblListPrice&amp;quot;&amp;gt;$449.95&amp;lt;/span&amp;gt; &lt;br /&gt;
        (&amp;lt;a href=&amp;quot;/contactus/order_info.asp?SectionID=about&amp;amp;amp;Location=order_info#UKEME&amp;quot; &lt;br /&gt;
          title=&amp;quot;Click for international ordering information&amp;quot;&amp;gt;UK Sterling Price: &amp;amp;pound;255.00&amp;lt;/a&amp;gt;) &lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlAvailability&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Availability:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblAvailability&amp;quot;&amp;gt;In Stock&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlMediaType&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Media Type:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblMediaType&amp;quot;&amp;gt;Hardcover&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;clearing&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div id=&amp;quot;pnlBookInformation&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Subjects:&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;ul class=&amp;quot;toc&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; &lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl1_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology.aspx&amp;quot;&amp;gt;Anthropology&amp;lt;/a&amp;gt; » &lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl1_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology/Folklore.aspx&amp;quot;&amp;gt;Folklore&amp;lt;/a&amp;gt; &lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt;&lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl2_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology.aspx&amp;quot;&amp;gt;Anthropology&amp;lt;/a&amp;gt; » &lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl2_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology/Anthropology%2b(General).aspx&amp;quot;&amp;gt;&lt;br /&gt;
            Anthropology (General)&lt;br /&gt;
          &amp;lt;/a&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt;&lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl3_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology.aspx&amp;quot;&amp;gt;Anthropology&amp;lt;/a&amp;gt; » &lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl3_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology/Cultural%2bAnthropology.aspx&amp;quot;&amp;gt;Cultural Anthropology&amp;lt;/a&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; &amp;lt;a id=&amp;quot;rpCategories__ctl4_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/History.aspx&amp;quot;&amp;gt;History&amp;lt;/a&amp;gt; » &lt;br /&gt;
          &amp;lt;a id=&amp;quot;rpCategories__ctl4_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/History/World%2bHistory%2b(General).aspx&amp;quot;&amp;gt;&lt;br /&gt;
            World History (General)&amp;lt;/a&amp;gt; &amp;lt;/li&amp;gt;&lt;br /&gt;
      &amp;lt;/ul&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlDescription&amp;quot;&amp;gt; &lt;br /&gt;
        &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Description:&amp;lt;/span&amp;gt; &lt;br /&gt;
        &amp;lt;span id=&amp;quot;lblDescription1&amp;quot; class=&amp;quot;description block&amp;quot;&amp;gt;&lt;br /&gt;
          China . . . Malta . . . Madagascar . . . Wales . . . and Texas: these are among the many exotic, &lt;br /&gt;
          distant lands that capture our minds and imaginations. In an era of increasing globalization, &lt;br /&gt;
          students, general readers, and business professionals need to know about the world and its varied &lt;br /&gt;
          ways. So too, a knowledge of world cultures is fundamental to an understanding of America's ethnically &lt;br /&gt;
          rich society. Folklore isn't just about the long ago and far away. It's about the here and now, and &lt;br /&gt;
          there's no better way to learn about cultural diversity than to study the folklore and folkways of &lt;br /&gt;
          different ethnic groups. &amp;lt;br /&amp;gt;&lt;br /&gt;
          More than just Cinderella and other fairy tales, folklore encompasses the whole realm of traditional &lt;br /&gt;
          beliefs and activities that define a culture. The most comprehensive work of its kind, this massive &lt;br /&gt;
          encyclopedia engagingly and authoritatively surveys folklife and traditions from around the world. Through its&lt;br /&gt;
          vast scope and lengthy entries, it transcends other references on particular national or regional &lt;br /&gt;
          folklores and is the most ambitious undertaking of its type. Organized in four volumes, the encyclopedia &lt;br /&gt;
          provides convenient access to information about folklore generally and to the traditions of particular&lt;br /&gt;
          regions:&amp;lt;br /&amp;gt;&lt;br /&gt;
          Volume 1: Topics and Themes, Africa, Australia and Oceania&amp;lt;br /&amp;gt;&lt;br /&gt;
          Volume 2: Southeast Asia and India, Central and East Asia, Middle East&amp;lt;br /&amp;gt;&lt;br /&gt;
          Volume 3: Europe&amp;lt;br /&amp;gt;&lt;br /&gt;
          Volume 4: North and South America&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblDescription2&amp;quot; class=&amp;quot;description block&amp;quot;&amp;gt;Along &lt;br /&gt;
            with the expertise of the contributors, of Volume Editor William M. Clements, and of Advisory Editor &lt;br /&gt;
            Thomas A. Green, the encyclopedia draws upon a distinguished board of internationally recognized scholars,&lt;br /&gt;
             including:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Roger D. Abrahams&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Cristina Bacchilega&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Gillian Bennett&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Mary Ellen Brown&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; James R. Dow&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Alessandro Falassi&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Barbro Klein&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Peter Knecht&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Natalie Kononenko&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Frances M. Malpezzi&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Margaret Mills&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; M. D. Muthukumaraswamy&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Gerald Pocius&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And John S. Ryan.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Features:&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Brings together the knowledge of more than 200 special-ists from around the world.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Provides 39 extended entries on topics central to world folklore.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Details the folklore and folkways of roughly 170 cultural groups.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Entries discuss the background, beliefs, oral and theatrical traditions, arts and crafts, and contemporary concerns &lt;br /&gt;
          of each cultural group.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Each entry cites numerous works for further reading.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A generous selection of maps and illustrations makes world folklore come to life.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A list of entries and a cumulative subject index, repeated in each volume, offer convenient access to the vast body of &lt;br /&gt;
          information contained in the encyclopedia.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A selected, general bibliography directs students and general readers to the most important broad studies of world &lt;br /&gt;
          folklore.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A glossary defines key terms, theories, and concepts.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Benefits:&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Helps students learn about cultures, customs, and daily life around the world.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Fosters respect and appreciation for the many ethnic traditions behind contemporary American culture.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Provides valuable background information for the study of world religions, holidays, and festivals.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Offers a valuable context for understanding world history, politics, literature, and the arts.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Invites students to compare and contrast the values and experiences of different cultures.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Fosters critical reading skills and serves as a model for student research.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 1: Topics and Themes, Africa, Australia and Oceania&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          Certain themes and topics are central to world foklore. The thematic essays in this volume discuss such matters as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Antiquarianism&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Cultural Evolution&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Ethnopoetics&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Gender&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Invented Tradition&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Nativism&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Primitivism&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Public Folklore&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Race&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Trickster&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many more.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 2: Southeast Asia and India, Central and East Asia, Middle East&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          Included in this volume are entries on such cultural groups and regions as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Bali&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; China&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Duna&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Iban&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Kazakh&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Mongol&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Orissa&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Palestine&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Tonga&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Uyghur&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many others.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 3: Europe&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          Included in this volume are entries on the folklore of such cultural regions and groups as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Ashkenazim&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Basque&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Brittany&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Flanders&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Germany&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Isle of Man&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Roma&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Russia&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Sami&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Ukraine&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many more.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 4: North and South America&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          The entries in this volume explore the folk traditions of such regions and groups as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Appalachia&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Choctaw&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Haiti&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Island Carib&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Maya&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Quechua&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Seminole&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Western Inuit and Yupik&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Xavante&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Yanomami&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many more.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          Because folklore is the essence of daily life, this encyclopedia addresses the curriculum needs of high school students and is &lt;br /&gt;
          also an indispensable resource for teachers. In addition, anyone researching folklore in a public library will find this the first&lt;br /&gt;
           place to look for detailed information about cultural traditions around the world.&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlLCCardNumber&amp;quot; class=&amp;quot;description&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;LC Card Number:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblLCCardNumber&amp;quot;&amp;gt;2005019219&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlLCCClass&amp;quot; class=&amp;quot;description&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;LCC Class:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblLCCClass&amp;quot;&amp;gt;GR35 &amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlDeweyClass&amp;quot; class=&amp;quot;description&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Dewey Class:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblDeweyClass&amp;quot;&amp;gt;398&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Marshall Cavendish product page ==&lt;br /&gt;
[http://www.marshallcavendish.com/marshallcavendish/academic/redirector.xml?url=/marshallcavendish/academic/catalogue/books/regionalism_n_regional_security/9812102108.xml original]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_font&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Regionalism &amp;amp;amp; Regional Security&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/table&amp;gt;&lt;br /&gt;
  &amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;&amp;quot; align=&amp;quot;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;ISBN Number&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;9812102108&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Series&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;null&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Title&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;The New Terrorism: Anatomy, Trends and Counter-strategies&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Imprint&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Eastern Universities Press&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Specifications&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;152 mm X 227 mm, 368 pp, limp with flaps, 500 gms&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Authors&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Andrew Tan &amp;amp;amp; Kumar Ramakrishna (eds)&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Target Audience&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;University lecturers/researchers, undergraduate students, academicians and those interested in Regional Security Studies.&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Price (SG)&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;S$ 39.00&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Price (US)&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;US$ 30.00&amp;lt;/font&amp;gt; &amp;amp;nbsp; &amp;lt;a href=&amp;quot;javascript: addToCart()&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/marshallcavendish/components/db_content/MC_AC_redirector/pic/addCart.gif&amp;quot; border=&amp;quot;0&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    The terrorist attacks of September 11, 2001 on the World Trade Center in New York and the Pentagon in Washington represented a true watershed in world history.&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    The attacks revealed the horrifying nature of the so-called &amp;quot;new terrorism&amp;quot; that has emerged in the post-Cold War era. The new terrorism is defined by four key features:&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/font&amp;gt;&lt;br /&gt;
  &amp;lt;ul&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;sheer lethality&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;religious dimension&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;networked organizational structure&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;greatly enhanced striking power &amp;amp;nbsp; &amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;/ul&amp;gt;&lt;br /&gt;
  &amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;&amp;quot; align=&amp;quot;&amp;quot;&amp;gt;As September 11 clearly demonstrated, the new terrorists can leverage on technology to inflict catastrophic damage even on superpowers, let alone other states.&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    To examine the new dimensions of terrorism, a conference was organized in Singapore in late March 2002 that brought together a number of leading experts from a wide range of backgrounds from America, Europe and Asia, and the key findings are presented in this volume under the following headings:&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/font&amp;gt;&lt;br /&gt;
  &amp;lt;ul&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Anatomy of the new terrorism&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Terrorist trends and patterns in the Asia-Pacific region&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Religion and terrorism: Southeast Asian perspectives&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Formulating counter-strategies &amp;amp;nbsp; &amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;/ul&amp;gt;&lt;br /&gt;
  &amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;&amp;quot; align=&amp;quot;&amp;quot;&amp;gt; &amp;lt;span style=&amp;quot;font-weight: bold;&amp;quot;&amp;gt; &amp;lt;b&amp;gt; About the Author: &amp;lt;/b&amp;gt; &amp;lt;/span&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
    Both Andrew Tan and Kumar Ramakrishna are Assistant Professors at the Institute of Defence and Strategic Studies, Nanyang Technological University, Singapore.&amp;lt;br/&amp;gt;&lt;br /&gt;
    Andrew Tan received his M.Phil from Cambridge and PhD from the University of Sydney. His research interests are conflict (inter-state tensions, insurgencies, terrorism and force modernization) in Southeast Asia, and security issues in Asia.&amp;lt;br/&amp;gt;&lt;br /&gt;
    Kumar Ramakrishna obtained his PhD in History from the University of London in 1999. He teaches and writes on the history of strategic thought as well as the war on terror.&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/font&amp;gt;&lt;br /&gt;
  &amp;lt;td width=&amp;quot;18.666662&amp;quot; style=&amp;quot;valign: top; background-color: white ; &amp;quot; rowspan=&amp;quot;1&amp;quot; colspan=&amp;quot;1&amp;quot;&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;td width=&amp;quot;570.666524&amp;quot; style=&amp;quot;valign: top; background-color: white ; &amp;quot; rowspan=&amp;quot;1&amp;quot; colspan=&amp;quot;1&amp;quot;&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;td width=&amp;quot;18.666662&amp;quot; style=&amp;quot;valign: top; background-color: white ; &amp;quot; rowspan=&amp;quot;1&amp;quot; colspan=&amp;quot;1&amp;quot;&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Oxford University Press (USA) homepage ==&lt;br /&gt;
[http://www.us.oup.com/us/?view=usa original] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;isbnSummaryDetails&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;h2&amp;gt; &amp;lt;a href=&amp;quot;/us/catalog/general/subject/HistoryAmerican/ColonialRevolutionary/?view=usa&amp;amp;amp;ci=0195162471&amp;quot;&amp;gt;The Glorious Cause&amp;lt;/a&amp;gt; &amp;lt;/h2&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;subTitle&amp;quot;&amp;gt; The American Revolution, 1763-1789 &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;edition&amp;quot;&amp;gt; Revised and Expanded Edition &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;byline&amp;quot;&amp;gt; Robert Middlekauff &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;isbnNumber&amp;quot;&amp;gt;0195162471&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;format&amp;quot;&amp;gt;hardback&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;publicationDate&amp;quot;&amp;gt; Feb 2005 &amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;price&amp;quot;&amp;gt; $37.50 &amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt; The classic history of the American Revolution--now in an updated and expanded twentieth anniversary edition &amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;related&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;h3&amp;gt;More &amp;lt;/h3&amp;gt;&lt;br /&gt;
      &amp;lt;!-- /HistoryAmerican/ColonialRevolutionary --&amp;gt;&lt;br /&gt;
      &amp;lt;a href=&amp;quot;/us/catalog/general/subject/HistoryAmerican/?view=usa&amp;amp;amp;sf=all&amp;quot;&amp;gt;History, American&amp;lt;/a&amp;gt; &amp;amp;gt; &amp;lt;a href=&amp;quot;/us/catalog/general/subject/HistoryAmerican/ColonialRevolutionary/?view=usa&amp;amp;amp;sf=all&amp;quot;&amp;gt;Colonial &amp;amp; Revolutionary&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;!--/isbnSummaryDetails--&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Oxford University Press (USA) Product page ==&lt;br /&gt;
 [http://www.us.oup.com/us/catalog/general/subject/HistoryAmerican/ColonialRevolutionary/?view=usa&amp;amp;amp;ci=0195162471#Product_Details original]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;isbnProperties isbnSummary&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;isbnSummaryHeading&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;h1&amp;gt;The Glorious Cause&amp;lt;/h1&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;subTitle&amp;quot;&amp;gt; The American Revolution, 1763-1789 &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;edition&amp;quot;&amp;gt; Revised and Expanded Edition &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;byline&amp;quot;&amp;gt; Robert Middlekauff &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--/isbnSummaryHeading--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;cover&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;bookShot&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/images/covers/0195162471.jpg&amp;quot;&lt;br /&gt;
                     ... alt=&amp;quot;bookshot&amp;quot; /&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;addToCart&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;http://www.us.oup.com/us/cart/cart.jsp?op=a&amp;amp;amp;i=0195162471&amp;amp;amp;c=85&amp;amp;amp;q=1&amp;amp;amp;r=http%3A%2F%2Fwww.us.oup.com%2Fus%2Fcatalog%2Fgeneral%2Fsubject%2FHistoryAmerican%2FColonialRevolutionary%2F%3Fview%3Dusa%26ci%3D0195162471&amp;quot;&amp;gt;Add to Cart&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--/cover--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;isbnSummaryDetails&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;isbnNumber&amp;quot;&amp;gt;0195162471&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;format&amp;quot;&amp;gt;hardback&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;pages&amp;quot;&amp;gt; 760 pages &amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;generalinfo&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;publicationDate&amp;quot;&amp;gt;Feb 2005,&amp;amp;nbsp;&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;availability&amp;quot;&amp;gt; In Stock &amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;cost&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h2&amp;gt;Price:&amp;lt;/h2&amp;gt;&lt;br /&gt;
        $37.50 &amp;lt;span class=&amp;quot;discountCode&amp;quot;&amp;gt;(02)&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;shipping&amp;quot;&amp;gt; &amp;lt;a href=&amp;quot;/us/assets/shippingInfo.jsp?si=1.5&amp;amp;amp;so=3.75&amp;amp;amp;sc=0&amp;amp;amp;isi=5&amp;amp;amp;iso=5&amp;amp;amp;isc=0&amp;quot; target=&amp;quot;_blank&amp;quot; onclick=&amp;quot;window.open(this.href, this.target, 'height=445,width=445,scrollbars');&lt;br /&gt;
					  return false;&amp;quot;&amp;gt;Shipping Details&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;moreSeries redArrow&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;See more from the series&amp;lt;/h3&amp;gt;&lt;br /&gt;
        &amp;lt;ul&amp;gt;&lt;br /&gt;
          &amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;/us/catalog/general/series/OxfordHistoryoftheUnitedStates/?view=usa&amp;quot;&amp;gt;Oxford History of the United States, Vol. 3&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;/ul&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;!--moreSeries--&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--/isbnSummaryDetails--&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Thomson Gale product detail page ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div id =&amp;quot; title_main&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Contemporary Literary Criticism&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; credits&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;h2&amp;gt;Excerpts from Criticism of the Works of Today's Novelists, Poets, Playwrights, Short Story Writers, Scriptwriters, &amp;amp; Other Creative Writers&amp;lt;/h2&amp;gt;&lt;br /&gt;
		Volume 1&amp;lt;/li&amp;gt;&lt;br /&gt;
		&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;i&amp;gt;Published by Thomson Gale&amp;lt;/i&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; description&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;p&amp;gt;Each print volume in this long-standing series profiles approximately 6-8 novelists, poets, playwrights and other creative writers by providing full-text or excerpted criticism taken from books, magazines, literary reviews, newspapers and scholarly journals. Among those profiled in this volume are:&amp;lt;/p&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Kingsley Amis&lt;br /&gt;
		&amp;lt;li&amp;gt;John Dos Passos&lt;br /&gt;
		&amp;lt;li&amp;gt;Hermann Hesse&lt;br /&gt;
		&amp;lt;li&amp;gt;Ezra Pound&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;!-- Description --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; detail&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Published/Released:&amp;lt;strong&amp;gt; March 1973&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;ISBN: &amp;lt;strong&amp;gt;0-8103-0100-8&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Product number: &amp;lt;strong&amp;gt;001415&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Page count: &amp;lt;strong&amp;gt;485 pp./vol.&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Shipping Weight: &amp;lt;strong&amp;gt;5.00 lbs (2.27 kgs)&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;  &amp;lt;!-- /detail--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; price&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;P&amp;gt;Price: US $205.00&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Wolfram Mathworld ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;Reference&amp;quot;&amp;gt;&lt;br /&gt;
Drmota, M. and Tichy, R. F. &amp;lt;i&amp;gt;&amp;lt;a href=&amp;quot;...&amp;quot; class=&amp;quot;Hyperlink&amp;quot;&amp;gt;Sequences, Discrepancies and Applications.&amp;lt;/a&amp;gt;&amp;lt;/i&amp;gt; New York: Springer-Verlag,&lt;br /&gt;
 1997.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Breakdown of Citation Elements ==&lt;br /&gt;
&lt;br /&gt;
Using the above examples, various parts of the citations (titles, authors, etc.) can be grouped together for comparision:&lt;br /&gt;
&lt;br /&gt;
== Book titles: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;title&amp;quot; class=&amp;quot;producttitle&amp;quot;&amp;amp;gt;The 1920's&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO product detail page)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;title&amp;quot;&amp;amp;gt; &amp;amp;lt;a href=&amp;quot;...&amp;quot;&amp;amp;gt;The Greenwood Encyclopedia of World Folklore and Folklife&amp;amp;lt;/a&amp;amp;gt; &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood Press homepage)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;lblTitle&amp;quot; class=&amp;quot;book_headline block&amp;quot;&amp;amp;gt;The Greenwood Encyclopedia of World Folklore and Folklife&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(Greenwood Press product detail page)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;35%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;amp;gt;Title&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;65%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;text&amp;quot;&amp;amp;gt;The New Terrorism: Anatomy, Trends and Counter-strategies&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
(Marshall Cavendish product detail page)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;h2&amp;amp;gt; &amp;amp;lt;a href=&amp;quot;...&amp;quot;&amp;amp;gt;The Glorious Cause&amp;amp;lt;/a&amp;amp;gt; &amp;amp;lt;/h2&amp;amp;gt;&lt;br /&gt;
(Oxford Univ. Press, homepage)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;h1&amp;amp;gt;The Glorious Cause&amp;amp;lt;/h1&amp;amp;gt;&lt;br /&gt;
(OUP, product detail page)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;h2&amp;amp;gt;Contemporary Literary Criticism&amp;amp;lt;/h2&amp;amp;gt;&lt;br /&gt;
(Thomson Gale, product detail page)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;ctlBookDetailHeader_lblTitle&amp;quot; class=&amp;quot;ProdTitle&amp;quot;&amp;amp;gt;Talk and Interaction in Social Research Methods&amp;amp;lt;/span&amp;amp;gt; (SAGE Publications)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Also, many examples where books presented in table format with Title as cell header, or presented &amp;quot;Title: &amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Book Series Name: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;serieslbl&amp;quot; class=&amp;quot;productsubtitle&amp;quot;&amp;amp;gt;&amp;amp;lt;a href=&amp;quot;...&amp;quot;&amp;amp;gt;Teaching With Documents Series&amp;amp;lt;/a&amp;amp;gt;&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sub-title: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;subtitle&amp;quot; class=&amp;quot;productsubtitle&amp;quot;&amp;amp;gt;&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;sub_title&amp;quot;&amp;amp;gt;[Four Volumes]&amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood, homepage)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;lblSubTitle&amp;quot; class=&amp;quot;book_subline&amp;quot;&amp;amp;gt;[Four Volumes]&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(Greenwood, product page)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;subTitle&amp;quot;&amp;amp;gt; The American Revolution, 1763-1789 &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(OUP)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Author: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;credit&amp;quot; class=&amp;quot;productauthor&amp;quot;&amp;amp;gt;&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;author&amp;quot;&amp;amp;gt;William M. Clements&amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;35%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;amp;gt;Authors&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;65%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;text&amp;quot;&amp;amp;gt;Andrew Tan &amp;amp;amp; Kumar Ramakrishna (eds)&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
(Marshall Cavendish)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;byline&amp;quot;&amp;amp;gt; Robert Middlekauff &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(OUP)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Publication Date: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;span id=&amp;quot;pubdate&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;amp;gt;11/2001&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO -- see table structure)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div id=&amp;quot;pnlPubDate&amp;quot;&amp;amp;gt; &amp;amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;amp;gt;Publication Date:&amp;amp;lt;/span&amp;amp;gt; &amp;amp;lt;span id=&amp;quot;lblPubDate&amp;quot;&amp;amp;gt;12/30/2005&amp;amp;lt;/span&amp;amp;gt; &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood, detail page)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span class=&amp;quot;publicationDate&amp;quot;&amp;amp;gt; Feb 2005 &amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(OUP)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;li&amp;amp;gt;Published/Released:&amp;amp;lt;strong&amp;amp;gt; March 1973&amp;amp;lt;/strong&amp;amp;gt;&amp;amp;lt;/li&amp;amp;gt;&lt;br /&gt;
(Thomson Gale)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Volumes: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;td ... class=&amp;quot;productdetailhead&amp;quot;&amp;amp;gt;&amp;amp;lt;span id=&amp;quot;volumeslabel&amp;quot; class=&amp;quot;productdetailhead&amp;quot;&amp;amp;gt;Volumes&amp;amp;lt;/span&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;td ... class=&amp;quot;productdetailbody&amp;quot;&amp;amp;gt;&amp;amp;lt;span id=&amp;quot;volumes&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;amp;gt;1&amp;amp;lt;/span&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ISBN: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;td class=&amp;quot;productdetailhead&amp;quot; ...&amp;amp;gt;&amp;amp;lt;span id=&amp;quot;ISBNLabel&amp;quot;&amp;amp;gt;ISBN&amp;amp;lt;/span&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;td class=&amp;quot;productdetailbody&amp;quot;&amp;amp;gt;1-57607-785-3&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
(ABC-CLIO)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;isbn&amp;quot;&amp;amp;gt;0-313-32847-1&amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood, homepage)&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;div id=&amp;quot;pnlIsbn&amp;quot;&amp;amp;gt; &amp;amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;amp;gt;ISBN:&amp;amp;lt;/span&amp;amp;gt; &amp;amp;lt;span id=&amp;quot;lblIsbn&amp;quot;&amp;amp;gt;0-313-32847-1&amp;amp;lt;/span&amp;amp;gt; &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(Greenwood, product page)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;35%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;amp;gt;ISBN Number&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
&amp;amp;lt;td width=&amp;quot;65%&amp;quot;&amp;amp;gt;&amp;amp;lt;font id=&amp;quot;text&amp;quot;&amp;amp;gt;9812102108&amp;amp;lt;/font&amp;amp;gt;&amp;amp;lt;/td&amp;amp;gt;&lt;br /&gt;
(Marshall Cavendish)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;span class=&amp;quot;isbnNumber&amp;quot;&amp;amp;gt;0195162471&amp;amp;lt;/span&amp;amp;gt;&lt;br /&gt;
(OUP)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;li&amp;amp;gt;ISBN: &amp;amp;lt;strong&amp;amp;gt;0-8103-0100-8&amp;amp;lt;/strong&amp;amp;gt;&amp;amp;lt;/li&amp;amp;gt;&lt;br /&gt;
(Thomson Gale)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Book Edition: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;amp;lt;div class=&amp;quot;edition&amp;quot;&amp;amp;gt; Revised and Expanded Edition &amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
(OUP)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Added by [[User:Tim White|Tim]]&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2008-01-15-barcamp-psi&amp;diff=34605</id>
		<title>events/2008-01-15-barcamp-psi</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2008-01-15-barcamp-psi&amp;diff=34605"/>
		<updated>2008-11-18T00:04:50Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* articles and blog posts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;'BarCamp' on the Power of Information Review Recommendation 8&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-01-15-barcamp-psi&lt;br /&gt;
*Subscribe to this event: webcal://feeds.technorati.com/events/microformats.org/wiki/events/2008-01-15-barcamp-psi&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-01-15&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;Spey &amp;amp; Ness Rooms&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;City Inn&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;30 John Islip Street&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Westminster, London&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;England&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;&amp;quot;To improve 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;&lt;br /&gt;
;Web&lt;br /&gt;
:&amp;lt;span class=&amp;quot;url&amp;quot;&amp;gt;http://barcamp.org/BarCampPOIR8&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/http://microformats.org/wiki/events/2008-01-15-barcamp-psi Add this event to your diary or calendar program]''' http://www.boogdesign.com/images/buttons/microformat_hcalendar.png&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;
tags: '''barcamppsi08, microformats, open data'''&lt;br /&gt;
&lt;br /&gt;
Please mention '''#barcamppsi08''' (with the &amp;quot;#&amp;quot;) in Twitter posts about the event. See [[twitter-syntax#Hash_tags|hash tags]] for more info.&lt;br /&gt;
&lt;br /&gt;
== attendees ==&lt;br /&gt;
Add yourself alphabetically sorted by last name if you attended.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
*[xxxUrlxxx xxxNamexxx]&lt;br /&gt;
* [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
--&amp;gt;&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: '''microformats ... ...'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
See [http://www.flickr.com/photos/tags/barcamppsi08/ barcamppsi08 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;
* included discussion of NZ Government's use of &amp;quot;custom&amp;quot; microformats.&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;
'''barcamppsi08, microformats, open data'''&lt;br /&gt;
&lt;br /&gt;
*[http://wwmm.ch.cam.ac.uk/blogs/downing/?p=166 Unilever Center for Molecular Informatics, Cambridge - Jim Downing]&lt;br /&gt;
*[http://blog.okfn.org/2008/01/15/meeting-on-uk-public-sector-information-re-use-request-service/ Open Knowledge Foundation]&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>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=citations_in_the_wild&amp;diff=34604</id>
		<title>citations in the wild</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=citations_in_the_wild&amp;diff=34604"/>
		<updated>2008-11-18T00:02:56Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Marshall Cavendish product page */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;(For a cleaner version, see [http://www.tjameswhite.com/citation-examples.htm])&lt;br /&gt;
&lt;br /&gt;
== ABC-CLIO Product [http://www.abc-clio.com/products/overview.aspx?productid=109327 detail page] ==&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
 &amp;lt;table border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;430&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;101&amp;quot; valign=&amp;quot;top&amp;quot; align=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;102&amp;quot; valign=&amp;quot;top&amp;quot; align=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;101&amp;quot; valign=&amp;quot;top&amp;quot; align=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;125&amp;quot; valign=&amp;quot;top&amp;quot; align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;430&amp;quot; colspan=&amp;quot;4&amp;quot; class=&amp;quot;productsubtitle&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;serieslbl&amp;quot; class=&amp;quot;productsubtitle&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;browseseries.aspx?seriesid=33&amp;quot;&amp;gt;Teaching With Documents Series&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;430&amp;quot; colspan=&amp;quot;4&amp;quot; class=&amp;quot;producttitle&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;title&amp;quot; class=&amp;quot;producttitle&amp;quot;&amp;gt;The 1920's&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;430&amp;quot; colspan=&amp;quot;4&amp;quot; class=&amp;quot;productsubtitle&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;subtitle&amp;quot; class=&amp;quot;productsubtitle&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;430&amp;quot; colspan=&amp;quot;4&amp;quot; class=&amp;quot;productauthor&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;credit&amp;quot; class=&amp;quot;productauthor&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;430&amp;quot; colspan=&amp;quot;4&amp;quot; height=&amp;quot;12&amp;quot;&amp;gt;&amp;lt;img  border=&amp;quot;0&amp;quot; src=&amp;quot;../images/blank-white.gif&amp;quot; width=&amp;quot;1&amp;quot; height=&amp;quot;12&amp;quot; alt=&amp;quot;&amp;quot;/&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;130&amp;quot; align=&amp;quot;left&amp;quot;&amp;gt;&amp;lt;img id=&amp;quot;productImage&amp;quot; src=&amp;quot;../images/dbimages/1011\101103.GIF&amp;quot; alt=&amp;quot;&amp;quot; style=&amp;quot;border-width:0px;width:115px;&amp;quot; /&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;td width=&amp;quot;300&amp;quot; valign=&amp;quot;top&amp;quot; align=&amp;quot;right&amp;quot; colspan=&amp;quot;3&amp;quot;&amp;gt;&amp;lt;!-- start PUBLICATION SPECS table --&amp;gt;&lt;br /&gt;
        &amp;lt;table border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;290&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;110&amp;quot; class=&amp;quot;productdetailhead&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;pubdatelabel&amp;quot; class=&amp;quot;productdetailhead&amp;quot;&amp;gt;Publication Date&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;180&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;pubdate&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;gt;11/2001&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
          &amp;lt;/tr&amp;gt;&lt;br /&gt;
          &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;110&amp;quot; class=&amp;quot;productdetailhead&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;pageslabel&amp;quot; class=&amp;quot;productdetailhead&amp;quot;&amp;gt;Pages&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;180&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;pages&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;gt;132&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
          &amp;lt;/tr&amp;gt;&lt;br /&gt;
          &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;110&amp;quot; class=&amp;quot;productdetailhead&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;volumeslabel&amp;quot; class=&amp;quot;productdetailhead&amp;quot;&amp;gt;Volumes&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;180&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;volumes&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;gt;1&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
          &amp;lt;/tr&amp;gt;&lt;br /&gt;
          &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;110&amp;quot; class=&amp;quot;productdetailhead&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;trimlabel&amp;quot; class=&amp;quot;productdetailhead&amp;quot;&amp;gt;Size&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td width=&amp;quot;180&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;trimsize&amp;quot; class=&amp;quot;productdetailbody&amp;quot;&amp;gt;8.5x11&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
          &amp;lt;/tr&amp;gt;&lt;br /&gt;
        &amp;lt;/table&amp;gt;&lt;br /&gt;
        &amp;lt;!-- end PUBLICATION SPECS table --&amp;gt;&lt;br /&gt;
        &amp;lt;!-- Pricing Table --&amp;gt;&lt;br /&gt;
        &amp;lt;table id=&amp;quot;PriceTable&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; width=&amp;quot;290&amp;quot; border=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td class=&amp;quot;productdetailhead&amp;quot; width=&amp;quot;290&amp;quot; height=&amp;quot;15&amp;quot; colspan=&amp;quot;4&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;../images/academic/blank-blue.gif&amp;quot; id=&amp;quot;PriceLine&amp;quot; width=&amp;quot;290&amp;quot; height=&amp;quot;1&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
          &amp;lt;/tr&amp;gt;&lt;br /&gt;
          &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td class=&amp;quot;productdetailhead&amp;quot; width=&amp;quot;54&amp;quot;&amp;gt;Format&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td class=&amp;quot;productdetailhead&amp;quot; width=&amp;quot;68&amp;quot;&amp;gt;Price&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td class=&amp;quot;productdetailhead&amp;quot; width=&amp;quot;88&amp;quot;&amp;gt;&amp;lt;span id=&amp;quot;ISBNLabel&amp;quot;&amp;gt;ISBN&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td class=&amp;quot;productdetailhead&amp;quot; width=&amp;quot;80&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
          &amp;lt;/tr&amp;gt;&lt;br /&gt;
          &amp;lt;tr&amp;gt;&lt;br /&gt;
            &amp;lt;td class=&amp;quot;productdetailhead&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Print&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td class=&amp;quot;productdetailbody&amp;quot;&amp;gt;$39.00&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td class=&amp;quot;productdetailbody&amp;quot;&amp;gt;1-57607-785-3&amp;lt;/td&amp;gt;&lt;br /&gt;
            &amp;lt;td class=&amp;quot;productdetailhead&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&lt;br /&gt;
          &amp;lt;/tr&amp;gt;&lt;br /&gt;
        &amp;lt;/table&amp;gt;&lt;br /&gt;
        &amp;lt;!-- End Pricing Table --&amp;gt;&lt;br /&gt;
      &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Greenwood Press [http://www.greenwood.com/ home page] featured book ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;title&amp;quot;&amp;gt; &amp;lt;a href=&amp;quot;/books/BookDetail.asp?sku=GR2847&amp;quot;&amp;gt;The Greenwood Encyclopedia of World Folklore and Folklife&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;img_box&amp;quot;&amp;gt; &amp;lt;a href=&amp;quot;/books/BookDetail.asp?sku=GR2847&amp;quot;&amp;gt; &amp;lt;img src=&amp;quot;/_net.templates/showImage.aspx?imgName=0313328471.jpg&amp;amp;s=140&amp;quot; alt=&amp;quot;The Greenwood Encyclopedia of World Folklore and Folklife&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;sub_title&amp;quot;&amp;gt;Four Volumes&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;author&amp;quot;&amp;gt;William M. Clements&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;isbn&amp;quot;&amp;gt;0-313-32847-1&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;price&amp;quot;&amp;gt;$449.95 &amp;lt;span class=&amp;quot;pipe&amp;quot;&amp;gt;|&amp;lt;/span&amp;gt; &amp;amp;pound;255.00&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;!--&amp;lt;div class=&amp;quot;clearing&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;--&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;bookDescription&amp;quot;&amp;gt; China . . . Malta . . . Madagascar . . . Wales . . . and Texas: these are among the many exotic, distant lands that capture our minds and imaginations. In an era of increasing globalization, students, general readers, and business professionals need to know about... &amp;lt;a href=&amp;quot;/books/BookDetail.asp?sku=GR2847&amp;quot;&amp;gt;Read&amp;amp;nbsp;more&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Greenwood Press [http://www.greenwood.com/catalog/GR2847.aspx Product detail page] ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div id=&amp;quot;pnlContent&amp;quot; class=&amp;quot;pnlContent&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div id=&amp;quot;pnlFlyerBox&amp;quot; class=&amp;quot;flyerBox&amp;quot;&amp;gt; &amp;lt;a id=&amp;quot;hlFlyer&amp;quot; class=&amp;quot;flyerLink&amp;quot; href=&amp;quot;/books/printFlyer.aspx?sku=GR2847&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Print book flyer&amp;lt;/a&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlFlyerInternational&amp;quot; class=&amp;quot;international_flyer&amp;quot; href=&amp;quot;/books/printFlyer.aspx?sku=GR2847&amp;amp;amp;location=international&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;(International version)&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;span id=&amp;quot;lblTitle&amp;quot; class=&amp;quot;book_headline block&amp;quot;&amp;gt;The Greenwood Encyclopedia of World Folklore and Folklife&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblSubTitle&amp;quot; class=&amp;quot;book_subline&amp;quot;&amp;gt;Four Volumes&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;div id=&amp;quot;pnlBookDetails&amp;quot; class=&amp;quot;detailsBox&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlImgBox&amp;quot; class=&amp;quot;imgBox&amp;quot;&amp;gt; &amp;lt;img src=&amp;quot;/_net.templates/showImage.aspx?imgName=0313328471.jpg&amp;amp;amp;s=135&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;a id=&amp;quot;hlAddToCart&amp;quot; title=&amp;quot;Add this item to your shopping cart&amp;quot; href=&amp;quot;/shopping_cart/?sku=GR2847&amp;quot;&amp;gt;&amp;lt;img title=&amp;quot;Add this item to your shopping cart&amp;quot; src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Add to Cart&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a id=&amp;quot;hlAddToWishList&amp;quot; title=&amp;quot;Save this item to your wish list&amp;quot; href=&amp;quot;/wish_list/?sku=GR2847&amp;quot;&amp;gt;&amp;lt;img title=&amp;quot;Save this item to your wish list&amp;quot; src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Add to Wish List&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a id=&amp;quot;hlSharePage&amp;quot; title=&amp;quot;Email this page to a friend&amp;quot; href=&amp;quot;/books/sendform.asp?sku=GR2847&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;&amp;lt;img title=&amp;quot;Email this page to a friend&amp;quot; src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Email&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a id=&amp;quot;hlPrintPage&amp;quot; title=&amp;quot;Version of this page optimized for printing&amp;quot; href=&amp;quot;/catalog/GR2847.aspx?print=1&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;&amp;lt;img title=&amp;quot;Version of this page optimized for printing&amp;quot; src=&amp;quot;/_net.templates/roundedButton.aspx?ButtonText=Print&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;a id=&amp;quot;hlWorldCat&amp;quot; href=&amp;quot;http://worldcatlibraries.org/wcpa/isbn/0313328471&amp;quot; style=&amp;quot;FLOAT: right&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/images/world_catalog.gif&amp;quot; alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;authors&amp;quot;&amp;gt;&amp;lt;span&amp;gt;&amp;lt;a href=&amp;quot;/catalog/author/C/229.aspx&amp;quot;&amp;gt;William M. Clements&amp;lt;/a&amp;gt; (ed.)&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;span id=&amp;quot;lblAuthorsNote&amp;quot; class=&amp;quot;block&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;div&amp;gt;&amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Book Code:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblBookCode&amp;quot;&amp;gt;GR2847&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlIsbn&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;ISBN:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblIsbn&amp;quot;&amp;gt;0-313-32847-1&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlPageColation&amp;quot;&amp;gt; 1972 pages, maps; photos &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;span id=&amp;quot;lblImprint&amp;quot; class=&amp;quot;block&amp;quot;&amp;gt;Greenwood Press&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlPubDate&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Publication Date:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblPubDate&amp;quot;&amp;gt;12/30/2005&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlListPrice&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;List Price:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblListPrice&amp;quot;&amp;gt;$449.95&amp;lt;/span&amp;gt; (&amp;lt;a href=&amp;quot;/contactus/order_info.asp?SectionID=about&amp;amp;amp;Location=order_info#UKEME&amp;quot; title=&amp;quot;Click for international ordering information&amp;quot;&amp;gt;UK Sterling Price: &amp;amp;pound;255.00&amp;lt;/a&amp;gt;) &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlAvailability&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Availability:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblAvailability&amp;quot;&amp;gt;In Stock&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlMediaType&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Media Type:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblMediaType&amp;quot;&amp;gt;Hardcover&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;clearing&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div id=&amp;quot;pnlBookInformation&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Subjects:&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;ul class=&amp;quot;toc&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; &amp;lt;a id=&amp;quot;rpCategories__ctl1_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology.aspx&amp;quot;&amp;gt;Anthropology&amp;lt;/a&amp;gt; » &amp;lt;a id=&amp;quot;rpCategories__ctl1_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology/Folklore.aspx&amp;quot;&amp;gt;Folklore&amp;lt;/a&amp;gt; &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; &amp;lt;a id=&amp;quot;rpCategories__ctl2_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology.aspx&amp;quot;&amp;gt;Anthropology&amp;lt;/a&amp;gt; » &amp;lt;a id=&amp;quot;rpCategories__ctl2_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology/Anthropology%2b(General).aspx&amp;quot;&amp;gt;Anthropology (General)&amp;lt;/a&amp;gt; &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; &amp;lt;a id=&amp;quot;rpCategories__ctl3_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology.aspx&amp;quot;&amp;gt;Anthropology&amp;lt;/a&amp;gt; » &amp;lt;a id=&amp;quot;rpCategories__ctl3_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/Anthropology/Cultural%2bAnthropology.aspx&amp;quot;&amp;gt;Cultural Anthropology&amp;lt;/a&amp;gt; &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; &amp;lt;a id=&amp;quot;rpCategories__ctl4_hlCategory&amp;quot; href=&amp;quot;/catalog/subject/History.aspx&amp;quot;&amp;gt;History&amp;lt;/a&amp;gt; » &amp;lt;a id=&amp;quot;rpCategories__ctl4_hlSubCategory&amp;quot; href=&amp;quot;/catalog/subject/History/World%2bHistory%2b(General).aspx&amp;quot;&amp;gt;World History (General)&amp;lt;/a&amp;gt; &amp;lt;/li&amp;gt;&lt;br /&gt;
      &amp;lt;/ul&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlDescription&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Description:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblDescription1&amp;quot; class=&amp;quot;description block&amp;quot;&amp;gt;China . . . Malta . . . Madagascar . . . Wales . . . and Texas: these are among the many exotic, distant lands that capture our minds and imaginations. In an era of increasing globalization, students, general readers, and business professionals need to know about the world and its varied ways. So too, a knowledge of world cultures is fundamental to an understanding of America's ethnically rich society. Folklore isn't just about the long ago and far away. It's about the here and now, and there's no better way to learn about cultural diversity than to study the folklore and folkways of different ethnic groups. &amp;lt;br /&amp;gt;&lt;br /&gt;
        More than just Cinderella and other fairy tales, folklore encompasses the whole realm of traditional beliefs and activities that define a culture. The most comprehensive work of its kind, this massive encyclopedia engagingly and authoritatively surveys folklife and traditions from around the world. Through its vast scope and lengthy entries, it transcends other references on particular national or regional folklores and is the most ambitious undertaking of its type. Organized in four volumes, the encyclopedia provides convenient access to information about folklore generally and to the traditions of particular regions:&amp;lt;br /&amp;gt;&lt;br /&gt;
        Volume 1: Topics and Themes, Africa, Australia and Oceania&amp;lt;br /&amp;gt;&lt;br /&gt;
        Volume 2: Southeast Asia and India, Central and East Asia, Middle East&amp;lt;br /&amp;gt;&lt;br /&gt;
        Volume 3: Europe&amp;lt;br /&amp;gt;&lt;br /&gt;
        Volume 4: North and South America&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblDescription2&amp;quot; class=&amp;quot;description block&amp;quot;&amp;gt;Along with the expertise of the contributors, of Volume Editor William M. Clements, and of Advisory Editor Thomas A. Green, the encyclopedia draws upon a distinguished board of internationally recognized scholars, including:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Roger D. Abrahams&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Cristina Bacchilega&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Gillian Bennett&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Mary Ellen Brown&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; James R. Dow&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Alessandro Falassi&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Barbro Klein&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Peter Knecht&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Natalie Kononenko&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Frances M. Malpezzi&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Margaret Mills&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; M. D. Muthukumaraswamy&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Gerald Pocius&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And John S. Ryan.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Features:&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Brings together the knowledge of more than 200 specialists from around the world.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Provides 39 extended entries on topics central to world folklore.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Details the folklore and folkways of roughly 170 cultural groups.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Entries discuss the background, beliefs, oral and theatrical traditions, arts and crafts, and contemporary concerns of each cultural group.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Each entry cites numerous works for further reading.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A generous selection of maps and illustrations makes world folklore come to life.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A list of entries and a cumulative subject index, repeated in each volume, offer convenient access to the vast body of information contained in the encyclopedia.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A selected, general bibliography directs students and general readers to the most important broad studies of world folklore.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; A glossary defines key terms, theories, and concepts.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Benefits:&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Helps students learn about cultures, customs, and daily life around the world.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Fosters respect and appreciation for the many ethnic traditions behind contemporary American culture.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Provides valuable background information for the study of world religions, holidays, and festivals.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Offers a valuable context for understanding world history, politics, literature, and the arts.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Invites students to compare and contrast the values and experiences of different cultures.&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Fosters critical reading skills and serves as a model for student research.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 1: Topics and Themes, Africa, Australia and Oceania&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          Certain themes and topics are central to world foklore. The thematic essays in this volume discuss such matters as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Antiquarianism&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Cultural Evolution&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Ethnopoetics&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Gender&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Invented Tradition&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Nativism&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Primitivism&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Public Folklore&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Race&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Trickster&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many more.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 2: Southeast Asia and India, Central and East Asia, Middle East&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          Included in this volume are entries on such cultural groups and regions as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Bali&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; China&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Duna&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Iban&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Kazakh&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Mongol&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Orissa&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Palestine&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Tonga&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Uyghur&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many others.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 3: Europe&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          Included in this volume are entries on the folklore of such cultural regions and groups as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Ashkenazim&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Basque&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Brittany&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Flanders&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Germany&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Isle of Man&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Roma&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Russia&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Sami&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Ukraine&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many more.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Volume 4: North and South America&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
          The entries in this volume explore the folk traditions of such regions and groups as:&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Appalachia&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Choctaw&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Haiti&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Island Carib&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Maya&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Quechua&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Seminole&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Western Inuit and Yupik&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Xavante&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; Yanomami&amp;lt;br /&amp;gt;&lt;br /&gt;
        &amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;li&amp;gt; And many more.&amp;lt;br /&amp;gt;&lt;br /&gt;
          &amp;lt;br /&amp;gt;&lt;br /&gt;
          Because folklore is the essence of daily life, this encyclopedia addresses the curriculum needs of high school students and is also an indispensable resource for teachers. In addition, anyone researching folklore in a public library will find this the first place to look for detailed information about cultural traditions around the world.&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlLCCardNumber&amp;quot; class=&amp;quot;description&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;LC Card Number:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblLCCardNumber&amp;quot;&amp;gt;2005019219&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlLCCClass&amp;quot; class=&amp;quot;description&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;LCC Class:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblLCCClass&amp;quot;&amp;gt;GR35 &amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;pnlDeweyClass&amp;quot; class=&amp;quot;description&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;book_options&amp;quot;&amp;gt;Dewey Class:&amp;lt;/span&amp;gt; &amp;lt;span id=&amp;quot;lblDeweyClass&amp;quot;&amp;gt;398&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Marshall Cavendish [http://www.marshallcavendish.com/marshallcavendish/academic/redirector.xml?url=/marshallcavendish/academic/catalogue/books/regionalism_n_regional_security/9812102108.xml product page] ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;td&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_font&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Regionalism &amp;amp;amp; Regional Security&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;/table&amp;gt;&lt;br /&gt;
  &amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;&amp;quot; align=&amp;quot;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;ISBN Number&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;9812102108&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Series&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;null&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Title&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;The New Terrorism: Anatomy, Trends and Counter-strategies&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Imprint&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Eastern Universities Press&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Specifications&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;152 mm X 227 mm, 368 pp, limp with flaps, 500 gms&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Authors&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Andrew Tan &amp;amp;amp; Kumar Ramakrishna (eds)&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Target Audience&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;University lecturers/researchers, undergraduate students, academicians and those interested in Regional Security Studies.&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Price (SG)&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;S$ 39.00&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;table cellpadding=&amp;quot;2&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;35%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;title_catalogue_title_font&amp;quot;&amp;gt;Price (US)&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td width=&amp;quot;65%&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;US$ 30.00&amp;lt;/font&amp;gt; &amp;amp;nbsp; &amp;lt;a href=&amp;quot;javascript: addToCart()&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/marshallcavendish/components/db_content/MC_AC_redirector/pic/addCart.gif&amp;quot; border=&amp;quot;0&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    The terrorist attacks of September 11, 2001 on the World Trade Center in New York and the Pentagon in Washington represented a true watershed in world history.&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    The attacks revealed the horrifying nature of the so-called &amp;quot;new terrorism&amp;quot; that has emerged in the post-Cold War era. The new terrorism is defined by four key features:&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/font&amp;gt;&lt;br /&gt;
  &amp;lt;ul&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;sheer lethality&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;religious dimension&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;networked organizational structure&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;greatly enhanced striking power &amp;amp;nbsp; &amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;/ul&amp;gt;&lt;br /&gt;
  &amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;&amp;quot; align=&amp;quot;&amp;quot;&amp;gt;As September 11 clearly demonstrated, the new terrorists can leverage on technology to inflict catastrophic damage even on superpowers, let alone other states.&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;br/&amp;gt;&lt;br /&gt;
    To examine the new dimensions of terrorism, a conference was organized in Singapore in late March 2002 that brought together a number of leading experts from a wide range of backgrounds from America, Europe and Asia, and the key findings are presented in this volume under the following headings:&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/font&amp;gt;&lt;br /&gt;
  &amp;lt;ul&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Anatomy of the new terrorism&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Terrorist trends and patterns in the Asia-Pacific region&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Religion and terrorism: Southeast Asian perspectives&amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&lt;br /&gt;
      &amp;lt;p align=&amp;quot;justify&amp;quot;&amp;gt;&amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;Formulating counter-strategies &amp;amp;nbsp; &amp;lt;/font&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;/ul&amp;gt;&lt;br /&gt;
  &amp;lt;font id=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;&amp;quot; align=&amp;quot;&amp;quot;&amp;gt; &amp;lt;span style=&amp;quot;font-weight: bold;&amp;quot;&amp;gt; &amp;lt;b&amp;gt; About the Author: &amp;lt;/b&amp;gt; &amp;lt;/span&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
    Both Andrew Tan and Kumar Ramakrishna are Assistant Professors at the Institute of Defence and Strategic Studies, Nanyang Technological University, Singapore.&amp;lt;br/&amp;gt;&lt;br /&gt;
    Andrew Tan received his M.Phil from Cambridge and PhD from the University of Sydney. His research interests are conflict (inter-state tensions, insurgencies, terrorism and force modernization) in Southeast Asia, and security issues in Asia.&amp;lt;br/&amp;gt;&lt;br /&gt;
    Kumar Ramakrishna obtained his PhD in History from the University of London in 1999. He teaches and writes on the history of strategic thought as well as the war on terror.&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/font&amp;gt;&lt;br /&gt;
  &amp;lt;td width=&amp;quot;18.666662&amp;quot; style=&amp;quot;valign: top; background-color: white ; &amp;quot; rowspan=&amp;quot;1&amp;quot; colspan=&amp;quot;1&amp;quot;&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
  &amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;td width=&amp;quot;570.666524&amp;quot; style=&amp;quot;valign: top; background-color: white ; &amp;quot; rowspan=&amp;quot;1&amp;quot; colspan=&amp;quot;1&amp;quot;&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;td width=&amp;quot;18.666662&amp;quot; style=&amp;quot;valign: top; background-color: white ; &amp;quot; rowspan=&amp;quot;1&amp;quot; colspan=&amp;quot;1&amp;quot;&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
    &amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Oxford University Press (USA) [http://www.us.oup.com/us/?view=usa homepage] ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;isbnSummaryDetails&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;h2&amp;gt; &amp;lt;a href=&amp;quot;/us/catalog/general/subject/HistoryAmerican/ColonialRevolutionary/?view=usa&amp;amp;amp;ci=0195162471&amp;quot;&amp;gt;The Glorious Cause&amp;lt;/a&amp;gt; &amp;lt;/h2&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;subTitle&amp;quot;&amp;gt; The American Revolution, 1763-1789 &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;edition&amp;quot;&amp;gt; Revised and Expanded Edition &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;byline&amp;quot;&amp;gt; Robert Middlekauff &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;isbnNumber&amp;quot;&amp;gt;0195162471&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;format&amp;quot;&amp;gt;hardback&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;publicationDate&amp;quot;&amp;gt; Feb 2005 &amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;price&amp;quot;&amp;gt; $37.50 &amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;description&amp;quot;&amp;gt; The classic history of the American Revolution--now in an updated and expanded twentieth anniversary edition &amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;related&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;h3&amp;gt;More &amp;lt;/h3&amp;gt;&lt;br /&gt;
      &amp;lt;!-- /HistoryAmerican/ColonialRevolutionary --&amp;gt;&lt;br /&gt;
      &amp;lt;a href=&amp;quot;/us/catalog/general/subject/HistoryAmerican/?view=usa&amp;amp;amp;sf=all&amp;quot;&amp;gt;History, American&amp;lt;/a&amp;gt; &amp;amp;gt; &amp;lt;a href=&amp;quot;/us/catalog/general/subject/HistoryAmerican/ColonialRevolutionary/?view=usa&amp;amp;amp;sf=all&amp;quot;&amp;gt;Colonial &amp;amp; Revolutionary&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;!--/isbnSummaryDetails--&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Oxford University Press (USA) [http://www.us.oup.com/us/catalog/general/subject/HistoryAmerican/ColonialRevolutionary/?view=usa&amp;amp;amp;ci=0195162471#Product_Details Product page]==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;isbnProperties isbnSummary&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;isbnSummaryHeading&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;h1&amp;gt;The Glorious Cause&amp;lt;/h1&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;subTitle&amp;quot;&amp;gt; The American Revolution, 1763-1789 &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;edition&amp;quot;&amp;gt; Revised and Expanded Edition &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;byline&amp;quot;&amp;gt; Robert Middlekauff &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--/isbnSummaryHeading--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;cover&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;bookShot&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/images/covers/0195162471.jpg&amp;quot;&lt;br /&gt;
                     width=&amp;quot;63&amp;quot; alt=&amp;quot;bookshot&amp;quot; /&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;addToCart&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;http://www.us.oup.com/us/cart/cart.jsp?op=a&amp;amp;amp;i=0195162471&amp;amp;amp;c=85&amp;amp;amp;q=1&amp;amp;amp;r=http%3A%2F%2Fwww.us.oup.com%2Fus%2Fcatalog%2Fgeneral%2Fsubject%2FHistoryAmerican%2FColonialRevolutionary%2F%3Fview%3Dusa%26ci%3D0195162471&amp;quot;&amp;gt;Add to Cart&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--/cover--&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;isbnSummaryDetails&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;isbnNumber&amp;quot;&amp;gt;0195162471&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;format&amp;quot;&amp;gt;hardback&amp;lt;/span&amp;gt;, &amp;lt;span class=&amp;quot;pages&amp;quot;&amp;gt; 760 pages &amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;div id=&amp;quot;generalinfo&amp;quot;&amp;gt; &amp;lt;span class=&amp;quot;publicationDate&amp;quot;&amp;gt;Feb 2005,&amp;amp;nbsp;&amp;lt;/span&amp;gt; &amp;lt;span class=&amp;quot;availability&amp;quot;&amp;gt; In Stock &amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;cost&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h2&amp;gt;Price:&amp;lt;/h2&amp;gt;&lt;br /&gt;
        $37.50 &amp;lt;span class=&amp;quot;discountCode&amp;quot;&amp;gt;(02)&amp;lt;/span&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;shipping&amp;quot;&amp;gt; &amp;lt;a href=&amp;quot;/us/assets/shippingInfo.jsp?si=1.5&amp;amp;amp;so=3.75&amp;amp;amp;sc=0&amp;amp;amp;isi=5&amp;amp;amp;iso=5&amp;amp;amp;isc=0&amp;quot; target=&amp;quot;_blank&amp;quot; onclick=&amp;quot;window.open(this.href, this.target, 'height=445,width=445,scrollbars');&lt;br /&gt;
					  return false;&amp;quot;&amp;gt;Shipping Details&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;div class=&amp;quot;moreSeries redArrow&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;See more from the series&amp;lt;/h3&amp;gt;&lt;br /&gt;
        &amp;lt;ul&amp;gt;&lt;br /&gt;
          &amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;/us/catalog/general/series/OxfordHistoryoftheUnitedStates/?view=usa&amp;quot;&amp;gt;Oxford History of the United States, Vol. 3&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
        &amp;lt;/ul&amp;gt;&lt;br /&gt;
      &amp;lt;/div&amp;gt;&lt;br /&gt;
      &amp;lt;!--moreSeries--&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;!--/isbnSummaryDetails--&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Thomson Gale product detail page ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div id =&amp;quot; title_main&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Contemporary Literary Criticism&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; credits&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;h2&amp;gt;Excerpts from Criticism of the Works of Today's Novelists, Poets, Playwrights, Short Story Writers, Scriptwriters, &amp;amp; Other Creative Writers&amp;lt;/h2&amp;gt;&lt;br /&gt;
		Volume 1&amp;lt;/li&amp;gt;&lt;br /&gt;
		&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;i&amp;gt;Published by Thomson Gale&amp;lt;/i&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; description&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;p&amp;gt;Each print volume in this long-standing series profiles approximately 6-8 novelists, poets, playwrights and other creative writers by providing full-text or excerpted criticism taken from books, magazines, literary reviews, newspapers and scholarly journals. Among those profiled in this volume are:&amp;lt;/p&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Kingsley Amis&lt;br /&gt;
		&amp;lt;li&amp;gt;John Dos Passos&lt;br /&gt;
		&amp;lt;li&amp;gt;Hermann Hesse&lt;br /&gt;
		&amp;lt;li&amp;gt;Ezra Pound&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;!-- Description --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; detail&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Published/Released:&amp;lt;strong&amp;gt; March 1973&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;ISBN: &amp;lt;strong&amp;gt;0-8103-0100-8&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Product number: &amp;lt;strong&amp;gt;001415&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Page count: &amp;lt;strong&amp;gt;485 pp./vol.&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;Shipping Weight: &amp;lt;strong&amp;gt;5.00 lbs (2.27 kgs)&amp;lt;/strong&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;  &amp;lt;!-- /detail--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id =&amp;quot; price&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;P&amp;gt;Price: US $205.00&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&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;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events&amp;diff=34603</id>
		<title>events</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events&amp;diff=34603"/>
		<updated>2008-11-18T00:02:27Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* February */&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-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-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;
== 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-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>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=chat-formats&amp;diff=34602</id>
		<title>chat-formats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=chat-formats&amp;diff=34602"/>
		<updated>2008-11-18T00:02:21Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Nature podcast format */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; chat formats &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Various formats that are used to represent chat conversations, typically internally.  With the use cases from the [[chat-examples]], and the vocabularies used here, the next steps are to start [[chat-brainstorming]] on proposals for a chat microformat.&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
&lt;br /&gt;
* ChristopherStJohn&lt;br /&gt;
* Tantek Çelik&lt;br /&gt;
* Jude Robinson&lt;br /&gt;
* Chris Messina&lt;br /&gt;
* Colin Barrett&lt;br /&gt;
&lt;br /&gt;
==ChatZilla Internal Format==&lt;br /&gt;
Note that there is no proof that this format is being used &amp;quot;in the wild&amp;quot; for publishing. ChatZilla uses HTML as its presentation layer. This heavily elided excerpt shows two lines from a chat. It gives the flavor (a very big table with each row a chat message divided up into three columns: timestamp, user name and the message itself) but there are many more classes in use in a full log.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;messages-outer&amp;quot;&amp;gt;&lt;br /&gt;
 ...&lt;br /&gt;
 &amp;lt;div id=&amp;quot;output&amp;quot;&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
  &amp;lt;table view-type=&amp;quot;IRCChannel&amp;quot; class=&amp;quot;msg-table&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr mark=&amp;quot;even&amp;quot; msg-user=&amp;quot;cks_ ME!&amp;quot;&lt;br /&gt;
     statusText=&amp;quot;01/31/2006 01:39 PM, cks_!n=chatzill@ppp-70-248-121-149.dsl.rcsntx.swbell.net&amp;quot;&lt;br /&gt;
     view-type=&amp;quot;IRCChannel&amp;quot; dest-type=&amp;quot;IRCChannel&amp;quot; msg-dest=&amp;quot;#microformats&amp;quot;&lt;br /&gt;
     msg-type=&amp;quot;PRIVMSG&amp;quot; class=&amp;quot;msg&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;td time-s=&amp;quot;57&amp;quot; time-n=&amp;quot;39&amp;quot; time-h=&amp;quot;13&amp;quot; time-d=&amp;quot;31&amp;quot; time-m=&amp;quot;01&amp;quot; time-y=&amp;quot;2006&amp;quot; class=&amp;quot;msg-timestamp&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
     &amp;lt;td class=&amp;quot;msg-user&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;span&amp;gt;cks_&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
     &amp;lt;td class=&amp;quot;msg-data&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;span&amp;gt;so, using chatzilla for just a minute so i can extract the logs.&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr mark=&amp;quot;odd&amp;quot; msg-user=&amp;quot;Atamido&amp;quot; statusText=&amp;quot;01/31/2006 01:43 PM, Atamido!n=atamido@cpe-67-9-173-252.austin.res.rr.com&amp;quot;&lt;br /&gt;
     view-type=&amp;quot;IRCChannel&amp;quot; dest-type=&amp;quot;IRCChannel&amp;quot; msg-dest=&amp;quot;#microformats&amp;quot;&lt;br /&gt;
     msg-type=&amp;quot;PRIVMSG&amp;quot; class=&amp;quot;msg&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;td time-s=&amp;quot;25&amp;quot; time-n=&amp;quot;43&amp;quot; time-h=&amp;quot;13&amp;quot; time-d=&amp;quot;31&amp;quot; time-m=&amp;quot;01&amp;quot; time-y=&amp;quot;2006&amp;quot; class=&amp;quot;msg-timestamp&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
     &amp;lt;td class=&amp;quot;msg-user&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;a href=&amp;quot;irc://irc.freenode.net/Atamido,isnick&amp;quot; class=&amp;quot;chatzilla-link&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;span&amp;gt;Atamido&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
     &amp;lt;td class=&amp;quot;msg-data&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;span&amp;gt;&lt;br /&gt;
       Here are some examples.&lt;br /&gt;
       &amp;lt;a target=&amp;quot;_content&amp;quot; class=&amp;quot;chatzilla-link&amp;quot; href=&amp;quot;http://www.hacksrus.com/%7Eginda/chatzilla/motifs.html&amp;quot;&amp;gt;&lt;br /&gt;
        http://www.hacksrus.&amp;lt;wbr&amp;gt;&lt;br /&gt;
        com/~ginda/chatzilla/&amp;lt;wbr&amp;gt;&lt;br /&gt;
        motifs.html&amp;lt;wbr&amp;gt;&lt;br /&gt;
       &amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
   &amp;lt;/tbody&amp;gt;&lt;br /&gt;
  &amp;lt;/table&amp;gt;&lt;br /&gt;
 &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Google Talk Format Logs==&lt;br /&gt;
Again, user1 is local.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
3&lt;br /&gt;
17b5df8a&lt;br /&gt;
01c61af0&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v66EC7D7137%22+to%3D%22user2%40gmail.com%2FTalk.v66EC841CB6%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Esome+but+not+much%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
incoming&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user2%40gmail.com%2FTalk.v66EC841CB6%22+to%3D%22user1%40gmail.com%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3EI'm+ready+to+crawl+in+bed+and+read.++Do+well+on+your+paper.++Love++Mom%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v66EC7D7137%22+to%3D%22user2%40gmail.com%2FTalk.v66EC841CB6%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Ethanks%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Emom%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
incoming&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user2%40gmail.com%2FTalk.v687050428D%22+to%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3EHi%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%2FTalk.v687050428D%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Ei+totally+forgot+about+the+awning%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%2FTalk.v687050428D%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Edo+you+want+me+to+come+over%3F%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
incoming&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user2%40gmail.com%2FTalk.v687050428D%22+to%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3EI+have+tomorrow+off.++Is+the+wind+supposed+to+get+bad+before+then%3F%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%2FTalk.v687050428D%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Enot+sure.+its+stormy+now%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
incoming&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user2%40gmail.com%2FTalk.v687050428D%22+to%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3EI'm+ready+if+yo+are.++I+thought+you+would+be+here+anyway+about+the+boat+or+I+would+have+called.%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%2FTalk.v687050428D%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3EI+think+we+decided+to+do+the+boat+on+a+dry+night%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%2FTalk.v687050428D%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Ei'll+come+over+now%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Unified Logging Format==&lt;br /&gt;
[http://adiumx.com Adium], [http://gaim.sf.net Gaim], and [http://kopete.kde.org Kopete] are currently developing an XML-based log format.&lt;br /&gt;
This is a small sample of version 0.4-01:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&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;chat xmlns=&amp;quot;http://purl.org/net/ulf/ns/0.4-01&amp;quot; account=&amp;quot;mactigerz&amp;quot; service=&amp;quot;AIM&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;event type=&amp;quot;windowOpened&amp;quot; time=&amp;quot;2006-07-14T12:42:01-05:00&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;message sender=&amp;quot;chz16&amp;quot; time=&amp;quot;2006-07-14T12:42:01-05:00&amp;quot;&amp;gt;'sup?&amp;lt;/message&amp;gt;&lt;br /&gt;
    &amp;lt;message sender=&amp;quot;mactigerz&amp;quot; time=&amp;quot;2006-07-14T12:43:15-05:00&amp;quot;&amp;gt;trying to get to work on the the new XML log format&amp;lt;/message&amp;gt;&lt;br /&gt;
    &amp;lt;message sender=&amp;quot;chz16&amp;quot; time=&amp;quot;2006-07-14T12:43:55-05:00&amp;quot;&amp;gt;Doesn't sound bad.&amp;lt;/message&amp;gt;&lt;br /&gt;
    &amp;lt;message sender=&amp;quot;chz16&amp;quot; time=&amp;quot;2006-07-14T12:44:10-05:00&amp;quot;&amp;gt;Providing you have the log specs, of course.&amp;lt;/message&amp;gt;&lt;br /&gt;
    &amp;lt;message sender=&amp;quot;mactigerz&amp;quot; time=&amp;quot;2006-07-14T12:45:15-05:00&amp;quot;&amp;gt;that's what I'm creating.&amp;lt;/message&amp;gt;&lt;br /&gt;
    &amp;lt;status type=&amp;quot;offline&amp;quot; sender=&amp;quot;chz16&amp;quot; time=&amp;quot;2006-07-14T12:46:23-05:00&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;status type=&amp;quot;online&amp;quot; sender=&amp;quot;chz16&amp;quot; time=&amp;quot;2006-07-14T12:46:43-05:00&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;status type=&amp;quot;away&amp;quot; sender=&amp;quot;mactigerz&amp;quot; time=&amp;quot;2006-07-14T12:47:10-05:00&amp;quot;&amp;gt;brb, working on the XML log format&amp;lt;/status&amp;gt;&lt;br /&gt;
    &amp;lt;event type=&amp;quot;windowClosed&amp;quot; time=&amp;quot;2006-07-14T12:47:20-05:00&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/chat&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The current version of the spec can be found [http://purl.org/NET/ULF/SPEC here].&lt;br /&gt;
&lt;br /&gt;
==ILRT Logger Bot Format==&lt;br /&gt;
Found at: http://chatlogs.planetrdf.com/swig/, generated by: http://cvs.ilrt.org/cvsweb/redland/logger/, there are three formats: HTML, plain text, and RDF. The entry discussed the RDF format, as it's presumably directed at machines and not people.&lt;br /&gt;
&lt;br /&gt;
Taking RDF first just because that's kind of fun and is presumably 100% semantics. Pretty straightforward RDF Sequence with date/description/creator, except for the line with a Dublin Core relation stuck in there. As is normal with RDF, semantics are reused, so to fully grok it there's some followon work to do, see: http://www.w3.org/2004/Talks/0522-rrs/ The foaf group got involved with IRC chat since IRC names are one of the ways to identify people, looks like it snowballed, not sure if the ChatChannel stuff is official or not. The Dublin Core and WordNet stuff is mentioned in the FOAF spec index, but seems to be missing from the actual text, I might have been looking at an old version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;rdf:RDF xmlns:rdf=&amp;quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;quot;&lt;br /&gt;
         xmlns:dc=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&lt;br /&gt;
         xmlns:wn=&amp;quot;http://xmlns.com/wordnet/1.6/&amp;quot;&lt;br /&gt;
         xmlns:foaf=&amp;quot;http://xmlns.com/foaf/0.1/&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;foaf:ChatChannel rdf:about=&amp;quot;irc://irc.freenode.net/swig&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;foaf:chatEventList&amp;gt;&lt;br /&gt;
    &amp;lt;rdf:Seq&amp;gt;&lt;br /&gt;
      &amp;lt;rdf:li&amp;gt;&lt;br /&gt;
       &amp;lt;foaf:chatEvent rdf:ID=&amp;quot;T00-01-19&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;dc:date&amp;gt;2006-02-01T00:01:19Z&amp;lt;/dc:date&amp;gt;&lt;br /&gt;
        &amp;lt;dc:description&amp;gt;keithalexander has quit&amp;lt;/dc:description&amp;gt;&lt;br /&gt;
        &amp;lt;dc:creator&amp;gt;&amp;lt;wn:Person foaf:nick=&amp;quot;keithalexander&amp;quot;/&amp;gt;&amp;lt;/dc:creator&amp;gt;&lt;br /&gt;
       &amp;lt;/foaf:chatEvent&amp;gt;&lt;br /&gt;
      &amp;lt;/rdf:li&amp;gt;&lt;br /&gt;
      &amp;lt;rdf:li&amp;gt;&lt;br /&gt;
       &amp;lt;foaf:chatEvent rdf:ID=&amp;quot;T00-27-42&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;dc:date&amp;gt;2006-02-01T00:27:42Z&amp;lt;/dc:date&amp;gt;&lt;br /&gt;
        &amp;lt;dc:description&amp;gt;Gromgull: nice quote re. x years later&amp;lt;/dc:description&amp;gt;&lt;br /&gt;
        &amp;lt;dc:creator&amp;gt;&amp;lt;wn:Person foaf:nick=&amp;quot;CaptSolo&amp;quot;/&amp;gt;&amp;lt;/dc:creator&amp;gt;&lt;br /&gt;
       &amp;lt;/foaf:chatEvent&amp;gt;&lt;br /&gt;
      &amp;lt;/rdf:li&amp;gt;&lt;br /&gt;
      &amp;lt;rdf:li&amp;gt;&lt;br /&gt;
       &amp;lt;foaf:chatEvent rdf:ID=&amp;quot;T01-38-49&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;dc:date&amp;gt;2006-02-01T01:38:49Z&amp;lt;/dc:date&amp;gt;&lt;br /&gt;
        &amp;lt;dc:description&amp;gt;A: http://aaronland.info/python/pyupcoming/ from karlUshi&amp;lt;/dc:description&amp;gt;&lt;br /&gt;
        &amp;lt;dc:creator&amp;gt;&amp;lt;wn:Person foaf:nick=&amp;quot;dc_swig&amp;quot;/&amp;gt;&amp;lt;/dc:creator&amp;gt;&lt;br /&gt;
        &amp;lt;dc:relation rdf:resource=&amp;quot;http://aaronland.info/python/pyupcoming/&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;/foaf:chatEvent&amp;gt;&lt;br /&gt;
      &amp;lt;/rdf:li&amp;gt;&lt;br /&gt;
    &amp;lt;/rdf:Seq&amp;gt;&lt;br /&gt;
  &amp;lt;/foaf:chatEventList&amp;gt;&lt;br /&gt;
&amp;lt;/foaf:ChatChannel&amp;gt;&lt;br /&gt;
&amp;lt;/rdf:RDF&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Trillian Internal Format==&lt;br /&gt;
This is for an AIM chat, but one for a Yahoo! chat looks the same. It is saved as plaintext as well as XML. (user1 is local). This is a description of the XML format, as it is presumably intended for machines and not humans.&lt;br /&gt;
&lt;br /&gt;
The same in XML:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;session type=&amp;quot;start&amp;quot; time=&amp;quot;1112395386&amp;quot; medium=&amp;quot;AIM&amp;quot; to=&amp;quot;user2&amp;quot; from=&amp;quot;user1&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;message type=&amp;quot;incoming_privateMessage&amp;quot; time=&amp;quot;1112395386&amp;quot; medium=&amp;quot;AIM&amp;quot; to=&amp;quot;user1&amp;quot; from=&amp;quot;user2&amp;quot; from_display=&amp;quot;user2&amp;quot; text=&amp;quot;ping&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;message type=&amp;quot;information_standard&amp;quot; time=&amp;quot;1112395387&amp;quot; medium=&amp;quot;AIM&amp;quot; text=&amp;quot;Auto%2Dresponse%20sent%20to%20user2%3A%20My%20hovercraft%20is%20full%20of%20eels%2E&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;message type=&amp;quot;outgoing_privateMessage&amp;quot; time=&amp;quot;1112395573&amp;quot; medium=&amp;quot;AIM&amp;quot; to=&amp;quot;user2&amp;quot; from=&amp;quot;user1&amp;quot; from_display=&amp;quot;user1&amp;quot; text=&amp;quot;hey&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;session type=&amp;quot;stop&amp;quot; time=&amp;quot;1112395619&amp;quot; medium=&amp;quot;AIM&amp;quot; to=&amp;quot;user2&amp;quot; from=&amp;quot;user1&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There is also a &amp;quot;user2-assets.xml&amp;quot; file for stuff like Buddy icons &amp;amp; file transers:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;asset medium=&amp;quot;AIM&amp;quot; name=&amp;quot;user2&amp;quot; link=&amp;quot;C%3A%5CProgram%20Files%5CTrillian%5Cusers%5Cdefault%5Cbuddyicons%5Cassets%5CAIM%2Duser2%2D1118046544%2Ejpg&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;asset medium=&amp;quot;AIM&amp;quot; name=&amp;quot;user2&amp;quot; link=&amp;quot;D%3A%5CPIX%5CY2005%5C0619%5CMOV02050%2EMPG&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;asset medium=&amp;quot;AIM&amp;quot; name=&amp;quot;user2&amp;quot; link=&amp;quot;C%3A%5CDocuments%20and%20Settings%5Cant%5CDesktop%5CDSCN0372_resize%2EJPG&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;asset medium=&amp;quot;AIM&amp;quot; name=&amp;quot;user2&amp;quot; link=&amp;quot;C%3A%5CProgram%20Files%5CTrillian%5Cusers%5Cdefault%5Cbuddyicons%5Cassets%5CAIM%2Duser2%2D1133932754%2Ejpg&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Nature podcast format ==&lt;br /&gt;
&lt;br /&gt;
Snippets of XML from [http://www.nature.com/nature/podcast/v440/n7085/nature-2006-04-06.html Nature journal's podcast of 6 April 2006]. Differences from chat formats above include the (current) lack of any timestamps, and defined &amp;quot;roles&amp;quot;, ie: presenter/interviewer/interviewee.&lt;br /&gt;
&lt;br /&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;podcast id=&amp;quot;nature-2006-04-06&amp;quot;&lt;br /&gt;
         xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot;&lt;br /&gt;
         xsi:noNamespaceSchemaLocation=&amp;quot;NPG_podcast_transcript.xsd&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;source&amp;gt;&lt;br /&gt;
    &amp;lt;jtl&amp;gt;Nature&amp;lt;/jtl&amp;gt;&lt;br /&gt;
    &amp;lt;vol&amp;gt;440&amp;lt;/vol&amp;gt;&lt;br /&gt;
    &amp;lt;iss&amp;gt;7085&amp;lt;/iss&amp;gt;&lt;br /&gt;
    &amp;lt;idt&amp;gt;20060406&amp;lt;/idt&amp;gt;&lt;br /&gt;
    &amp;lt;issn type=&amp;quot;print&amp;quot;&amp;gt;0028-0836&amp;lt;/issn&amp;gt;&lt;br /&gt;
    &amp;lt;issn type=&amp;quot;electronic&amp;quot;&amp;gt;1476-4679&amp;lt;/issn&amp;gt;&lt;br /&gt;
    &amp;lt;cpg&amp;gt;&lt;br /&gt;
      &amp;lt;cpy&amp;gt;2006&amp;lt;/cpy&amp;gt;&lt;br /&gt;
      &amp;lt;cpn&amp;gt;Nature Publishing Group&amp;lt;/cpn&amp;gt;&lt;br /&gt;
    &amp;lt;/cpg&amp;gt;&lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
  &amp;lt;fm&amp;gt;&lt;br /&gt;
    &amp;lt;doi&amp;gt;10.1038/pod-nature-2006-04-06&amp;lt;/doi&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Nature Podcast&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;presenter&amp;gt;&lt;br /&gt;
      &amp;lt;name&amp;gt;&lt;br /&gt;
        &amp;lt;fname&amp;gt;Chris&amp;lt;/fname&amp;gt;&lt;br /&gt;
        &amp;lt;sname&amp;gt;Smith&amp;lt;/sname&amp;gt;&lt;br /&gt;
      &amp;lt;/name&amp;gt;&lt;br /&gt;
    &amp;lt;/presenter&amp;gt;&lt;br /&gt;
    &amp;lt;intro&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;&lt;br /&gt;
        This is a transcript of the 6 April edition of the weekly  podcast.&lt;br /&gt;
	Audio files for the current show and archive episodes can be accessed&lt;br /&gt;
	from the  podcast index page (&amp;lt;weblink url=&amp;quot;http://www.nature.com/nature/podcast&amp;quot;/&amp;gt;)...&lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Sponsor: The  podcast from...&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;This week Tiktaalik and what it can tell us about how early life invaded the land..&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/intro&amp;gt;&lt;br /&gt;
  &amp;lt;/fm&amp;gt;&lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;interview&amp;gt;&lt;br /&gt;
      &amp;lt;interviewer&amp;gt;&lt;br /&gt;
        &amp;lt;name&amp;gt;&lt;br /&gt;
          &amp;lt;fname&amp;gt;Chris&amp;lt;/fname&amp;gt;&lt;br /&gt;
          &amp;lt;sname&amp;gt;Smith&amp;lt;/sname&amp;gt;&lt;br /&gt;
        &amp;lt;/name&amp;gt;&lt;br /&gt;
        &amp;lt;p&amp;gt;Hello, I'm Chris Smith. Welcome to the 6th April edition of Nature's podcast.&lt;br /&gt;
	  First this week we're winding our watches back about 380 million years to the time when&lt;br /&gt;
	  the first animals substituted feet for fins and began to heave themselves out of the&lt;br /&gt;
	  sea and onto land... (&amp;lt;cite&amp;gt;&lt;br /&gt;
            &amp;lt;jtl&amp;gt;Nature&amp;lt;/jtl&amp;gt;&lt;br /&gt;
            &amp;lt;vid&amp;gt;440&amp;lt;/vid&amp;gt;, &amp;lt;ppf&amp;gt;747&amp;lt;/ppf&amp;gt;&amp;amp;#45;&amp;lt;ppl&amp;gt;749&amp;lt;/ppl&amp;gt;; &amp;lt;cd&amp;gt;2006&amp;lt;/cd&amp;gt;&lt;br /&gt;
            &amp;lt;refdoi&amp;gt;10.1038/440747a&amp;lt;/refdoi&amp;gt;&lt;br /&gt;
          &amp;lt;/cite&amp;gt;).&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;/interviewer&amp;gt;&lt;br /&gt;
      &amp;lt;interviewee&amp;gt;&lt;br /&gt;
        &amp;lt;name&amp;gt;&lt;br /&gt;
          &amp;lt;fname&amp;gt;Neil&amp;lt;/fname&amp;gt;&lt;br /&gt;
          &amp;lt;sname&amp;gt;Shubin&amp;lt;/sname&amp;gt;&lt;br /&gt;
        &amp;lt;/name&amp;gt;&lt;br /&gt;
        &amp;lt;p&amp;gt;The transition from a fish that lives in water to an animal that's able to live on land&lt;br /&gt;
	  is one of the great transitions in the history of life. We know from a variety of...&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;/interviewee&amp;gt;&lt;br /&gt;
      ...&lt;br /&gt;
    &amp;lt;/interview&amp;gt;&lt;br /&gt;
    &amp;lt;filler&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Well that's it for this week, and thanks for listening. Remember that...&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Next week we are fighting malaria and finding out how parasites can...&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Production on this week's  podcast was by Anna Lacey in the Department of Pathology&lt;br /&gt;
        at Cambridge University, and I'm Chris Smith.&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Sponsor: The  podcast is sponsored by Bio-Rad at the center of scientific discovery&lt;br /&gt;
        for over 50 years, and on the web at &amp;lt;weblink url=&amp;quot;http://www.discover.biorad.com&amp;quot;/&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/filler&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/podcast&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Adium Message Style==&lt;br /&gt;
&lt;br /&gt;
This is a presentation format, which has really no fixed style imposed. The only rules are the use of replacement strings (e.g. %displayname%), and the use of magic file names to identify which HTML snippet is which template. More information can be found in [http://naib.dnsalias.org:8000/~markfickett/adium/tutorial/AdiumMessageStylemirrored.html this tutorial]. &lt;br /&gt;
&lt;br /&gt;
There is evidence of [http://adiumx.com Adium], [http://kopete.kde.org Kopete], [http://chucker.mystfans.com/2006/02/27/adium-message-styles-and-skype.entry Skype for Mac] and [http://itorrey.com/index.php?itemid=56 Gizmo for Mac] all using this format, or derivatives thereof.&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=resume-formats-fr&amp;diff=34601</id>
		<title>resume-formats-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=resume-formats-fr&amp;diff=34601"/>
		<updated>2008-11-18T00:01:36Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Europass */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Résumés Typiques&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
Ceci est une page pour documenter les formats pré-existants de *données* de résumés en tant que section du [[process-fr|processus]] pour développer un microformat de résumé. Voir [[hresume-fr|hResume]] pour le draft actuel.&lt;br /&gt;
&lt;br /&gt;
Pour une discussion sur les formats de *layout* de résumés (par ex. chronologique vs fondé sur les compétences), voir [[resume-examples-fr|résumés-exemples]].&lt;br /&gt;
&lt;br /&gt;
== Contributeurs ==&lt;br /&gt;
* Ryan King&lt;br /&gt;
* Tantek Çelik&lt;br /&gt;
* Boris Mann&lt;br /&gt;
* Marc Van Coillie&lt;br /&gt;
&lt;br /&gt;
(traduction française [[Christophe Ducamp]])&lt;br /&gt;
&lt;br /&gt;
== Formats de CV ==&lt;br /&gt;
Mettez ici des noms/liens vers les essais en cours/existants des formats de résumé.&lt;br /&gt;
&lt;br /&gt;
=== Formats de CV XHTML  ===&lt;br /&gt;
* [http://www.tbray.org/ongoing/When/200x/2005/11/12/Template.html Fred Flintstone] - un gabarit de CV [http://www.tbray.org/ongoing/When/200x/2005/11/12/Resume-Blues créé par Tim Bray]&lt;br /&gt;
&lt;br /&gt;
=== Formats de CV existants en XML ===&lt;br /&gt;
&lt;br /&gt;
==== Resumé Library XML ====&lt;br /&gt;
[http://xmlresume.sourceforge.net/ XML Resumé Library]&lt;br /&gt;
* voir [http://www.xml.com/pub/a/2003/05/28/qa.html cet article de xml.com] pour quelque explication&lt;br /&gt;
* voir [http://xmlresume.sourceforge.net/user-guide/elementref.html la référence élément] pour une référence&lt;br /&gt;
vers les éléments embarqués dans la Librairie Resume XML&lt;br /&gt;
&lt;br /&gt;
Une librairie avec des DTDs et feuilles de styles XSL pour conversion à partir de leur schéma XML vers XHTML, PDF, etc. &lt;br /&gt;
Le projet semble être resté tranquille depuis mi-2005.&lt;br /&gt;
&lt;br /&gt;
==== XMLResume.org ====&lt;br /&gt;
http://www.xmlresume.org/&lt;br /&gt;
&lt;br /&gt;
==== HR-XML ====&lt;br /&gt;
[http://www.hr-xml.org HR-XML] a un dialecte xml pour les formats. &lt;br /&gt;
&lt;br /&gt;
En fait, l'étendue de leurs schémas est bien plus large, y compris les aspects tels que les descriptions de postes et embauches, contrats, payrolls, formation... c'est massivement adopté par la plupart des acteurs présents sur le marché de l'emploi.&lt;br /&gt;
&lt;br /&gt;
Il existe également un [http://www.eife-l.org/publications/standards/interop/europasscv/europassCV-HRXML-AP profil applicatif HR-XML pour les CV Europass] et des feuilles de transformation pour passer de l'un à l'autre supportant également hResume, afin de faire une distinction avec les schémas XML pour Europass proposé par le Cedefop il est dénommé Europortfolio / Europass CV.&lt;br /&gt;
&lt;br /&gt;
Voici un lien vers un [http://cvt.eife-l.org/CVTransformService.html client web-service de démonstration de transformation de CV] intégrant les transformations hResume vers Europortfolio / Europass CV.&lt;br /&gt;
&lt;br /&gt;
==== Europass ==== &lt;br /&gt;
[http://europass.cedefop.europa.eu/ Europass] est un schéma développé par le Cedefop (center d'information et de ressources sur la formation professionnelle) à l'initiative de la commission européenne pour amélioer la mobilité des étudiants européens, stagiaires et salariés sur le postulat &amp;quot;d'un cadre de transparence unique pour les qualifications et compétences.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Sur [http://europass.cedefop.europa.eu/europass/home/vernav/Europasss+Documents/Europass+CV/navigate.action cette page] il existe un formulaire Web par lequel vous pouvez créer votre CV et puis vous puvez l'exporter en différents formats, parmi lesquels il existe aussi un format XML, aussi il devrait être possible de convertir automatiquement le CV XML Europass en XHTML avec une syntaxe hResume.&lt;br /&gt;
&lt;br /&gt;
Ce travail est en cours (début Juillet 2007), prévu pour une démonstration lors du sommet [http://events.eife-l.org/HCSIT2007 HCSIT] à Maastricht en Octobre prochain.&lt;br /&gt;
&lt;br /&gt;
=== Autres formats de CVs ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Pages en rapport ==&lt;br /&gt;
{{hresume-related-pages-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2006-03-13-sxsw-microformats-transcript&amp;diff=34600</id>
		<title>events/2006-03-13-sxsw-microformats-transcript</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2006-03-13-sxsw-microformats-transcript&amp;diff=34600"/>
		<updated>2008-11-18T00:01:16Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Transcript */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;2006 SXSW Microformats panel transcript&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is a transcript of the [[events/2006-03-13-sxsw-microformats|SXSW microformats panel]] from the [http://player.sxsw.com/2006/podcasts/SXSW06.INT.20060313.Microformats.mp3 audio recording].&lt;br /&gt;
&lt;br /&gt;
== Transcript ==&lt;br /&gt;
&lt;br /&gt;
'''Tantek Çelik:'''&lt;br /&gt;
Good morning everyone. Let's go ahead and get started. This is the microformats session. I'm Tantek Çelik, your moderator for this panel. And we've got a great set of speakers here that are going to show off various things they've done with microformats. Anywhere from just adding some extra semantics to their sites to some tools that are already been developed that can consume and display and browse microformats.&lt;br /&gt;
&lt;br /&gt;
First, I'd like to say this entire presentation, at least the hypertext of my presentation, is licensed under Creative Commons attribution license.&lt;br /&gt;
&lt;br /&gt;
All right, so first I'm going to try and do a little demo. We'll see if this works. We were having a little trouble earlier so it's going to be a bit of a gamble with the network and all. So if I can just please ask everyone to turn off their BitTorrent for a couple minutes. Right, stop uploading photos to Flickr.&lt;br /&gt;
&lt;br /&gt;
So we've got basically a version of the south by southwest speaker's page marked up with the hCard microformat. And what you would've seen if the network was working, would be the entire set of speakers added to the address book. We'll try this again in a few minutes to see if it's working. What we're doing is we're passing the speaker's page through a converter that converts all the hCards to vCards, and everyone of you out there that has a computer or phone has at least one or two implementations of the vCard compatible address book on you right now. The idea is that as soon as any page that has an hCard on it you can add to your address book, you can sync it with your PDA, your handheld, and it makes contact information, personal information, on the web a lot more useful.&lt;br /&gt;
&lt;br /&gt;
I'm going to show you just a quick example of what an hCard looks like. So hCard is essentially the microformat contact information for a person or organization. In this case, here's some information you might find about a person like name, URL, title, etc. You might mark this up with spans, hyperlinks (a tags). And if it's the contact information for a page, you might use the address tag as well. This bit right here, this is the key hCard bit. So what we've done is we've taken the property names from the vCard standard, RFC2426, and simply reused them as class names in HTML. So class equals vcard, url, fn, n, given-name, family-name, title, org. And that's really it. So just by adding that to existing markup you created an hCard.&lt;br /&gt;
&lt;br /&gt;
But one point that I'd like to impress upon everyone is that microformats are more than just really good class names. And this is something that as microformats have become more popular a lot of folks are sort of taken to saying, &amp;quot;Oh, I've been using microformats for years.&amp;quot; And while microformats definitely use semantic class names and are taking advantage of this larger trend in web design towards using CSS for presentation, HTML for semantic markup, and then class names for catching additional IA and such in the page, microformats actually takes that a few steps further.&lt;br /&gt;
&lt;br /&gt;
First, is that we've got a set of principles that essentially guide our design processes and help keep things micro as it were, help keep the number of class names down to a minimum, the number of microformats down to a minimum. I'm not going to go into detail about this principle. What I will go into a little more detail is the process. And this actually makes a really big difference because if you just have everyone out there inventing their own semantic class names well, that's what we have today and that's actually just fine. As long as you're not looking to inter-operate that's not a problem. One of the things you have to worry about is if you actually try to establish a standard, you need to inter-operate. So you actually need some amount of process, some amount of community, and we'll talk a little about that. That's where community part comes in. It helps makes sure that everyone tries to solve the same problem. We take the same approach rather than duplicating different ways of solving the same problem.&lt;br /&gt;
&lt;br /&gt;
So let me just go really quickly over microformats process. We try to keep this down to an absolute minimum as much as possible.&lt;br /&gt;
&lt;br /&gt;
The first thing is we ask people to pick a specific simple problem and define it. If you don't have a specific problem that you're trying to solve then you need to probably work hard and define it. We don't want to solve really general-purpose problems; we don't want to invent new frameworks. This is just for solving real world, practical, straightforward, specific problems.&lt;br /&gt;
&lt;br /&gt;
Second, is that we require that anyone that wants to actually come up with a microformat actually go out there on the web and document what existing web pages are doing already with expressing this content. So say you want to build a microformat for widgets, whatever that means, right? If you can't find web pages out there that are publishing widgets or publishing whatever that type of content, then maybe there's not really a need for microformat per se, maybe you can just use semantic markup that you make up yourself.&lt;br /&gt;
&lt;br /&gt;
The third is that we really, really want to avoid inventing new formats, new standards, new names, new terminology, even. We work really hard to go out there and document any existing formats that have tried to solve the same problem, whether these are web formats or whether they are formats for other transports or other types of other fields. You know RFC2426 vCard, that's not an XML format but it solves the problem of contact information. Similarly, the iCalendar standard solves the problem of how do you express a calendar event. So the goal here is to document these existing formats so that we don't invent new ones. If we do invent a new microformat, we try to take the names from existing formats. We try to not even invent new terminology.&lt;br /&gt;
&lt;br /&gt;
Finally, after you've done all that, you try to brainstorm about... okay, given what people are actually publishing on the web (as opposed to what standards might say), from that you can apply a set of fields, what we call a schema, that would define a microformat, and then from there we reuse the names from those formats. Finally, and this is probably the most important piece, which is that we iterate within the community. So people put up a straw proposal based on their research, really early, really often. You try publishing it on your website and then you try and get feedback from the community. And then you iterate. So the goal here is not to try and get it perfect on the first try. The goal is to get something on the first try and evolve and iterate quickly and not feel like you have to support exactly what you came up with first.&lt;br /&gt;
&lt;br /&gt;
All right, I want to show you guys a little bit of the progress we made with microformats over the last couple years.&lt;br /&gt;
&lt;br /&gt;
Beginning in 2004, we had very few microformats. In fact, we had just defined the term &amp;quot;microformats&amp;quot; and XFN had been out a few weeks, which had a few implementations. rel-license had been proposed for Creative Commons and other licenses, XOXO for lists and outlines, and Votelinks for indicating that the page you're linking to, you don't necessarily agree with what it says or maybe you just abstain with what it says. So in two years the community has developed and come up with a whole lot more microformats. And you can sort of read them here for yourself. I'm not going to go into great detail. But literally for events, for people and organizations, for locations, for syndication, for classifieds, resumes and reviews, even tip jars for video blogging. These are all microformats that the community has come up with and documented and researched and published and, in fact, implemented. You can look under each one of these is a set of implementations. And there's many more in development.&lt;br /&gt;
&lt;br /&gt;
And how do you develop more microformats? Well, this is the community. We've got several portions to it. The IRC channel, which is live right now. The email discussion list with public archives. And this is a decision we made really early on; that we wanted to keep all of our research, all of our discussions in public. So literally the IRC channel is archived to a public web page. All the email discussion lists are archived. If you want to participate by blogging about microformats, use the microformats tag. And finally, the wiki is what we use for specifications, for feedback, for issues. And again, anyone can create a login and edit it. And this is one of the lessons that we learned from what Wikipedia has done. Rather than try and keep under very tight control the specifications, we said hey, let's try and put all the specifications out in the open and let anyone come in there and fix the little mistakes. And it's actually been tremendous, the helpfulness of community, contributions that we've seen.&lt;br /&gt;
&lt;br /&gt;
So I'm going to close the little introduction with an exercise for the reader. Create your own hCard. Now this is actually fairly straight forward. We've got a nice hCard creator form that's up on the microformats site, as well as a page that -- if you've already got a contact page on your site, which a lot of folks do -- a page on how to update the markup for that to just turn it into an hCard without having to create a new one. Publish it on your site. Go ahead and go to the hCard specification, there's a whole little section that says &amp;quot;new examples in the wild&amp;quot;, and add a link to your hCard. And we've also even got a wiki page for this particular session as well. Go ahead and add yourself to the list of attendees.&lt;br /&gt;
&lt;br /&gt;
And finally for any sort of follow-up Q&amp;amp;A that we don't get to, we're going to hold a pretty informal lunch right after this presentation at Las Manitas. So we'll see how many of us can cram in there and have open discussions about it.&lt;br /&gt;
&lt;br /&gt;
All right, so this entire presentation -- as I'm sure many of them to date -- is built with S5 in microformats and that's the URL down there, if you want to go reference it and look at it for yourself: tantek.com/presentations/2006/03/microformats-sxsw.&lt;br /&gt;
&lt;br /&gt;
So thanks, everyone, and now I'm introduce to you Mark Norman Francis of Yahoo UK.&lt;br /&gt;
&lt;br /&gt;
'''Mark Norman Francis:'''&lt;br /&gt;
Yep, that's where I work. I am a senior web developer and I work on the pan-European websites mostly in the media area, which is things such as news and finance, movies. And when I first heard about microformats I got terribly excited for two basic reasons. One, I'm lazy, and two, I'm impatient. Because I'm lazy, with the Semantic Web in capital letters -- capital S, capital W -- you have to encode all of your information twice. And I just don't want to do that. It's far too much effort. And I'm impatient and I don't want to wait for other people to mark things up twice as well.&lt;br /&gt;
&lt;br /&gt;
Within the company I did a little informal talk to the web development team within Europe about microformats, and we decided that we would try it out on our site to see how it went, basically. And I'm going to show that to you now.&lt;br /&gt;
&lt;br /&gt;
So I was working as the second developer on the movie site at the time. And one of the microformats is hReview. We have a lot of reviews in our site so we marked them up using hReview. If you see down here there's a little microformat icon. So the Tails Firefox extension detects the presence of microformats and has indicated there is one on this page. So you just double click on that and it shows the two reviews on this page are there.&lt;br /&gt;
&lt;br /&gt;
Oh that's lovely... and there goes the wireless. Okay, you'll just have to trust me about that one then, won't you?&lt;br /&gt;
&lt;br /&gt;
So on this page there is... the hReview microformat has an awful lot of information on it and our reviews don't have anywhere near as much as that. Plus hReview was really -- well the version I looked at at the time -- was designed for individuals reviewing things. The reviews that we have more from actual data provided, such as in this case cinema source who other that people give us the data. So we didn't use much of the hReview format but we used it anyway. Of course, other Yahoo properties that use hReview that I know that use microformats, as Tantek said earlier is blo.gs and Upcoming. Upcoming was the first of big sites that used hCalendar?&lt;br /&gt;
&lt;br /&gt;
'''Tantek Çelik:'''&lt;br /&gt;
Right. So Upcoming was definitely the first site that picked up the hCalendar format and deployed it across all their events. I actually don't know how many events Upcoming has but it's got a lot. I'm guessing there's somewhere in the hundreds of thousands. If someone from Upcoming is here then perhaps they can let us know.&lt;br /&gt;
&lt;br /&gt;
'''Mark Norman Francis:'''&lt;br /&gt;
So, of course, that wasn't owned by Yahoo at the time. So we can't really take any credit for that but it's nice that it's there anyway. I can't show it to you right now because it's only in development and I can't get onto the VPN to show it you but in Europe we're going to be launching a local search product and all of the results that that will give you such as restaurants and business are all going to be marked up with hCard. And that's in the seven figure range of results, whereas the movie site is only four or five figures of hReviews.&lt;br /&gt;
&lt;br /&gt;
And obviously the last, Upcoming. I went to this party, I had an awful lot of alcohol. On this page, the information about this party is marked up using microformats and you can extract that and do what you like with it. And that's me. Thank you.&lt;br /&gt;
&lt;br /&gt;
'''Tantek Çelik:'''&lt;br /&gt;
Thanks Mark. [clapping]. Next up we got Jeremy Keith, who's going to show us a little something that he put together just for the conference and then showed around to a few friends. I'm like, &amp;quot;Wow, that's pretty cool. You need to show that off.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Jeremy Keith:'''&lt;br /&gt;
Yeah. This isn't going to be quite as big as Norm's. He's got about six millions...or something. I've got one page.&lt;br /&gt;
&lt;br /&gt;
'''Mark Norman Francis:'''&lt;br /&gt;
Yeah. It's a very nice page.&lt;br /&gt;
&lt;br /&gt;
'''Jeremy Keith:'''&lt;br /&gt;
So this is my second year at South by Southwest. I was here last year and had a great time. And I'm sure as many people have told you, the panels are only half the story at South by Southwest. It's the evening events that you really need to go to to get the most out of it and have all the fun. So coming up to this year I decided I'd put something on my web page about the evening events I'd be attending this year. So this is my website and I decided I'd create a page and put events on it.&lt;br /&gt;
&lt;br /&gt;
Now I've already got events out there. I used Upcoming and there's all sorts of South by Southwest stuff on there. I could just use the Upcoming API to pull stuff out or just scrape the hCalendar stuff out but there's some information that's not on Upcoming that I wanted to get at. That was geo-coordinates. I'll show you why I wanted that. The other place I looked for events was on the South by Southwest website, and they have events marked up but these aren't marked up in hCalendar. A couple of strong tags and paragraphs. So I was having to do a bit of cutting and pasting, but the idea is that I would maybe do a bit of cutting and pasting so that nobody else would have to.&lt;br /&gt;
&lt;br /&gt;
So I got all the events together that I wanted to go to and list them all on a page and put it up on austin.adactio.com. So this is how it looks. I've got hCalendar and each event is marked up. So there's extra information in there. You can see the time  the start time of an event, the end time of an event. There's hCards for the places. But this is the bit that interested me. I wanted to get geo-information in there so I did have to go and look up the geocodes. There's a few different geocoders out there. Yahoo has a geocoder API you can use. So I had this marked up as hCalendar with geocodes so that I could use the geocodes to mess about with the Google Maps API. Basically as an exercise to myself. I hadn't messed with this API yet and I wanted something fun to do so I thought it would be cool if I could have all my events on one page and you could also see where the events were taking place. So I took the existing page I had, which is marked up with the microformats, mixed in the Google Maps API, and I got this. So it's the same page but just with a couple of extra script tags pointing to the Google Map scripts and a little bit of javascript so that when you click on an event, it shows you exactly where in Austin the event is taking place with a nice, big Shiner Bock logo to show you where it is.&lt;br /&gt;
&lt;br /&gt;
So there's all the parties I planned out that I was going to go to. I was very clever this year in that I made sure the panel I was doing was on the first day so that I could really let loose. And it was only later that Tantek said &amp;quot;Hey, do you want to speak about microformats?&amp;quot; and I was like...uh. So this explains why my voice is maybe a little rough because I've been making active use of this. But it has proved genuinely useful. I was at the Upcoming party last night and I thought, okay, I'm going to skip the web awards ceremony --  it's the Oscars for websites; I don't need to see that -- but I'll go to the after-party for the web awards. So I know I've got to get from there to there and I can see exactly how far that is.&lt;br /&gt;
&lt;br /&gt;
Or tonight for instance, tonight's a busy night. I haven't even put down what's on tonight, all the stuff. There's bowling going on, but that's a bit out of town. I don't think I'm going to make it. But if you are going, go Team Brits.&lt;br /&gt;
&lt;br /&gt;
Look, I'll explain why. The first event I'm going to go to is at Club DeVille. I was potentially going to go by 20x2 but, I'm sorry, that's a bit too much of a hike to get over there and then have to come back to the Adaptive Path/Consumating/Odeo party. It makes much more sense... Look, they're right next door to each other. [Laughter] And if it sucks... I don't think it will 'cause there's going to be live bands playing. It's going to be pretty good. Ben Brown, Internet rock star is putting it together so it's bound to be good. But if it does I can nip around the corner to the Sidebar. How great is it that a bunch web geeks end up in a bar called the Sidebar? I find that perfect. So, looking I can see I don't really need to get all the way -- I'm sorry to whoever's organizing 20x2; I'd like to go but the logistics of it -- I think tonight's events are pretty clearly planned out. I can just stay on Red River.&lt;br /&gt;
&lt;br /&gt;
So I put this up. I had my microformats and I basically just had hCalendar and I had the Google maps mashup. And Tantek saw it and he said oh that's so cool but why don't you do this, and realized there were more microformats I could put in so that's where the hCards came from. And the nice thing, when I did this and I hadn't planned to do it, but you can link off to services on Technorati that will grab any hCalendars or any hCards on a page, just it pass it a URL and it will create an iCal for you. So I linked to Technorati and that will automatically download the iCal, which is very useful. Some friends of mine did this, they said, &amp;quot;I'm going to go to all the same events so I'm just going to pop that into my iCal.&amp;quot; And they show up like that. You can see all the ones in blue down on the bottom, they came from that page. And then I can sync it up with my phone, I can sync it up with my iPod. I don't get the maps then, which is a bit of a shame, but because Austin is bathed in WiFi, as long as I have my laptop with me I can always find out where I need to go for the next party. &lt;br /&gt;
&lt;br /&gt;
This did prove useful for other people, aside from when I first marked this up I wasn't thinking about time zones, so when I first marked this up I didn't put in the minus six hours. I'm in the Greenwich Mean tribe. I'm used to just thinking we're the center of the world. Time zones, what's that? As Tantek pointed out, Austin was six hours behind England so I had to take that into account. But another friend of mine, Ian Lloyd, downloaded the calendar and he was saying the dates are all screwed up, but actually once you get to Austin and you set your preferences to US Central then the events fall into place and everything looks good. iCal could be a bit better with how it handles time zones, I think. It's a little bit fuzzy but that's a problem with iCal and certainly not with the format, the hCalendar.&lt;br /&gt;
&lt;br /&gt;
So on Tantek's recommendations I cleaned this up, put in the correct time zones, added the hCard. And the easiest microformat to add by far was to turn this into a XOXO, however you want to pronounce it. Tantek, do you have an opinion on how it should be pronounced? Hugs n' kisses, I turned it into a hugs n' kisses microformat by adding that. That was it because it's a nested list. It's lists within lists. That was by far the simplest microformat to add. So if anybody has cool tools that do stuff with XOXO like Greasemonkey scripts or bookmarklets that will toggle the list items they can do that with this page.&lt;br /&gt;
&lt;br /&gt;
That's pretty much it. That was just a little page I put together just for myself but it proved useful to other people, and I've been making good use of it.&lt;br /&gt;
&lt;br /&gt;
'''Tantek Çelik:'''&lt;br /&gt;
Thanks Jeremy. So one of the things I wanted to ask about is have you ever created an ICS file yourself, like on your website?&lt;br /&gt;
&lt;br /&gt;
'''Jeremy Keith:'''&lt;br /&gt;
No. What I've done in the past is put up an actual vCard for download. But I've never....&lt;br /&gt;
&lt;br /&gt;
'''Tantek Çelik:'''&lt;br /&gt;
Right. When you did that did you find any sort of challenges with say like MIME types or anything else dealing with that kind of thing?&lt;br /&gt;
&lt;br /&gt;
'''Jeremy Keith:'''&lt;br /&gt;
The vCard seem to be OK. There may be challenges but I didn't discover them. But once I came across hCard I thought, well, that's just so much simpler to do that. Have it on the web page itself. Downloadable if they want it.&lt;br /&gt;
&lt;br /&gt;
'''Tantek Çelik:'''&lt;br /&gt;
Right. So basically using the class names as opposed to uploading a file was a difference there in the experience.&lt;br /&gt;
&lt;br /&gt;
'''Jeremy Keith:'''&lt;br /&gt;
If you can have it in the markup rather than putting in any kind of file that has to downloaded before you can read what's in it just makes so much more sense. It's just more easily available.&lt;br /&gt;
&lt;br /&gt;
'''Tantek Çelik:'''&lt;br /&gt;
Okay. Cool. All right. Well, before we got to our last presenter, I actually found the problem I was having with the demo was my fault, not the service's problem. I had a URL problem. So if you can switch back. So for those of you that actually loaded my presentation make sure you do a refresh, reload. It's already been updated: real-time web that we have here.&lt;br /&gt;
&lt;br /&gt;
So the fourth link there, link to convert hCards to vCards. If you click that, what it'll do, like I said is send off the entire converted, the entire south by southwest speakers page with hCard markup added to it, then give you back a vCard file. This is actually a pretty sizable vCard file. Anyone want to take a guess, without actually counting obviously on the page, how many south by southwest speakers there are this year? About 400. So basically with a click of one link (now we'll see if this works) you can have all 388 speakers added to your address book along with their URLS. So say you saw a speaker and you were like, &amp;quot;Oh what was that that I saw? You know what was her name?&amp;quot; You can go check it out later on. I find this personally very handy just because I'm horrible at remembering names. Those of you who've met me probably know this so I find this a useful tool for that respect. Just with one simple addition like that. And the nice thing is that should the list of south by southwest speakers change like, for example, on this panel we had two more speakers than originally scheduled, they can simply update that one page, the speakers page, and not worry about &amp;quot;Oh, there's another side file I need to update&amp;quot; or whatever. And because it's all just hCard markup then just re-import and get all the new stuff in there directly. That's a lot of people.&lt;br /&gt;
&lt;br /&gt;
:'''continues on [[events/2006-03-13-sxsw-microformats-transcript-02]]'''&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-examples-in-wild-fr&amp;diff=34599</id>
		<title>hcard-examples-in-wild-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-examples-in-wild-fr&amp;diff=34599"/>
		<updated>2008-11-18T00:00:59Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Nouveaux exemples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;Exemples de hCards dans la jungle&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Cette page est une section '''informative''' de la [[hcard-fr|spécification hCard]].&lt;br /&gt;
&lt;br /&gt;
Les sites suivants ont publié des [[hcard-fr|hCards]] et sont par conséquent un endroit merveilleux pour quiconque cherchant des exemples &amp;quot;dans la jungle&amp;quot; pour essayer de parser, indexer, organiser, etc.&lt;br /&gt;
&lt;br /&gt;
Si les personnes ou les sociétés sur votre site sont balisées avec hCard (même simplement votre propre information de contact), sentez-vous à l'aise pour les ajouter en haut de cette liste. Assurez-vous svp d'inclure au moins une URL vers une page sur votre site qui comprenne un véritable balisage [[hcard-fr|hCard]]. Les exemples ajoutés sans une URL vers une page avec un balisage hCard pourront être supprimés.&lt;br /&gt;
&lt;br /&gt;
Vous voulez démarrer par écrire une [[hcard-fr|hCard]] ?  Utilisez l'application  [http://microformats.org/code/hcard/creator hCard creator] pour écrire quelque information de contact et la publier, ou suivez les [[hcard-authoring-fr|astuces de publication hCard]] pour ajouter un balisage hCard à votre page contact actuelle.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Boutons==&lt;br /&gt;
Vous pouvez utiliser ces boutons sur les pages ayant des hCards. Voir [[buttons-fr#hCard|boutons hCard]] pour les ajouts récents.&lt;br /&gt;
&lt;br /&gt;
* http://www.crowley.nl/images/hcard.png (miroir : http://www.davidjanes.com/images/mf_hcard.png)&lt;br /&gt;
* http://rbach.priv.at/2006/buttons/hcard.png&lt;br /&gt;
* http://www.boogdesign.com/images/buttons/microformat_hcard.png&lt;br /&gt;
* Bouton-powered-CSS, comme justifié sur [http://re-run.com/about/microformat-badges les badges microformat @ re-run]&lt;br /&gt;
&lt;br /&gt;
==Exemples pour se conformer ==&lt;br /&gt;
=== Nouveaux exemples ===&lt;br /&gt;
&lt;br /&gt;
SVP ajoutez de nouveaux exemples '''en haut''' de cette section de façon qu'ils puissent être révisés ! SVP revenez vérifier quelques jours après pour voir si quelqu'un aurait trouvé quelque problème avec l'exemple fourni.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
&lt;br /&gt;
SVP ajoutez les nouveaux exemples *en haut de cette section*&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
* [http://www.allogarage.fr/ Allogarage] - Comparatif des garages automobiles en France. Plus de 13 000 garages déjà référencés et disponibles au format hCard avec géolocalisation, exemple pour le garage &lt;br /&gt;
[http://www.allogarage.fr/garages/details-garage-GRAND-GARAGE-PELLEPORT-10239.html GRAND GARAGE PELLEPORT].&lt;br /&gt;
* [http://MyVcf.com MyVcf.com] affiche les infos au format hcard et permet de les télécharger au format vcard.&lt;br /&gt;
* Les Explorateurs du Web ont publié une hCard sur la [http://explorateursduweb.com/blog/about/ page contact] avec une hCard&lt;br /&gt;
* [http://www.areaguides.net areaguides.net] utilise le marquage hCard pour toutes les adresses sur le site.&lt;br /&gt;
** Exemples : 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] à Washington, D.C. utilise maintenant hCard pour les adresses sur toutes les pages.  Signalons aussi, que les pages de bio du personnel de la bibliothèque utilisent hCard comme  [http://www.ll.georgetown.edu/staff/bio.cfm?id_no=105 here] and [http://www.ll.georgetown.edu/staff/bio.cfm?id_no=32 ici].&lt;br /&gt;
* [http://www.mtgd.gov.md/ Le Ministère des Transports et Industries de la Route] de la République de Moldavie. Le premier site gouvernemental moldave utilisant des hCards sur les [http://www.mtgd.gov.md/ministrul/ pages du personnel], [http://www.mtgd.gov.md/subdiviziunile-ministerului/ page des sous-divisions] et dans le pied de page de chaque page (contact) &lt;br /&gt;
**Seules les versions en [http://www.mtgd.gov.md/ roumain] et [http://www.mtgd.gov.md/ru/ russe] sont disponibles à cette heure&lt;br /&gt;
* [http://www.auctionlink.com.au/ AuctionLink] utilise hCard pour les enregistrements d'enchères comme [http://www.auctionlink.com.au/Auctioneers/Auctioneer/Cam_Brown_Auctions/ Cam Brown Auctions] (utilise aussi hCalendar)&lt;br /&gt;
* [[User:WebOrganics|User WebOrganics]] Le Wiki Microformats wiki a des hCards sur ses pages utilisateurs.&lt;br /&gt;
* [http://www.ontwerpkliniek.nl Ontwerpkliniek - Bureau voor Visuele Identiteit] utilise l'information de contact hCard sur la page d'accueil et la page contac.&lt;br /&gt;
* [http://www.instantdes.com L'instant des...] utilise le format hCard pour tous les photographes publiés sur ce photoblog collectif.&lt;br /&gt;
* le blog de groupe mediadesigner [http://www.pixeltapete.de Pixeltapete] utilise la hCard pour l'information de contact des pages des auteurs d'[http://www.pixeltapete.de/alex Alex] et [http://www.pixeltapete.de/carsten Carsten] et aussi  [http://www.pixeltapete.de/kontakt imprint]. [http://www.pixeltapete.de Pixeltapete] utilise son propre  [http://www.pixeltapete.de/2007/11/hcard-sidebarwidget-fuer-wordpress/ widget hcard] pour les barres latérales wordpress. &lt;br /&gt;
* [http://www.thorsten-ott.de Thorsten Ott] utilise le format hCard pour la section contact de son résumé en ligne.&lt;br /&gt;
* [http://rosebleed.net/ Rosebleed] supporte [[hCard user profiles-fr|les profils utilisateurs hCard]] - votre URL profil est &amp;lt;nowiki&amp;gt;http://rosebleed.net/users/profile.php/&amp;lt;/nowiki&amp;gt; suivi de votre nomutilisateur, par ex. [http://rosebleed.net/users/profile.php/silvermoon82 silvermoon82].&lt;br /&gt;
**'''Réparé''' les profils sont marqués explictement 'n' chaque fois que possible, autrement il l'omet&lt;br /&gt;
* [http://www.whitepages.com WhitePages.com] Désormais WhitePages.com a implémenté hCard sur toutes ses listes. Plus de 120 millions de hCards ! Comprend l'information professionnelle.&lt;br /&gt;
* [http://www.warmoth.com Warmoth Guitar Products] présente l'information hCard à deux endroits,  [http://www.warmoth.com/customerservice/customer.cfm?fuseaction=order How To Order] et tout le [http://www.warmoth.com/catalog Warmoth E-Store]&lt;br /&gt;
* [http://www.bbc.co.uk/worldservice/bangladeshboat BBC World Service Bangladesh River Journey] un mashup de réseau social, avec hCard &amp;amp; d'autres microformats. Voir le [http://dharmafly.com/blog/bangladeshboat blog de discussion Dharmafly].&lt;br /&gt;
* [http://www.amants-du-chocolat.net/ ACCP :Les Amants du Chocolat de la Couronne Parisienne] utilise hCard sur sa page de contact et celles des fabricants de chocolats qu'ils ont dégustés.&lt;br /&gt;
* [http://www.accountviewsoftware.nl/ AccountviewSoftware.nl] fait usage de hCards pour le répertoire des distributeurs  [http://www.accountviewsoftware.nl/dir/ (répertoire)]&lt;br /&gt;
* [http://www.crystalvision.co.il/ CrystalVision] utilise hCard sur sa page contact et dans le pied de page sur tout le site.&lt;br /&gt;
* [http://www.indigoclothing.com/ Indigo Clothing] une société de t-shirt basée à Londre utilise hCard avec le lien Technorati &amp;quot; Add to Address Book&amp;quot; sur tout le site dans le pied de page.&lt;br /&gt;
* [http://www.joshuamcginnis.com Joshua McGinnis] utilise hCard pour afficher son information de contact aux clients potentiels.&lt;br /&gt;
* La [http://www.myaffordablemarketing.com/contact.php page contact de Affordable Marketing Solutions] utilise hCard avec Technorati &amp;quot;Add to Address Book&amp;quot;.&lt;br /&gt;
* [http://www.bo.ingv.it/contents/INGV-Bologna/Staff.html INGV Bologna] a implémenté les hCards pour les membres du personnel, marquées sous des lignes de table HTML (l'[[include-pattern-fr|include-pattern]] a aussi été utilisé pour ajouter le nom de l'organisation et le numéro de fax à chaque hCard).&lt;br /&gt;
* [http://ideance.net/cv.php Sébastien Delorme] utilise une hCard sur son CV en ligne. Il a également créé une [http://ideance.net/lab/hCard/ hCard de Noah Bennet] (personnage d'une série américaine) dans le cadre d'un concours&lt;br /&gt;
* [http://www.lefora.com Lefora] est un site gratuit d'hébergement de forums. Chaque profil utilisateur contient une hCard. (Exemple de forum pour tester :[http://funstuff.lefora.com funstuff.lefora.com])&lt;br /&gt;
* [http://www.handlairsystems.com H&amp;amp;L Air Systems] utilise hCard avec un lien Technorati vers le Carnet d'Adresses sur toutes les pages de contact.&lt;br /&gt;
* [http://theultimates.whitepages.com WhitePages.com] Une version spéciale de whitepages.com a toutes ses listes marquées avec hCard.&lt;br /&gt;
* [http://piermontweb.com/contact/ Piermont Web Design] utilise hCard sur sa page contact.&lt;br /&gt;
* [http://www.ie.asm.md/en/ The Institute of Power Engineering] de l'Académie des Sciences de Moldovie. Premier site moldave utiisant des hCards sur les pages du staff, par ex. [http://www.ie.asm.md/employees/oleschuk-valentin/]&lt;br /&gt;
**Aussi en russe : [http://www.ie.asm.md/employees-ru/sit-michail-lvovich/] et en roumain : [http://www.ie.asm.md/angajati/chiorsac-mihail/]&lt;br /&gt;
* Le bateau [http://styrheim.com/test/leonid.html Leonid Miloslavskiy] a fait escale dans l'Atlantique Nord&lt;br /&gt;
* [http://richi.co.uk/blog/2005/12/structured-blogging.html Richi Jennings] a placé son essai&lt;br /&gt;
*[http://oberrycavanaugh.com O'Berry|Cavanaugh] a une hCard d'organisation dans le pied de page de chaque page tout comme des hCards individuelles sur la page [http://oberrycavanaugh.com/team.php &amp;quot;Team&amp;quot;].&lt;br /&gt;
* [http://fortisgc.com Fortis General Counsel], par ex. le [http://fortisgc.com/joyce_lan_kim.html profil de Joyce Kim], utilise hCard pour l'information de profil et de contact.&lt;br /&gt;
* [http://peryplo.com Peryplo.com], par ex. [http://peryplo.com/personal/7e6786e711c6d051a39a1b7085f34955 Page Echantillon], utilise hCard pour les Hôtels, les endroits gastronomiques et les services pour touristes.&lt;br /&gt;
* [http://www.navitraveler.com/places/629/ NaviTraveler], par ex. [http://www.navitraveler.com/places/629/Lincoln_Memorial.html Lincoln Memorial], comprenant un [[geo-fr|Geo]].&lt;br /&gt;
** Réponse en 12 heures à une demande de soutien-  [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* [http://corewar.atspace.com/about.html sfghoul] a marqué son information de contact avec [[hcard-fr|hCard]]&lt;br /&gt;
* [http://www.zaadz.com Zaadz] utilise [[hcard-fr|hCard]] et [http://gmpg.org/xfn XFN] pour ses amis sur une page profil des utilisateurs.&lt;br /&gt;
*[http://www.xoxiety.com/about.html Xoxiety] utilise les hCards sur sa page &amp;quot;about&amp;quot;, en liant les données à partir d'un bloc intérieur de texte.&lt;br /&gt;
*[http://yedda.com Yedda] - Yedda fournit des identités basées sur hCard sur tous les profils des personnes&lt;br /&gt;
*[http://openid.ne.jp OpenID.ne.jp] Premier service de fournisseur OpenID au Japon (日本語). Chaque page personnelle OpenID (par ex :[http://eouia.openid.ne.jp http://eouia.openid.ne.jp]) est marquée avec hCard. Et il existe aussi une hCard de société sur chaque page.&lt;br /&gt;
* [http://www.goldenglovepromotions.com/ Golden Glove Promotions] a utilisé des hcards sur le pied de page de chaque page pour l'information de contact.&lt;br /&gt;
* Les sites d'actualités Australiens &amp;quot;The Australian&amp;quot; et &amp;quot;Australian IT&amp;quot; utilisent hCard sur leurs pages de contacts : [http://www.theaustralian.com.au/contactus The Australian (contact us)] et [http://www.australianit.news.com.au/contactus Australian IT (contact us)]&lt;br /&gt;
* [http://www.thekiwiholiday.com/ The Kiwi Holiday] utilise des hCards pour les [http://www.thekiwiholiday.com/view-hostels Hôtels en Nouvelle Zélande], les  [http://www.thekiwiholiday.com/view-restaurants Restaurants en Nouvelle Zélande] et les  [http://www.thekiwiholiday.com/view-activities Activités en Nouvelle Zélande]. Fournit aussi une fonctionnalité hCard &amp;quot;download to address book&amp;quot; sur les pages de détails des listes, par ex. le Restaurant [http://www.thekiwiholiday.com/restaurant/tonys-steak Tonys Steak]&lt;br /&gt;
* [http://www.serviceworksglobal.com/pages/contact-us.php Service Works Global] utilise des hcards sur la page &amp;quot;contactus&amp;quot; et dans le pied de page du site.&lt;br /&gt;
* [http://www.qcindustries.com/ QC Industries Conveyors] utilise des hcards pour stocker l'information de contact dans le pied de page du site et dans ses [http://www.qcindustries.com/news/press-releases/ communiqués de presse].&lt;br /&gt;
* [http://www.confuciusinstitute.ac.uk/ The Confucius Institute for Scotland à l'Université d'Edinbourg] a utilisé une hCard pour stocker l'information de contact dans le pied de page de la page.&lt;br /&gt;
* [http://admnj.com/ Affiliated Direct Mail] est une société de marketing direct dans le New Jersey qui a son information de contact en format hCard.&lt;br /&gt;
* [http://www.golfdigest.com/ Golf Digest] supporte maintenant hCard dans des pages de [http://www.golfdigest.com/courses/places Recherche de Cours]. [http://www.golfdigest.com/courses/places/2483 exemple]&lt;br /&gt;
* [http://dev.opera.com/authors/ Dev Opera] Le site des développeurs d'Opera utilise des hCards sur les pages de détails des auteurs.&lt;br /&gt;
* [http://www.alexandrebalmes.fr/blog Le blog d'Alexandre BALMES incluant hCard]&lt;br /&gt;
* [http://annuaire.handica.com/ Annuaire du handicap Handica.com] incluant des hCards ([http://annuaire.handica.com/resultats.php?act=10681587434&amp;amp;sel_name=handica] Exemple) &lt;br /&gt;
* [http://chrischerry.name/blog/contact/ la page contact de Chris Cherry avec sa hCard]&lt;br /&gt;
* [http://www.kiteboarder.com.au/php/search.php www.kiteboarder.com.au] Un nouveau portail australien de kiteboarding. Les microformats ont été utilisés de façon que les utilisateurs puissent exporter les magasins &amp;lt;s&amp;gt;directement vers outlook&amp;lt;/s&amp;gt;. J'ai pu apprendre les microformats durant la conférence Media 2007 à Londres - Auteur : Damien King&lt;br /&gt;
* [http://krevi.dk/ KREVI] Un institut de recherche Danois. Utilisant la hCard dans le pied de page de chaque page et sur la liste du personnel. C'est le premier site web Danois connu du secteur public à utiliser les microformats.[http://krevi.dk/om-krevi/organisation/medarbejdere exemple liste du personnel]&lt;br /&gt;
* [http://www.hss.ed.ac.uk/web-team/ Le site de l'équipe web du &amp;quot;College of Humanities and Social Science&amp;quot;] à l'Université d'Edinburgh utilise une hCard dans le pied de page de chaque page.&lt;br /&gt;
* [http://www.theglobeandmail.com/ globeandmail.com] Le journal national du Canada utilise une hCard pour son information de contact.&lt;br /&gt;
* [http://www.logisteam.pl/ Krzysztof Rucinski] utilise une hCard pour ses détails de contacts sur la page [http://www.logisteam.pl/keylogger.kontakt.html contact Logisteam].&lt;br /&gt;
* Creation design &amp;amp; marketing a des hCards sur le site, y compris la page  [http://www.creation.uk.com/contact/ contact], les [http://www.creation.uk.com/company/leigh-scott/ pages profils de la société] et les  [http://www.creation.uk.com/news/2007/06/06/easy-money/#comments-view commentaires sur les articles]&lt;br /&gt;
* &amp;lt;s&amp;gt;Wikipedia a désormais un gabarit, [http://en.wikipedia.org/wiki/Template:Hcard-geo hcard-geo], pour les hCards dans la ligne avec les coordonnées, tel que celui présent sur [http://en.wikipedia.org/wiki/Engine_Arm Engine Arm] &amp;lt;/s&amp;gt;&lt;br /&gt;
* [http://www.corissia.com Corissia Group Hotels en Crète Grèce] a inclus l'information de contact sous une hCard sur le pied de page de chaque page du site web. Il existe aussi une implémentation multilingue.&lt;br /&gt;
* [http://zucchetti.co.uk/2007/03/06/simple-address-formatting-solution/ Laura Zucchetti] illustre une solution de mise en forme simple d'adresse sous une hCard et balisée dans une liste de définition.&lt;br /&gt;
* [http://www.feike.de/Kontakt.html Feike Contact] a une hcard en haut de la page.&lt;br /&gt;
* [http://www.londondrum.com/ London Drum] utilise un hébergement global de microformats - il y a des hcards et des geos sur les pages des hôtels, les événements sont écrits en format hCalendar sur la page d'accueil, et vous pouvez aussi trouver quelques critiques (comme sur la la page de [http://www.londondrum.com/accommodation/athenaeum.php l'Hôtel Athenaeum])  &lt;br /&gt;
* [http://www.regels-stadskanaal.nl/ Regelingenbank Stadskanaal] a une hCard sur chaque page, contenant aussi l'information-Geo.&lt;br /&gt;
* [http://www.tomstone.se Tom Stone - Trollkarl] a une hCard dans le pied de page de chaque page du site.&lt;br /&gt;
* La page d'accueil de [http://www.rolandinsh.lv/ Rolands Umbrovskis] a une hcard dans la  [http://www.rolandinsh.lv/?ro=contacts page contact] et toutes les autres pages avec l'information de contact.&lt;br /&gt;
* [http://www.epiphanysolutions.co.uk/ Epiphany Solutions Ltd] utilise une hcard sur sa page &amp;quot;contact us&amp;quot;. Nous avons l'intention d'utiliser la hCard sur chaque page si c'est implémeté avec succès, associé à un lien vers le générateur de vCard Technorati.&lt;br /&gt;
* [http://twitter.com Twitter] utilise hCard pour l'information utilisateur (associé à plusieurs [http://ihack.us/2007/05/14/twitter-gets-microformatted/ autres microformats]) &lt;br /&gt;
* [http://www.bendodson.com/developer/ Ben Dodson] utilise une hCard pour sa carte de visite sur chaque page de ce site tout comme il utilise les hCards pour toutes les relations XFN dans ses blogrolls.&lt;br /&gt;
*[http://www.pats.ua.ac.be/group Les Membres du Groupe PATS] uses hCard to mark up member contact information. &lt;br /&gt;
*[http://couchsurfing.com CouchSurfing] a une information limitée dans la hCard disponible sur les profils des membres (comme celui de [http://www.couchsurfing.com/people/guaka Guaka]). &lt;br /&gt;
*Wikipedia-UK (Ukranian) &lt;br /&gt;
** En cours de démarrage sur les biographies par ex. [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] utilise une hCard sur la page d'accueil de son , [http://christophertcressman.com christopher t cressman]. &lt;br /&gt;
* [http://kpumuk.info Dmytro Shteflyuk] utilise une hCard sur ses pages [http://kpumuk.info/contact/ contact] et [http://kpumuk.info/curriculum-vitae/ curriculum vitae]. &lt;br /&gt;
*Wikipedia-EN &lt;br /&gt;
**démarrage sur les articles traitant des personnes, par exemple  [http://en.wikipedia.org/wiki/Albert_einstein Albert Einstein]. La nature de Wikipedia signifie qu'il existe un grand nombre de gabarits à mettre à jour (celui d'Albert est en anglais &amp;quot;infobox scientist ; il existe aussi &amp;quot;infobox military people&amp;quot;, &amp;quot;infobox musician&amp;quot; et ainsi de suite, presque à l'infini). La date d'anniversaire n'est seulement incluse que si elle est saisie en utilisant un gabarit date de naissance, pas sous forme de texte brut.  &lt;br /&gt;
** commencé à initialiser les articles sur les lieux, par exemple le gabarit sur les gares de trains anglaises, par ex. [http://en.wikipedia.org/wiki/Birmingham_New_Street Birmingham New Street station] (comprend Geo) ; et les villes, par ex. [http://en.wikipedia.org/wiki/New_York_City New York]. Voir ci-dessus pour la remarque sur les gabarits de Wikipedia. &lt;br /&gt;
** N'importe quel éditeur de Wikipedia souhaitant aider à mettre à jour les gabarits devrait regarder le [http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Microformats projet microformat de Wikipedia] ; [http://en.wikipedia.org/wiki/Category:Templates_generating_hCards les gabarits Wikipedia générant des hCards]&lt;br /&gt;
**Malheureusement, [http://en.wikipedia.org/w/index.php?title=Template:Infobox_Protected_area&amp;amp;diff=prev&amp;amp;oldid=152308153 d'autres éditeurs sont déjà en train de briser quelques-unes des implémentations sur Wikipedia] ; par ex. [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 retrait des attributs &amp;quot;region&amp;quot;]&lt;br /&gt;
* Le site de [http://www.bayofislands.net/ Bay of Islands] a implémenté hCard sur toutes ses pages, par ex : [http://www.bayofislands.net/accommodation/backpackers/saltwater-lodge/ Saltwater Lodge] &lt;br /&gt;
* [http://people.cs.uchicago.edu/~mpschaef/index.html Merrick Schaefer] utilise hCard sur sa page personnelle pour son information de contact.&lt;br /&gt;
*Wikipedia-EN - démarrage par exemple sur les gabarits des gares britanniques, par ex. [http://en.wikipedia.org/wiki/Birmingham_New_Street Birmingham New Street station] (inclut le microformat geo).&lt;br /&gt;
* Christian Hess (de San José, Costa Rica) a une hcard sur sa [http://www.hess-cr.com home page], ses pages [http://www.hess-cr.com/utilidades/correo.shtml#postal contact] et [http://www.hess-cr.com/secciones/curriculum/datos.shtml personal résumé] (toutes en espagnol). Il recommande aussi d'utiliser l'extension [https://addons.mozilla.org/es-ES/firefox/addon/4106 Operator] dans Firefox pour les vérifier.&lt;br /&gt;
* [http://www.anisfield-wolf.org/ The Anisfield-Wolf Book Awards], conçu spécifiquement pour reconnaître les travaux résolvant des problèmes de racisme et de diversité, utilise hCard pour les bios des auteurs des [http://www.anisfield-wolf.org/Winners/PastWinners/ 'past winners'].&lt;br /&gt;
* [http://www.buy-our-honeymoon.com/ Buy Our Honeymoon], un [http://www.buy-our-honeymoon.com/usa enregistreur de liste de mariage] utilise hCard dans sa page [http://www.buy-our-honeymoon.com/contact Contact Us].&lt;br /&gt;
* '''Le Webmestre du W3C ''' [http://www.w3.org/People/Jean-Gui/ Jean-Guilhem Rouel] a maintenant une hCard.&lt;br /&gt;
* [http://source.ibegin.com/ iBegin Source] - Plus de 10.8 millions d'entreprises ont leur information balisée avec hCard. Exemple : [http://source.ibegin.com/california/adelanto/aeronautical-supplies/general-atomics-9779-yucca-rd-1.html General Atomics]&lt;br /&gt;
* [http://claimid.com/jeanchristophe Jean-Christophe Capelli] sur une  [http://www.wikiservice.at/fractal/wikidev.cgi?FR/PinkoMarketing/JeanChristopheCapelli page personnelle] d'une branche-wiki dédiée à construire un groupe francophone sur le pinkomarketing. Aidé par Christophe Ducamp, microformateur de tous les instants.&lt;br /&gt;
* [http://www.lounews.com/ The Louisville News Company] utilise hCard pour l'information de contact sur tout le site pour la société et le développeur du site.&lt;br /&gt;
* [http://cloudislands.com/contact.php Cloud Islands] utilise hCard pour l'innformation de contact.&lt;br /&gt;
* [http://www.international.unt.edu UNT International] utilise hCard pour baliser l'information de contact sur tout le site (voir particulièrement [http://www.international.unt.edu/offices/ieli/people/instructors/profiles la liste des profils des instructeurs IELI])&lt;br /&gt;
* [http://www.giraffo.de giraffo.de] a différentes hCards sur chaque page (+ geo dans &amp;quot;kontakt&amp;quot;)&lt;br /&gt;
* [http://www.enap.com ENAP, Inc.] liste le contact de la DRH en format hCard sur la page  [http://www.enap.com/career.aspx Career Opportunities].&lt;br /&gt;
* Les listes des panélistes et participants à [http://sxsw07.conferenceer.com/people Conferenceer]  durant la conférence interactive 2007 South de Southwest est au format hCard.&lt;br /&gt;
* [http://news.stanford.edu Stanford News] (Redesign) hCard dans le pied de page sur chaque page tout comme le balisage pour chaque membre du staff sur la page Staff.&lt;br /&gt;
* [http://www.wikiservice.at/fractal/wikidev.cgi?FR/EveMoreau Valérie-Eve Moreau] a bricolé une hCard sur sa page personnelle-wiki.&lt;br /&gt;
* [http://en.wikipedia.org/wiki/St_George%27s_Minster%2C_Doncaster St George's Minster, Doncaster, sur Wikipedia] &lt;br /&gt;
* AOL Journals publie des hCards pour les auteurs. [http://journals.aol.com/carowill/whats-happening Example] &lt;br /&gt;
* La [http://ian.mckellar.org/ home page] de Ian McKellar est une hCard stylée pour ressembler à une carte de visite professionnelle.&lt;br /&gt;
* [[Christophe Ducamp]] sur une  [http://www.wikiservice.at/fractal/wikidev.cgi?FR/MicroFormats/ChristopheDucamp page personnelle] d'une branche-wiki dédié à construire un groupe francophone sur les microformats. Aidé par [http://www.wikiservice.at/fractal/wikidev.cgi?LaurentLunati Laurent Lunati] pour le design, tout le monde peut la corriger en [http://www.wikiservice.at/fractal/wikidev.cgi?action=edit&amp;amp;id=FR/MicroFormats/ChristopheDucamp éditant la page].&lt;br /&gt;
* [http://www.matthewwest.co.uk Matthew West] a une hCard sur sa page [http://www.matthewwest.co.uk/email contact].&lt;br /&gt;
* Le portofolio du FreeLance en développement web [http://www.webmaster.waw.pl Paweł Wrzosek] &lt;br /&gt;
*[http://thibeaultstudios.com Thibeault Studios] a une hCard d'entreprise dans le pied de page sur chaque page tout comme des hCards individuelles sur la page [http://thibeaultstudios.com/contact_us.php Contact].&lt;br /&gt;
*Le balisage hCard [http://www.stanford.edu/ Stanford.edu] est inclus dans le pied de page de la page d'accueil et toutes les pages subséquentes dans le répertoire /home.&lt;br /&gt;
*[http://openid.ne.jp OpenID.ne.jp] Premier fournisseur de service OpenID au Japon (日本語). Chaque page personnelle OpenID (par ex :[http://eouia.openid.ne.jp http://eouia.openid.ne.jp]) est balisée sous hCard. Et il y a aussi une hCard de société sur chaque page.&lt;br /&gt;
* L'adresse de [http://www.qwertycars.co.uk/garages/mechanics-near-tadworth.aspx UK Car Garages] au Royaume Uni au format hCard.&lt;br /&gt;
* La page About Us de [http://www.columbiaautomation.com/sub/contact.php Columbia Automation] a balisé chaque employé sous une hCard et dispose aussi d'une hCard de société avec l'information geo.&lt;br /&gt;
* [http://www.pointermix.com Pointermix Design] utilise le format hCard.&lt;br /&gt;
* La page contact de [http://eight6.com/contact/ eight6] utilise le format hCard&lt;br /&gt;
* Les listes d'annonces de [http://www.raveaboutit.com.au Rave About It] utilisent le format hCard.&lt;br /&gt;
* La page de l'équipe d'[http://optics.org/cws/Contact/OurTeam.do optics.org].&lt;br /&gt;
* La première tentative de [http://www.robcottingham.ca/contact Rob Cottingham] dans les microformats est une hCard sur la page contact de son blog personnel (Il a été inspiré par la présentation de Tantek Çelik lors de Web Directions North 2007.)&lt;br /&gt;
* [http://redmonk.net/about-this-site Steve Ivy] - hcard sur la page &amp;quot;about&amp;quot;, inclut les suspects usuels + XFN sur les 'url's, photo, et geo.&lt;br /&gt;
* L'[http://seattleu.edu Université de Seattle] utilise hCard sur sa page d'accueil et la plupart des pages qui partagent un gabarit officiel.&lt;br /&gt;
* [http://www.josemarti.waw.pl L'école secondaire José Marti XXII à Varsovie] inclut hCard sur les sections Contact et A propos de l'auteur &lt;br /&gt;
* [http://www.jaama.co.uk Jaama] a mis ses détails de société  sous une vcard téléchargeable sur  page [http://www.jaama.co.uk/Contact.aspx contact]&lt;br /&gt;
* [http://3amproductions.net 3AM Productions] a les détails de société balisés sous hCard sur tout le site et particulièrement pour [http://3amproductions.net/jason.php Jason] et  [http://3amproductions.net/gilbert.php Gilbert] &lt;br /&gt;
* [http://berlin.barwick.de/index.html Berlin Guide] est en train de convertir son balisage d'adresses en hCard, par ex. [http://berlin.barwick.de/shopping/kadewe-kaufhaus-des-westens.html KaDeWe] &lt;br /&gt;
* [http://www.xlntads.com XLNTads] a son information de contact balisée en hCard, tout comme son plan de développement balisé en hCalendar&lt;br /&gt;
* [http://derrick.pallas.us Derrick Pallas] dit aux personnes de le chercher là.&lt;br /&gt;
* [http://bluemonkcreative.com/contact/ Bill Turner] ajoute une hCard à la page contact de son site web de freelance.&lt;br /&gt;
* [http://www.oppenheim.com.au/ Le blog de James Oppenheim] inclut une hCard de l'auteur dans la ligne dans le pied de page de chaque page et aussi sur la page de contact.&lt;br /&gt;
* [http://steinhardt.nyu.edu/ NYU Steinhardt] a [http://steinhardt.nyu.edu/faculty_bios/list/Faculty plus de 240 bios de faculté balisées], par ex. [http://steinhardt.nyu.edu/faculty_bios/view/Susan_Murray].&lt;br /&gt;
* [http://www.boogdesign.com/aboutus.html boogdesign.com] a ajouté une syntaxe hCard sur la page de contact.&lt;br /&gt;
* [http://www.gptg.org GreatPlaceToGolf], hCards pour les clubs de golf autour du monde, par exemple [http://www.gptg.org/club/12/]. Utilisation de hCard pour les joueurs et les terrains de golf, geo pour les coordonnées des terrains, et hAtom. Réalisé par FredericLepied&lt;br /&gt;
* [http://www.economie-poitiers.fr/ Le Service Développement Economique de la Communauté d'agglomération de Poitiers] a utilisé une hCard pour son information de contact en bas de page.&lt;br /&gt;
* [http://www.lesgenets.com/ Le camping des Genêts à l'ile de Ré] a utilisé une hCard pour inclure ses informations de contact.&lt;br /&gt;
* [http://www.entrepots-lafond.fr/ Le site des entrepots Lafond] a publié ses informations de contact à l'aide d'une hCard.&lt;br /&gt;
* [http://www.walkerfineart.com Walker Fine Art Gallery] La plupart des pages contiennent une hCard en pied de page.&lt;br /&gt;
* [http://www.brdatasystems.com.au/contact-us.html B&amp;amp;R Data Systems] est une hCard d'organisation. Nous avons aussi utilisé l'outil technorati pour la télécharger sous une vCard, ce qui je pense est utile pour une entreprise.&lt;br /&gt;
* [http://chewbittel.com/contact.php Chew Bittel Assoc., Inc.] est une hCard d'organisation. Il y a des abbr's dedans et un champ téléphone dupliqué et quelques choses cachées. J'essaie vraiment de pousser les choses à leur limite ici. Ce devrait être un bon test pour votre parseur.&lt;br /&gt;
* la [http://redmonk.net/about-this-site/ page about] de [[User:Steve Ivy|Steve Ivy]] a sa hCard, comprenant un lien vers son fil de contact Technorati pour laisser les visiteurs télécharger son information de contact.&lt;br /&gt;
* La hCard de Scott Allan Wallick est [[User:ScottWallick|sa page utilisateur]] et sur son blog, [http://www.plaintxt.org/about/2/ plaintxt.org]&lt;br /&gt;
* La hCard de [[User:Bob_Jonkman|Bob Jonkman]] '''sur ce 'wiki'''' &lt;br /&gt;
* [http://thetenwordreview.com The Ten Word Review] contient simplement des critiques de dix mots. Toutes les critiques sont balisées sous des [[hreview-fr|hReviews]] et l'information utilisateur est balisée sous hCard.&lt;br /&gt;
* Le [http://www.westmidlandbirdclub.com/ West Midland Bird Club] (Club d'oiseau d'intérieur occidental d'Angleterre) utilise hCard sur sa [http://www.westmidlandbirdclub.com/ home page], son [http://www.westmidlandbirdclub.com/diary/ annuaire d'événements], sa page [http://www.westmidlandbirdclub.com/club/contact.htm contact], sa page de [http://www.westmidlandbirdclub.com/site/links.htm liens], la  [http://www.westmidlandbirdclub.com/club/older.htm liste des anciens] et dans un pied de page qui est graduellement implémenté sur tout le site.&lt;br /&gt;
* OffshoreAgile.com, un sous-site de Starsoft Development Labs, utilise hCard dans les sections [http://www.offshoreagile.com/company/contact/ Contacts Starsoft] et 'Media Inquiries'.&lt;br /&gt;
* T-Mobile utilise hCard pour la [http://t-mobilepressoffice.co.uk/press/contact-details/ page T-Mobile UK Press Contact Details], tout comme pour quelques-uns de ses derniers communiqués de presse.&lt;br /&gt;
* La division de publication 'Psychology Press' et 'Routledge's Behavioral' a implémenté des pages contact sur 17 de ses sites web (exemple sur la page contact de [http://www.clinicalpsychologyarena.com/contact/ Clinical Psychology Arena])&lt;br /&gt;
*[http://72ppi.us 72ppi], utilise hCard dans le pied de page.&lt;br /&gt;
*[http://www.csarven.ca Sarven Capadisli] utilise hCard dans tout le site (y compris les commentaires utilisateurs dans les articles).&lt;br /&gt;
* [https://www.urbanbody.com/information/contact-us Urban Body Men's Clothing] utilise hCard pour les adresses des magasins et hCalendar pour les horaires d'ouverture.&lt;br /&gt;
* [http://www.iqair.us/ IQAir North America], utilise hCard pour l'information de contact.&lt;br /&gt;
* [http://www.infoiasi.ro/ Le site web de la Faculté des Computer Science], &amp;quot;A. I. Cuza&amp;quot; University Ia&amp;amp;#351;i, Romania utilise hCard pour chaque membre du staff.&lt;br /&gt;
* [http://www.finds.org.uk/ The Portable Antiquities Scheme au British Museum] a des hCards ajoutées dans le pied de page de chaque page et vers les section des contacts. En train de travailler pour en ajouter plus.&lt;br /&gt;
* Dans [http://www.ideasfornet.com/ IdeasForNet.com - the ideas repository] des hCards ont été implémentées partiellement dans le pied de page de chaque page, et de façon plus compréhensive dans les pages contact et à propos.&lt;br /&gt;
* Le [http://www.cst.ed.ac.uk/ Center of Canadian Studies] à l'Université d'Edinburgh utilise les hCards pour l'information de contact dans le pied de page du site.&lt;br /&gt;
* [http://www.theatrestudies.llc.ed.ac.uk/ Theatre Studies: European Theatre] à l'Univiersité d'Edinburg utilise les hCards pour l'information de contact sur sa page d'accueil.&lt;br /&gt;
* [http://www.carolinemockett.com/design/about.aspx Caroline Mockett] a une hCard sur sa page About Me&lt;br /&gt;
* [http://wait-till-i.com Christian Heilmann] a une adresse en pied de page utilisant hCard &lt;br /&gt;
*[http://www.audience-response-rentals.com/ Audience Response System Rentals] utilise hCard comme un popup dans l'aire d'accessibilité du site (en bas à droite) pour un copier/coller facile de l'adresse par ses clients.&lt;br /&gt;
* [http://www.fischsolutions.com/ Fisch Internet Solutions] utilise une hCard embarquée et une vCard pour fournir aux clients un moyen facile de les contacter sur leur section [http://fischsolutions.com/contactus.html Contact Us] du site web. &lt;br /&gt;
* [http://www.micatholicconference.org/ Michigan Catholic Conference] utilise hCard pour l'information de contact dans la barre latérale.&lt;br /&gt;
* [http://www.adambunn.co.uk/ Adam Bunn] fournit les détails de contact dans la barre latérale en utilisant hCard.&lt;br /&gt;
* [http://www.belkin.com/pressroom/releases/uploads/10_10_06NotebookExpansionDock.html Les communiqués de presse de Belkin] utilisent les hCards pour les contacts de Relations Publiques et les bureaux. &lt;br /&gt;
* [http://mybank.com myBank.com] utilise hCard pour ses listings de chaque branche de chaque banque assurée FDIC aux Etats-Unis.&lt;br /&gt;
* [http://leftlogic.com Left Logic] utilise hCard pour l'information de contact embarquée. &lt;br /&gt;
* [http://inga-art.co.uk/artist Inga Scholes] utilise hCard pour l'information de contact dans la barre latérale.&lt;br /&gt;
* [http://www.lussumo.com/ Lussumo] utilise hCard sur les pages de profil dans son forum de discussions logiciel [http://www.getvanilla.com/ Vanilla]. &lt;br /&gt;
* [http://www.creative-ways.nl/ Ron Kok] utilise des hCards pour baliser les noms et URLs des commentateurs sur son blog. Il utilise aussi les hCards en combinaison avec XFN dans ses billets de blog pour pointer vers des amis et a une hcard pour lui-même dans le pied de page de son blog.&lt;br /&gt;
* La page des [http://www.parisweb2006.org/orateurs.php orateurs de paris web 2006] (Paris-France) contient une hCard pour tous les intervenants.&lt;br /&gt;
* [http://tagg.no Tagg Media] utilise hCard pour l'[http://heine.tagg.no/contact.php  information de contact] et fournit un lien vers un téléchargement de vcard dans la section contact.&lt;br /&gt;
* L'article à propos du personnage de Matrixx [http://en.wikipedia.org/wiki/Neo_%28The_Matrix%29 Thomas A Anderson dans Wikipedia] est maintenant balisé avec hCard.&lt;br /&gt;
* [http://dconstruct06.madgex.com/ d.Construct 2006 Backnetwork] utilise des hCards pour les congressistes à la conférence (et fournit le balisage de façon à ce que les congressistes puisses copier et coller leurs cartes dans leurs propres sites).&lt;br /&gt;
* [http://www.brown.edu Brown University] utilise maintenant hCard sur la page d'accueil.&lt;br /&gt;
* [http://www.wideblueyonderweb.co.uk Dunks chez Wide Blue Yonder Web Design] a ajouté un balisage hCard sur sa [http://www.wideblueyonderweb.co.uk/wbyw/pages/contact.htm page contact] et cherche à l'implémenter sur toutes les pages des contacts passés et futurs pour les clients.&lt;br /&gt;
* [http://southamptonrubberstamp.com Southampton Rubber Stamp Company] a déspormais un balisage hCard avec un téléchargement de vCard sur chaque page.&lt;br /&gt;
* [http://barefoot-ceramics.com Barefoot Ceramics paint your own pottery studio] (à Newport, South Wales) a ajouté un balisage hCard à sa page [http://barefoot-ceramics.com/find#address &amp;quot;Find&amp;quot;] page et d'autres exemples d'adresses. Ils espèrent mettre en oeuvre un listing d'événement hCalendar dès qu'une classe PHP ics vers hCalendar puisse être trouvée ou écrite.&lt;br /&gt;
* [http://dsingleton.co.uk/ David Singleton] a ajouté une hCard à son blog.&lt;br /&gt;
* [http://www.thestreet.org.au The Street Theatre (Canberra, Australia)] a ajouté un balisage hCard pour baliser vers sa page [http://www.thestreet.org.au/contact.htm Contact Us]. Un balisage hCalendar sera bientôt ajouté pour toutes les pièces.&lt;br /&gt;
* [http://www.informatik.uni-hamburg.de/SVS/personnel/henrich/index.php Henrich C. P&amp;amp;ouml;hls] a balisé sa page &amp;quot;about&amp;quot; en utilisant hcard, y compris sa clé PGP qui est stockée dans une &amp;quot;abbr title&amp;quot;, en utilisant class=key.&lt;br /&gt;
* [http://www.yalf.de Yalf Webentwicklung] a sa page [http://www.yalf.de/kontakt d'information de contact] disponnible sous hCard (et vCard).&lt;br /&gt;
* [http://www.zeldman.com/about/ Jeffrey Zeldman]. Jeffrey Zeldman a balisé sa page 'about' en utilisant hCard.&lt;br /&gt;
* [http://WhereAreYouCamping.com Where Are You Camping]. Des hCards pour tous les membres et  camps, employant tout aussi bien 'include pattern'. A la limite de ce que je connais, c'est le premier Burning Man en rapport avec l'implémentation des microformats, pour ne pas citer des adresses dans Black Rock City.&lt;br /&gt;
* [http://www.clacksweb.org.uk Clackmannanshire Council ]. hCard est implémenté pour tous les détails de contact sur le site et pour des individus spécifiques comme les membres élus (les 'Councillors').&lt;br /&gt;
* [http://www.webdirections.org Web Directions ]. La hCard est utilisée comme information de contact pour la conférence, et les conférenciers sont balisés avec hCard.&lt;br /&gt;
* [http://www.markthisdate.com/contactform.html MarkThisDate.com ]. Une hCard est implémentée sur notre formulaire de contact. Pour nos calendriers les hCalendars suivront dès que possible.&lt;br /&gt;
* [http://kollitsch.de/ Patrick Kollitsch] a construit son Profil personnel sous hCard.&lt;br /&gt;
* [http://www.msiinet.com/contact/ MSI Systems Integrators] a sa page &amp;amp;quot;Contact MSI&amp;amp;quot; encodé avec des hCards.&lt;br /&gt;
* [http://www.coolblue.nl/ Le site web corporate de Coolblue BV]. Les hCards ont été implémentées à la fois dans le pied de page de chaque page, et dans la section &amp;quot;News&amp;quot; pour l'information contact presse.&lt;br /&gt;
* [http://www.besancon.fr/index.php?p=32 Le site officiel de la ville de Besançon (France)] utilise hCard pour chaque page concernant les petites villes entourant Besançon.&lt;br /&gt;
* [http://2006.dconstruct.org/speakers/ la liste des conférenciers d.Construct 2006] a été implémentée en utilisant des hCards.&lt;br /&gt;
* [http://local.yahoo.com Yahoo Local] supporte maintenant les hCards pour les commerces et endroits dans les résultats de recherche&lt;br /&gt;
* [http://learningtheworld.eu/imprint/ Learning the World] a une information hCard sur l'impression, parce ce que nous n'avons pas réussi à baliser proprement les numéros de téléphone et de fax professionnels.&lt;br /&gt;
* Le site web [http://www.fuckparade.org F’parade] utilise hcard, même s'il n'a pas trouvé un type pour distinguer les numéros de téléphone mobile et fixes ''(recommandation utiliser  &amp;lt;code&amp;gt;cell&amp;lt;/code&amp;gt; pour les mobiles)''.&lt;br /&gt;
* [http://www.miranet.nl/contact.htm Miranet Webdesign] a ajouté une hCard sur sa [http://www.miranet.nl/contact.htm page 'contact']&lt;br /&gt;
* [http://weblog.200ok.com.au/ Ben Buchanan] a ajouté une vCard à la page [http://weblog.200ok.com.au/about/ 'About'sur le welbog 200ok]&lt;br /&gt;
* [http://www.radiantcore.com Radiant Core] a son information de contact [http://www.radiantcore.com/contact/ disponible dans la hCard].&lt;br /&gt;
* [http://www.mikerumble.co.uk/ Mike Rumble] [http://www.mikerumble.co.uk/contact.html a mis en ligne sa hCard].&lt;br /&gt;
* [http://www.saumag.edu/ Southern Arkansas University] a son pied de page encodé comme une hCard.&lt;br /&gt;
* [http://main.uab.edu/ University of Alabama at Birmingham] a son pied de page contact encodé sous hCard.&lt;br /&gt;
* [http://www.capital.edu Capital University] a le contact en pied de page et les noms des blogueurs encodés sous hCard. Aussi, toutes les informations de pages spécifiques de contact sont encodées sous hCards (voir la page [http://www.capital.edu/Internet/Default.aspx?pid=67 Admissions] pour un exemple)&lt;br /&gt;
* [http://main.uab.edu/shrp/ UAB School of Health Professions] utilise hCard dans son pied de page contact&lt;br /&gt;
* [http://green.carisenda.com/ Stephen Stewart] a sa hCard sur la page d'accueil de son weblog (section 'You are here')&lt;br /&gt;
* [http://www.direction.es/ Direction] utilise hCard pour l'information de contact.&lt;br /&gt;
* [http://audiobank.tryphon.org AudioBank] utilise hCard pour afficher les informations des membres.&lt;br /&gt;
* [http://www.vivabit.com/atmedia2006/speakers/ @media speakers] sont balisés avec hCard (les photos  dépendent du support du tag BASE ce qui fait de cela un très bon cas de test)&lt;br /&gt;
* [http://www.dougransom.com Doug Ransom] utilise hCard pour sa pratique de conseil financier. &lt;br /&gt;
* [http://rubyandrails.org/usergroups/newcastle/members.html ncl.rb] utilise hCard pour l'information de contact.&lt;br /&gt;
* [http://www.snowinteractive.com/ Snow Interactive] utilise hCard pour l'information de contact.&lt;br /&gt;
* [http://flickr.com Flickr] supporte maintenant [[hcard-fr|hCard]] et [http://gmpg.org/xfn XFN] sur les pages de profil. Voir [http://flickr.com/photos/factoryjoe/113866484/ photo d'écran de l'interface utilisateur dans le navigateur Flock utilisant l'extension Flocktails - 17 mars 2006].&lt;br /&gt;
* [http://www.ndiyo.org/contact information contact pour le projet Ndiyo]&lt;br /&gt;
* [http://www.pixelenvy.co.uk/ Pixel Envy] utilise hCard pour l'information de contact sur chaque page.&lt;br /&gt;
* [http://stilbuero.de/contact/ Klaus Hartl] utilise hCard dans la barre latérale pour l'information de contact (peut être plus facile à parser à travers la distribution xhtml que xml).&lt;br /&gt;
* [http://charlvn.virafrikaans.com/contact hCard de Charl van Niekerk]&lt;br /&gt;
* [http://billy-girlardo.com/WP/ BillyBLOGirlardo] utilise hCard pour l'information de contact.&lt;br /&gt;
* [http://www.hicksdesign.co.uk/ Hicksdesign] utilise hCard pour l'information de contact.&lt;br /&gt;
* http://www.gr0w.com/articles/press/growsearch_launched_press_release/ - hCard dans un communiqué de presse pour l'information contact de presse.&lt;br /&gt;
* http://www.redmonk.com/cote/archives/2006/03/testing_out_mic.html - hCard avec explication&lt;br /&gt;
* [http://andy.ciordia.info/ it's my island], blog personnel, hcard sur la page ''[http://andy.ciordia.info/pages/about_me About the Writer]''. [[User:Ciordia9|Andy Ciordia]]&lt;br /&gt;
* [http://www.windowonwoking.org.uk/ Window on Woking], un site de communauté locale au Royaume-Uni, utilise hCard dans la page d'accueil de chaque membre de l'organisation et conseiller local.&lt;br /&gt;
* [http://ChunkySoup.net/ ChunkySoup.net] a reconçu le site complet en utilisant hAtom 0.1 et les hCards -- par [[User:ChrisCasciano|Chris Casciano]]&lt;br /&gt;
* [http://www.30boxes.com/ 30 Boxes], une application de calendrier social et agrégateur de style de vie digital, crée automatiquement une hcard pour vous avec votre compte.  Il est trouvé sous Settings &amp;gt; Syndication.&lt;br /&gt;
* [http://www.nearwhere.com/ Nearwhere.com] vous permet de mettre une hcard sur une carte interactive.&lt;br /&gt;
* [http://www.brentozar.com/ Brent Ozar] a ajouté une page [http://www.brentozar.com/contact.php contact] hCard.&lt;br /&gt;
* [http://www.kerihenare.com/ Keri Henare] a récrit sa page [http://www.kerihenare.com/contact/ contact] hCard. Utilisant maintenant &amp;lt;code&amp;gt;&amp;lt;object&amp;gt;&amp;lt;/code&amp;gt; au lieu de &amp;lt;code&amp;gt;&amp;lt;img&amp;gt;&amp;lt;/code&amp;gt; pour la photo. (Merci à Brian Suda pour avoir mis à jour le convertisseur vCard)&lt;br /&gt;
* [http://michaelraichelson.com/contact/ Michael Raichelson] avait un hCard sur sa page contact avant SXSW, mais n'avait jamais pensé à l'ajouter ici jusqu'à ce que Tantek lui ait demandé. &lt;br /&gt;
* [http://www.commoner.com/~lsimon/lindsey_simon_hcard.html Lindsey Simon] a ajouté une hCard à son site suite à la demande SXSW de Tantek pour que les types l'essayent.&lt;br /&gt;
* [http://www.davidgagne.net/ David Gagne] a une hCard dans sa barre latérale.&lt;br /&gt;
* [http://www.churchzip.com/map/ Churchzip.com/map] et [http://www.skiwhere.com/map/ Skiwhere.com/map], mettent des églises, hôtels et stations de ski sur les mêmes cartes.  Les endroits sont mis en page sous forme de hcards.&lt;br /&gt;
* Toutes les [http://www.iqdir.com/ IQ Directory Solutions] des portails web des Yellow Pages utilisent la syntaxe [[hcard-fr|hCard]] sur les listes. Par exemple, [http://www.yellowpages-cambodia.com/ Cambodia Yellow Pages] et [http://www.superpages.com.my/ Malaysia Super Pages]&lt;br /&gt;
* L'application cloneable Group de ning utilise la correspondance floue pour mapper les champs personnalisés en syntaxe [[hcard-fr|hCard]] sur ses [http://group.ning.com/index.php?controller=person&amp;amp;action=view&amp;amp;content=JonathanAquino pages profile].&lt;br /&gt;
* [http://claimid.com/factoryjoe La hCard ClaimID de Chris Messina]&lt;br /&gt;
* [http://factoryjoe.com/blog/hcard La hCard de Chris Messina]&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] a une syntaxe [[hcard-fr|hCard]] et [[hcalendar-fr|hCalendar]]. ([http://www.w3.org/2006/03/01-TechPlenAgenda.html original ici]).&lt;br /&gt;
* [http://www.gr0w.com/articles/press/growsearch_launched_press_release/ GrowSearch Launched (Press Release)] utilise un hCard pour fournir le Contact du Point Presse.&lt;br /&gt;
* La [http://www.arborday.org/ National Arbor Day Foundation] a commencé à utiliser les hCards pour ses [http://arborday.org/programs/conferences/hazardtrees-treeplanting/ conférences] &lt;br /&gt;
[http://arborday.org/programs/conferences/communityforestry/index.cfm à venir] &lt;br /&gt;
* [http://www.multipack.co.uk The Multipack] a de nombreuses hCards, tout spécialement sur [http://www.multipack.co.uk/members/ les pages membres], tout comme pour les informations des prochaines réunions.&lt;br /&gt;
* [http://deadringrancor.livejournal.com/ Justin McDowell] a utilisé une hCard pour faire référence [http://deadringrancor.livejournal.com/221332.html à une personne dans son billet de blog]&lt;br /&gt;
* [http://davecardwell.co.uk/cv/ Dave Cardwell] a inclus sa hCard dans son Curriculum Vitae.&lt;br /&gt;
* [http://blog.usweb.com/ Shaun Shull] a écrit un billet magnifique sur [http://blog.usweb.com/archives/how-microformats-affect-search-engine-optimization-seo How Microformats Affect SEO], et a inclus sa [[hcard-fr|hCard]] comme l'un des exemples. &lt;br /&gt;
* [http://www.thefutureoftheweb.com/ Jesse Skinner] a écrit un [http://www.thefutureoftheweb.com/blog/2006/1/hcard tutoriel simple avec des exemples]&lt;br /&gt;
* [http://www.w3.org/2005/12/allgroupoverview.html 2006 W3C Technical Plenary Week] a marqué tous les participants, contacts et membres du comité de programme avec hCard.&lt;br /&gt;
* [http://www.avf-nexus.co.uk AVF-Nexus] a une hCard sur sa [http://www.avf-nexus.co.uk/contact/ page contact] - (par [http://creation.uk.com Creation&amp;quot;])&lt;br /&gt;
* [http://www.thefantasticos.com/andrew/ Andrew White] a posté [http://www.thefantasticos.com/andrew/index.php/my-hcard/ sa hCard] et [http://www.thefantasticos.com/andrew/index.php/62/microformats-the-should-have-been-obvious-web-dev-tool/ a blogué à propos].&lt;br /&gt;
* [http://www.2sheds.ru Oleg &amp;quot;2sheds&amp;quot; Kourapov] dans son [http://www.2sheds.ru/blog/ blog] ([http://suda.co.uk/projects/X2V/get-vcard.php?uri=http://www.2sheds.ru/blog X2V]) a transformé son profil personnel en hCard ([http://suda.co.uk/projects/X2V/get-vcard.php?uri=http://www.2sheds.ru/blog/hcard.html X2V]) et sa blogroll - par une combinaison de 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] a une hCard sur sa [http://www.approveddesign.co.uk/about/contact/ page contact] tout comme sur sa [http://www.approveddesign.co.uk/about/people/ section &amp;quot;people&amp;quot;] - (par [http://creation.uk.com Creation&amp;quot;])&lt;br /&gt;
* [http://weblog.200ok.com.au/ Ben Buchanan] et [http://www.griffith.edu.au/cgi-bin/phone_search.pl?string=colin+morris&amp;amp;format=search Colin Morris] ont [http://weblog.200ok.com.au/2006/01/griffith-phonebook-adds-hcard-and.html implémenté les hCards et vCards] pour [http://www.griffith.edu.au/find/content_phonebook.html l'annuaire téléphonique en ligne] de l'[http://www.griffith.edu.au Université Griffith]. par ex. [http://www.griffith.edu.au/cgi-bin/phone_search.pl?string=ben+buchanan&amp;amp;format=search la vCard de Ben] et [http://www.griffith.edu.au/cgi-bin/phone_search.pl?string=colin+morris&amp;amp;format=search la vCard de Colin]&lt;br /&gt;
* WWF-Australia [http://wwf.org.au/about/contactdetails/ page &amp;quot;contact details&amp;quot;]&lt;br /&gt;
* [http://rasterweb.net/raster/ Pete Prodoehl] a utilisé le format hCard sur sa page [http://rasterweb.net/raster/contact.html Contact]&lt;br /&gt;
* [http://alexander-mette.de amette] utilise le format hCard dans un module de son blog motorisé par TikiWiki&lt;br /&gt;
* [http://staff.washington.edu/oren/weblog2/ Oren Sreebny] a une hCard sur son gabarit principal &lt;br /&gt;
* [http://www.cs.brandeis.edu/~zippy/ Patrick Tufts] a une hCard sur sa page personnelle.&lt;br /&gt;
* [http://ascii20.blogspot.com/ Mathias Kolehmainen et Jamie Taylor] ont des hCards sur leur weblog.&lt;br /&gt;
* [http://www.hoppsan.org/jamesb/blogger/ Barnaby James] a une hCard sur son weblog.&lt;br /&gt;
* [http://esa-education.com/schools/map ESA Education] utilise les hCards pour ses 100+ écoles et chacun des sites individuels des écoles.&lt;br /&gt;
* [http://www.thereisnocat.com/#vcard Ralph Brandi] a ajouté une hCard à la barre latérale de son weblog suite à la présentation des Microformats de Tantek Çelik lors de SXSW 2006.&lt;br /&gt;
* [http://www.yellowpencil.com/contact/ Yellow Pencil] utilise les microformats pour présenter l'information de contact de la société.&lt;br /&gt;
* [http://www.pierce.ctc.edu/ephone/ Pierce College] -- le répertoire de la communauté du collège utilise hCard sur toutes les entrées individuelles des carnets d'adresses.&lt;br /&gt;
* [http://www.ukoln.ac.uk/web-focus/events/workshops/webmaster-2006/ the Institutional Web Management Workshop 2006] a balisé tous ses [http://www.ukoln.ac.uk/web-focus/events/workshops/webmaster-2006/committee/ présentateurs avec hCard].&lt;br /&gt;
* http://wikitravel.org/en/Singapore/Sentosa. Wikitravel est en train d'expérimenter hcard sur ses guides de voyage. Ce guide utilise hcard pour tous ses listings d'affaires. Plus d'informations sur http://wikitravel.org/en/Wikitravel_talk:Listings.&lt;br /&gt;
* [http://www.musik-erber.de/ Musik-Erber] utilise hcard pour présenter l'information de contact dans sa barre latérale.&lt;br /&gt;
* [http://cdevroe.com/about/#contact Colin D. Devroe] utilise hCard pour afficher son information de contact sur sa page &amp;quot;about&amp;quot;.&lt;br /&gt;
* L'ECS (Scool of Electronics and Computer Science à l'Université de Southampton), les [http://www.ecs.soton.ac.uk/people People Pages] utilisent vCard. Contactez cjg@ecs.soton.ac.uk s'il y a quelque bug.&lt;br /&gt;
* [http://www.southwestern.edu/~ramseyp Pat Ramsey] a son information de contact sur son blog balisée avec hCard. Contacter [mailto:ramsey.pat@gmail.com ramsey.pat@gmail.com] s'il y a quelque bug.&lt;br /&gt;
* [http://www.vyre.com/company/contact-us/ VYRE] est une société de développement de CMS avec une hCard &amp;quot;contact us&amp;quot;&lt;br /&gt;
* [http://www.lefdal.cc/info.php Alf Kåre Lefdal] utilise hCard dans le balisage de son information de contact.&lt;br /&gt;
* [http://www.pignwhistle.com.au/ Pig N Whistle, une chaîne de pubs dans Brisbane, Australie] utilise hCard pour baliser toutes les pages contacts pour ses établissements et son siège social.&lt;br /&gt;
* [http://kollitsch.de/ Patrick Kollitsch] a construit son Profil personnel sous hCard.&lt;br /&gt;
* [http://www.hbs.edu/faculty/dspar/ Harvard Business School] a des hCards sur ses pages 'faculty'&lt;br /&gt;
* [http://openmikes.org/ openmikes.org] utilise des hCards pour les adresses des lieux dans les pages listes détaillées.&lt;br /&gt;
* [http://www.intertecnollc.com/ InterTecno, LCC] publie une hCard sur la page d'accueil et la page contact.&lt;br /&gt;
* [http://canaltcm.com/ver/sobre-tcm Le site web de Turner Classic Movies TCM espagnol] a publié les détails de contacts sous une hCard&lt;br /&gt;
* [http://rejuvenation.com/ Rejuvenation] utilise maintenant hCard pour son information de contact.&lt;br /&gt;
* [http://www.mattash.com/contact/ Matthew Ash] utilise hCard dans sa section contacts.&lt;br /&gt;
* [http://yarmouthguide.com/business.php Yarmouth Guide] utilise hCard pour chaque page de détails sur le business.&lt;br /&gt;
* [http://www.merchantcircle.com MerchantCircle] a embarqué une hCard dans chacun de ses listings professionnels de plus de 15 millions d'adresses.&lt;br /&gt;
* [http://blog.roub.net/ Paul Roub]  a une hcard pour lui-même sur la page d'accueil de son blog.&lt;br /&gt;
* [http://citizenspace.us/citizens Citizen Space Citizens] est une liste des locataires pour un espace de coworking à San Francisco. La problématique a été soulevée que les ''nicknames'' sont généralement situés au milieu du ''fn'', qui n'est pas valide comme selon la règle [[hcard-brainstorming-fr#FN_implicite_.C3.A0_partir_de_N|FN implicite à partir de N]. Il semble qu'il sevrait être possible néanmoins d'inclure un &amp;quot;nickname&amp;quot; au milieu d'un FN ou même entre un ''given-name'' et un ''family-name''.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
&lt;br /&gt;
SVP ajoutez les nouveaux exemples *en haut de cette section*&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Exemples avec quelques problèmes ===&lt;br /&gt;
* voir [[hcard-examples-in-wild-with-problems-fr]]&lt;br /&gt;
&lt;br /&gt;
=== Exemples Révisés ===&lt;br /&gt;
Les Nouveaux Exemples Révisés qui sont beaux peuvent être migrés ici pour indiquer qu'ils ont été critiqués et révisés. Ou prenez la prochaine étape et notez quel type d'exemple dans la jungle chacun d'eux en fait partie, et puis svp migrez le vers la section 2 des &amp;quot;Exemples Groupés&amp;quot;.&lt;br /&gt;
* [http://vcardplus.info/show.asp?uid=Z9959-06323 Greg Bays], l'auteur de vCardPlus! a fait que ses sites vCard affichent la compatibilité hCard. &lt;br /&gt;
* [http://www.nfwebsolutions.com/ New Frontier Web Solutions] utilise hCard sur sa page d'accueil avec un lien pointant vers le [http://suda.co.uk/projects/X2V/get-vcard?uri=http://www.nfwebsolutions.com/ X2V] de Brian Suda.&lt;br /&gt;
* [http://shiftingpixel.com/about/the-artist shifting pixel photoblog] a publié une hCard.&lt;br /&gt;
* [http://thoughtport.blogspot.com/ Aiden Kenny] n'a pas encore publié sa hcard, mais il a [http://thoughtport.blogspot.com/2005/07/elemental-particles-of-web.html publié son icône hCard] : http://photos1.blogger.com/blogger/4224/444/320/AK-Hcard-icon.gif&lt;br /&gt;
* [http://thedredge.org Andy Hume] utilise les hcards pour baliser les noms et URLs des commentateurs sur son blog, par ex son [http://thedredge.org/2005/06/using-hcards-in-your-blog/ billet de blog sur &amp;quot;Using hCards in your blog&amp;quot;]. &lt;br /&gt;
* La page [http://www.bidclix.com/AboutContact.html Contact BidClix] de [http://www.bidclix.com/ BidClix] a son ''contact info'' balisé avec hCard.&lt;br /&gt;
* [http://suda.co.uk/ Brian Suda] a embarqué une photo dans [http://suda.co.uk/contact/ sa hCard] à travers le [http://www.ietf.org/rfc/rfc2397.txt schéma de data uri] en convertissant l'image en code BASE64. Regardez le Source pour voir comment cela est réalisé. [http://suda.co.uk/projects/X2V/get-vcard.php?uri=http%3A//suda.co.uk/contact/ Le lien X2V] extraira l'image et l'encodera pour une vCard qui sera affichée dans quelques applications de carnets d'adresses.&lt;br /&gt;
** Inspiré par ça, j'ai pensé essayer la même chose pour SVG sur [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;
** Est-ce que cela fonctionne ?? Oui cela parse bien. Quelques outils automatiques remplacent le &amp;amp;lt; avec %3C (etc., par ex. la forme vcard de Brian Suda). Malheureusement Kontact (KDE contacts tool) ne gère pas le SVG sous une photo vCard ou un format logo - je ne sais pas si c'est un standard. Il semble que cela pourrait fontionner et même fonctionne quelque part. Peut-être que le champ texte a besoin d'être encodé en Base64 ? ... voir [http://slashdot.org/~pbhj/journal/142382 le journal slashdot de pbhj] pour en savoir un peu plus à ce propos.&lt;br /&gt;
* [http://cinematreasures.org Cinema Treasures] utilise hCard pour baliser l'information des participants sur plus de 10,000 cinémas.&lt;br /&gt;
* [http://www.w3.org/People/Connolly/events/ L'index des présentations et événements de Dan Connolly] a des hCards pour bon nombre des personnes rencontrées lors de ces événements. En mars 2006, il a migré un paquet d'informations de contacts d'hôtels à partir de son PDA vers cette page ; elle est désormais montée à 32 hCards.&lt;br /&gt;
* [http://doncrowley.blogspot.com/ Don Crowley] a publié [http://www.crowley.nl/hcard.html son hCard] tout comme un joli bouton hCard : http://www.crowley.nl/images/hcard.png&lt;br /&gt;
* [http://loadaveragezero.com/hnav/contact.php Douglas W. Clifton] a ajouté tous les types d'information de contact.&lt;br /&gt;
* [http://eventful.com Eventful] publie toutes les pages d'informations des lieux avec des hCards embarquées.&lt;br /&gt;
* [http://www.iowamilitaryveteransband.com/members/ Iowa Military Veterans Band Contacts] - 95 hCards [http://weblog.randomchaos.com/archive/2005/10/24/Microformats/ balisées par Scott Reynen]&lt;br /&gt;
* [http://JackWolfgang.blogspot.com Jack L. Wolfgang II] a [http://jack.randomata.com/resume/ converti les adresses dans son CV en hCards].&lt;br /&gt;
* [http://www.efas.fupl.asso.fr/efas/_Mathieu-Drouet_.html Mathieu Drouet] et [http://www.efas.fupl.asso.fr/efas/_Annie-Leger_.html Annie Leger] ont tous deux des hCards&lt;br /&gt;
* [http://www.oliverbrown.me.uk/ Oliver Brown] a publié sa hCard.&lt;br /&gt;
* [http://www.paradigmproductions.org/contact/ Paradigm Productions] a publié une hCard sous un ul (balisée par [http://www.linkingarts.com/ Peter Jacobson])&lt;br /&gt;
* [http://www.splintered.co.uk/ Patrick H. Lauke] a balisé [http://www.splintered.co.uk/about/ son information de contact avec hCard].&lt;br /&gt;
* Paul Schreiber a publié sa hCard sur [http://paulschreiber.com/about/?contact sa page &amp;quot;about&amp;quot;].&lt;br /&gt;
* Le site [http://concerts.shrub.ca/ Sunnyvale House Concerts] de [http://paulschreiber.com/blog/ Paul Schreiber] publie des hcards pour les artistes à venir, tout comme une hCard pour la page elle-même. En outre, la page [http://concerts.shrub.ca/shows Past Shows] contient la page [http://concerts.shrub.ca/shows Past Shows] contient des hCards pour tous les artistes étant passés.&lt;br /&gt;
* [http://www.paulmichaelsmith.com/blog/hcard.htm Paul Smith] a créé une page hCard qui est Lisible par un Humain, et un lien vers X2V passant la même page hCard pour générer une vCard.&lt;br /&gt;
* [http://www.windley.com/archives/2005/07/hcards_trying_o.shtml Phil Windley a publié] [http://phil.windley.org/hcard.html sa hCard].&lt;br /&gt;
* [http://www.go-curiosity.com/about.htm Piercarlo Slavazza] a publié une hCard.&lt;br /&gt;
* [http://zooibaai.nl/ Rob Mientjes] a publié une hCard sur [http://zooibaai.nl/about/ sa page about].&lt;br /&gt;
* [http://rbach.priv.at/Contact Robert Bachmann] a publié sa hCard et [http://rbach.priv.at/Images/hcard un bouton].&lt;br /&gt;
* [http://blah Scott Reynen a publié sa hCard sur [http://www.randomchaos.com/document.php?source=scott_reynen sa page profil].&lt;br /&gt;
* [http://www.stackframe.com/ StackFrame, LLC] a publié les informations de contacts des [http://www.stackframe.com/people/ employés] et [http://www.stackframe.com/contact/ générales] sous   des hCards.&lt;br /&gt;
* [http://www.wolfsreign.com Steven Ametjan] a publié sa hCard sur [http://www.wolfsreign.com/about/ sa page about].&lt;br /&gt;
* [http://tantek.com/microformats/2005/syndicate/speakers-list.html Syndicate - la liste des Conférenciers] est publiée sous un ensemble de hCards&lt;br /&gt;
* [http://tagcamp.org/index.cgi?ContactList liste des contacts TagCamp]&lt;br /&gt;
* [http://www.deadringerart.com/ The Brothers McDowell] ont des hCards sur leur page Contact.&lt;br /&gt;
* [http://twinsparc.com/ Twinsparc] a mis une hCard dans l'en-tête et le pied de page de toutes ses pages.&lt;br /&gt;
* [http://tantek.com/microformats/2005/web2/speakers.html la page Web 2.0 Conference speakers est balisée avec hCard]&lt;br /&gt;
* [http://we05.com/ Web Essentials 05] a balisé tous ses [http://we05.com/presenters.cfm conférenciers avec hCard].&lt;br /&gt;
* [http://www.uoguelph.ca/directory/ L'Université de Guelph] inclut une info hCard dans son répertoire.&lt;br /&gt;
* [http://www.child-care-index.net.au/ The Australian Child Care Index] a plus de 3000 entrées dans son annuaire des services de protection des enfants en Australie - et chacune d'entre elle est marquée avec une hCard !&lt;br /&gt;
* [http://www.cadforless.com/partners/ CADforless, Inc.] nous avons listé nos partenaires en utilisant hCard&lt;br /&gt;
* [http://avon.com/ Avon] - publie tous les contacts des 40 000 représentants Avons avec hCard.&lt;br /&gt;
* La page [http://flock.com/about Flock About] supporte le microformat hCard.&lt;br /&gt;
** par [[implementations#Flock|Flock]]&lt;br /&gt;
* [http://www.iowamilitaryveteransband.com/members/ Iowa Military Veterans Band]&lt;br /&gt;
* La [http://www.nature.com/ Nature homepage], utilise [[XOXO-fr|XOXO]].&lt;br /&gt;
** par [[implementations#Nature Publishing Group|Nature Publishing Group]]&lt;br /&gt;
* [http://concerts.shrub.ca/shows Sunnyvale House Concerts] supporte hCard et [[hcalendar-fr|hCalendar]].&lt;br /&gt;
* Le moteur de recherche [http://www.bath.ac.uk/contact/ Person Finder] de l'[http://www.bath.ac.uk/ Université de Bath] supporte hCard, voir par ex. la page de [http://www.bath.ac.uk/person/760874 Mrs A Smith].&lt;br /&gt;
* [http://www.monster-prague.cz/ Monster Prague Openings] supporte hCard, par ex. home page, une liste de contacts à venir.&lt;br /&gt;
&lt;br /&gt;
== Exemples Groupés ==&lt;br /&gt;
Cette section organise les exemples en plusieurs catégories comme suit. Si un exemple correspond à plus d'une catégorie, utilisez la *dernière* catégorie correspondante dans cette liste qui correspond aux exemple(s) spécifiques de hCards dans la jungle que vous essayez de catégoriser.&lt;br /&gt;
# '''Individus''' - une carte par personne, peut-être trier alphabétiquement par &amp;quot;family-name&amp;quot;. Les personnes avec leurs propres hCards (généralement) sur leur propre site.&lt;br /&gt;
# '''Organisations''' - une carte par organisation, alphabétiquement par &amp;quot;fn&amp;quot;. Les organisation avec leurs propres hCards (généralement) sur leurs propres sites web.&lt;br /&gt;
# '''Institutions''' - qui listent plus d'une personne, avec un nombre estimé du # de hCards, par exemple 40k pour Avon. Indiquez aussi la complexité de l'information fournie, par exemple juste le nom+nombre vs détails complets. Triées alphabétiquement par &amp;quot;org&amp;quot; avec peut-être quelques individus listés dans une seule sous-bulle, délimités par une virgule et triés par &amp;quot;family-name&amp;quot;.&lt;br /&gt;
# '''Blogs de Groupes''' - blogs avec plusieurs auteurs marqués avec hCard&lt;br /&gt;
# '''Profils en Ligne''' - qui hébergent des profils pour plus d'une personne, avec un nombre estimé du # de hCards, par ex. 10m+ pour Flickr.com. Triés alphabétiquement par &amp;quot;fn&amp;quot; avec peut-être quelques individus listés dans une seule sous-bulle, délimités par une virgule et triés par &amp;quot;family-name&amp;quot;.&lt;br /&gt;
# '''Lieux en ligne''' - qui fournissent des listings pour les entreprises ou organisations, avec un nombre estimé du # de lieux, par exemple ~10k pour Upcoming.org. Triés alphabétiquement par service/nom de site, avec peut-être quelques lieux spécifiques listés dans une seule sous-bulle, délimités par une virgule et triés par &amp;quot;fn&amp;quot;.&lt;br /&gt;
# '''Listes de conférenciers''' - Les pages de conférenciers sur les sites d'événements où les conférenciers sont balisés avec hCard. Triées par date, sous-groupées par années. Les plus récentes en premier. Peut-être quelques individus listés dans une unique sous-bulle pour chaque événement, séparés par une virgule, triés par &amp;quot;family-name&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
En outre, il y a une section séparée des &amp;quot;Exemples UTF8&amp;quot; qui peut être utilisée pour placer un autre lien vers n'importe quel exemple de hCard qui a différents caractères non-ASCII7 / non-anglais pour différentes valeurs de propriétés.&lt;br /&gt;
&lt;br /&gt;
A chaque fois que chaque section en elle-même deviendra vraiment grosse (nous pourrions y être parvenus à cette heure, une fois que nous les aurons triées à travers les &amp;quot;Exemples Révisés&amp;quot; au-dessus), elle sera probablement migrée vers une page séparée, laissant son titre ici en place, et remplaçant ses contenus ici avec un lien vers la page séparée et peut-être un résumé de statistiques.&lt;br /&gt;
&lt;br /&gt;
=== Individus ===&lt;br /&gt;
&lt;br /&gt;
* La page d'accueil de [http://dbaron.org/ David Baron] est balisée avec hCard.&lt;br /&gt;
* La page d'accueil de [http://tantek.com/ Tantek Çelik] inclut une hCard d'auteur dans la ligne en bas de la page.&lt;br /&gt;
* [http://blogs.msdn.com/cwilso/ Chris Wilson] a une hCard pour lui-même sur [http://blogs.msdn.com/cwilso/about.aspx sa page about].&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Organisations ===&lt;br /&gt;
* [http://technorati.com Technorati] (3)&lt;br /&gt;
** Les pages [http://technorati.com/about/ about], [http://technorati.com/press/ press] et  [http://technorati.com/about/contact.html contact] sont balisées avec hCard et ont des liens &amp;quot;Add to Address Book&amp;quot; qui utilisent le [http://feed.technorati.com/contacts/ Technorati service Fil de Contacts].&lt;br /&gt;
* [http://technorati.jp Technorati Japan] (1)&lt;br /&gt;
** [http://technorati.jp/about/contact.html la page contact] est marquée avec hCard&lt;br /&gt;
&lt;br /&gt;
=== Institutions ===&lt;br /&gt;
* [http://conferences.oreillynet.com/contacts.csp La page Team des Conférences O'Reilly] a des hCards pour son équipe (~14) avec un lien vers &amp;quot;Download the below contact info in vcf format&amp;quot; qui utilise le [http://feeds.technorati.com/contacts/ service de fil Technorati contacts] pour convertir les hCards en vCards.&lt;br /&gt;
** '''sous-optimal''': L' &amp;quot;org&amp;quot; ne devrait pas être caché avec &amp;quot;display:none&amp;quot;. Utilisez à la place le [[include-pattern-fr|include-pattern]] pour inclure le &amp;quot;org&amp;quot; à partir du texte quelque part sur la page (pour éviter la duplication du texte).&lt;br /&gt;
* La [http://technorati.com/about/staff.html page Staff de Technorati] a des hCards pour ses collaborateurs (~31)&lt;br /&gt;
** par ex. [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;
'''avec quelques problèmes :'''&lt;br /&gt;
* L'[http://www.ibm.com/contact/employees/ Annuaire des Employés d'IBM] renvoie des hCards dans ses résultats de recherche : &lt;br /&gt;
** par ex. [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 recherche sur Michael Kaply], &lt;br /&gt;
** mais avec quelques problèmes :&lt;br /&gt;
*** '''invalide''' : pas de &amp;quot;fn&amp;quot; (pourrait se résoudre par would be addressed by the [[hcard-brainstorming-fr#FN_implicite_.C3.A0_partir_de_N|fn implicite à partir de n]]) &lt;br /&gt;
*** '''sous-optimisé : ''': adr n'a pas d'enfants et de ce fait ne fournit pas quelque donnée (peut se résoudre par la [[hcard-brainstorming-fr#sous-propri.C3.A9t.C3.A9s_adr_implicites|proposition implicite des sous propriétés adr]])&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Blogs de Groupe ===&lt;br /&gt;
'''avec quelques problèmes :'''&lt;br /&gt;
* Le [http://www.ibm.com/shortcuts/ Podcast IBM Shortcuts] a des auteurs marqués avec des hCards qui ont quelques problèmes :&lt;br /&gt;
** '''cachée''' : L'élément racine hCard tout comme chaque propriété contenue à l'intérieur est rendu invisible par un attribut de style contenant &amp;quot;position:absolute; visibility:hidden&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Profils En Ligne ===&lt;br /&gt;
&lt;br /&gt;
=== Lieux en Ligne  ===&lt;br /&gt;
* [http://www.sydneydirectory.org/ Sydney Directory Wiki] supporte hCard et les coordonnées géographiques pour les endroits, par ex. [http://www.sydneydirectory.org/index.php/Opera_House Sydney Opera House].&lt;br /&gt;
&lt;br /&gt;
===Listes de conférenciers===&lt;br /&gt;
==== 2007 ====&lt;br /&gt;
[[to-do]] : jeter un oeil aux [[presentations-fr|présentations]] 2007 car elles contiennent probablement des liens vers des conférences qui ont marqué leurs pages de conférenciers avec hCard.&lt;br /&gt;
* 09: [http://2006.dconstruct.org/speakers/ d.Construct 2007 speakers]&lt;br /&gt;
==== 2006 ====&lt;br /&gt;
[[to-do]]: jeter un oeil aux [[presentations-fr|présentations]] 2006 car elles contiennent probablement des liens vers des conférences qui ont marqué leurs pages de conférenciers avec hCard.&lt;br /&gt;
* 09: [http://2006.dconstruct.org/speakers/ d.Construct 2006 speakers]&lt;br /&gt;
==== 2005 ====&lt;br /&gt;
[[to-do]] : jeter un oeil aux [[presentations-fr|présentations]] 2005 car elles contiennent probablement des liens vers des conférences qui ont marqué leurs pages de conférenciers avec hCard.&lt;br /&gt;
* 12: [http://tantek.com/microformats/2005/syndicate/speakers-list.html Syndicate - Speaker List] (version hCardée hébergée chez  tantek.com)&lt;br /&gt;
* 10: [http://tantek.com/microformats/2005/web2/speakers.html Web 2.0 Conference 2005 -- Speakers] (version hCardée hébergée chez  tantek.com)&lt;br /&gt;
* 09: Web Essentials 2005 - Les Présentateurs &amp;lt;nowiki&amp;gt;http://we05.com/presenters.cfm&amp;lt;/nowiki&amp;gt; (semble avoir cessé de fonctionner en date du 2007-12-18, peut-être plus tôt) renvoient sur tantek.com : [http://tantek.com/microformats/2005/we05/presenters.html Web Essentials 2005 - The Presenters]. Web Essentials 2005 (we05) était la [http://tantek.com/log/2005/10.html#d06t1720 première conférence à avoir adopté hCard et hCalendar] sur son site web.&lt;br /&gt;
&lt;br /&gt;
===Exemples en UTF8 ===&lt;br /&gt;
Ces exemples contiennent tous un ou plusieurs caractères en UTF8 qui sont en dehors de la gamme ASCII7 et font des cas excellents pour les tests afin de s'assurer que vous gérez bien proprement l'UTF8 à travers votre parseur hCard et la transformation. Et tout spécialement si vous générez des vCards, ces tests aideront à vous assurer que vous générez des vCards UTF8 de façon qu'elles puissent être reconnues par les applications UTF8 supportant les vCards. Trié à peu près par ordre alphabétique (selon l'Unicode).&lt;br /&gt;
&lt;br /&gt;
* [http://sphinx.net.ru/author/ Dmitry Dzhus] a emabarqué sa hCard encodée UTF8 avec des caractères russes dans la page &amp;quot;Auteur&amp;quot; de sont site web.&lt;br /&gt;
* [http://tantek.com/ Tantek's Thoughts] encode Çelik comme de l'UTF8 dans la ligne.&lt;br /&gt;
* [http://technorati.jp/about/contact.html L'information de contact Technorati Japon] encode le japonais comme de l'UTF8 dans la ligne.&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 (Ukrainien))&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== seulement des nickname ====&lt;br /&gt;
Ces exemples UTF8 n'ont que l'UTF8 pour la propriété &amp;quot;nickname&amp;quot; et sont de ce fait un peu plus faciles pour tester que les exemples précédents.&lt;br /&gt;
* Différents articles de la Wikipedia-EN, par ex. le &amp;quot;nickname&amp;quot; dans : [http://en.wikipedia.org/wiki/Noyabrsk Noyabrsk] (Russe), [http://en.wikipedia.org/wiki/Thessaloniki Thessaloniki] (Grec), [http://en.wikipedia.org/wiki/Kyoto Kyoto] (Japonais) et  [http://en.wikipedia.org/wiki/Beijing Beijing] (Chinois)&lt;br /&gt;
&lt;br /&gt;
===Exemples Non-HTML ===&lt;br /&gt;
* [http://dannyayers.com/misc/microformats/hcard-svg la démo hCard SVG de Danny Ayers]&lt;br /&gt;
&lt;br /&gt;
== Pages Apparentées==&lt;br /&gt;
{{hcard-related-pages-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=chat-formats-fr&amp;diff=34598</id>
		<title>chat-formats-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=chat-formats-fr&amp;diff=34598"/>
		<updated>2008-11-18T00:00:16Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; formats de chat &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Les différents formats qui sont utilisés pour représenter les conversations chat, généralement en interne. Avec les cas d'utilisation extraits des [[chat-examples-fr|exemples chat]], et les vocabulaires utilisés ici, les prochaines étapes sont de démarrer un [[chat-brainstorming-fr|chat-brainstorming]] sur des propositions pour un microformat de chat.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Contributeurs ==&lt;br /&gt;
&lt;br /&gt;
* ChristopherStJohn&lt;br /&gt;
* Tantek Çelik&lt;br /&gt;
* Jude Robinson&lt;br /&gt;
&lt;br /&gt;
(traduction française [[Christophe Ducamp]])&lt;br /&gt;
&lt;br /&gt;
==ChatZilla Format Interne==&lt;br /&gt;
Notez qu'il n'y a pas de preuve que ce format est utilisé &amp;quot;dans la jungle&amp;quot; pour la publication. ChatZilla utilise HTML comme sa couche de présentation. Ce extrait largement démoli montre deux lignes extraites d'un chat. Ceci donne la saveur (une très grande table avec dans chaque ligne un message chat divisé en trois colonnes : timestamp, nom d'utilisateur et le message lui-même) mais il y a bien plus de classes en utilisation dans un log complet.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;messages-outer&amp;quot;&amp;gt;&lt;br /&gt;
 ...&lt;br /&gt;
 &amp;lt;div id=&amp;quot;output&amp;quot;&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
  &amp;lt;table view-type=&amp;quot;IRCChannel&amp;quot; class=&amp;quot;msg-table&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;tbody&amp;gt;&lt;br /&gt;
    &amp;lt;tr mark=&amp;quot;even&amp;quot; msg-user=&amp;quot;cks_ ME!&amp;quot;&lt;br /&gt;
     statusText=&amp;quot;01/31/2006 01:39 PM, cks_!n=chatzill@ppp-70-248-121-149.dsl.rcsntx.swbell.net&amp;quot;&lt;br /&gt;
     view-type=&amp;quot;IRCChannel&amp;quot; dest-type=&amp;quot;IRCChannel&amp;quot; msg-dest=&amp;quot;#microformats&amp;quot;&lt;br /&gt;
     msg-type=&amp;quot;PRIVMSG&amp;quot; class=&amp;quot;msg&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;td time-s=&amp;quot;57&amp;quot; time-n=&amp;quot;39&amp;quot; time-h=&amp;quot;13&amp;quot; time-d=&amp;quot;31&amp;quot; time-m=&amp;quot;01&amp;quot; time-y=&amp;quot;2006&amp;quot; class=&amp;quot;msg-timestamp&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
     &amp;lt;td class=&amp;quot;msg-user&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;span&amp;gt;cks_&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
     &amp;lt;td class=&amp;quot;msg-data&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;span&amp;gt;so, using chatzilla for just a minute so i can extract the logs.&amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;tr mark=&amp;quot;odd&amp;quot; msg-user=&amp;quot;Atamido&amp;quot; statusText=&amp;quot;01/31/2006 01:43 PM, Atamido!n=atamido@cpe-67-9-173-252.austin.res.rr.com&amp;quot;&lt;br /&gt;
     view-type=&amp;quot;IRCChannel&amp;quot; dest-type=&amp;quot;IRCChannel&amp;quot; msg-dest=&amp;quot;#microformats&amp;quot;&lt;br /&gt;
     msg-type=&amp;quot;PRIVMSG&amp;quot; class=&amp;quot;msg&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;td time-s=&amp;quot;25&amp;quot; time-n=&amp;quot;43&amp;quot; time-h=&amp;quot;13&amp;quot; time-d=&amp;quot;31&amp;quot; time-m=&amp;quot;01&amp;quot; time-y=&amp;quot;2006&amp;quot; class=&amp;quot;msg-timestamp&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
     &amp;lt;td class=&amp;quot;msg-user&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;a href=&amp;quot;irc://irc.freenode.net/Atamido,isnick&amp;quot; class=&amp;quot;chatzilla-link&amp;quot;&amp;gt;&lt;br /&gt;
       &amp;lt;span&amp;gt;Atamido&amp;lt;/span&amp;gt;&lt;br /&gt;
      &amp;lt;/a&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
     &amp;lt;td class=&amp;quot;msg-data&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;span&amp;gt;&lt;br /&gt;
       Here are some examples.&lt;br /&gt;
       &amp;lt;a target=&amp;quot;_content&amp;quot; class=&amp;quot;chatzilla-link&amp;quot; href=&amp;quot;http://www.hacksrus.com/%7Eginda/chatzilla/motifs.html&amp;quot;&amp;gt;&lt;br /&gt;
        http://www.hacksrus.&amp;lt;wbr&amp;gt;&lt;br /&gt;
        com/~ginda/chatzilla/&amp;lt;wbr&amp;gt;&lt;br /&gt;
        motifs.html&amp;lt;wbr&amp;gt;&lt;br /&gt;
       &amp;lt;/a&amp;gt;&lt;br /&gt;
      &amp;lt;/span&amp;gt;&lt;br /&gt;
     &amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;/tr&amp;gt;&lt;br /&gt;
   &amp;lt;/tbody&amp;gt;&lt;br /&gt;
  &amp;lt;/table&amp;gt;&lt;br /&gt;
 &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Format logs de Google Talk==&lt;br /&gt;
A nouveau, l'user1 est local.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
3&lt;br /&gt;
17b5df8a&lt;br /&gt;
01c61af0&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v66EC7D7137%22+to%3D%22user2%40gmail.com%2FTalk.v66EC841CB6%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Esome+but+not+much%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
incoming&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user2%40gmail.com%2FTalk.v66EC841CB6%22+to%3D%22user1%40gmail.com%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3EI'm+ready+to+crawl+in+bed+and+read.++Do+well+on+your+paper.++Love++Mom%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v66EC7D7137%22+to%3D%22user2%40gmail.com%2FTalk.v66EC841CB6%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Ethanks%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Emom%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
incoming&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user2%40gmail.com%2FTalk.v687050428D%22+to%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3EHi%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%2FTalk.v687050428D%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Ei+totally+forgot+about+the+awning%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%2FTalk.v687050428D%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Edo+you+want+me+to+come+over%3F%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
incoming&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user2%40gmail.com%2FTalk.v687050428D%22+to%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3EI+have+tomorrow+off.++Is+the+wind+supposed+to+get+bad+before+then%3F%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%2FTalk.v687050428D%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Enot+sure.+its+stormy+now%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
incoming&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user2%40gmail.com%2FTalk.v687050428D%22+to%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3EI'm+ready+if+yo+are.++I+thought+you+would+be+here+anyway+about+the+boat+or+I+would+have+called.%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%2FTalk.v687050428D%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3EI+think+we+decided+to+do+the+boat+on+a+dry+night%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
outgoing&lt;br /&gt;
%3Ccli%3Amessage+from%3D%22user1%40gmail.com%2FTalk.v68701EBF07%22+to%3D%22user2%40gmail.com%2FTalk.v687050428D%22+type%3D%22chat%22+xmlns%3Acli%3D%22jabber%3Aclient%22%3E%3Ccli%3Abody%3Ei'll+come+over+now%3C%2Fcli%3Abody%3E%3Cactive+xmlns%3D%22http%3A%2F%2Fjabber.org%2Fprotocol%2Fchatstates%22%2F%3E%3C%2Fcli%3Amessage%3E&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Adium X ==&lt;br /&gt;
[http://adiumx.com Adium X] est en train de développer en ce moment un format de log basé sur XML.&lt;br /&gt;
&lt;br /&gt;
voici la version 0.3 :&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;chat date=&amp;quot;2005-11-20&amp;quot; account=&amp;quot;mactigerz&amp;quot; service=&amp;quot;AIM&amp;quot; version=&amp;quot;0.3&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;event type=&amp;quot;windowOpened&amp;quot; time=&amp;quot;&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;message sender=&amp;quot;chz16&amp;quot; time=&amp;quot;&amp;quot;&amp;gt;'sup?&amp;lt;/message&amp;gt;&lt;br /&gt;
    &amp;lt;message sender=&amp;quot;mactigerz&amp;quot; time=&amp;quot;&amp;quot;&amp;gt;trying to get to work on the the new XML log format&amp;lt;/message&amp;gt;&lt;br /&gt;
    &amp;lt;message sender=&amp;quot;chz16&amp;quot; time=&amp;quot;&amp;quot;&amp;gt;Doesn't sound bad.&amp;lt;/message&amp;gt;&lt;br /&gt;
    &amp;lt;message sender=&amp;quot;chz16&amp;quot; time=&amp;quot;&amp;quot;&amp;gt;Providing you have the log specs, of course.&amp;lt;/message&amp;gt;&lt;br /&gt;
    &amp;lt;message sender=&amp;quot;mactigerz&amp;quot; time=&amp;quot;&amp;quot;&amp;gt;that's what I'm creating.&amp;lt;/message&amp;gt;&lt;br /&gt;
    &amp;lt;status type=&amp;quot;offline&amp;quot; sender=&amp;quot;chz16&amp;quot; time=&amp;quot;&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;status type=&amp;quot;online&amp;quot; sender=&amp;quot;chz16&amp;quot; time=&amp;quot;&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;status type=&amp;quot;away&amp;quot; sender=&amp;quot;mactigerz&amp;quot; time=&amp;quot;&amp;quot;&amp;gt;brb, working on the XML log format&amp;lt;/status&amp;gt;&lt;br /&gt;
    &amp;lt;event type=&amp;quot;windowClosed&amp;quot; time=&amp;quot;&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/chat&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This format remains [http://trac.adiumx.com/wiki/XMLLogFormat under development], so this page may not reflect the current version of the format.&lt;br /&gt;
&lt;br /&gt;
==Format ILRT Logger Bot ==&lt;br /&gt;
Trouvé sur : http://chatlogs.planetrdf.com/swig/, généré par : http://cvs.ilrt.org/cvsweb/redland/logger/, il existe trois formats : HTML, texte clair et RDF. L'entrée discutait du format RDF, parce qu'elle est probablement dirigée vers les machines et non les personnes.&lt;br /&gt;
&lt;br /&gt;
Prendre d'abord juste le RDF parce que c'est amusant et probablement 100% semantique. Très belle Séquence directe RDF avec date/description/creator, exception fait de la ligne avec une relation Dublin Core. Parce que c'est normal avec RDF, les sémantiques sont réutilisées, ainsi pour capter pleinement qu'il y a quelque travail à faire, regardez : http://www.w3.org/2004/Talks/0522-rrs/ Le groupe FOAF s'est retrouvée impliqué dans le chat IRC parce que les noms IRC sont un des moyens d'identifier les personnes, il semble que cela soit une boule de neige, pas sûr si le truc du ChatChannel est officiel ou non. Les trucs Dublin Core et WordNet sont mentionnés dans la spec index FOAF, mais semble manquer à partir du texte véritable, je pourrais regarder une ancienne version.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;rdf:RDF xmlns:rdf=&amp;quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;quot;&lt;br /&gt;
         xmlns:dc=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&lt;br /&gt;
         xmlns:wn=&amp;quot;http://xmlns.com/wordnet/1.6/&amp;quot;&lt;br /&gt;
         xmlns:foaf=&amp;quot;http://xmlns.com/foaf/0.1/&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;foaf:ChatChannel rdf:about=&amp;quot;irc://irc.freenode.net/swig&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;foaf:chatEventList&amp;gt;&lt;br /&gt;
    &amp;lt;rdf:Seq&amp;gt;&lt;br /&gt;
      &amp;lt;rdf:li&amp;gt;&lt;br /&gt;
       &amp;lt;foaf:chatEvent rdf:ID=&amp;quot;T00-01-19&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;dc:date&amp;gt;2006-02-01T00:01:19Z&amp;lt;/dc:date&amp;gt;&lt;br /&gt;
        &amp;lt;dc:description&amp;gt;keithalexander has quit&amp;lt;/dc:description&amp;gt;&lt;br /&gt;
        &amp;lt;dc:creator&amp;gt;&amp;lt;wn:Person foaf:nick=&amp;quot;keithalexander&amp;quot;/&amp;gt;&amp;lt;/dc:creator&amp;gt;&lt;br /&gt;
       &amp;lt;/foaf:chatEvent&amp;gt;&lt;br /&gt;
      &amp;lt;/rdf:li&amp;gt;&lt;br /&gt;
      &amp;lt;rdf:li&amp;gt;&lt;br /&gt;
       &amp;lt;foaf:chatEvent rdf:ID=&amp;quot;T00-27-42&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;dc:date&amp;gt;2006-02-01T00:27:42Z&amp;lt;/dc:date&amp;gt;&lt;br /&gt;
        &amp;lt;dc:description&amp;gt;Gromgull: nice quote re. x years later&amp;lt;/dc:description&amp;gt;&lt;br /&gt;
        &amp;lt;dc:creator&amp;gt;&amp;lt;wn:Person foaf:nick=&amp;quot;CaptSolo&amp;quot;/&amp;gt;&amp;lt;/dc:creator&amp;gt;&lt;br /&gt;
       &amp;lt;/foaf:chatEvent&amp;gt;&lt;br /&gt;
      &amp;lt;/rdf:li&amp;gt;&lt;br /&gt;
      &amp;lt;rdf:li&amp;gt;&lt;br /&gt;
       &amp;lt;foaf:chatEvent rdf:ID=&amp;quot;T01-38-49&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;dc:date&amp;gt;2006-02-01T01:38:49Z&amp;lt;/dc:date&amp;gt;&lt;br /&gt;
        &amp;lt;dc:description&amp;gt;A: http://aaronland.info/python/pyupcoming/ from karlUshi&amp;lt;/dc:description&amp;gt;&lt;br /&gt;
        &amp;lt;dc:creator&amp;gt;&amp;lt;wn:Person foaf:nick=&amp;quot;dc_swig&amp;quot;/&amp;gt;&amp;lt;/dc:creator&amp;gt;&lt;br /&gt;
        &amp;lt;dc:relation rdf:resource=&amp;quot;http://aaronland.info/python/pyupcoming/&amp;quot;/&amp;gt;&lt;br /&gt;
       &amp;lt;/foaf:chatEvent&amp;gt;&lt;br /&gt;
      &amp;lt;/rdf:li&amp;gt;&lt;br /&gt;
    &amp;lt;/rdf:Seq&amp;gt;&lt;br /&gt;
  &amp;lt;/foaf:chatEventList&amp;gt;&lt;br /&gt;
&amp;lt;/foaf:ChatChannel&amp;gt;&lt;br /&gt;
&amp;lt;/rdf:RDF&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Format Interne Trillian==&lt;br /&gt;
Ceci est destiné au chat AIM, mais celui pour un chat Yahoo! ressemble à la même chose. Sauvegardé sous texte clair tout comme XML. (user1 est local). Ceci est une description du format XML, parce qu'elle est probablement destinées pour les machines et non les humains.&lt;br /&gt;
&lt;br /&gt;
Le même en XML :&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;session type=&amp;quot;start&amp;quot; time=&amp;quot;1112395386&amp;quot; medium=&amp;quot;AIM&amp;quot; to=&amp;quot;user2&amp;quot; from=&amp;quot;user1&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;message type=&amp;quot;incoming_privateMessage&amp;quot; time=&amp;quot;1112395386&amp;quot; medium=&amp;quot;AIM&amp;quot; to=&amp;quot;user1&amp;quot; from=&amp;quot;user2&amp;quot; from_display=&amp;quot;user2&amp;quot; text=&amp;quot;ping&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;message type=&amp;quot;information_standard&amp;quot; time=&amp;quot;1112395387&amp;quot; medium=&amp;quot;AIM&amp;quot; text=&amp;quot;Auto%2Dresponse%20sent%20to%20user2%3A%20My%20hovercraft%20is%20full%20of%20eels%2E&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;message type=&amp;quot;outgoing_privateMessage&amp;quot; time=&amp;quot;1112395573&amp;quot; medium=&amp;quot;AIM&amp;quot; to=&amp;quot;user2&amp;quot; from=&amp;quot;user1&amp;quot; from_display=&amp;quot;user1&amp;quot; text=&amp;quot;hey&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;session type=&amp;quot;stop&amp;quot; time=&amp;quot;1112395619&amp;quot; medium=&amp;quot;AIM&amp;quot; to=&amp;quot;user2&amp;quot; from=&amp;quot;user1&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Il existe aussi un fichier &amp;quot;user2-assets.xml&amp;quot; pour les choses comme les icônes Buddy &amp;amp; et fichiers  transers :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;asset medium=&amp;quot;AIM&amp;quot; name=&amp;quot;user2&amp;quot; link=&amp;quot;C%3A%5CProgram%20Files%5CTrillian%5Cusers%5Cdefault%5Cbuddyicons%5Cassets%5CAIM%2Duser2%2D1118046544%2Ejpg&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;asset medium=&amp;quot;AIM&amp;quot; name=&amp;quot;user2&amp;quot; link=&amp;quot;D%3A%5CPIX%5CY2005%5C0619%5CMOV02050%2EMPG&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;asset medium=&amp;quot;AIM&amp;quot; name=&amp;quot;user2&amp;quot; link=&amp;quot;C%3A%5CDocuments%20and%20Settings%5Cant%5CDesktop%5CDSCN0372_resize%2EJPG&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;asset medium=&amp;quot;AIM&amp;quot; name=&amp;quot;user2&amp;quot; link=&amp;quot;C%3A%5CProgram%20Files%5CTrillian%5Cusers%5Cdefault%5Cbuddyicons%5Cassets%5CAIM%2Duser2%2D1133932754%2Ejpg&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Format Nature podcast  ==&lt;br /&gt;
&lt;br /&gt;
Fragments de XML extrait de [http://www.nature.com/nature/podcast/v440/n7085/nature-2006-04-06.html du journal podcast de Nature du 6 avril 2006]. Les différences à partir des formats de chat incluent le manque (actuel) de quelque timestamp et &amp;quot;rôles&amp;quot; définis, par ex : presenter/interviewer/interviewee.&lt;br /&gt;
&lt;br /&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;podcast id=&amp;quot;nature-2006-04-06&amp;quot;&lt;br /&gt;
         xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot;&lt;br /&gt;
         xsi:noNamespaceSchemaLocation=&amp;quot;NPG_podcast_transcript.xsd&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;source&amp;gt;&lt;br /&gt;
    &amp;lt;jtl&amp;gt;Nature&amp;lt;/jtl&amp;gt;&lt;br /&gt;
    &amp;lt;vol&amp;gt;440&amp;lt;/vol&amp;gt;&lt;br /&gt;
    &amp;lt;iss&amp;gt;7085&amp;lt;/iss&amp;gt;&lt;br /&gt;
    &amp;lt;idt&amp;gt;20060406&amp;lt;/idt&amp;gt;&lt;br /&gt;
    &amp;lt;issn type=&amp;quot;print&amp;quot;&amp;gt;0028-0836&amp;lt;/issn&amp;gt;&lt;br /&gt;
    &amp;lt;issn type=&amp;quot;electronic&amp;quot;&amp;gt;1476-4679&amp;lt;/issn&amp;gt;&lt;br /&gt;
    &amp;lt;cpg&amp;gt;&lt;br /&gt;
      &amp;lt;cpy&amp;gt;2006&amp;lt;/cpy&amp;gt;&lt;br /&gt;
      &amp;lt;cpn&amp;gt;Nature Publishing Group&amp;lt;/cpn&amp;gt;&lt;br /&gt;
    &amp;lt;/cpg&amp;gt;&lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
  &amp;lt;fm&amp;gt;&lt;br /&gt;
    &amp;lt;doi&amp;gt;10.1038/pod-nature-2006-04-06&amp;lt;/doi&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Nature Podcast&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;presenter&amp;gt;&lt;br /&gt;
      &amp;lt;name&amp;gt;&lt;br /&gt;
        &amp;lt;fname&amp;gt;Chris&amp;lt;/fname&amp;gt;&lt;br /&gt;
        &amp;lt;sname&amp;gt;Smith&amp;lt;/sname&amp;gt;&lt;br /&gt;
      &amp;lt;/name&amp;gt;&lt;br /&gt;
    &amp;lt;/presenter&amp;gt;&lt;br /&gt;
    &amp;lt;intro&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;&lt;br /&gt;
        This is a transcript of the 6 April edition of the weekly  podcast.&lt;br /&gt;
	Audio files for the current show and archive episodes can be accessed&lt;br /&gt;
	from the  podcast index page (&amp;lt;weblink url=&amp;quot;http://www.nature.com/nature/podcast&amp;quot;/&amp;gt;)...&lt;br /&gt;
      &amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Sponsor: The  podcast from...&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;This week Tiktaalik and what it can tell us about how early life invaded the land..&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/intro&amp;gt;&lt;br /&gt;
  &amp;lt;/fm&amp;gt;&lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;interview&amp;gt;&lt;br /&gt;
      &amp;lt;interviewer&amp;gt;&lt;br /&gt;
        &amp;lt;name&amp;gt;&lt;br /&gt;
          &amp;lt;fname&amp;gt;Chris&amp;lt;/fname&amp;gt;&lt;br /&gt;
          &amp;lt;sname&amp;gt;Smith&amp;lt;/sname&amp;gt;&lt;br /&gt;
        &amp;lt;/name&amp;gt;&lt;br /&gt;
        &amp;lt;p&amp;gt;Hello, I'm Chris Smith. Welcome to the 6th April edition of Nature's podcast.&lt;br /&gt;
	  First this week we're winding our watches back about 380 million years to the time when&lt;br /&gt;
	  the first animals substituted feet for fins and began to heave themselves out of the&lt;br /&gt;
	  sea and onto land... (&amp;lt;cite&amp;gt;&lt;br /&gt;
            &amp;lt;jtl&amp;gt;Nature&amp;lt;/jtl&amp;gt;&lt;br /&gt;
            &amp;lt;vid&amp;gt;440&amp;lt;/vid&amp;gt;, &amp;lt;ppf&amp;gt;747&amp;lt;/ppf&amp;gt;&amp;amp;#45;&amp;lt;ppl&amp;gt;749&amp;lt;/ppl&amp;gt;; &amp;lt;cd&amp;gt;2006&amp;lt;/cd&amp;gt;&lt;br /&gt;
            &amp;lt;refdoi&amp;gt;10.1038/440747a&amp;lt;/refdoi&amp;gt;&lt;br /&gt;
          &amp;lt;/cite&amp;gt;).&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;/interviewer&amp;gt;&lt;br /&gt;
      &amp;lt;interviewee&amp;gt;&lt;br /&gt;
        &amp;lt;name&amp;gt;&lt;br /&gt;
          &amp;lt;fname&amp;gt;Neil&amp;lt;/fname&amp;gt;&lt;br /&gt;
          &amp;lt;sname&amp;gt;Shubin&amp;lt;/sname&amp;gt;&lt;br /&gt;
        &amp;lt;/name&amp;gt;&lt;br /&gt;
        &amp;lt;p&amp;gt;The transition from a fish that lives in water to an animal that's able to live on land&lt;br /&gt;
	  is one of the great transitions in the history of life. We know from a variety of...&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;/interviewee&amp;gt;&lt;br /&gt;
      ...&lt;br /&gt;
    &amp;lt;/interview&amp;gt;&lt;br /&gt;
    &amp;lt;filler&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Well that's it for this week, and thanks for listening. Remember that...&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Next week we are fighting malaria and finding out how parasites can...&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Production on this week's  podcast was by Anna Lacey in the Department of Pathology&lt;br /&gt;
        at Cambridge University, and I'm Chris Smith.&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Sponsor: The  podcast is sponsored by Bio-Rad at the center of scientific discovery&lt;br /&gt;
        for over 50 years, and on the web at &amp;lt;weblink url=&amp;quot;http://www.discover.biorad.com&amp;quot;/&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/filler&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/podcast&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=process-brainstorming-fr&amp;diff=34597</id>
		<title>process-brainstorming-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=process-brainstorming-fr&amp;diff=34597"/>
		<updated>2008-11-17T23:59:51Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Permettre le positif */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt;brainstorming processus&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Beaucoup d'idées et d'expériences sont entrées dans le [[process-fr|processus]] de conception des microformats, et quelque part je veux capturer cette historique. Néanmoins, cette page n'est pas pour cet objectif, mais plutôt pour rassembler les brainstorms et idées sur l'amélioration du processus, accompagnées de quelques méthodologies (ou patterns) pour imaginer des modifications du processus.&lt;br /&gt;
&lt;br /&gt;
par [http://tantek.com/ Tantek], 20060801T1745-0700.&lt;br /&gt;
&lt;br /&gt;
== Hypothèses de Questionnement ==&lt;br /&gt;
&lt;br /&gt;
Beaucoup de choses que les [[microformats-fr|microformats]] sont parvenus à faire peuvent être directement attribuées à différentes hypothèses faites par d'autres organisations, groupes et experts qui ont été interrogés au sujet de la technologie, du balisage, de l'adoption, du XML, du XHTML, etc.&lt;br /&gt;
&lt;br /&gt;
Il y a d'autres formes d'hypothèses étant questionnées ici, même des hypothèses qui pour la plupart ne réalisent pas qu'elles sont dues aux habitudes et aux façons de penser apprises il y a des années. Pour ne pas citer les comportements culturels établis dans différentes communautés.&lt;br /&gt;
&lt;br /&gt;
=== Empêcher le négatif ===&lt;br /&gt;
&lt;br /&gt;
Une hypothèse LARGEMENT répandue de processus de pensée (la bureaucratie si vous voulez) est qu'il est de la plus haute importance (même non questionné) d'empêcher le négatif d'arriver. negatives from occuring. J'utilise &amp;quot;négatif&amp;quot; ici comme un raccourci pour &amp;quot;actions négatives&amp;quot;, &amp;quot;productions négatives&amp;quot;, etc. Si vous lisez n'importe quel contrat par exemple, vous verrez une concentration incroyable et une obsession pour empêcher le le négatif. La plupart des processus construisent des règles à suivre pour empêcher le négatif qui s'est passé précédemment. Non couvert par le processus. Les règles ajoutées au processus pour empêcher le problème. On pourrait même affimer que la plupart des gouvernements et corps de lois ont grandi ainsi.&lt;br /&gt;
&lt;br /&gt;
Qu'est-ce qui ne va pas avec la concentration pour empêcher le négatif ?&lt;br /&gt;
&lt;br /&gt;
Parce que c'est rarement le *véritable* objectif de toute organisation ou effort. La plupart des efforts ont un but spécifique *constructif* en tête et *ce* but est plus important que d'empêcher le négatif. Alors que ce peut être facile à comprendre, l'habitude d'empêcher le négatif est si profondément ancrée que les personnes agissent souvent pour éviter le négatif à un tel point qu'elles empêchent par la même le(s) *véritables but(s) de(s) efforts et de ce fait en viennent à penser et agir contre leurs propres intérêts.&lt;br /&gt;
&lt;br /&gt;
Quelle est l'alternative pour empêcher le négatif ?&lt;br /&gt;
&lt;br /&gt;
Une alternative pourrait être le véritable objectif de l'organisation ou l'effort, comme expliqué au-dessus. Ou plutôt, cela ne fonctionne pas de façon suffisamment universelle afin de véritablement combattre l'empêchement de l'hypothèse négative profonde. Quand cet objectif ou effort est accompli, il est vraiment trop facile de se replier simplement sur de vieilles habitudes.&lt;br /&gt;
&lt;br /&gt;
L'alternative-clé d'empêcher le négatif est l'inversion de la déclaration complète.&lt;br /&gt;
&lt;br /&gt;
== Permettre le positif ==&lt;br /&gt;
&lt;br /&gt;
Une des réalisations-clés que j'ai (et beaucoup d'autres personnes ont) vu et par conséquent interagi avec Wikipedia était la façon dont la nature du médium et la culture et la communauté construite autour permettait un flux constant de petites étapes positives pour construire quelque chose d'incroyable. Je ne suis pas certain que cet aspect ait été ouvertement designé à l'intérieur du système (et la culture avoisinante), ou si c'était un accident heureux ou si cela a évolué. Quand même, nous pouvons utiliser cet aspect en tant que center de design, tout spécialement pour quelque chose comme les microformats qui dépendent aussi des contributions incrémentales positives de beaucoup de personnes.&lt;br /&gt;
&lt;br /&gt;
De ce fait quand quelqu'un fait quelque chose qui apparaît provoquer un négatif, plutôt que de penser d'abord, comment empêchons-nous ça, nous devrions considérer la façon dont nous redirigeons/façonnons l'*initiative*, l'*énergie* et l'*intérêt* de cette personne et *permettre* à de telles contributions d'être positives, plutôt que de nous concentrer à empêcher de telles actions. A long terme, je pense que ce type de changement psychologique sera absolument essentiel pour faire grandir à la fois la taille et la productivité de la communauté.&lt;br /&gt;
&lt;br /&gt;
(Est-ce que ceci aurait dû être à la place un billet de blog ?)&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples&amp;diff=34596</id>
		<title>species-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples&amp;diff=34596"/>
		<updated>2008-11-17T23:58:56Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Contributors */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Species Examples=&lt;br /&gt;
&lt;br /&gt;
Examples of common and scientific names of living things, which could be marked up with a &amp;quot;'''[[species]]'''&amp;quot; (or similar) microformat. Note use of matching pairs of examples, where possible.&lt;br /&gt;
&lt;br /&gt;
:'''Note: the original name of the proposed microformat, &amp;quot;species&amp;quot;, is likely to change, probably to &amp;quot;biota&amp;quot; or &amp;quot;taxon&amp;quot;. The former has been retained here, to avoid having to make many repetitive and perhaps redundant edits'''&lt;br /&gt;
&lt;br /&gt;
'''If you find a link which is not working, please replace it with a suitable alternative, rather than simply deleting it. Thank you.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Types of publishers==&lt;br /&gt;
&lt;br /&gt;
There are, perhaps, three types of publisher of taxonomic information (with all the usual overlaps and exceptions one finds when generalising so much!):&lt;br /&gt;
&lt;br /&gt;
#Those which publish a full or partial hierarchy, like [http://names.ubio.org/browser/classifications.php?conceptID=2463046 UBIO].&lt;br /&gt;
#Those which publish a binominal, or a binominal with a qualifier, like a subspecies, variety, breed, hybridisation - but still referring to a single type of living thing, with no higher- level taxonomy. e.g [http://www.westmidlandbirdclub.com/records/lists.htm the West Midland Bird Club's county lists]&lt;br /&gt;
#These which publish common (or &amp;quot;vernacular&amp;quot;) names, but who would be interested in &amp;quot;aliasing&amp;quot; those to the scientific equivalent. e.g [http://www.westmidlandbirdclub.com/ladywalk/latest.htm the West Midland Bird Club's news from Ladywalk]&lt;br /&gt;
&lt;br /&gt;
Interestingly, some sites (Wikipedia, for example) have pages which fall into each of the three categories! &lt;br /&gt;
#[http://en.wikipedia.org/wiki/Bar-tailed_Godwit Bar tailed Godwit]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Genetics_of_humans Genetics of humans]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Ladywalk Ladywalk]&lt;br /&gt;
&lt;br /&gt;
[[User:AndyMabbett|AndyMabbett]] 12:05, 23 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
==Binominals==&lt;br /&gt;
&lt;br /&gt;
===Birds===&lt;br /&gt;
&lt;br /&gt;
'''Black-tailed Godwit''' on [http://www.westmidlandbirdclub.com/ladywalk/latest.htm West Midland Bird Club's Ladywalk reserve latest news page]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Limosa limosa'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/records/lists.htm West Midland Bird Club county lists]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Common Name&amp;lt;/th&amp;gt;&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Scientific Name&amp;lt;/th&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&amp;lt;th scope=&amp;quot;row&amp;quot; class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/th&amp;gt;&amp;lt;td class=&amp;quot;sci&amp;quot;&amp;gt;Limosa limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Eurasian Bittern'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/ladywalk/BITTE.htm Bitterns at LAdywalk]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Eurasian Bitterns&amp;lt;/b&amp;gt;, (&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Botaurus stellaris&amp;lt;/i&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Mammal===&lt;br /&gt;
'''Wolf''' on [http://www.wolf.org/wolves/index.asp International Wolf Center]&lt;br /&gt;
&lt;br /&gt;
'''''Canis_lupus''''' on [http://animaldiversity.ummz.umich.edu/site/accounts/information/Canis_lupus.html Animal Diversity Web]&lt;br /&gt;
&lt;br /&gt;
===Fish===&lt;br /&gt;
'''Northern pike''' on [http://www.dnr.state.mn.us/fish/northern/index.html Minnesota Department of Natural Resources]&lt;br /&gt;
&lt;br /&gt;
'''''Esox lucius''''' on [http://www.pikezander.co.uk/pike.htm Pike &amp;amp; Zander]&lt;br /&gt;
&lt;br /&gt;
===Insect===&lt;br /&gt;
'''Death’s Head Hawkmoth''' on [http://funkman.org/animal/insect/deathheadmoth.html Animal Teachers]&lt;br /&gt;
&lt;br /&gt;
'''''Acherontia atropos''''' on [http://ukmoths.org.uk/show.php?id=2540 UK Moths]&lt;br /&gt;
&lt;br /&gt;
'''Migrant Hawker''' (''Aeshna mixta'') on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Center]&lt;br /&gt;
&lt;br /&gt;
===Arachnid===&lt;br /&gt;
'''Rose Trantula''' on [http://www.practical-pet-care.com/spider_question.php?ID=1.2006100416232172 Pet Care Forum]&lt;br /&gt;
&lt;br /&gt;
'''''Araneus angulatus''''' on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Center] (this is a duplicate. [[User:BenWest|BenWest]] 21:56, 21 Oct 2006 (PDT))&lt;br /&gt;
&lt;br /&gt;
===Plant===&lt;br /&gt;
'''Bog Pimpernel''' on [http://www.map-reading.co.uk/wildflowers/HTML%20files/f0219.htm Map Reading's Wildflower Images]&lt;br /&gt;
&lt;br /&gt;
'''''Anagallis tenella''''' on [http://www.bioimages.org.uk/HTML/T47624.HTM BioImages]&lt;br /&gt;
&lt;br /&gt;
'''''Persicaria campanulatum''''' on [http://www.record-lrc.co.uk/?Mod=Forum&amp;amp;Do=ViewThread&amp;amp;ForumID=6&amp;amp;ThreadID=75 rECOrd - The Biodiversity Information Center for the Cheshire region]&lt;br /&gt;
&lt;br /&gt;
'''''Galeopsis tetrahit s.s.'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm West Midland Bird Club]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Galeopsis tetrahit&amp;amp;nbsp;&lt;br /&gt;
&amp;lt;abbr lang=&amp;quot;la&amp;quot; title=&amp;quot;sensu stricto&amp;quot;&amp;gt;s.s.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
 (&amp;lt;b class=&amp;quot;plant&amp;quot;&amp;gt;Common Hemp-nettle&amp;lt;/b&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Fungi===&lt;br /&gt;
&lt;br /&gt;
'''''Amanita muscaria''''' on [http://www.mykoweb.com/CAF/species/Amanita_muscaria.html California Fungi]&lt;br /&gt;
* as '''''Amanita muscaria'' (L. per Fr.) Hooker'''&lt;br /&gt;
* as '''''Amanita muscaria var. flavivolvata'''''&lt;br /&gt;
&lt;br /&gt;
'''Fly Agaric''' on [http://www.treesforlife.org.uk/forest/mythfolk/flyagaric.html Trees for Life]&lt;br /&gt;
&lt;br /&gt;
'''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz: Fries) Singer''' on [http://www.ilmyco.gen.chicago.il.us/Taxa/Rhodomacul540.html]&lt;br /&gt;
*also written as '''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz ex Fries) Singer''' &lt;br /&gt;
*(This is where a post-Linnean author is given special rights (because his descriptions were comparatively complete - i.e. recognisable) so his interpretation of earlier names is taken as the sense meant by the original author. Think these used to be &amp;quot;apud&amp;quot; and are now &amp;quot;ex&amp;quot; although a colon has also been used. There are only a few sanctioning authors, the main one being Elias Fries.(Fr.) )&lt;br /&gt;
&lt;br /&gt;
==More than binominals==&lt;br /&gt;
&lt;br /&gt;
===Authority===&lt;br /&gt;
'''''Pica pica'' Linnaeus, (1758)''' on [http://en.wikipedia.org/wiki/European_Magpie Wikipedia: European Magpie]&lt;br /&gt;
:(i.e. named by Linnaeus in 1758)&lt;br /&gt;
&lt;br /&gt;
'''''Anarhynchus frontalis'' Quoy and Gaimard, 1830''' on [http://en.wikipedia.org/wiki/Wrybill Wikipedia: Wrybill]&lt;br /&gt;
:note two-person authority&lt;br /&gt;
&lt;br /&gt;
===Unspecified species===&lt;br /&gt;
'''''Podiceps sp.''''' on [http://www.birdlife.org/datazone/species/index.html?action=SpcHTMDetails.asp&amp;amp;sid=3644&amp;amp;m=0 Bird Life] &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;Podiceps&amp;lt;/i&amp;gt; sp.&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Psyllid plant hopper''' [http://ramblingsofanaturalist.blogspot.com/2006/07/bay-sucker-gall-trioza-alacris.html on Ramblings of a Naturalist blog]&lt;br /&gt;
&lt;br /&gt;
===Sub-species===&lt;br /&gt;
&lt;br /&gt;
====Animal====&lt;br /&gt;
'''''Larus glaucoides kumlieni''' on [http://www.birdguides.com/html/vidlib/species/Larus_glaucoides_kumlieni.htm BirdGuides]&lt;br /&gt;
&lt;br /&gt;
'''Kumlien's Gull''' on [http://www.birdsireland.com/pages/rare_bird_news/2005/january_photos.html Birds Ireland]&lt;br /&gt;
&lt;br /&gt;
====Plant====&lt;br /&gt;
'''''Pisum sativum L. subsp. sativum''''' on [http://www.plantnames.unimelb.edu.au/Sorting/Pisum.html] (also has other examples; note lack of required italics)&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;b&amp;gt;Pisum sativum&amp;lt;/b&amp;gt; L. subsp. &amp;lt;b&amp;gt;sativum&amp;lt;/b&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Cultivars (plant)===&lt;br /&gt;
'''''Chamaecyparis lawsoniana 'Aureomarginata'''''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;dd&amp;gt;&amp;lt;i&amp;gt;Chamaecyparis lawsoniana&amp;lt;/i&amp;gt; 'Aureomarginata'&amp;lt;/dd&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Chamaecyparis lawsoniana'' 'Golden Wonder'''' on [http://www.plantago.nl/plantindex/c/Chamaecyparis/Chamaecyparis_4.htm plantago.nl]&lt;br /&gt;
&lt;br /&gt;
====Cultivar groups (plant)====&lt;br /&gt;
'''''Brassica oleracea'' Botrytis Group'''  on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
&lt;br /&gt;
===Trade names (plant)===&lt;br /&gt;
&lt;br /&gt;
'''''Rosa'' Peace''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
:(&amp;quot;Peace&amp;quot; is a trade designation or &amp;quot;selling name&amp;quot; for the cultivar R. 'Madame A. Meilland' and should therefore be printed in a different typeface from the rest of the name, without any quote marks)&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Giant Single'''' on [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds]&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Infrared' F1''' on [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds] &lt;br /&gt;
:(Note &amp;quot;F1&amp;quot; cross designation)&lt;br /&gt;
&lt;br /&gt;
===Variety (plant)===&lt;br /&gt;
'''''Pisum sativum var. macrocarpon''''' on [http://davesgarden.com/pf/go/8/index.html Dave's Garden]&lt;br /&gt;
&lt;br /&gt;
====Sub-variety (plant)====&lt;br /&gt;
&lt;br /&gt;
'''''Betula ermani var. genuina subvar. brevidentata''''' on [http://www.nccpg.com/gloucestershire/wilson1.html National Council for the Conservation of Plants and Gardens, Gloucestershire Group] (plus many other examples)&lt;br /&gt;
&lt;br /&gt;
===Form (plant)===&lt;br /&gt;
&lt;br /&gt;
'''''Acanthocalycium spiniflorum f. klimpelianum''''' on [http://en.wikipedia.org/wiki/Form_%28botany%29 Wikipedia: form (botany)]&lt;br /&gt;
*aka '''''Acanthocalycium spiniflorum forma klimpelianum'''''&lt;br /&gt;
&lt;br /&gt;
===Sense (plant)===&lt;br /&gt;
'''''Ranunculus aquatilis s.l.''''' and '''''R. aquatilis s.s'''''; on [http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm Blithfield Reservoir: Survey of Flowering Plants...] (see also footnotes on that page)&lt;br /&gt;
&lt;br /&gt;
===Cross (plant)===&lt;br /&gt;
'''''Digitalis x mertonensis''''' on [http://www.hortax.org.uk/gardenplantsnames.html Hortax]&lt;br /&gt;
:The hybrid name for all plants derived from the cross between '''D. purpurea''' and '''D. grandiflora'''. The &amp;quot;x&amp;quot; indicates the hybrid status. &lt;br /&gt;
&lt;br /&gt;
'''''× Fatshedera lizei''''' on [http://oregonstate.edu/dept/ldplants/sci-names.htm Scientific Plant Names, Oregon State Univ., Landscape Plants]&lt;br /&gt;
&lt;br /&gt;
===Strain (bacteria)===&lt;br /&gt;
'''''Escherichia coli O157:H7''''' on [http://www.cfsan.fda.gov/~mow/chap15.html FDA.gov]&lt;br /&gt;
&lt;br /&gt;
'''''E.Coli''''' on [http://news.bbc.co.uk/1/hi/england/southern_counties/5346842.stm BBC news]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Synonyms===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Tarpan The Tarpan], '''''Equus ferus ferus''''':&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The Tarpan was first described by Johann Friedrich Gmelin in 1774; he had seen the animals in 1769 in the region of Bobrovsk, near Voronezh. In 1784 Pieter Boddaert named the species '''''Equus ferus''''', referring to Gmelin's description. Unaware of Boddaert's name, Otto Antonius published the name '''''Equus gmelini''''' in 1912, again referring to Gmelin's description. Since Antonius' name refers to the same description as Boddaert's it is a junior objective synonym.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
on http://www.westmidlandbirdclub.com/biblio/bb/71-338.htm:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;some authors still refer to Scandinavian Herring Gulls as '''''L. a. omissus'''''; others regard '''''omissus''''' as no longer valid (a synonym of '''''argentatus''''')&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Devario_chrysotaeniatus:&lt;br /&gt;
&lt;br /&gt;
:'''''Devario chrysotaeniatus''''' [...] former Names and Synonyms&lt;br /&gt;
::* '''''Danio chrysotaeniatus'''''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Tetracanthus:&lt;br /&gt;
&lt;br /&gt;
:'''''Echinocactus tetracanthus''''' synonym of '''''Parodia erinacea''''' - cactus&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Jostia_teaguei (using a &amp;quot;taxobox&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
:Binomial name&lt;br /&gt;
:'''''Jostia teaguei'''''&lt;br /&gt;
:(Luer) Luer&lt;br /&gt;
:Synonyms&lt;br /&gt;
:'''''Masdevallia teaguei''''' Luer, 1978&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://www.coleopterist.org.uk/haliplidae-list.htm &lt;br /&gt;
&lt;br /&gt;
:'''HALIPLUS''' Latreille, 1802&lt;br /&gt;
:Subgenus HALIPLUS Latreille, 1802&lt;br /&gt;
:''confinis'' Stephens, 1828&lt;br /&gt;
::''pallens'' Fowler, 1887&lt;br /&gt;
::''halberti'' Bullock, 1928&lt;br /&gt;
&lt;br /&gt;
i.e. ''Haliplus pallens'' and  ''H. halberti'' are synonyms of ''H. confinis''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See also [http://en.wikipedia.org/wiki/Special:Search?search=species+synonym&amp;amp;fulltext=Search Wkipedia search for &amp;quot;species synonym&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
===Superseded names===&lt;br /&gt;
'''''Tringa bartramia''''' superseded by '''''Bartramia longicauda''''' on [http://www.westmidlandbirdclub.com/firsts/UPLSA.htm West Midland Bird Club's Upland Sandpiper article]&lt;br /&gt;
&lt;br /&gt;
===GUID===&lt;br /&gt;
'''NBN Taxon Key''' for European Otter, ''Lutra lutra'', on [http://nbn.nhm.ac.uk/nhm/bin/nbntaxa.dll/taxon_details?taxon_key=NBNSYS0000005133 NBN Species Dictionary]: '''NBNSYS0000005133''' &lt;br /&gt;
&lt;br /&gt;
'''LSID ([http://lsid.sourceforge.net/#whatislsid Life Science Indicator])''' for ''Popillia japonica'' on [http://names.ubio.org/browser/details2.php?names=on&amp;amp;authors=on&amp;amp;sci=on&amp;amp;vern=on&amp;amp;conceptID=&amp;amp;expand=&amp;amp;namebankID=3377001 uBio]: '''urn:lsid:ubio.org:namebank:3377001'''&lt;br /&gt;
&lt;br /&gt;
===Wikipedia===&lt;br /&gt;
'''Black-tailed Godwit''' on [http://en.wikipedia.org/wiki/Black-tailed_Godwit Wikipedia: Black-tailed Godwit]&lt;br /&gt;
&lt;br /&gt;
Wikipedia uses several sets of markup, e.g. (in-line styles and links, plus some other markup, removed, for clarity):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;The &amp;lt;b&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;, &amp;lt;i&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Linking====&lt;br /&gt;
Wikipedia uses the standard convention of having species italicised. Internal links to species may be to the common name or scientific name depending on which is used as the article's title (usually common for animals, scientific for plants, although there are exceptions). Links to scientific names work regardless:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;[[Black-tailed Godwit]]&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name, but displaying scientific name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Black-tailed Godwit|Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These types of links are not used in the Black-tailed Godwit article itself, but in others related to it. e.g. [http://en.wikipedia.org/wiki/British_avifauna British avifauna]&lt;br /&gt;
&lt;br /&gt;
====Taxobox====&lt;br /&gt;
&lt;br /&gt;
Wiki markup for the taxobox (taxonomy infobox) on the English Wikipedia, as used on the Black-tailed Godwit article, with irrelevant fields removed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{Taxobox&lt;br /&gt;
| name = Black-tailed Godwit&lt;br /&gt;
| regnum = [[Animal]]ia&lt;br /&gt;
| phylum = [[Chordate|Chordata]]&lt;br /&gt;
| classis = [[bird|Aves]]&lt;br /&gt;
| ordo = [[Charadriiformes]]&lt;br /&gt;
| familia = [[Scolopacidae]]&lt;br /&gt;
| genus = ''[[Godwit|Limosa]]''&lt;br /&gt;
| species = '''''L. limosa'''''&lt;br /&gt;
| binomial = ''Limosa limosa''&lt;br /&gt;
| binomial_authority = ([[Carolus Linnaeus|Linnaeus]], 1758)&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Above is vaguely displayed in an HTML table as (with formatting and links removed):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Kingdom:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Animalia&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Phylum:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Chordata&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Class:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Aves&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Order:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Charadriiformes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Family:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Scolopacidae&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Genus:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Species:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;L. limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;th&amp;gt;binominal name&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;(Linnaeus, 1758)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also allows for other levels of taxonomy (e.g. genus or subspecies), and synonyms.&lt;br /&gt;
&lt;br /&gt;
==Quantitative evidence==&lt;br /&gt;
&lt;br /&gt;
For evidence of quantitative, rather than qualitative, use of species' and other taxonomic names, see [[species-examples-quantitative]]&lt;br /&gt;
&lt;br /&gt;
==Notable websites==&lt;br /&gt;
These high-profile websites use species names&lt;br /&gt;
&lt;br /&gt;
*Amazon&lt;br /&gt;
**[http://www.amazon.co.uk/s/?url=search-alias%3Daps&amp;amp;field-keywords=%22house+sparrow%22 search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*BBC News&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/uk/4835208.stm Fewer birds spotted in UK gardens]&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/england/london/4743250.stm Study to solve sparrow's decline riddle]&lt;br /&gt;
&lt;br /&gt;
*Encyclopaedia Britannica - all species, e.g.&lt;br /&gt;
**[http://concise.britannica.com/ebc/article-9379473/starling Starling]&lt;br /&gt;
&lt;br /&gt;
*Flickr&lt;br /&gt;
**[http://www.flickr.com/photos/tags/citheronia/ Tag for moth genera 'citheronia']&lt;br /&gt;
***[http://www.flickr.com/photos/30268343@N00/152101772/ Sample result from that search]&lt;br /&gt;
**[http://www.flickr.com/groups/birdguide/ Field Guide: Birds of the World] 23,073 tagged photos, as at 2006-10-21&lt;br /&gt;
&lt;br /&gt;
*CNN&lt;br /&gt;
**[http://archives.cnn.com/2001/NATURE/01/24/dying.eagles/ Disease threatens bald eagle population]&lt;br /&gt;
&lt;br /&gt;
*eBay&lt;br /&gt;
**[http://search.ebay.com/house-sparrow search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*The Guardian&lt;br /&gt;
**[http://environment.guardian.co.uk/conservation/story/0,,1878956,00.html The call of the wildlife]&lt;br /&gt;
**[http://education.guardian.co.uk/higher/news/story/0,,1665396,00.html Sparrow joins 'raped' duck in Dutch museum] (note improper capitalisation &amp;quot;''passer domesticus''&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*The Internet Movie Database&lt;br /&gt;
**[http://www.imdb.com/title/tt0029443/ Private Life of the Gannets]&lt;br /&gt;
***[http://www.imdb.com/title/tt0029443/trivia Private Life of the Gannets trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0133318/ The Trials of Life]&lt;br /&gt;
**[http://www.imdb.com/title/tt0227812/ Whooping Crane]&lt;br /&gt;
***[http://www.imdb.com/title/tt0227812/trivia Whooping Crane trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0301727/ Winged Migration]&lt;br /&gt;
&lt;br /&gt;
*London Zoo&lt;br /&gt;
**[http://www.zsl.org/london-zoo/animals/birds/tawny-frogmouth,99,AN.html Tawny frogmouth]&lt;br /&gt;
&lt;br /&gt;
*Microsoft&lt;br /&gt;
**[http://www.microsoft.com/games/zootycoon/zoo2/zoo2_ymi_animals1.asp Zoo Tycoon]&lt;br /&gt;
&lt;br /&gt;
*MSN-Encarta - all species, e.g.&lt;br /&gt;
**[http://encarta.msn.com/encnet/refpages/search.aspx?q=vulgaris&amp;amp;Submit2=Go Search for &amp;quot;vulgaris&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*MySpace&lt;br /&gt;
**[http://blog.myspace.com/index.cfm?fuseaction=blog.view&amp;amp;friendID=47134278&amp;amp;blogID=79591637]&lt;br /&gt;
&lt;br /&gt;
*Nature&lt;br /&gt;
**[http://www.nature.com/nature/focus/avianflu/index.html Avian flu web focus]&lt;br /&gt;
&lt;br /&gt;
*Nature Network, Boston&lt;br /&gt;
**[http://network.nature.com/boston/news/archive/2006/06/13/the-student-and-the-squid The student and the squid] '''N.B.''' site already supports rel-tag, hCard for user profiles and hCalendar for marking up events across the site.&lt;br /&gt;
&lt;br /&gt;
*NASA&lt;br /&gt;
**[http://history.nasa.gov/SP-401/ch3.htm SP-401 Skylab, Classroom in Space. Part II - Student Experiments] (&amp;quot;The common Cross spider (Araneus diadematus)&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*New York Times&lt;br /&gt;
**[http://query.nytimes.com/gst/fullpage.html?sec=travel&amp;amp;res=9D04E4DE1131F93BA25751C0A9669C8B63 Where the Eagles Fly: Seeing the National Symbol]&lt;br /&gt;
&lt;br /&gt;
*Sky News&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,15410-1249430,00.html Homo floresiensis]&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,30200-13546024,00.html Atlapetes latinuchus yariguierum]&lt;br /&gt;
**[http://news.sky.com/skynews/picture_gallery/picture_gallery/0,,15410-1244699,00.html Polypedates chlorophthalmus]&lt;br /&gt;
**[http://search.sky.com/search/skynews/results/1,,,00.html?CID=30000&amp;amp;QUERY=species&amp;amp;SITEREF=skynews&amp;amp;SECTION=&amp;amp;TYPE_REF=&amp;amp;radiodate=&amp;amp;dayFrom=dd&amp;amp;monthFrom=mm&amp;amp;yearFrom=yyyy&amp;amp;dayTo=dd&amp;amp;monthTo=mm&amp;amp;yearTo=yyyy&amp;amp;Submit.x=0&amp;amp;Submit.y=0 Sky News search for &amp;quot;species&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*Snopes (Urban Legends Reference Pages)&lt;br /&gt;
**[http://www.snopes.com/photos/animals/fishfly.asp Fish Fly]&lt;br /&gt;
&lt;br /&gt;
*United Kingdom Government&lt;br /&gt;
**[http://www.defra.gov.uk/wildlife-countryside/vertebrates/gen-licence.htm DEFRA: General licences under the Wildlife &amp;amp; Countryside Act 1981]&lt;br /&gt;
&lt;br /&gt;
*United Nations&lt;br /&gt;
** [http://www.oceansatlas.org/ Atlas of the Oceans] e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm Chilean nylon shrimp ''Heterocarpus reedi'']&lt;br /&gt;
&lt;br /&gt;
*United States of America Government &lt;br /&gt;
**ITIS, e.g. [http://www.itis.usda.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&amp;amp;search_value=179628 Passer Domesticus] - &amp;quot;authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://dev.w3.org/cvsweb/2000/10/swap/test/ferrell/biology.n3?rev=1.4 An Ontology of Biology]&lt;br /&gt;
**[http://esw.w3.org/topic/HCLSIG_BioRDF_Subgroup/Tasks/Reagents/Status_Reports/2006-05-04 BioRDF Sub-group Status Report, 4 May 2006]&lt;br /&gt;
&lt;br /&gt;
*Yahoo Groups&lt;br /&gt;
**[http://tech.groups.yahoo.com/group/passerdomesticus/ passerdomesticus] species as group name!&lt;br /&gt;
&lt;br /&gt;
*YouTube&lt;br /&gt;
**[http://www.youtube.com/results?search_query=starling&amp;amp;search=Search YouTube search for 'starling']]&lt;br /&gt;
&lt;br /&gt;
==Breaking news==&lt;br /&gt;
In under two weeks, the BBC News website carried the following stories, all including the scientific names of species:&lt;br /&gt;
*[http://news.bbc.co.uk/1/shared/spl/hi/pop_ups/06/sci_nat_orchid_spectacular/html/1.stm BBC News: Stunning new orchids from Asia's rainforest] - 2006-10-16&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6045802.stm BBC News: Winter home find cheers twitchers] (winter home of the northern bald ibis found) - 2006-10-13&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6043648.stm BBC News: New mouse find is 'living fossil'] - 2006-10-12&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6035113.stm BBC News: Giant camel fossil found in Syria] - 2006-10-10&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5414410.stm BBC News: Sharks swim into political waters] - 2006-10-06&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5403570.stm BBC News: 'Monster' fossil find in Arctic] - 2006-10-05&lt;br /&gt;
&lt;br /&gt;
==Use in blogs==&lt;br /&gt;
*[http://technorati.com/search/%22passer%20domesticus%22 Technorati search for &amp;quot;Passer domesticus&amp;quot;] (367 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22acer%20palmatum%22 Technorati search for &amp;quot;Acer palmatum&amp;quot;] (682 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22Homo%20sapiens%22 Technorati search for &amp;quot;Homo sapiens&amp;quot;] (40,932 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/birding Technorati search for &amp;quot;birding&amp;quot;] (26,472 found, as at 2006-09-25)&lt;br /&gt;
*[http://ramblingsofanaturalist.blogspot.com/ Ramblings of a Naturalist]&lt;br /&gt;
*[http://squaremetre1.blogspot.com/ The Square Metre]&lt;br /&gt;
*[http://windowboxwildlife.blogspot.com/index.html Windowbox Wildlife]&lt;br /&gt;
*[http://www.rxwildlife.org.uk/ RXWildlife]&lt;br /&gt;
*[http://newsbou.blogspot.com/ British Ornithologists' Union news]&lt;br /&gt;
*[http://fieldmarking.reger.com/ FieldMarking] - An experiment to see how people can collaborate to record wildlife observations in blogs.&lt;br /&gt;
&lt;br /&gt;
==And finally...==&lt;br /&gt;
Gary Larson, in his book ''The Far Side Gallery'' (Warner Books, 1980, ISBN 0751502367) has a cartoon, showing two entomologists sitting down to eat dinner in a jungle. One says to the other &amp;quot;Hey! What's this ''Drosophila melanogaster'' doing in my soup?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proponent)&lt;br /&gt;
*Malcolm Storey (per e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Center] (proponent)&lt;br /&gt;
*[[User:SteveMcBill|Steve McWilliam]], [http://www.rECOrd-LRC.co.uk/ rECOrd - The Biodiversity Information System for the Cheshire region] (proponent)&lt;br /&gt;
*[[User:PeNGo|Peter Halasz]], Wikipedia Admin.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{species}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=hcard-brainstorming-fr&amp;diff=34595</id>
		<title>hcard-brainstorming-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=hcard-brainstorming-fr&amp;diff=34595"/>
		<updated>2008-11-17T23:58:23Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Exemples potentiels dans la jungle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; hCard Brainstorming &amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Cette page est pour brainstormer sur les différentes utilisation et les détails de [[hcard-fr|hCard]].&lt;br /&gt;
Cette page contient des &amp;lt;em&amp;gt;propositions&amp;lt;/em&amp;gt;. Pour l'état actuel, regardez svp [[hcard-fr|hCard]].&lt;br /&gt;
== Auteurs ==&lt;br /&gt;
* [http://suda.co.uk/ Brian Suda]&lt;br /&gt;
* [http://tantek.com/log/ Tantek Çelik], précédemment chez [http://technorati.com Technorati, Inc]&lt;br /&gt;
&lt;br /&gt;
== Contributeurs ==&lt;br /&gt;
* [[User:Atamido|Atamido]]&lt;br /&gt;
* [[User:ChrisMessina|ChrisMessina]]&lt;br /&gt;
* [[User:DimitriGlazkov|DimitriGlazkov]]&lt;br /&gt;
* [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
* ... et bien d'autres&lt;br /&gt;
(Traduction en cours [[Christophe Ducamp]])&lt;br /&gt;
&lt;br /&gt;
== Problèmes Etant Résolus ==&lt;br /&gt;
Quelques-uns des problèmes que [[hcard-fr|hCard]] aide à résoudre :&lt;br /&gt;
* devoir saisir les cartes de visite qui deviennent obsolètes (s'abonner à la place à la [[hcard-fr|hCard]] syndiquée de quelqu'un).&lt;br /&gt;
* &amp;quot;mise à jour de votre info de contact email&amp;quot; ennuyeuse à partir de différents services d'informations de contacts centralisés.&lt;br /&gt;
* [[social-network-portability-fr|portabilité de réseau social]] à travers l'utilisation de [[hcard-supporting-user-profiles-fr|hCard supportant les profils utilisateur]] et [[hcard-xfn-supporting-friends-lists-fr|hCard+XFN supportant les listes d'amis]]&lt;br /&gt;
&lt;br /&gt;
== Endroits nommés ==&lt;br /&gt;
La plupart des hcards contiennent de l'information de contact pour les personnes et organisations. Mais les lieux qui se sont pas des organisations méritent aussi leurs propres hCards (par ex la maison ou l'appartement de quelqu'un). Cette situation peut être représentée en combinant &amp;quot;fn&amp;quot; et &amp;quot;extended-address&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== combinaison de &amp;quot;fn&amp;quot; et &amp;quot;extended-address&amp;quot;===&lt;br /&gt;
&lt;br /&gt;
'''Proposition''' : De la même manière que l'[[hcard-fr#Info_Contact_Organisation|information de contact de l'organisation]], si la propriété &amp;quot;fn&amp;quot; et une propriété &amp;quot;extended-address&amp;quot; ont la même valeur exacte (généralement elles sont réglées sur le même élément, c'est à dire &amp;lt;code&amp;gt;class=&amp;quot;fn extended-address&amp;quot;&amp;lt;/code&amp;gt;), alors : &lt;br /&gt;
&lt;br /&gt;
# La hCard représente l'information de contact pour un endroit et DEVRAIT être traitée en tant que tel.&lt;br /&gt;
# L'auteur aussi NE DOIT PAS régler la propriété &amp;quot;N&amp;quot; ou la régler (et toutes ses sous-propriétés) expicitement vers la chaîne vide.&lt;br /&gt;
# Les parseurs DEVRAIENT gérer la propriété &amp;quot;n&amp;quot; manquante en supposant des valeurs vides pour toutes les sous-propriétés &amp;quot;n&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Proposition plus poussée''' : Imaginez aussi une hCard pour une ville, &amp;quot;Birmingham, England&amp;quot; : Birmingham peut être le &amp;quot;fn&amp;quot; et la &amp;quot;locality&amp;quot;, mais ce n'est pas une &amp;quot;extended-address&amp;quot;. Peut-être que la règle devrait être que la hCard est pour l'endroit si le &amp;quot;fn&amp;quot; est sur n'importe quel compsant de l'adresse (c'est à dire &amp;quot;fn&amp;amp;nbsp;locality&amp;quot; ou &amp;quot;fn&amp;amp;nbsp;street-address&amp;quot;) ?&lt;br /&gt;
&lt;br /&gt;
=== Exemples dans la jungle ===&lt;br /&gt;
&lt;br /&gt;
* Le lieu nommé &amp;quot;Picnic benches&amp;quot; dan l'adresse &amp;quot;Picnic benches, South Park, San Francisco, California&amp;quot; dns [http://adactio.com/journal/1364/ un billet de blog sur adactio.com].&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;adr&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;fn extended-address&amp;quot;&amp;gt;Picnic benches&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;South Park&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;California&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Exemples potentiels dans la jungle ====&lt;br /&gt;
&lt;br /&gt;
* Le lieu &amp;quot;Phone Boxes by the Sealife Center&amp;quot; [http://upcoming.yahoo.com/venue/5668/ sur Upcoming] est actuellement marqué sous  &amp;quot;fn org&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;fn org&amp;quot;&amp;gt;Phone Boxes by the Sealife Center&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;adr&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;Marine Parade&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Brighton &amp;amp;amp; Hove&amp;lt;/span&amp;gt;,&lt;br /&gt;
   &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;England&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;BN2 1TB&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;country&amp;quot;&amp;gt;United Kingdom&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;01273 606674&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;Just a meeting place, in case the venue changes.&amp;lt;/div&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;
Ceci pourrait être marqué comme : &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;adr&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div class=&amp;quot;fn extended-address&amp;quot;&amp;gt;Phone Boxes by the Sealife Center&amp;lt;/div&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;street-address&amp;quot;&amp;gt;Marine Parade&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Brighton &amp;amp;amp; Hove&amp;lt;/span&amp;gt;,&lt;br /&gt;
   &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;England&amp;lt;/span&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;BN2 1TB&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;country&amp;quot;&amp;gt;United Kingdom&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;01273 606674&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;Just a meeting place, in case the venue changes.&amp;lt;/div&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;
===Problématiques===&lt;br /&gt;
L'exemple au-dessus semble être une solution élégante, mais une variété plus grande d'exemples de pages publiées de la sorte sont demandées, pour être certain que cela croise tous les scénarios communs. Ceux-ci devraient inclure des cas dans lesquels &amp;quot;adr&amp;quot; n'est pas déjà utilisé ; remarquez que dans ce cas un niveau supplémentaire d'imrication est exigé. Les implications de cela, pour les hcards déjà publiés, devraient être prises en considération.&lt;br /&gt;
&lt;br /&gt;
Aussi, que penser des hcards pour les endroits publiés, qui incluent déjà une &amp;quot;extended address&amp;quot; ? &lt;br /&gt;
&lt;br /&gt;
par ex. &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;vcard&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;fn org&amp;quot;&amp;gt;Powell's Pool&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;adr&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;extended-address&amp;quot;&amp;gt;Sutton Park&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;Birmingham&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;country-name&amp;quot;&amp;gt;England&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:AndyMabbett|Andy Mabbett]] 05:40, 15 Dec 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
=== formats location nommés ===&lt;br /&gt;
Les efforts précédents sur les formats de lieux nommés :&lt;br /&gt;
&lt;br /&gt;
==== Simple GeoRSS featurename ====&lt;br /&gt;
Le vocabulaire [http://georss.org/simple GeoRSS simple] contient l'exemple suivant de lieu nommé dans la section &amp;quot;Additional Properties&amp;quot; qui référence un &amp;lt;strong&amp;gt;&amp;lt;code&amp;gt;featurename&amp;lt;/code&amp;gt;&amp;lt;/strong&amp;gt; tag.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;h3&amp;gt;Feature Type, Feature Name, and Relationship Tags&amp;lt;/h3&amp;gt;&amp;lt;p&amp;gt;The Feature Type, Feature Name, and Relationship tags are specified as GeoRSS elements.&amp;lt;/p&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
    &amp;amp;lt;georss:point&amp;amp;gt;45.256 -110.45&amp;amp;lt;/georss:point&amp;amp;gt;&lt;br /&gt;
    &amp;amp;lt;georss:featuretypetag&amp;amp;gt;city&amp;amp;lt;/georss:featuretypetag&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;amp;lt;georss:relationshiptag&amp;amp;gt;is-centered-at&amp;amp;lt;/georss:relationshiptag&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;amp;lt;georss:featurename&amp;amp;gt;Podunk&amp;amp;lt;/georss:featurename&amp;amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Une [http://www.google.com/search?q=site%3Ageorss.org%20featurename recherche sur featurename sur georss.org] échoue pour trouver d'autres références, y compris une définition.&lt;br /&gt;
&lt;br /&gt;
Un [http://lists.eogeo.org/pipermail/georss/2006-December/000895.html email sur la liste georss datant de déc 2006] fait apparaître le fil de notes &amp;quot;featurename, other missing bits from the site&amp;quot; qu'il existe &amp;quot;there is some updating to do&amp;quot; en réponse à la problématique que ces descriptions de &amp;quot;featurename&amp;quot; ne sont pas présentes sur le GeoRSS Simple et sur le Modèle  GeoRSS. GeoRSS GML ne fait aucune mention des propriétés non-géométriques.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== FN sémantique pseudo ==&lt;br /&gt;
Il existe beaucoup de sites (par ex. [http://flickr.com Flickr], [http://consumating.com/ Consumating]) qui permettent à l'utilisateur d'avoir '''à la fois''' un login/handle/alias en plusieurs mots, '''et''' de ne pas montrer son ''vrai'' noms (fn, n, given-name, family-name etc.).&lt;br /&gt;
&lt;br /&gt;
Pour les personnes représentées par les pages profil de ces sites, le mieux que nous puissions faire est de baliser leurs login/handle/alias sous leurs &amp;quot;nickname&amp;quot;. Initialement, nous avions pensé que de tels pseudos etc. n'étaient que des mots uniques et de ce fait nous avons créé [[hcard-fr#Optimisation_implicite_du_.22nickname.22|l'optimisation implicite du nickname]] en rapport, où vous pouvez baliser le pseudo sous un &amp;quot;fn&amp;quot; et faire qu'il soit automatiquement réglé comme une valeur de propriété &amp;quot;nickname&amp;quot;, et des valeurs vides poiur toutes les sous-valeurs &amp;quot;n&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Afin de gérer les pseudos en plusieurs mots, similaire à [[hcard-fr#Info_Contact_Organisation|l'information de l'information dans la hCard]] la méthode suivante est proposée :&lt;br /&gt;
&lt;br /&gt;
=== combinaison du &amp;quot;fn&amp;quot; et &amp;quot;nickname&amp;quot; ===&lt;br /&gt;
Du fait de l'utilisation potentielle de nicknames/handles/nomsutilisateurs en plusieurs mots dans le contenu publiés sur le Web (par ex. sur des sites comme [http://flickr.com Flickr] et [http://consumating.com/ Consumating]), hCard a un mécanisme pour spécifier un &amp;quot;fn&amp;quot; en plusieurs mots qui est aussi un &amp;quot;nickname&amp;quot; sans affecter toutes les sous-propriétés &amp;quot;n&amp;quot; qui sont spécifiées autrement, et sous-entendant explicitement des valeurs par défaut pour les sous-propriétés &amp;quot;n&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Similaire à [[hcard-fr#Optimisation_implicite_du_.22nickname.22|l'optimisation implicite du nickname]], si la propriété &amp;quot;fn&amp;quot; et une propriété &amp;quot;nickname&amp;quot; ont la même valeur exacte (typiquement parce qu'elles sont réglées sur le même élément, par ex.  &amp;lt;code&amp;gt;class=&amp;quot;fn nickname&amp;quot;&amp;lt;/code&amp;gt;), alors&lt;br /&gt;
&lt;br /&gt;
# Le contenu &amp;quot;fn&amp;quot; est traité comme la valeur de propriété &amp;quot;nickname&amp;quot;.&lt;br /&gt;
# Les parseurs devraient gérer la propriété &amp;quot;n&amp;quot; manquante en sous-entendant les valeurs vides pour toutes les sous-propriétés &amp;quot;n&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== FN implicite à partir de N ==&lt;br /&gt;
Parce que la propriété &amp;quot;n&amp;quot; est plus détaillée et structurée que la propriété &amp;quot;fn&amp;quot;, et parce que les [[hcard-examples-in-wild-fr|exemples dans la jungle]] ont montré que très souvent ce qui est spécifié pour les sous-propriétés &amp;quot;n&amp;quot; est aussi spécifié pour la propriété &amp;quot;fn&amp;quot;, nous pourrions ajouter l'optimisation implicite suivante qui permettrait aux sites de n'utiliser que &amp;quot;n&amp;quot; et ses sous-propriétés.&lt;br /&gt;
&lt;br /&gt;
En outre, quelque sites n'ont pas du texte contigu et ininterrompu qui représente la valeur désirée &amp;quot;fn&amp;quot;, et aurait plutôt le &amp;quot;fn&amp;quot; implicite à partir des sous-propriétés &amp;quot;n&amp;quot;. Par exemple, &amp;quot;Citizen Space Citizens&amp;quot; sur [[hcard-examples-in-wild-fr|hCard-exemples-dans-la-jungle]].&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;fn&amp;quot; implicite à partir de l'optimisation de &amp;quot;n&amp;quot; ===&lt;br /&gt;
Si une hCard n'a pas de &amp;quot;fn&amp;quot;, et dispose d'une propriété &amp;quot;n&amp;quot; avec une ou plusieurs sous-propriétés, alors la valeur de la propriété &amp;quot;fn&amp;quot; peut être tirée implicitement en concaténant les valeurs de la sous-propriété &amp;quot;n&amp;quot; comme suit, avec un espace entre chaque valeur de sous-propriétés, et plusieurs instances de sous-propriété.&lt;br /&gt;
&lt;br /&gt;
* 'honorific-prefix'es (comme trouvé dans l'ordre du document)&lt;br /&gt;
* 'given-name'&lt;br /&gt;
* 'additional-name's (comme trouvé dans l'ordre du document)&lt;br /&gt;
* 'family-name'&lt;br /&gt;
* 'honorific-suffix'es (comme trouvé dans l'ordre du document)&lt;br /&gt;
	&lt;br /&gt;
== N Implicite provenant de ses sous-propriétés ==&lt;br /&gt;
Le fait que les sous-propriétés &amp;quot;n&amp;quot; soient nommées suffisamment uniquement (ce qui veut dire, elles ne sont pas utilisées par toute  autre propriété hCard), et que &amp;quot;n&amp;quot; est l'une des [[hcard-singular-properties-fr|propriétés singulières hcard]], il est possible de considérérer d'abandonner la propriété en elle-même &amp;quot;n&amp;quot; pour la hCard et simplement la rediriger en utilisant les sous-propriétés, telles que les propriétés de la hCard.&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;n&amp;quot; implicite à partir de ses sous-propriétés===&lt;br /&gt;
Si une hCard n'a ni propriétés &amp;quot;fn&amp;quot; ni &amp;quot;n&amp;quot;, alors le champ entier de la hCard est considéré pour être à l'intérieur et une propriété implicite &amp;quot;n&amp;quot;.&lt;br /&gt;
	&lt;br /&gt;
par ex. ce marquage : &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;given-name&amp;quot;&amp;gt;Tantek&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Çelik&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;
serait traité du point de vue d'un parsage comme : &lt;br /&gt;
&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;&amp;lt;span class=&amp;quot;n&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;given-name&amp;quot;&amp;gt;Tantek&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Çelik&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
Ce qui veut dire, avec l'optimisation '''&amp;quot;fn&amp;quot; implicite à partir de optimisation &amp;quot;n&amp;quot; ''', serait alors en fait traitée comme : &lt;br /&gt;
&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;&amp;lt;span class=&amp;quot;fn n&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;given-name&amp;quot;&amp;gt;Tantek&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Çelik&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* une requête en rapport tirée de la liste de diffusion : http://microformats.org/discuss/mail/microformats-discuss/2007-September/010791.html&lt;br /&gt;
&lt;br /&gt;
== Exemples ==&lt;br /&gt;
* Voir [[hcard-examples-fr|exemples hCard]], qui fournit plusieurs exemples illustrés instructifs, tout comme des exemples de hCard 1:1 pour chaque exemple dans la [http://www.ietf.org/rfc/rfc2426.txt RFC 2426].&lt;br /&gt;
&lt;br /&gt;
=== Utiliser la RFC2806 avec hCard ===&lt;br /&gt;
La [http://www.ietf.org/rfc/rfc2806.txt RFC 2806] définit le schéma téléphone &amp;quot;tel:&amp;quot;, &amp;quot;fax:&amp;quot; et &amp;quot;modem:&amp;quot; pour gérer les communications téléphoniques avec des URIs de la même façon que &amp;quot;mailto:&amp;quot; est défini pour l'email. Cela fait partie de la liste des schémas enregistrés par IANA : [http://www.iana.org/assignments/uri-schemes Uniform Resource Identifier (URI) SCHEMES]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
tel   telephone [RFC2806]&lt;br /&gt;
fax   fax       [RFC2806]&lt;br /&gt;
modem modem     [RFC2806]&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Il est pratique d'écrire votre numéro de téléphone comme ceci.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a class=&amp;quot;tel&amp;quot; href=&amp;quot;tel:+1-919-555-7878&amp;quot;&amp;gt;+1-919-555-7878&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ou même : &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a class=&amp;quot;tel&amp;quot; href=&amp;quot;tel:+1-919-555-7878&amp;quot;&amp;gt;Le téléphone de Monsieur Bloïc&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Vous pouvez ajouter du support pour le &amp;quot;tel:&amp;quot; vers votre bureau et vers votre navigateur&lt;br /&gt;
&lt;br /&gt;
* Pour Gnome, edit ~/.gnome/Gnome et ajoutez quelque chose à la section vers les gestionnaires URL. (Dan Connolly utilise ça pour recevoir galeon afin de lancer telnum à partir de  [http://dev.w3.org/cvsweb/2001/telagent/ sources telagent] pour des URIs tel)&lt;br /&gt;
* Dans Mozilla, [http://dizzy.mozdev.org/ Dizzy]&lt;br /&gt;
* Dans Internet Explorer, [http://msdn.microsoft.com/workshop/networking/pluggable/overview/overview.asp Asynchronous Pluggable Protocols]&lt;br /&gt;
&lt;br /&gt;
Sur le front CSS... Vous pourriez ajouter par exemple automagiquement une icône. J'ai mis la propriété !important pour ceux qui veulent l'ajouter à leurs propres feuilles de style dans leurs navigateurs, ainsi ils connaissent les types de liens au moment de naviguer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
a[href^=&amp;quot;tel:&amp;quot;]:before {&lt;br /&gt;
    content: '\260f  ' !important;&lt;br /&gt;
    padding-left: 20px !important; }&lt;br /&gt;
&lt;br /&gt;
a[href^=&amp;quot;mailto:&amp;quot;]:before {&lt;br /&gt;
    content: '\2709  ' !important;&lt;br /&gt;
    padding-left: 20px !important; }&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Encoder des attributs &amp;quot;modernes&amp;quot;  ==&lt;br /&gt;
Depuis que la vCard a été initialisée, différentes technologies interactives et schémas d'adressage ont été largement adoptés. Bien qu'il n'y ait pas de propriétés spécifiques pour ces technologies / schémas d'adressage, elles peuvent être capturées sous des URLs ou des adresses email.&lt;br /&gt;
&lt;br /&gt;
Ceci a été désormais couché pour la plupart. Voir : &lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/hcard-examples-fr#Nouveaux_Types_d.27Information_de_Contact&lt;br /&gt;
&lt;br /&gt;
Restent à régler : &lt;br /&gt;
&lt;br /&gt;
* les adresses iChat mac.com , stocker simplement  &amp;quot;@mac.com&amp;quot; email addresses, par ex.&lt;br /&gt;
** &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;amp;lt;a class=&amp;quot;email&amp;quot; href=&amp;quot;mailto:loic@mac.com&amp;quot;&amp;amp;gt;...&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* MSN Instant Messenger, vous pouvez stocker de simples adresses email &amp;quot;@hotmail.com&amp;quot; ou &amp;quot;@msn.com&amp;quot; ou &amp;quot;@passport.com&amp;quot; email addresses.&lt;br /&gt;
* Internet Relay Chat (IRC), utilisez &amp;quot;irc:&amp;quot; URLs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Auto-Découverte ==&lt;br /&gt;
=== découverte hCard représentative ===&lt;br /&gt;
Compte tenu d'une page comportant une ou plusieurs hCards, quelle hCard est la hCard représentative pour la page ?&lt;br /&gt;
&lt;br /&gt;
Voir [[representative-hcard-fr|hCard-représentative]]&lt;br /&gt;
&lt;br /&gt;
=== relations hCard vers hCard  ===&lt;br /&gt;
Il existe plusieurs types de relations hCard vers hCard, ce qui veut dire, une hCard faisant un hyperlien vers une autre hCard qui pourrait bénéficier des valeurs rel explicites qui ont décrit la relation spécifique.&lt;br /&gt;
&lt;br /&gt;
==== home page vers page contact ====&lt;br /&gt;
Bon nombre d'individus et d'organisations s'identifient eux-mêmes à travers leurs URLs, et puis incluent une page séparée pour leur information de contact. Ceci est une pratique existante qui pourrait être représentée avec des microformats.&lt;br /&gt;
&lt;br /&gt;
Exemples : &lt;br /&gt;
* Ryan King, http://theryanking.com/ , http://theryanking.com/contact/&lt;br /&gt;
* Tantek Çelik, http://tantek.com/ , http://tantek.pbwiki.com/ContactCard/&lt;br /&gt;
* Google, http://www.google.com/ , http://www.google.com/intl/fr/contact/index.html&lt;br /&gt;
&lt;br /&gt;
Ces exemples pourraient être traités par le brainstorming suivant mini hCard vers hCard étendue.&lt;br /&gt;
&lt;br /&gt;
==== mini hCard vers hCard étendue ====&lt;br /&gt;
Peut-être que le type le plus commun du lien de hCard vers hCard, par ex. d'une page personnelle ou blog vers la page de contact de la personne/à propos, peut-être constituée de seulement un nom et un URL, qui pointe vers une hCard étendue. Exemples dans la junge :&lt;br /&gt;
&lt;br /&gt;
Dans cette instance, les valeurs rel possibles pourraient comprendre : &lt;br /&gt;
* rel=&amp;quot;expanded&amp;quot;&lt;br /&gt;
* rel=&amp;quot;definitive&amp;quot; - le problème avec ça est que la hCard étendue n'est pas nécessairement une version définitive.&lt;br /&gt;
* rel=&amp;quot;canonical&amp;quot; - de la même façon, la hCard étendue n'est pas nécesairement un URL canonique. Ce peut simplement être *une* version étendue, pas *la* version étendue.&lt;br /&gt;
&lt;br /&gt;
Les valeurs rel qui suivent ont été suggérées, mais ne sont vraiment pas une bonne idée du fait qu'elle sous-tendent une dépendance pour ajouter une nouvelle valeur rel pour n'importe quel nouveau microformat qui pourrait avoir une mini version pointant vers une version plus étendue :&lt;br /&gt;
* rel=&amp;quot;author&amp;quot;&lt;br /&gt;
* rel='contact'&lt;br /&gt;
* rel=&amp;quot;contactinfo&amp;quot;&lt;br /&gt;
* rel='hcard'&lt;br /&gt;
* rel='person'&lt;br /&gt;
&lt;br /&gt;
Voici quelques valeurs plus génériques qui ont été suggérées et qui peut-être font encore moins de sens : &lt;br /&gt;
* rel='microformat' - ceci ne fait aucun sens quand vous imaginez un monde où presque chaque page contiendra des microformats.&lt;br /&gt;
* rel='about' - qu'est-ce que &amp;quot;about&amp;quot; à à faire à propos d'une personne ou même de la paternité d'auteur ?&lt;br /&gt;
* rel=&amp;quot;profile&amp;quot; - devrait être réservé pour signifier qu'il y a ici un profil [[xmdp|XMDP]] pour la page en cours.&lt;br /&gt;
* rel='PIM' - pas sûr de la manière dont cela puisse faire quelque sens.&lt;br /&gt;
&lt;br /&gt;
==== mini hCard vers site distant ====&lt;br /&gt;
Selon les instructions trouvées dans [[hcard-examples-fr|hCard-exemples]] pour  [[hcard-examples-fr# Références_aux_Personnes_dans_les_Blogrolls|baliser les personnes dans les blogrolls]], vous pourriez avoir une hCard de votre site pour une autre personne qui lie ensuite vers le site web de cette autre personne. Devrait-il y avoir une valeur rel qui indique cette &amp;quot;mini-hcard&amp;quot; pour la relation &amp;quot;person&amp;quot; ?&lt;br /&gt;
&lt;br /&gt;
==== mini hCards et liens hCard étendus à proximité ====&lt;br /&gt;
Quelques auteurs incluent des mini-hCards sur leurs pages personnelles (par ex. dans leurs billets de blogs) et à cette heure ces mini-hcards ne pointent pas vraiment vers des versions étendues. Néanmoins, parfois elles sont un lien séparé mais à proximité sur la même page comme &amp;quot;à propos&amp;quot; ou &amp;quot;contact&amp;quot; qui lie vraiment vers une hCard étendue.&lt;br /&gt;
&lt;br /&gt;
Par ex. sur [http://factoryjoe.com/blog/ FactoryCity], les billets de blogs ont des mini-hcards pour &amp;quot;published by&amp;quot;, à savoir (espace blanc ajouté pour la lisibilité) :&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Published by &lt;br /&gt;
&amp;lt;span class=&amp;quot;vcard author&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;a href=&amp;quot;http://factoryjoe.com/blog/author/factoryjoe/&amp;quot; class=&amp;quot;url fn&amp;quot;&amp;gt;&lt;br /&gt;
  Chris Messina&lt;br /&gt;
 &amp;lt;/a&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;
Sur ces même pages de blogs, il y a un lien étiqueté &amp;quot;Contact Information&amp;quot; qui lie vers http://factoryjoe.com/blog/hcard/ qui a une hCard avec plus d'informations comme le numéro de téléphone, l'anniversaire, etc.&lt;br /&gt;
&lt;br /&gt;
=== Auto-Découverte pour XFN ===&lt;br /&gt;
Un auteur publiera généralement son information XFN sur une page spécifique, plutôt que sur toutes les pages. En particulier, une page spécifique à partir de la page d'accueil de son blog et par conséquent ce serait utile d'avoir une valeur rel explicite pour aider à l'auto-découverte de l'information XFN.&lt;br /&gt;
&lt;br /&gt;
Ceci fût suggéré par Jens Alfke le 20050606 durant le dîner des blogueurs WWDC.&lt;br /&gt;
&lt;br /&gt;
=== auto-découverte lien vCard rel  ===&lt;br /&gt;
Une possibilité similaire est un lien d'auto-découverte dans l'en-tête du document qui pourrait pointer vers une URL (peut-être avac transformation) vers une version vCard de la hCard représentative.&lt;br /&gt;
&lt;br /&gt;
Sur la page avec l'encodage hCard, le meilleur lien serait comme suit : &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt; &amp;lt;link rel=&amp;quot;alternate&amp;quot; type=&amp;quot;text/directory&amp;quot; href=&amp;quot;...&amp;quot; /&amp;gt; &amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
cette page HTML est une vue alternative de la vCard.  &lt;br /&gt;
&lt;br /&gt;
Le [http://www.iana.org/assignments/media-types/text/ type approprié et enregistré] pour les entités vCard est “text/directory”, comme défini dans la RFC 2425 Internet “[http://www.rfc-editor.org/rfc/rfc2425.txt A MIME Content-Type for Directory Information]”. RFC 2426, “[http://www.rfc-editor.org/rfc/rfc2425.txt vCard MIME Directory Profile]”, spécifie le profil vCard pour les entités “text/directory” entities, que le profil champ header MIME/HTTP “Content-Type” indiquerait avec un paramètre “profile” quelle valeur est “VCARD”. &lt;br /&gt;
&lt;br /&gt;
Il n'est pas clair si l'attribut HTML/XHTML “type” permet des valeurs avec les paramètres. Le  2004-05-23, [http://bjoern.hoehrmann.de/ Björn Höhrmann] a envoyé au [http://www.w3.org/2002/05/html/charter HTML Working Group] une [http://www.w3.org/mid/40ccdc4d.97400945@smtp.bjoern.hoehrmann.de demande de clarification] sur la problématique.&lt;br /&gt;
&lt;br /&gt;
Quand on est sur une page différente, référencer cette page encodée dans le href ne serait ''pas'' une vue alternative de la page en cours. Par conséquent rel=&amp;quot;alternate&amp;quot; peut ne pas être approprié. Le problème de la valeur rel à utiliser est plus grand que les liens vers les vCards.&lt;br /&gt;
&lt;br /&gt;
== Améliorations geo ==&lt;br /&gt;
voir [[geo-brainstorming-fr|geo-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
== Autres cas d'utilisation ==&lt;br /&gt;
Ajoutez svp vos suggestions !&lt;br /&gt;
Le microformat hCard pourraient être utilisé pour : &lt;br /&gt;
* Calculer et afficher l'âge du sujet &amp;quot;à la date du jour&amp;quot;&lt;br /&gt;
J'ai (Tantek) vu des exemples où il y a une présentation visualisable / cliquable d'un point sur une carte et le désir d'inclure l'information geo lisible par la machine avec le même élément, par ex. quelque chose comme : &lt;br /&gt;
* Calculer et afficher l'âge du sujet à sa mort (si une [[hcard-date-of-death-fr|Date de Décès]] est disponible) &lt;br /&gt;
* Générer un iCal récurrent pour un anniversaire de sujet vivant&lt;br /&gt;
* Générer un iCal récurrent pour un &amp;quot;anniversaire de naissance&amp;quot; d'un sujet décédé (si une [[hcard-date-of-death-fr|Date de Décès]] est disponible) &lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
== Problématiques avec les Applications vCard ==&lt;br /&gt;
Voir [[vcard-implementations-fr|vcard-implémentations]].&lt;br /&gt;
&lt;br /&gt;
== Questions Ouvertes ==&lt;br /&gt;
&lt;br /&gt;
Q : parce que beaucoup des composants utiliseraient des classes CSS pour encoder les données, il est possible de MIXER deux profils différents. (par ex. hCard et XFN). Il n'y a pas de véritables contraintes sur où/comment exécuter les noms de classes, ceux-ci sont basés sur le profil html, parce qu'il est difficile d'associer le texte dans l'attribut vers un profil spécifique.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;a href=&amp;quot;mailto:jean.dupont@exemple.com&amp;quot; class=&amp;quot;fn&amp;quot; rel=&amp;quot;met&amp;quot;&amp;gt;Jean Dupont&amp;lt;/a&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-- [http://suda.co.uk/ Brian Suda]&lt;br /&gt;
&lt;br /&gt;
Q : Préserver l'Espace Blanc ? Les applications qui transforment devraient-elles préserver les caractères espaces blancs supplémentaires ? Par exemple : &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://monsiteweb.com/&amp;quot; class=&amp;quot;fn n&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;given-name&amp;quot;&amp;gt;Jean&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;other-names&amp;quot;&amp;gt;Q.&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;span class=&amp;quot;family-name&amp;quot;&amp;gt;Public&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Quand c'est transformé en une vCard, la propriété N piochera à part les tags span et créera la valeur pour le N séparée correctement par des signes deux points (:). La propriété FN prendra une chaîne et l'affichera simplement. Il existe deux restitutions possibles pour FN : &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Jean Q. Public&lt;br /&gt;
&lt;br /&gt;
    Jean&lt;br /&gt;
    Q.&lt;br /&gt;
    Public&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Soit l'espace blanc est préservé ou il ne l'est pas. Qu'est-ce que devraient restituter les applications transformates ?&lt;br /&gt;
&lt;br /&gt;
-- [http://suda.co.uk/ Brian Suda]&lt;br /&gt;
&lt;br /&gt;
R : L'application de parsage devrait suivre les règles d'éclatement de l'espace blanc du type mime qu'elle retrouve. Par ex. si elle trouve un document &amp;quot;text/html&amp;quot;, elle devrait faire de la suppression d'espace blanc HTML.&lt;br /&gt;
&lt;br /&gt;
-- [http://tantek.com/log/ Tantek]&lt;br /&gt;
&lt;br /&gt;
Bon nombre des Questions et Réponses sont pertinentes pour à la fois [&amp;quot;hCal&amp;quot;] et hCard.&lt;br /&gt;
&lt;br /&gt;
Q : Qu'est ce qui serait approprié pour emballer le nom du propriétaire de vCard avec &amp;lt;dfn/&amp;gt; ? Ceci peut donner à la hCard quelque valeur ajoutée sémantique à l'intérieur du document XHTML.&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;agent&amp;quot;&amp;gt; &lt;br /&gt;
 &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;email&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;a class=&amp;quot;internet&amp;quot; href=&amp;quot;mailto:jeanvendredi@truc.com&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;dfn&amp;gt;&lt;br /&gt;
       &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Jean Vendredi&amp;lt;/span&amp;gt;&lt;br /&gt;
    &amp;lt;/dfn&amp;gt;&lt;br /&gt;
   &amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;+1-919-555-7878&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;title&amp;quot;&amp;gt;Administrateur Aire, Assistant&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
-- [http://www.ben-ward.co.uk/ Ben Ward]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Si la réponse à la question Q au-dessus est &amp;quot;oui&amp;quot;, pouquoi ne pas utiliser ce qui suit ?&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;dfn class=&amp;quot;fn&amp;quot;&amp;gt;Joe Friday&amp;lt;/dfn&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
ou&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;agent&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;dfn class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;email&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;a class=&amp;quot;internet&amp;quot; href=&amp;quot;mailto:jfriday@host.com&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Joe Friday&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;tel&amp;quot;&amp;gt;+1-919-555-7878&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;title&amp;quot;&amp;gt;Area Administrator, Assistant&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/dfn&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;
Ceci marquerait la hCard entière comme l'&amp;quot;instance de définition&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[User:Bob Jonkman|Bob Jonkman]] 10:07, 13 Jul 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Les Applications qui sont conscientes des hCards ou qui peuvent convertir les hCards en formats vCard.&lt;br /&gt;
&lt;br /&gt;
=== favelet(s) de copie hCards ===&lt;br /&gt;
* Je pense qu'un Favelet fonctionnerait bien ici. Quand vous trouvez une page qui est compatible hCard, vous cliquez sur le favlet et vous obtenez vous-même une vCard. C'est fait ! Voir X2V dans la section des implémentations de la spec [[hcard-fr|hCard]].&lt;br /&gt;
&lt;br /&gt;
=== Icônes distribuées de commentateurs ===&lt;br /&gt;
''L'URL en référence dans cette section n'est plus disponible. Les idées sur l'utilisation d'icônes sont néanmons toujours pertinentes.&amp;quot;'' [[User:WilleRaab|WilleRaab]] 16:55, 23 Jul 2007 (PDT)&lt;br /&gt;
* Voir [http://thedredge.org/2005/06/using-hcards-in-your-blog/ using hCards in your blog] pour un exemple de hCards utilisées pour les auteurs des commentaires (commentateurs). Le système utilisé là, &amp;quot;Gravatars&amp;quot;, est un site centralisé qui sert les icônes de commentateurs qui exige un login, etc.&lt;br /&gt;
&lt;br /&gt;
Et si nous donnions à chaque commentateur l'option d'héberger sa propre icône ?&lt;br /&gt;
&lt;br /&gt;
Une implémentation d'icône de commentateur distribué pourrait fonctionner comme ça : &lt;br /&gt;
&lt;br /&gt;
# Vu l'URL d'un commentateur, chercher un élément &amp;lt;code&amp;gt;&amp;lt;address&amp;gt;&amp;lt;/code&amp;gt; avec le nom de classe  &amp;quot;vcard&amp;quot; sur l'URL du commentateut.  L'élément &amp;lt;code&amp;gt;&amp;lt;address&amp;gt;&amp;lt;/code&amp;gt; est supposé être l'information de contact pour la page. (voir [[hcard-faq-fr|hCard FAQ]] pour plus d'infos), aussi cela fait du sens.&lt;br /&gt;
# Puis, chercher le premier élément dans cette hCard qui ait un nom de classe de &amp;quot;logo&amp;quot;.&lt;br /&gt;
# En espérant que cet élément soit un &amp;lt;code&amp;gt;&amp;lt;img&amp;gt;&amp;lt;/code&amp;gt;, et si oui, utiliser son src pour recevoir l'icone du commentateur.&lt;br /&gt;
# Basta.  Vous avez des icônes de commentateurs distribuées !&lt;br /&gt;
&lt;br /&gt;
== Prévention du Spam ==&lt;br /&gt;
hCard utilise les liens &amp;lt;code&amp;gt;mailto:&amp;lt;/code&amp;gt; et par conséquent, il hérite automatiquement des inconvénients des liens &amp;lt;code&amp;gt;mailto:&amp;lt;/code&amp;gt; :&lt;br /&gt;
Ces liens peuvent être facilement détectés par les spiders d'email (utilisé par les spammeurs).&lt;br /&gt;
&lt;br /&gt;
Les adresses email sont piochées comme toute autre lien crawlé par un moteur de recherche et les crawleurs de confiance peuvent être dissuadés d'ajouter de l'emphase tout en indexant ces liens en incluant rel=&amp;quot;nofollow&amp;quot; (Voir [[rel-nofollow-fr|rel-nofollow]]). Néanmoins, les adresses email utilisées pour le spam sont crawlées par les spiders d'email qui ignoreront probablement cet attribut.&lt;br /&gt;
&lt;br /&gt;
Il existe des moyens d'empêcher la détection d'adresses email par les simples spiders d'email, tout en retenant une totale compatibilité avec les applications (X)HTML.&lt;br /&gt;
Un moyen commun est d'&amp;quot;encoder&amp;quot; le &amp;quot;m&amp;quot; de &amp;quot;mail&amp;quot; et &amp;quot;@&amp;quot; avec des entités caractères, à ce stade c'est imprudent de suivre une convention de seulement encoder les caractères spécifiques parce que les spiders email peuvent aussi piocher ça : &lt;br /&gt;
&lt;br /&gt;
Exemple de lien original :&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a class=&amp;quot;email&amp;quot; href=&amp;quot;mailto:john.smith@example.com&amp;quot;&amp;gt;john.smith@example.com&amp;lt;/a&amp;gt; &lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Exemple de lien &amp;quot;encodé&amp;quot; (avec l'ajout de rel-nofollow) :&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a class=&amp;quot;e&amp;amp;amp;#109;ail&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;&amp;amp;amp;#109;ailto:john.smith&amp;amp;amp;#064;exemple.com&amp;quot;&amp;gt;john.smith&amp;amp;amp;#064;exemple.com&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Les simples spiders email qui ne font pas le décodage d'entité caractère ne pourront par conséquent pas trouver votre adresse email.&lt;br /&gt;
&lt;br /&gt;
''Note :'' Peut-être qu'il y a ou aura des spiders email qui peuvent décoder les entités, ainsi cette technique n'aidera que pour les spiders email de mauvaise qualité.&lt;br /&gt;
&lt;br /&gt;
(Voir aussi : http://rbach.priv.at/Misc/2005/EmailSpiderTest)&lt;br /&gt;
&lt;br /&gt;
=== Autres méthodes de prévention à considérer ===&lt;br /&gt;
* Utiliser un code côté serveur pour implémenter les entités caractères au hasard&lt;br /&gt;
* Afficher l'adresse d'une façon pensée pour n'être lisible que par des humains (de ce fait cassant le lien):&lt;br /&gt;
** Utiliser une image plutôt que du texte (pourrait être encore lu par les machines en utilisant un OCR)&lt;br /&gt;
** Utiliser un texte lisible par une machine qui charrie le besoin de l'éditer avant utilisation (par ex. SVP_PASDESPAM_nom@exemple_PASDESPAM.com)&lt;br /&gt;
* Utiliser un décryptage javascript côté client d'une adresse cryptée (oblige à avoir javascript)&lt;br /&gt;
* Pointer vers un formulaire email ou toute autre URL au lieu d'une adresse email&lt;br /&gt;
&lt;br /&gt;
== Tutoriels ==&lt;br /&gt;
* Comment encoder les entrées hCard dans les logiciels de blogs connus.&lt;br /&gt;
* Bonnes raisons de publier votre hCard&lt;br /&gt;
** en tant qu'entreprise, faire que les personnes vous placent dans leurs carnets d'adresses, ainsi elles vous trouveront plus tard.&lt;br /&gt;
** en tant qu'entreprise avec une liste d'emails, faire que les personnes vous ajoutent (avec l'adresse email) à leurs carnets d'adresses de façon à ce que leurs listes d'emails fonctionne via le carnet d'adresses.&lt;br /&gt;
&lt;br /&gt;
[http://www.elanceur.org/MicroFormats/StylezvoshCardsavecCSS.html Stylisez les hCards avec CSS] est un texte sur la manière d'utiliser CSS pour faire une présentation améliorée de contenus des hCards.&lt;br /&gt;
&lt;br /&gt;
== Parsage ==&lt;br /&gt;
Voir la page séparée [[hcard-parsing-fr|hCard parsage]] pour les règles actuelles de parsage de la hCard.&lt;br /&gt;
&lt;br /&gt;
Ajoutez idées/propositions pour améliorer/ajouter au parsage hCard ici de cette section du brainstorming hCard, et assurez-vous d'inclure des URLs vers des exemples de hCards dans la jungle qui pourraient bénéficier des changements de règles de parsage.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Gestion HTML Sémantique Supplémentaire ===&lt;br /&gt;
==== gestion élément &amp;lt;code&amp;gt;acronym&amp;lt;/code&amp;gt; ====&lt;br /&gt;
Choix : &lt;br /&gt;
* Traiter explicitement &amp;lt;code&amp;gt;acronym&amp;lt;/code&amp;gt; comme le même que &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt;, selon la sémantique de l'attribut  '&amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt;' sur &amp;lt;code&amp;gt;acronym&amp;lt;/code&amp;gt; en particulier, comme défini dans HTML4.01.&lt;br /&gt;
* Traiter explictement &amp;lt;code&amp;gt;acronym&amp;lt;/code&amp;gt; comme le même que &amp;lt;code&amp;gt;span&amp;lt;/code&amp;gt;, et décourager l'usage de &amp;lt;code&amp;gt;acronym&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;code&amp;gt;input&amp;lt;/code&amp;gt; element handling ====&lt;br /&gt;
Dans [[hcard-parsing-fr|parsage hCard]], j'ai défini de la gesion de cas spéciaux pour plusieurs éléments selon [[hcard-parsing-fr#plus_d'exceptions_sémantiques|plus d'exceptions sémantiques]], par ex. les propriétés textuelles sur l'élément &amp;lt;code&amp;gt;img&amp;lt;/code&amp;gt; utilisent l'attribut 'alt'.&lt;br /&gt;
&lt;br /&gt;
Un élément que j'ai oublié à cette heure était l'élément &amp;lt;code&amp;gt;input&amp;lt;/code&amp;gt;, spécifiquement &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. Un autre que j'ai oublié était l'élément &amp;lt;code&amp;gt;textarea&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
La suggestion simple est d'ajouter le [[hcard-parsing-fr|parsage hCard]] suivant, spécifiquement à la sous-section [[hcard-parsing-fr#toutes_propriétés|toutes propriétés]] :&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;...&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt;: utilise la valeur de l'attribut 'value'. S'il n'y a pas d'attribut 'value' alors traiter la valeur comme vide. Les agents-utilisateurs interactifs {{must-fr}} utiliser la [http://www.w3.org/TR/html4/interact/forms.html#current-value valeur en cours] de l'élément.&lt;br /&gt;
** considérer d'autres saisies de types aussi (par ex. checkbox, radio, hidden) et spécifiez comme les parser.&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;amp;lt;textarea&amp;amp;gt;&amp;lt;/code&amp;gt; :utilise les contenus texte de l'élément. Les agents-utilisateurs interactifs {{must-fr}} utiliser la the [http://www.w3.org/TR/html4/interact/forms.html#current-value valeur en cours] de l'élément.&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]]&lt;br /&gt;
&lt;br /&gt;
==== auto-remplissage formulaires ====&lt;br /&gt;
Si vous allez sur un site qui a besoin de votre information de contact pour quelque chose, disons un site d'ecommerce pour l'encaissement, et si les champs de formulaire sont marqués avec la sémantique hCard comme au-dessus, alors peut-être que nous pourrions considérer faire que cela puisse signifier &amp;quot;insérer ici votre hCard&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Les agents utilisateurs interactifs (par ex. [[operator-fr|Operator]] sur [[firefox-fr|Firefox]]) pourrait détecter une telle sémantique &amp;quot;insérer ici votre hCard&amp;quot; dans les formulaires sur les pages, et vous laisser &amp;quot;pré-remplir&amp;quot; avec votre info de hcard, et puis immédiatement, nous avons un standard pour les auto-remplissages de formulaires, plutôt que tous les hacks qui sont rentrés dans les navigateurs depuis 1999 (à commencer par IE4.5/Mac qui j'en suis vraiment certain fût le premier à produire des auto-remplisseurs de formulaire d'un formulaire complet avec un seul bouton à presser - pas juste auto-compléter individuellement chaque champ de formulaire).&lt;br /&gt;
&lt;br /&gt;
Evidemment cela ferait sens de construire dans des formulaires *existants* des fonctionnalités d'auto-remplissage dans [[Firefox-fr|Firefox]] et [[IE-fr|IE]] et tout autre navigateur qui le supporte.&lt;br /&gt;
&lt;br /&gt;
Pour en savoir plus à ce propos, regardez le billet de blog 2007 [http://dbaron.org/log/2007-08#e20070818a hCard autofill?] par David Baron, un employé chez Mozilla.&lt;br /&gt;
&lt;br /&gt;
De cette manière les nouveaux sites pourraient simplement se conformer au standard, plutôt que de s'appuyer sur des hacks qui persent les valeurs label etc. et sous-tendent des choses et se trompent eux-mêmes parfois.&lt;br /&gt;
&lt;br /&gt;
'''Avantages [[i18n-fr|i18n]]''' : les saisies de formulaires hCard seraient aussi plus internationaux, évitant de ce fait pour chaque navigateur à supposer quel est le champ &amp;quot;name&amp;quot; et &amp;quot;telephone&amp;quot; dans chaque langeu, ainsi ils peuvent produire des auto-remplissages de formulaires sur n'importe quel site quelle que soit la langue, pas juste l'anglais.&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]] 16:24, 23 Jul 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
==== Discussion historique: ====&lt;br /&gt;
&lt;br /&gt;
Fils clé :&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2006-September/005951.html&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2006-October/006132.html&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2007-January/008312.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Quelque part en rapport &lt;br /&gt;
* http://microformats.org/wiki/rest/forms-brainstorming &lt;br /&gt;
* http://microformats.org/wiki/rest/forms-examples&lt;br /&gt;
&lt;br /&gt;
Un résumé clé :&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2006-October/006172.html &lt;br /&gt;
&lt;br /&gt;
Les options discutées dans un système de saisie hypothétique de hCard apparaît cette heure être : &lt;br /&gt;
&lt;br /&gt;
1) create a new root class other than vcard to indicate a form that's&lt;br /&gt;
fillable with hCard data.&lt;br /&gt;
&lt;br /&gt;
Proposed markup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;form class=&amp;quot;vcard-input&amp;quot; ...&amp;gt;&lt;br /&gt;
   &amp;lt;fieldset class=&amp;quot;fn&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;given-name&amp;quot; name=&amp;quot;first_name&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;family-name&amp;quot; name=&amp;quot;last_name&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/fieldset&amp;gt;&lt;br /&gt;
   ...&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  Benefits:&lt;br /&gt;
      Doesn't overcomplicate hCard with new parsing rules,&lt;br /&gt;
      doesn't require rewrite of existing parsers to ignore 'unparsable' data.&lt;br /&gt;
  Drawbacks:&lt;br /&gt;
      Requires completely new parsers to be written.&lt;br /&gt;
      Existing parsers would ignore data even if a valid hCard could be extracted.&lt;br /&gt;
&lt;br /&gt;
2) extend hCard's parsing rules to cover form elements and relying on&lt;br /&gt;
the FORM/INPUT semantics to indicate that stuff is inputtable.&lt;br /&gt;
&lt;br /&gt;
Proposed markup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;form ...&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;fieldset class=&amp;quot;fn&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;given-name&amp;quot; name=&amp;quot;first_name&amp;quot; value=&amp;quot;Rob&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;family-name&amp;quot; name=&amp;quot;last_name&amp;quot; value=&amp;quot;Manson&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/fieldset&amp;gt;&lt;br /&gt;
   ...&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;vcard&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;fieldset class=&amp;quot;fn&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;given-name&amp;quot; name=&amp;quot;first_name&amp;quot; value=&amp;quot;Scott&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;family-name&amp;quot; name=&amp;quot;last_name&amp;quot; value=&amp;quot;Reynen&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/fieldset&amp;gt;&lt;br /&gt;
   ...&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  Benefits:&lt;br /&gt;
      Small addition to existing format rather than new one.&lt;br /&gt;
      Semantics of an input form and the eventual display format are the same.&lt;br /&gt;
  Drawbacks:&lt;br /&gt;
      Existing parsers would/could parse forms as invalid hCards, would need re-writing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Broader question:&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2005-September/001059.html&lt;br /&gt;
Should this be extended beyond just hCard?&lt;br /&gt;
&lt;br /&gt;
==== Problèmes clé/points de discussion ====&lt;br /&gt;
* Extending parsing rules to extract value attributes from &amp;lt;input type=&amp;quot;text|hidden&amp;quot;&amp;gt; fields&lt;br /&gt;
  - ''Negative'' : this require adding a bit of special case to existing parsers to handle these elements&lt;br /&gt;
  - ''Positive'' : this could help to enable uf based auto form filling&lt;br /&gt;
  - ''Negative'' : this could help to enable uf based auto form filling (e.g. spam automation)&lt;br /&gt;
* Existing server side and client side scripts use non-hCard field names so class is the most seamless extension point&lt;br /&gt;
  - ''Positive'' : this is in line with the current parsing model&lt;br /&gt;
* Many parsers (e.g. [[Operator]]) parse the loaded html not the dynamic DOM&lt;br /&gt;
  - ''Negative'' : parser doesn't pickup any updated form data after the page has loaded&lt;br /&gt;
  - e.g. even though textarea appears to parse ok - it's only ever the initially loaded value that can be exported&lt;br /&gt;
* Forms may contain more than one hCard so using &amp;lt;FORM class=&amp;quot;vcard&amp;quot;&amp;gt; should not be required&lt;br /&gt;
  - ''Positive'' : this minimises the changes to current parsing rules&lt;br /&gt;
* Empty values should be ignored when extracting hCards&lt;br /&gt;
* hCards with all empty values should be ignored when listing/extracting hCards&lt;br /&gt;
* Which form elements should be supported beyond input fields&lt;br /&gt;
  - ''Examples''&lt;br /&gt;
    - title select that lists mr/mrs/ms/dr/etc.&lt;br /&gt;
    - checkboxes to choose which addresses to use&lt;br /&gt;
  - ''Option'' : simplify extension to only support input fields and recommend that select's, radio buttons and checkboxes update related hidden input fields with simple javascript (e.g. onChange/Click=&amp;quot;this.form.elements[this.className].value = this.value&amp;quot;)&lt;br /&gt;
    - Unworkable.  Cannot require clientside javascript.&lt;br /&gt;
  - ''Positive'' : this would simplify parsing and server side form processing as only single input fields for each value need to be used/validated&lt;br /&gt;
  - ''Negative'' : hCard forms then require javascript if they use form elements other than basic &amp;lt;input type=&amp;quot;text|hidden&amp;quot;&amp;gt;&lt;br /&gt;
  - ''Comment'' : either way any auto form filling will be more complex beyond simple &amp;lt;input type=&amp;quot;text|hidden&amp;quot;&amp;gt; fields&lt;br /&gt;
    - hypothetical comment assuming more complexity beyond.&lt;br /&gt;
&lt;br /&gt;
[[User:RobManson|RobManson]]&lt;br /&gt;
&lt;br /&gt;
=== multiple type parsing ===&lt;br /&gt;
* Multiple Type parsing / Type Optimization : La spec le permet, et la [[hcard-authoring-fr#Num.C3.A9ros_de_T.C3.A9l.C3.A9phone|publication de hCard]] démontre l'usage de plusieurs désignations de types pour une valeur unique de tel. La syntaxe utilisée dans les exemples de publication où chacun semble comme s'il pouvait devenir encombrant. Du fait qeu ces désignations de type soient toutes des chaînes uniques de 'mot' il peut être possible d'implémenter des règles supplémentaires de parsage pour plusieurs types dans le même élément HTML. Gérer les délimiteurs peut être un problème [espace, virgule, etc?], et quelques-un des usages dans-la-jungle de plusieurs types auraient besoin d'être repérés et examinés avant de considérer quelques règles supplémentaires de parsage le long de ces lignes [ [[User:ChrisCasciano|ChrisCasciano]] 10:21, 16 Apr 2007 (PDT) ]&lt;br /&gt;
&lt;br /&gt;
=== parsage hyperlien fax et modem ===&lt;br /&gt;
For the &amp;quot;tel&amp;quot; property in particular, when the element is:&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;amp;lt;a href=&amp;quot;fax:...&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; OR &amp;lt;code&amp;gt;&amp;amp;lt;area href=&amp;quot;fax:...&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; : parse the value of the 'href' attribute, omitting the &amp;quot;fax:&amp;quot; prefix and any &amp;quot;?&amp;quot; query suffix (if present), in the attribute. For details on the &amp;quot;fax:&amp;quot; URL scheme, see RFC 2806. In addition, treat this 'tel' property instance as having subproperty type &amp;quot;fax&amp;quot; in addition to any explicit subproperty type specified on the 'tel' property.&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;amp;lt;a href=&amp;quot;modem:...&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; OR &amp;lt;code&amp;gt;&amp;amp;lt;area href=&amp;quot;modem:...&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; : parse the value of the 'href' attribute, omitting the &amp;quot;modem:&amp;quot; prefix and any &amp;quot;?&amp;quot; query suffix (if present), in the attribute. For details on the &amp;quot;modem:&amp;quot; URL scheme, see RFC 2806.  In addition, treat this 'tel' property instance as having subproperty type &amp;quot;modem&amp;quot; in addition to any explicit subproperty type specified on the 'tel' property.&lt;br /&gt;
&lt;br /&gt;
=== composants nom ambigus ===&lt;br /&gt;
&lt;br /&gt;
When automatically publishing hCards from pre-existing data, it's not necessarily possible to tell which words in a name map to which hCard properties. When the structure of a name is unknown, it is hard to ensure an automatically published hCard remains valid.&lt;br /&gt;
&lt;br /&gt;
There's currently no easy answer to this.&lt;br /&gt;
&lt;br /&gt;
One implementation suggestion is a 'best-guess' algorithm, something along the lines of:&lt;br /&gt;
&lt;br /&gt;
# If the name is one word, attempt [[hcard#Implied_.22nickname.22_Optimization|implied nickname optimization]]&lt;br /&gt;
# If the name is two words, attempt [[hcard#Implied_.22n.22_Optimization|implied n optimization]]&lt;br /&gt;
# For three or more words&lt;br /&gt;
## Perform a lookup against known sub-name combinations (e.g. 'Sarah Jane', 'Vander Wal')&lt;br /&gt;
## Apply the grammar &amp;quot;given-name additional-name(s) family-name&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The principal behind this suggestion is that it's better to make a good guess and potentially miscategorize an ambiguous name component than to generate an invalid hCard.&lt;br /&gt;
&lt;br /&gt;
===ADR sans enfants===&lt;br /&gt;
Les parseurs (Operator, Tails, Presque Tous les Parseurs Universels de Microformats) s'attendent actuellement à ce que &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt; ait une ou plusieurs sous-propriétés. Il n'est pas clair en partant de la spec hCard de savoir ce qui est obligatoire (bien que la RFC vCard l'exige) ; ni qu'il ne soit toujours possible pour un champ address dans un site web modélisé (ou un CMS) d'être défini avec une telle granularité.&lt;br /&gt;
&lt;br /&gt;
Regardez Wikipedia dont les gabarits ont souvent un champ &amp;quot;locale&amp;quot; ou &amp;quot;place&amp;quot; utilisés par exemple sur les gares de chemin de fer : &lt;br /&gt;
&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Old_Street_station Old Street]&lt;br /&gt;
**&amp;quot;Place&amp;quot; (&amp;quot;locale&amp;quot; dans le modèle) est une '''street'''&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Hamstead_railway_station Hamstead]&lt;br /&gt;
**&amp;quot;Place&amp;quot; est un '''local district'''&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Inverness_railway_station Inverness]&lt;br /&gt;
**&amp;quot;Place&amp;quot; est une '''city'''&lt;br /&gt;
&lt;br /&gt;
De la même manière, le modèle Wikipedia pour les organisations, dans lequel une adresse de siège social &amp;quot;headquarters&amp;quot; (pour une entreprise par exemple) peut contenir une adresse postale partielle, ou juste une paire &amp;quot;city/county&amp;quot; ou &amp;quot;city/country&amp;quot; : &lt;br /&gt;
&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Tesco Tesco]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/BP BP]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Google Google]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Blue_Coat_Systems Blue Coat Systems]&lt;br /&gt;
&lt;br /&gt;
==== sous-propriété adr unique implicite ====&lt;br /&gt;
I propose that, where &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt; has content, but no explicit sub-properties, there should be a default sub-property to which that content is allocated, in order that it is captured by user agents, and can later be manually tweaked (in, say, an address book programme) by users if so desired. This would satisfy the vCard requirement for child-of-adr, and adhere to the general principle to &amp;quot;[[be-strict|be strict in what you send but generous in what you receive]]&amp;quot;. &lt;br /&gt;
*Note that there may be other reasons to consider this suggestion, such as &amp;quot;ease of authoring&amp;quot;. Another way of looking at this suggestion is as a &amp;quot;adr/extended-address shorthand&amp;quot;. [[User:Tantek|Tantek]] 08:28, 26 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
* there is also a LABEL property which is NOT structured data, but purely a text string to be used when labeling. LABEL purpose: To specify the formatted text corresponding to delivery address of the object the vCard represents. [[User:Brian|Brian]] 13:18, 30 Mar 2007 (UTC)&lt;br /&gt;
**On re-reading this, it seems that none of the adressess given in my examples meet the criteria of being &amp;quot;''formatted text corresponding to delivery address''&amp;quot;. [[User:AndyMabbett|Andy Mabbett]] 03:35, 17 Apr 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
Of the available sub-property options:&lt;br /&gt;
&lt;br /&gt;
*street-address&lt;br /&gt;
*extended-address&lt;br /&gt;
*region&lt;br /&gt;
*locality&lt;br /&gt;
&lt;br /&gt;
I suggest that &amp;quot;extended-address&amp;quot; is the most sensible sub-property to use, for this purpose. [[User:AndyMabbett|Andy Mabbett]] 03:57, 26 Mar 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
==== sous propriétés adr implicites ====&lt;br /&gt;
Il peut être possible pour les parseurs de parser les sous-propriétés adr à partir d'une chaîne contigue adr. Ce serait une optimisation pour à la fois [[adr-fr|adr]] et [[hcard-fr|hCard]].&lt;br /&gt;
&lt;br /&gt;
Ce peut être aussi bien trop difficile/complexe pour être fiable ou inter-opérable, mais ça vaut la peine au moins de documenter ici nos considération et analyses.&lt;br /&gt;
&lt;br /&gt;
Exemples :&lt;br /&gt;
&lt;br /&gt;
L'[http://www.ibm.com/contact/employees/us/ Annuaire des Employés d'IBM] cherche les [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 retours de hCards avec la propriété &amp;quot;adr&amp;quot;] qui contient les données &amp;quot;locality&amp;quot; et &amp;quot;country-name&amp;quot; mais malheureusement sans être marquée ainsi, par ex : &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;td class=&amp;quot;adr&amp;quot;&amp;gt;Austin, USA&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nous pourrions d'abord définir un ordre canonnique sur la façon de parser les sous propriétés séparées par des virgules (et peut-être dans certains cas les espaces) dans une chaîne adr par ex : &lt;br /&gt;
&lt;br /&gt;
* 'post-office-box'&lt;br /&gt;
* 'street-address'&lt;br /&gt;
* 'extended-address'&lt;br /&gt;
* 'locality'&lt;br /&gt;
* 'region'&lt;br /&gt;
* 'postal-code'&lt;br /&gt;
* 'country-name'&lt;br /&gt;
&lt;br /&gt;
Given a dictionary of country names and abbreviations, it may be feasible to parse for a country name at the end of the adr string, and then apply country/locale specific parsing rules to the rest of the adr string.&lt;br /&gt;
&lt;br /&gt;
E.g.&lt;br /&gt;
* from a theoretical dictionary of country names:&lt;br /&gt;
** US|USA|United States|United States of America|Etats-Unis d'Amerique&lt;br /&gt;
* parse the remainder of the adr string backwards as follows:&lt;br /&gt;
** preceding that, look for a 5 or 9 digit (with optional dash '-' separator between digits 5 and 6) postal-code, and if found use it for the 'postal-code'&lt;br /&gt;
** preceding that, look for the name of a US state (e.g. California or any of the other states or territories available from a canonical list) or 2 letter state abbreviation (e.g. CA), and if found use it for the 'region' subproperty&lt;br /&gt;
** preceding that, look for the name of a US city (e.g. San Francisco, Los Angeles or any other US city available from a canonical list) or common city abbreviation (e.g. SF, LA), and if found use it for the 'locality'&lt;br /&gt;
** preceding that, look for common extended address details, such as: #|apt|apartment|suite|ste followed by a word consisting of letters and numbers, and if found use it for the 'extended-address'&lt;br /&gt;
** preceding that, look for a common street name bracketed by the street number (an integer with optional fraction and/or letter), and an optional street type (av|ave|avenue|blvd|boulevard|cir|circle|pl|place|st|street), and if found use it for the 'street-address'&lt;br /&gt;
** preceding that, look for a common post office box, with the pobox literal string: pob|pobox|PO Box followed by a word consisting of numbers and letters, and if found use it for the 'post-office-box'&lt;br /&gt;
* ... other countries&lt;br /&gt;
&lt;br /&gt;
The above heuristic (not quite well specified enough to be an algorithm, yet) would allow parsing of the IBM Employee Directory result documented above.&lt;br /&gt;
&lt;br /&gt;
There are a lot of existing geocoder APIs that turn unstructured addresses into structured ones - we should examine these for patterns and best practices. eg [http://www.google.com/apis/maps/documentation/#Geocoding_Structured Google's geocoder] [http://exogen.case.edu/projects/geopy/ geopy calls multiple ones]&lt;br /&gt;
&lt;br /&gt;
==== adr sans enfants FAQ ====&lt;br /&gt;
I think for now the simplest and most interoperable (and what I think implementations already do) is to make this an FAQ (because the spec already doesn't say to do anything with adr without any subproperty)&lt;br /&gt;
&lt;br /&gt;
Q: What should a parser do with an &amp;quot;adr&amp;quot; property lacking any subproperties?&lt;br /&gt;
&lt;br /&gt;
A: A parser SHOULD do nothing with such an &amp;quot;adr&amp;quot; property.  A parser MAY provide the text content of such an &amp;quot;adr&amp;quot; property in the results of its parsing as a freeform value of the &amp;quot;adr&amp;quot; property.  Note that the vCard standard does not allow for any such freeform value of its &amp;quot;adr&amp;quot; property (in vCard the &amp;quot;adr&amp;quot; property MUST be structured) and thus that MAY suggestion to parsers only applies in situations (such as APIs, JSON return values) where it is possible to return a freeform value for the &amp;quot;adr&amp;quot; property.&lt;br /&gt;
&lt;br /&gt;
[[User:Tantek|Tantek]] 09:20, 2 Aug 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Rappels Anniversaire ==&lt;br /&gt;
*Les consommateurs de hCard pourraient calculer l'âge en cours des sujets hCard, à partir de la date de naissance. [[User:AndyMabbett|Andy Mabbett]] 07:47, 20 Apr 2007 (PDT)&lt;br /&gt;
*pour les hCards avec Date de Naissance, les clients hCard pourraient générer et exporter un hCalendar récurrent. [[User:AndyMabbett|Andy Mabbett]] 08:06, 20 Apr 2007 (PDT)&lt;br /&gt;
**SI /quand la [[hcard-date-of-death-fr|Date de Décès]] est ajoutée à hCard, les parseurs pourraient générer à la place un hCalendar récurrent &amp;quot;anniversaire de la mort&amp;quot;. [[User:AndyMabbett|Andy Mabbett]] 08:08, 20 Apr 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Ajouts Post vCard ==&lt;br /&gt;
Conserver les propriétés et valeurs de la hCard comme une représentaiton 1:1 des propriétés et valeurs de la vCard a de nombreux avantages comme la simplicité, la stabilité, l'interopérabilité avec le grand nombre d'applications vCard existantes etc.&lt;br /&gt;
			&lt;br /&gt;
Néanmoins certains ont trouvé la vCard limitée en termes de données/propriétés/champs qu'ils veulent exprimer dans l'information de contact. Quelques implémentations utilisent les extensions vCard pour exprimer une telle information (citation demandée).&lt;br /&gt;
			&lt;br /&gt;
Cette section est pour documenter de telles additions suggérées. L'évidence empirique d'exemples véritables venant du *vrai monde* sur le Web de personnes publiant cette information serait un bon pas en avant pour de considérer de tels ajouts/extensions.&lt;br /&gt;
&lt;br /&gt;
* '''altitude'''. En provenance [[hcard-issues-fr|problématiques hCard]].&lt;br /&gt;
**Voir [[geo-elevation-examples-fr]]&lt;br /&gt;
* '''vat-number''' : pour les numéros de TVA des sociétés, qui sont beaucoup utilisés en Europe et ont besoin d'être publiés sur les publications belges (y compris les sites web).&lt;br /&gt;
&lt;br /&gt;
* '''gender''' &lt;br /&gt;
** Voir [[vcard-suggestions-fr#Genre]]&lt;br /&gt;
&lt;br /&gt;
* '''date-of-death'''&lt;br /&gt;
** Voir [[hcard-date-of-death-fr|Date de Décès]]&lt;br /&gt;
&lt;br /&gt;
par conséquent regarder (et ajouter à): [[vcard-suggestions-fr|vcard-suggestions]]&lt;br /&gt;
&lt;br /&gt;
Un autre chemin à considérer est le développement d'un autre microformat qui inclut une hCard et puis l'augmente avec des propriétés supplémentaires pour un domaine particulier. Dans beaucoup de sens [[hresume-fr|hResume]] a déjà fait ça. D'autres efforts en rapport : &lt;br /&gt;
* [[genealogy-fr|genealogy]]&lt;br /&gt;
* [[profile-fr|profile]]&lt;br /&gt;
&lt;br /&gt;
Utiliser la hCard comme un bloc de construction stabel pour des microformats supplémentaires peut sembler plus souhaitable que de faire croître incrémentalement la hCard elle-même.&lt;br /&gt;
&lt;br /&gt;
Bien sûr si la vCard était étendue en elle-même, ceci peut fournir l'impulsion pour ajouter de telles extensions à hCard afin de de maintenir l'équivalence 1:1 de la représentation des propriétés/valeurs.&lt;br /&gt;
&lt;br /&gt;
==Données de Personnes de Wikipedia==&lt;br /&gt;
[http://en.wikipedia.org/wiki/Wikipedia:Persondata Persondata] sur la Wikipedia anglo-saxonne est très proche de hCard, mais a des champs supplémentaires de dates et lieux de naissance. [[User:AndyMabbett|Andy Mabbett]] 13:02, 28 Jan 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== TODO ==&lt;br /&gt;
* Le [[hcard-profile-fr|hCard-profil]] a besoin de vérification et peut-être d'une URL pour retrouver le XMDP véritable, plutôt qu'un texte sous &amp;amp;lt;pre&amp;amp;gt; sur une page wiki.&lt;br /&gt;
* Complétez la traduction des exemples provenant de la spec vCard en hCard, et placez les sur une page séparée d'exemples.&lt;br /&gt;
* Créer un exemple &amp;quot;riche&amp;quot; mais réaliste de hCard, disons par exmple pour un vendeur, qui veut placer tout un paquet d'information de contacts sur son site web afin de pouvoir les retrouver/contacter aisément.&lt;br /&gt;
* Fournir des exemples sur la manière d'encode les comptes de Messagerie Instantanée. Imaginer ce que serait les URLs mailto: ou aim: dans la hCard et comment cela apparaîtra dans la vCard. Et jetez un oeil à ce que les appliations vCard font aujourd'hui des messageries instantanées.&lt;br /&gt;
* Clarifier les déclarations contradictoires de copyright, selon http://microformats.org/discuss/mail/microformats-discuss/2007-July/010243.html&lt;br /&gt;
&lt;br /&gt;
== Styles CSS ==&lt;br /&gt;
Non seulement vous pouvez créer de la sémantique avec les valeurs hCard, mais pouvez y ajouter des styles CSS à volonté. Vous êtes libre de styler les termes comme vous voulez, mais ici nous pouvons lister quelques idées sur la façon de styler les termes.&lt;br /&gt;
&lt;br /&gt;
Si vous voulez encoder des données hCard, mais ne voulez PAS l'afficher dans le code HTML (ATTENTION : ceci est vraiment NON RECOMMANDE, et généralement contre le principe microformats de marque de la donnée visible), alors vous pouvez cacher ce tag en CSS avec le code suivant : &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;display: none&amp;quot;&amp;gt;Donnée Cachée&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Les applications de transformation trouveront encore la donnée et l'utiliseront au moment de convertir les hCards en vCards.&lt;br /&gt;
&lt;br /&gt;
== Autres Implémentations/Idées ==&lt;br /&gt;
* [http://www.w3.org/TR/2001/NOTE-vcard-rdf-20010222/ Representing vCard Objects in RDF/XML] This could allow conversion of vCard data from XHTML to RDF and from RDF to XHTML&lt;br /&gt;
* It would also be possible to convert XFN and hCard to FoaF.&lt;br /&gt;
* [http://microid.org/ MicroID in hCard]&lt;br /&gt;
&lt;br /&gt;
== Suggestions Acceptées ==&lt;br /&gt;
&lt;br /&gt;
=== Encoder les données de Sociétés sous une Business Card ===&lt;br /&gt;
&lt;br /&gt;
( Accepté [[hcard-fr#Info_Contact_Organisation|hCard Info Contact Organisation]] )&lt;br /&gt;
&lt;br /&gt;
In the wild there are several hCards that do not currently validate because they are businesses that have omitted the &amp;quot;fn&amp;quot; property in favor of the &amp;quot;org&amp;quot; property.&lt;br /&gt;
&lt;br /&gt;
Proposal: hCards representing a business or organization MUST set fn AND org to the same value.  Parsers may then use this equivalence, if detected, to treat an hCard as the contact info for a business or organization rather than an individual.&lt;br /&gt;
&lt;br /&gt;
Note that [http://microformats.org/wiki/vcard-implementations#organization_vs._individual Apple Address Book supports this semantic when importing vCards].&lt;br /&gt;
&lt;br /&gt;
See the [http://technorati.com/about/contact.html Technorati Contact Info] for an example.&lt;br /&gt;
&lt;br /&gt;
=== Optimisation Implicite &amp;quot;FN et N&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
A cette heure, un parseur cherche d'abord un élément &amp;quot;n&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Et ensuite si &amp;quot;n&amp;quot; n'est pas présent, il chercher un élement &amp;quot;fn&amp;quot; à utiliser pour tirer implicitement un élément &amp;quot;n&amp;quot; selon les règles de la &amp;quot;propriété n implicite&amp;quot; dans la spéc.&lt;br /&gt;
&lt;br /&gt;
HISTORIQUE :&lt;br /&gt;
&lt;br /&gt;
Du fait de la prévalence de l'usage de &amp;quot;nicknames&amp;quot; ou &amp;quot;pseudos&amp;quot; sur le Web, dans le véritable contenu publié sur le Web (par ex. les auteurs de critiques), il y a eu une discussion à propos de l'ajout d'un raccourci &amp;quot;fn&amp;quot; au raccourci &amp;quot;n&amp;quot; qui utilisait le &amp;quot;nickname&amp;quot; comme solution de repli.&lt;br /&gt;
&lt;br /&gt;
PROPOSITION :&lt;br /&gt;
&lt;br /&gt;
Nous devrions imaginer ajouter une ou plusieurs optimisations implicites après les étapes documentés au-dessus et c'est :&lt;br /&gt;
&lt;br /&gt;
Si aucun &amp;quot;fn&amp;quot; n'est présent, alors chercher un élément &amp;quot;nickname&amp;quot; à utiliser pour sous-tendre à la fois le &amp;quot;fn&amp;quot; et le &amp;quot;n/given-name&amp;quot;, en laissant vide le &amp;quot;n/family-name&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Ceci permettrait des hCards uniquement avec &amp;quot;nickname&amp;quot; pour indiquer l'individu sur un site web, ce qui est tout à fait commun sur les blogs et critiques publiés sur le web.&lt;br /&gt;
* +1 [[User:Atamido|Atamido]]&lt;br /&gt;
* +1 [[User:ChrisMessina|ChrisMessina]] - note : plusieurs nicknames alternatifs devraient être aussi permis&lt;br /&gt;
* +1 [[User:DimitriGlazkov|DimitriGlazkov]]&lt;br /&gt;
&lt;br /&gt;
== tel work implicite ==&lt;br /&gt;
&lt;br /&gt;
=== Problème ===&lt;br /&gt;
&lt;br /&gt;
Some phone numbers are not always documented of type 'work'. The type 'work' is usually implied from context.&lt;br /&gt;
&lt;br /&gt;
=== Exemples dans la jungle ===&lt;br /&gt;
&lt;br /&gt;
[[http://www.nvidia.com/page/contact_information.html NVidia contact information]]&lt;br /&gt;
&lt;br /&gt;
Only 'Tel' is specified. The fact that it is of type 'work' can be assumed from the context: the name of an organization is present.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;P&amp;gt;&amp;lt;B&amp;gt;NVIDIA CORPORATE OFFICE:&amp;lt;/B&amp;gt; &amp;lt;BR&amp;gt;&lt;br /&gt;
          2701 San Tomas Expressway&amp;lt;BR&amp;gt;&lt;br /&gt;
          Santa Clara, CA 95050&amp;lt;BR&amp;gt;&lt;br /&gt;
          Tel: 408-486-2000&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
          Fax: 408-486-2200&amp;lt;BR&amp;gt;&lt;br /&gt;
          ...&lt;br /&gt;
        &amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[http://www.supermarketguru.com/page.cfm/369 Supermarketguru.com]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
   &amp;lt;p&amp;gt;&lt;br /&gt;
      &amp;lt;font face=&amp;quot;Verdana, Helvetica, Arial&amp;quot; size=2&amp;gt;&lt;br /&gt;
        &amp;lt;b&amp;gt;Phil Lempert:&amp;lt;/b&amp;gt; &amp;lt;a href=&amp;quot;mailto:plempert@supermarketguru.com&amp;quot;&amp;gt;plempert@supermarketguru.com&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
      &amp;lt;/font&amp;gt;&lt;br /&gt;
      &amp;lt;font face=&amp;quot;Verdana, Helvetica, Arial, sans-serif&amp;quot; size=2&amp;gt;SupermarketGuru.com&amp;lt;br&amp;gt;&lt;br /&gt;
          3015 Main Street, Suite 320&amp;lt;BR&amp;gt;Santa Monica, California 90405&amp;lt;br&amp;gt;&lt;br /&gt;
          Telephone: 323-860-3070 &lt;br /&gt;
      &amp;lt;/font&amp;gt;&lt;br /&gt;
   &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here only 'Telephone:' is specified, a FN is present ('Phil Lempert') but because an ORG is present ('SupermarketGuru.com'), it can be safely implied that '323-860-3070' is a tel or type work.&lt;br /&gt;
&lt;br /&gt;
=== Proposition ===&lt;br /&gt;
&lt;br /&gt;
If an ORG is present in a VCARD, a TEL with no TYPE has an implied TYPE 'work'&lt;br /&gt;
&lt;br /&gt;
==== Commentaires ====&lt;br /&gt;
* Though it may be safe to make that assumption for the given example (and though it might have been wise to make this rule from the outset), we now can't know that it will alwyas be safe to do so, for all pre-existing hCards. Consider people whose organisation represents voluntary work, honorary roles and so forth. [[User:AndyMabbett|Andy Mabbett]] 00:33, 8 Jan 2008 (PST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Suggestions rejetées ==&lt;br /&gt;
&lt;br /&gt;
Suggestion : ''L'utilisation de class=&amp;quot;url&amp;quot; sur une balise &amp;lt;a&amp;gt; pour représenter une propriété URL hCard est redondante. Par la vertu de la balise &amp;lt;a&amp;gt; vous savez que c'est une URL.''&lt;br /&gt;
&lt;br /&gt;
Rejeté.  Ceci est une mauvaise suggestion du fait que bien qu'elle semble réduire la redondance et garder les choses plus propres, elle crée aussi quelques problèmes. Sans faire remarquer explicitement que c'est une URL alors n'importe quels tags &amp;lt;a&amp;gt; dans une 'vcard' seraient considérées comme une URL, par exemple : &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;
...&lt;br /&gt;
&amp;lt;ul class=&amp;quot;categories&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;http://w3c.org&amp;quot;&amp;gt;W3C&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&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;
Il n'y a pas moyen de &amp;quot;désactiver&amp;quot; l'encodage de l'URL W3C, tandis que si &amp;quot;url&amp;quot; requis avait beoin d'être listé explicitement dans liste d'attribut de classe, alors en ne listant PAS elle pourrait être en fait désactivée..&lt;br /&gt;
&lt;br /&gt;
== Références ==&lt;br /&gt;
=== Références Normatives ===&lt;br /&gt;
* [http://www.ietf.org/rfc/rfc2426.txt RFC 2426] vCard RFC&lt;br /&gt;
* [http://www.ietf.org/rfc/rfc2397 RFC 2397] data URI RFC&lt;br /&gt;
* [http://gmpg.org/xmdp/ XMDP]&lt;br /&gt;
&lt;br /&gt;
=== Références Informatives ===&lt;br /&gt;
* [http://www.imc.org/pdi/ Personal Data Interchange (PDI) at the Internet Mail Consortium]&lt;br /&gt;
* [http://tantek.com/log/2004/07.html#d27t1049 Markup language design notes]&lt;br /&gt;
* [http://tantek.com/log/2002/12.html#L20021216t2238 A Touch of Class]&lt;br /&gt;
* [http://www.icao.int/mrtd/download/technical.cfm ICAO - Machine Readable Travel Documents format]&lt;br /&gt;
&lt;br /&gt;
== Pages en rapport ==&lt;br /&gt;
{{hcard-related-pages-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples&amp;diff=34594</id>
		<title>species-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples&amp;diff=34594"/>
		<updated>2008-11-17T23:58:18Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Plant */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Species Examples=&lt;br /&gt;
&lt;br /&gt;
Examples of common and scientific names of living things, which could be marked up with a &amp;quot;'''[[species]]'''&amp;quot; (or similar) microformat. Note use of matching pairs of examples, where possible.&lt;br /&gt;
&lt;br /&gt;
:'''Note: the original name of the proposed microformat, &amp;quot;species&amp;quot;, is likely to change, probably to &amp;quot;biota&amp;quot; or &amp;quot;taxon&amp;quot;. The former has been retained here, to avoid having to make many repetitive and perhaps redundant edits'''&lt;br /&gt;
&lt;br /&gt;
'''If you find a link which is not working, please replace it with a suitable alternative, rather than simply deleting it. Thank you.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Types of publishers==&lt;br /&gt;
&lt;br /&gt;
There are, perhaps, three types of publisher of taxonomic information (with all the usual overlaps and exceptions one finds when generalising so much!):&lt;br /&gt;
&lt;br /&gt;
#Those which publish a full or partial hierarchy, like [http://names.ubio.org/browser/classifications.php?conceptID=2463046 UBIO].&lt;br /&gt;
#Those which publish a binominal, or a binominal with a qualifier, like a subspecies, variety, breed, hybridisation - but still referring to a single type of living thing, with no higher- level taxonomy. e.g [http://www.westmidlandbirdclub.com/records/lists.htm the West Midland Bird Club's county lists]&lt;br /&gt;
#These which publish common (or &amp;quot;vernacular&amp;quot;) names, but who would be interested in &amp;quot;aliasing&amp;quot; those to the scientific equivalent. e.g [http://www.westmidlandbirdclub.com/ladywalk/latest.htm the West Midland Bird Club's news from Ladywalk]&lt;br /&gt;
&lt;br /&gt;
Interestingly, some sites (Wikipedia, for example) have pages which fall into each of the three categories! &lt;br /&gt;
#[http://en.wikipedia.org/wiki/Bar-tailed_Godwit Bar tailed Godwit]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Genetics_of_humans Genetics of humans]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Ladywalk Ladywalk]&lt;br /&gt;
&lt;br /&gt;
[[User:AndyMabbett|AndyMabbett]] 12:05, 23 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
==Binominals==&lt;br /&gt;
&lt;br /&gt;
===Birds===&lt;br /&gt;
&lt;br /&gt;
'''Black-tailed Godwit''' on [http://www.westmidlandbirdclub.com/ladywalk/latest.htm West Midland Bird Club's Ladywalk reserve latest news page]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Limosa limosa'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/records/lists.htm West Midland Bird Club county lists]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Common Name&amp;lt;/th&amp;gt;&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Scientific Name&amp;lt;/th&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&amp;lt;th scope=&amp;quot;row&amp;quot; class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/th&amp;gt;&amp;lt;td class=&amp;quot;sci&amp;quot;&amp;gt;Limosa limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Eurasian Bittern'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/ladywalk/BITTE.htm Bitterns at LAdywalk]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Eurasian Bitterns&amp;lt;/b&amp;gt;, (&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Botaurus stellaris&amp;lt;/i&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Mammal===&lt;br /&gt;
'''Wolf''' on [http://www.wolf.org/wolves/index.asp International Wolf Center]&lt;br /&gt;
&lt;br /&gt;
'''''Canis_lupus''''' on [http://animaldiversity.ummz.umich.edu/site/accounts/information/Canis_lupus.html Animal Diversity Web]&lt;br /&gt;
&lt;br /&gt;
===Fish===&lt;br /&gt;
'''Northern pike''' on [http://www.dnr.state.mn.us/fish/northern/index.html Minnesota Department of Natural Resources]&lt;br /&gt;
&lt;br /&gt;
'''''Esox lucius''''' on [http://www.pikezander.co.uk/pike.htm Pike &amp;amp; Zander]&lt;br /&gt;
&lt;br /&gt;
===Insect===&lt;br /&gt;
'''Death’s Head Hawkmoth''' on [http://funkman.org/animal/insect/deathheadmoth.html Animal Teachers]&lt;br /&gt;
&lt;br /&gt;
'''''Acherontia atropos''''' on [http://ukmoths.org.uk/show.php?id=2540 UK Moths]&lt;br /&gt;
&lt;br /&gt;
'''Migrant Hawker''' (''Aeshna mixta'') on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Center]&lt;br /&gt;
&lt;br /&gt;
===Arachnid===&lt;br /&gt;
'''Rose Trantula''' on [http://www.practical-pet-care.com/spider_question.php?ID=1.2006100416232172 Pet Care Forum]&lt;br /&gt;
&lt;br /&gt;
'''''Araneus angulatus''''' on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Center] (this is a duplicate. [[User:BenWest|BenWest]] 21:56, 21 Oct 2006 (PDT))&lt;br /&gt;
&lt;br /&gt;
===Plant===&lt;br /&gt;
'''Bog Pimpernel''' on [http://www.map-reading.co.uk/wildflowers/HTML%20files/f0219.htm Map Reading's Wildflower Images]&lt;br /&gt;
&lt;br /&gt;
'''''Anagallis tenella''''' on [http://www.bioimages.org.uk/HTML/T47624.HTM BioImages]&lt;br /&gt;
&lt;br /&gt;
'''''Persicaria campanulatum''''' on [http://www.record-lrc.co.uk/?Mod=Forum&amp;amp;Do=ViewThread&amp;amp;ForumID=6&amp;amp;ThreadID=75 rECOrd - The Biodiversity Information Center for the Cheshire region]&lt;br /&gt;
&lt;br /&gt;
'''''Galeopsis tetrahit s.s.'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm West Midland Bird Club]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Galeopsis tetrahit&amp;amp;nbsp;&lt;br /&gt;
&amp;lt;abbr lang=&amp;quot;la&amp;quot; title=&amp;quot;sensu stricto&amp;quot;&amp;gt;s.s.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
 (&amp;lt;b class=&amp;quot;plant&amp;quot;&amp;gt;Common Hemp-nettle&amp;lt;/b&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Fungi===&lt;br /&gt;
&lt;br /&gt;
'''''Amanita muscaria''''' on [http://www.mykoweb.com/CAF/species/Amanita_muscaria.html California Fungi]&lt;br /&gt;
* as '''''Amanita muscaria'' (L. per Fr.) Hooker'''&lt;br /&gt;
* as '''''Amanita muscaria var. flavivolvata'''''&lt;br /&gt;
&lt;br /&gt;
'''Fly Agaric''' on [http://www.treesforlife.org.uk/forest/mythfolk/flyagaric.html Trees for Life]&lt;br /&gt;
&lt;br /&gt;
'''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz: Fries) Singer''' on [http://www.ilmyco.gen.chicago.il.us/Taxa/Rhodomacul540.html]&lt;br /&gt;
*also written as '''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz ex Fries) Singer''' &lt;br /&gt;
*(This is where a post-Linnean author is given special rights (because his descriptions were comparatively complete - i.e. recognisable) so his interpretation of earlier names is taken as the sense meant by the original author. Think these used to be &amp;quot;apud&amp;quot; and are now &amp;quot;ex&amp;quot; although a colon has also been used. There are only a few sanctioning authors, the main one being Elias Fries.(Fr.) )&lt;br /&gt;
&lt;br /&gt;
==More than binominals==&lt;br /&gt;
&lt;br /&gt;
===Authority===&lt;br /&gt;
'''''Pica pica'' Linnaeus, (1758)''' on [http://en.wikipedia.org/wiki/European_Magpie Wikipedia: European Magpie]&lt;br /&gt;
:(i.e. named by Linnaeus in 1758)&lt;br /&gt;
&lt;br /&gt;
'''''Anarhynchus frontalis'' Quoy and Gaimard, 1830''' on [http://en.wikipedia.org/wiki/Wrybill Wikipedia: Wrybill]&lt;br /&gt;
:note two-person authority&lt;br /&gt;
&lt;br /&gt;
===Unspecified species===&lt;br /&gt;
'''''Podiceps sp.''''' on [http://www.birdlife.org/datazone/species/index.html?action=SpcHTMDetails.asp&amp;amp;sid=3644&amp;amp;m=0 Bird Life] &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;Podiceps&amp;lt;/i&amp;gt; sp.&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Psyllid plant hopper''' [http://ramblingsofanaturalist.blogspot.com/2006/07/bay-sucker-gall-trioza-alacris.html on Ramblings of a Naturalist blog]&lt;br /&gt;
&lt;br /&gt;
===Sub-species===&lt;br /&gt;
&lt;br /&gt;
====Animal====&lt;br /&gt;
'''''Larus glaucoides kumlieni''' on [http://www.birdguides.com/html/vidlib/species/Larus_glaucoides_kumlieni.htm BirdGuides]&lt;br /&gt;
&lt;br /&gt;
'''Kumlien's Gull''' on [http://www.birdsireland.com/pages/rare_bird_news/2005/january_photos.html Birds Ireland]&lt;br /&gt;
&lt;br /&gt;
====Plant====&lt;br /&gt;
'''''Pisum sativum L. subsp. sativum''''' on [http://www.plantnames.unimelb.edu.au/Sorting/Pisum.html] (also has other examples; note lack of required italics)&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;b&amp;gt;Pisum sativum&amp;lt;/b&amp;gt; L. subsp. &amp;lt;b&amp;gt;sativum&amp;lt;/b&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Cultivars (plant)===&lt;br /&gt;
'''''Chamaecyparis lawsoniana 'Aureomarginata'''''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;dd&amp;gt;&amp;lt;i&amp;gt;Chamaecyparis lawsoniana&amp;lt;/i&amp;gt; 'Aureomarginata'&amp;lt;/dd&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Chamaecyparis lawsoniana'' 'Golden Wonder'''' on [http://www.plantago.nl/plantindex/c/Chamaecyparis/Chamaecyparis_4.htm plantago.nl]&lt;br /&gt;
&lt;br /&gt;
====Cultivar groups (plant)====&lt;br /&gt;
'''''Brassica oleracea'' Botrytis Group'''  on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
&lt;br /&gt;
===Trade names (plant)===&lt;br /&gt;
&lt;br /&gt;
'''''Rosa'' Peace''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
:(&amp;quot;Peace&amp;quot; is a trade designation or &amp;quot;selling name&amp;quot; for the cultivar R. 'Madame A. Meilland' and should therefore be printed in a different typeface from the rest of the name, without any quote marks)&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Giant Single'''' on [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds]&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Infrared' F1''' on [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds] &lt;br /&gt;
:(Note &amp;quot;F1&amp;quot; cross designation)&lt;br /&gt;
&lt;br /&gt;
===Variety (plant)===&lt;br /&gt;
'''''Pisum sativum var. macrocarpon''''' on [http://davesgarden.com/pf/go/8/index.html Dave's Garden]&lt;br /&gt;
&lt;br /&gt;
====Sub-variety (plant)====&lt;br /&gt;
&lt;br /&gt;
'''''Betula ermani var. genuina subvar. brevidentata''''' on [http://www.nccpg.com/gloucestershire/wilson1.html National Council for the Conservation of Plants and Gardens, Gloucestershire Group] (plus many other examples)&lt;br /&gt;
&lt;br /&gt;
===Form (plant)===&lt;br /&gt;
&lt;br /&gt;
'''''Acanthocalycium spiniflorum f. klimpelianum''''' on [http://en.wikipedia.org/wiki/Form_%28botany%29 Wikipedia: form (botany)]&lt;br /&gt;
*aka '''''Acanthocalycium spiniflorum forma klimpelianum'''''&lt;br /&gt;
&lt;br /&gt;
===Sense (plant)===&lt;br /&gt;
'''''Ranunculus aquatilis s.l.''''' and '''''R. aquatilis s.s'''''; on [http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm Blithfield Reservoir: Survey of Flowering Plants...] (see also footnotes on that page)&lt;br /&gt;
&lt;br /&gt;
===Cross (plant)===&lt;br /&gt;
'''''Digitalis x mertonensis''''' on [http://www.hortax.org.uk/gardenplantsnames.html Hortax]&lt;br /&gt;
:The hybrid name for all plants derived from the cross between '''D. purpurea''' and '''D. grandiflora'''. The &amp;quot;x&amp;quot; indicates the hybrid status. &lt;br /&gt;
&lt;br /&gt;
'''''× Fatshedera lizei''''' on [http://oregonstate.edu/dept/ldplants/sci-names.htm Scientific Plant Names, Oregon State Univ., Landscape Plants]&lt;br /&gt;
&lt;br /&gt;
===Strain (bacteria)===&lt;br /&gt;
'''''Escherichia coli O157:H7''''' on [http://www.cfsan.fda.gov/~mow/chap15.html FDA.gov]&lt;br /&gt;
&lt;br /&gt;
'''''E.Coli''''' on [http://news.bbc.co.uk/1/hi/england/southern_counties/5346842.stm BBC news]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Synonyms===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Tarpan The Tarpan], '''''Equus ferus ferus''''':&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The Tarpan was first described by Johann Friedrich Gmelin in 1774; he had seen the animals in 1769 in the region of Bobrovsk, near Voronezh. In 1784 Pieter Boddaert named the species '''''Equus ferus''''', referring to Gmelin's description. Unaware of Boddaert's name, Otto Antonius published the name '''''Equus gmelini''''' in 1912, again referring to Gmelin's description. Since Antonius' name refers to the same description as Boddaert's it is a junior objective synonym.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
on http://www.westmidlandbirdclub.com/biblio/bb/71-338.htm:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;some authors still refer to Scandinavian Herring Gulls as '''''L. a. omissus'''''; others regard '''''omissus''''' as no longer valid (a synonym of '''''argentatus''''')&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Devario_chrysotaeniatus:&lt;br /&gt;
&lt;br /&gt;
:'''''Devario chrysotaeniatus''''' [...] former Names and Synonyms&lt;br /&gt;
::* '''''Danio chrysotaeniatus'''''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Tetracanthus:&lt;br /&gt;
&lt;br /&gt;
:'''''Echinocactus tetracanthus''''' synonym of '''''Parodia erinacea''''' - cactus&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Jostia_teaguei (using a &amp;quot;taxobox&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
:Binomial name&lt;br /&gt;
:'''''Jostia teaguei'''''&lt;br /&gt;
:(Luer) Luer&lt;br /&gt;
:Synonyms&lt;br /&gt;
:'''''Masdevallia teaguei''''' Luer, 1978&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://www.coleopterist.org.uk/haliplidae-list.htm &lt;br /&gt;
&lt;br /&gt;
:'''HALIPLUS''' Latreille, 1802&lt;br /&gt;
:Subgenus HALIPLUS Latreille, 1802&lt;br /&gt;
:''confinis'' Stephens, 1828&lt;br /&gt;
::''pallens'' Fowler, 1887&lt;br /&gt;
::''halberti'' Bullock, 1928&lt;br /&gt;
&lt;br /&gt;
i.e. ''Haliplus pallens'' and  ''H. halberti'' are synonyms of ''H. confinis''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See also [http://en.wikipedia.org/wiki/Special:Search?search=species+synonym&amp;amp;fulltext=Search Wkipedia search for &amp;quot;species synonym&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
===Superseded names===&lt;br /&gt;
'''''Tringa bartramia''''' superseded by '''''Bartramia longicauda''''' on [http://www.westmidlandbirdclub.com/firsts/UPLSA.htm West Midland Bird Club's Upland Sandpiper article]&lt;br /&gt;
&lt;br /&gt;
===GUID===&lt;br /&gt;
'''NBN Taxon Key''' for European Otter, ''Lutra lutra'', on [http://nbn.nhm.ac.uk/nhm/bin/nbntaxa.dll/taxon_details?taxon_key=NBNSYS0000005133 NBN Species Dictionary]: '''NBNSYS0000005133''' &lt;br /&gt;
&lt;br /&gt;
'''LSID ([http://lsid.sourceforge.net/#whatislsid Life Science Indicator])''' for ''Popillia japonica'' on [http://names.ubio.org/browser/details2.php?names=on&amp;amp;authors=on&amp;amp;sci=on&amp;amp;vern=on&amp;amp;conceptID=&amp;amp;expand=&amp;amp;namebankID=3377001 uBio]: '''urn:lsid:ubio.org:namebank:3377001'''&lt;br /&gt;
&lt;br /&gt;
===Wikipedia===&lt;br /&gt;
'''Black-tailed Godwit''' on [http://en.wikipedia.org/wiki/Black-tailed_Godwit Wikipedia: Black-tailed Godwit]&lt;br /&gt;
&lt;br /&gt;
Wikipedia uses several sets of markup, e.g. (in-line styles and links, plus some other markup, removed, for clarity):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;The &amp;lt;b&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;, &amp;lt;i&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Linking====&lt;br /&gt;
Wikipedia uses the standard convention of having species italicised. Internal links to species may be to the common name or scientific name depending on which is used as the article's title (usually common for animals, scientific for plants, although there are exceptions). Links to scientific names work regardless:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;[[Black-tailed Godwit]]&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name, but displaying scientific name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Black-tailed Godwit|Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These types of links are not used in the Black-tailed Godwit article itself, but in others related to it. e.g. [http://en.wikipedia.org/wiki/British_avifauna British avifauna]&lt;br /&gt;
&lt;br /&gt;
====Taxobox====&lt;br /&gt;
&lt;br /&gt;
Wiki markup for the taxobox (taxonomy infobox) on the English Wikipedia, as used on the Black-tailed Godwit article, with irrelevant fields removed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{Taxobox&lt;br /&gt;
| name = Black-tailed Godwit&lt;br /&gt;
| regnum = [[Animal]]ia&lt;br /&gt;
| phylum = [[Chordate|Chordata]]&lt;br /&gt;
| classis = [[bird|Aves]]&lt;br /&gt;
| ordo = [[Charadriiformes]]&lt;br /&gt;
| familia = [[Scolopacidae]]&lt;br /&gt;
| genus = ''[[Godwit|Limosa]]''&lt;br /&gt;
| species = '''''L. limosa'''''&lt;br /&gt;
| binomial = ''Limosa limosa''&lt;br /&gt;
| binomial_authority = ([[Carolus Linnaeus|Linnaeus]], 1758)&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Above is vaguely displayed in an HTML table as (with formatting and links removed):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Kingdom:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Animalia&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Phylum:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Chordata&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Class:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Aves&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Order:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Charadriiformes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Family:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Scolopacidae&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Genus:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Species:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;L. limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;th&amp;gt;binominal name&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;(Linnaeus, 1758)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also allows for other levels of taxonomy (e.g. genus or subspecies), and synonyms.&lt;br /&gt;
&lt;br /&gt;
==Quantitative evidence==&lt;br /&gt;
&lt;br /&gt;
For evidence of quantitative, rather than qualitative, use of species' and other taxonomic names, see [[species-examples-quantitative]]&lt;br /&gt;
&lt;br /&gt;
==Notable websites==&lt;br /&gt;
These high-profile websites use species names&lt;br /&gt;
&lt;br /&gt;
*Amazon&lt;br /&gt;
**[http://www.amazon.co.uk/s/?url=search-alias%3Daps&amp;amp;field-keywords=%22house+sparrow%22 search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*BBC News&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/uk/4835208.stm Fewer birds spotted in UK gardens]&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/england/london/4743250.stm Study to solve sparrow's decline riddle]&lt;br /&gt;
&lt;br /&gt;
*Encyclopaedia Britannica - all species, e.g.&lt;br /&gt;
**[http://concise.britannica.com/ebc/article-9379473/starling Starling]&lt;br /&gt;
&lt;br /&gt;
*Flickr&lt;br /&gt;
**[http://www.flickr.com/photos/tags/citheronia/ Tag for moth genera 'citheronia']&lt;br /&gt;
***[http://www.flickr.com/photos/30268343@N00/152101772/ Sample result from that search]&lt;br /&gt;
**[http://www.flickr.com/groups/birdguide/ Field Guide: Birds of the World] 23,073 tagged photos, as at 2006-10-21&lt;br /&gt;
&lt;br /&gt;
*CNN&lt;br /&gt;
**[http://archives.cnn.com/2001/NATURE/01/24/dying.eagles/ Disease threatens bald eagle population]&lt;br /&gt;
&lt;br /&gt;
*eBay&lt;br /&gt;
**[http://search.ebay.com/house-sparrow search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*The Guardian&lt;br /&gt;
**[http://environment.guardian.co.uk/conservation/story/0,,1878956,00.html The call of the wildlife]&lt;br /&gt;
**[http://education.guardian.co.uk/higher/news/story/0,,1665396,00.html Sparrow joins 'raped' duck in Dutch museum] (note improper capitalisation &amp;quot;''passer domesticus''&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*The Internet Movie Database&lt;br /&gt;
**[http://www.imdb.com/title/tt0029443/ Private Life of the Gannets]&lt;br /&gt;
***[http://www.imdb.com/title/tt0029443/trivia Private Life of the Gannets trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0133318/ The Trials of Life]&lt;br /&gt;
**[http://www.imdb.com/title/tt0227812/ Whooping Crane]&lt;br /&gt;
***[http://www.imdb.com/title/tt0227812/trivia Whooping Crane trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0301727/ Winged Migration]&lt;br /&gt;
&lt;br /&gt;
*London Zoo&lt;br /&gt;
**[http://www.zsl.org/london-zoo/animals/birds/tawny-frogmouth,99,AN.html Tawny frogmouth]&lt;br /&gt;
&lt;br /&gt;
*Microsoft&lt;br /&gt;
**[http://www.microsoft.com/games/zootycoon/zoo2/zoo2_ymi_animals1.asp Zoo Tycoon]&lt;br /&gt;
&lt;br /&gt;
*MSN-Encarta - all species, e.g.&lt;br /&gt;
**[http://encarta.msn.com/encnet/refpages/search.aspx?q=vulgaris&amp;amp;Submit2=Go Search for &amp;quot;vulgaris&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*MySpace&lt;br /&gt;
**[http://blog.myspace.com/index.cfm?fuseaction=blog.view&amp;amp;friendID=47134278&amp;amp;blogID=79591637]&lt;br /&gt;
&lt;br /&gt;
*Nature&lt;br /&gt;
**[http://www.nature.com/nature/focus/avianflu/index.html Avian flu web focus]&lt;br /&gt;
&lt;br /&gt;
*Nature Network, Boston&lt;br /&gt;
**[http://network.nature.com/boston/news/archive/2006/06/13/the-student-and-the-squid The student and the squid] '''N.B.''' site already supports rel-tag, hCard for user profiles and hCalendar for marking up events across the site.&lt;br /&gt;
&lt;br /&gt;
*NASA&lt;br /&gt;
**[http://history.nasa.gov/SP-401/ch3.htm SP-401 Skylab, Classroom in Space. Part II - Student Experiments] (&amp;quot;The common Cross spider (Araneus diadematus)&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*New York Times&lt;br /&gt;
**[http://query.nytimes.com/gst/fullpage.html?sec=travel&amp;amp;res=9D04E4DE1131F93BA25751C0A9669C8B63 Where the Eagles Fly: Seeing the National Symbol]&lt;br /&gt;
&lt;br /&gt;
*Sky News&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,15410-1249430,00.html Homo floresiensis]&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,30200-13546024,00.html Atlapetes latinuchus yariguierum]&lt;br /&gt;
**[http://news.sky.com/skynews/picture_gallery/picture_gallery/0,,15410-1244699,00.html Polypedates chlorophthalmus]&lt;br /&gt;
**[http://search.sky.com/search/skynews/results/1,,,00.html?CID=30000&amp;amp;QUERY=species&amp;amp;SITEREF=skynews&amp;amp;SECTION=&amp;amp;TYPE_REF=&amp;amp;radiodate=&amp;amp;dayFrom=dd&amp;amp;monthFrom=mm&amp;amp;yearFrom=yyyy&amp;amp;dayTo=dd&amp;amp;monthTo=mm&amp;amp;yearTo=yyyy&amp;amp;Submit.x=0&amp;amp;Submit.y=0 Sky News search for &amp;quot;species&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*Snopes (Urban Legends Reference Pages)&lt;br /&gt;
**[http://www.snopes.com/photos/animals/fishfly.asp Fish Fly]&lt;br /&gt;
&lt;br /&gt;
*United Kingdom Government&lt;br /&gt;
**[http://www.defra.gov.uk/wildlife-countryside/vertebrates/gen-licence.htm DEFRA: General licences under the Wildlife &amp;amp; Countryside Act 1981]&lt;br /&gt;
&lt;br /&gt;
*United Nations&lt;br /&gt;
** [http://www.oceansatlas.org/ Atlas of the Oceans] e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm Chilean nylon shrimp ''Heterocarpus reedi'']&lt;br /&gt;
&lt;br /&gt;
*United States of America Government &lt;br /&gt;
**ITIS, e.g. [http://www.itis.usda.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&amp;amp;search_value=179628 Passer Domesticus] - &amp;quot;authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://dev.w3.org/cvsweb/2000/10/swap/test/ferrell/biology.n3?rev=1.4 An Ontology of Biology]&lt;br /&gt;
**[http://esw.w3.org/topic/HCLSIG_BioRDF_Subgroup/Tasks/Reagents/Status_Reports/2006-05-04 BioRDF Sub-group Status Report, 4 May 2006]&lt;br /&gt;
&lt;br /&gt;
*Yahoo Groups&lt;br /&gt;
**[http://tech.groups.yahoo.com/group/passerdomesticus/ passerdomesticus] species as group name!&lt;br /&gt;
&lt;br /&gt;
*YouTube&lt;br /&gt;
**[http://www.youtube.com/results?search_query=starling&amp;amp;search=Search YouTube search for 'starling']]&lt;br /&gt;
&lt;br /&gt;
==Breaking news==&lt;br /&gt;
In under two weeks, the BBC News website carried the following stories, all including the scientific names of species:&lt;br /&gt;
*[http://news.bbc.co.uk/1/shared/spl/hi/pop_ups/06/sci_nat_orchid_spectacular/html/1.stm BBC News: Stunning new orchids from Asia's rainforest] - 2006-10-16&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6045802.stm BBC News: Winter home find cheers twitchers] (winter home of the northern bald ibis found) - 2006-10-13&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6043648.stm BBC News: New mouse find is 'living fossil'] - 2006-10-12&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6035113.stm BBC News: Giant camel fossil found in Syria] - 2006-10-10&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5414410.stm BBC News: Sharks swim into political waters] - 2006-10-06&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5403570.stm BBC News: 'Monster' fossil find in Arctic] - 2006-10-05&lt;br /&gt;
&lt;br /&gt;
==Use in blogs==&lt;br /&gt;
*[http://technorati.com/search/%22passer%20domesticus%22 Technorati search for &amp;quot;Passer domesticus&amp;quot;] (367 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22acer%20palmatum%22 Technorati search for &amp;quot;Acer palmatum&amp;quot;] (682 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22Homo%20sapiens%22 Technorati search for &amp;quot;Homo sapiens&amp;quot;] (40,932 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/birding Technorati search for &amp;quot;birding&amp;quot;] (26,472 found, as at 2006-09-25)&lt;br /&gt;
*[http://ramblingsofanaturalist.blogspot.com/ Ramblings of a Naturalist]&lt;br /&gt;
*[http://squaremetre1.blogspot.com/ The Square Metre]&lt;br /&gt;
*[http://windowboxwildlife.blogspot.com/index.html Windowbox Wildlife]&lt;br /&gt;
*[http://www.rxwildlife.org.uk/ RXWildlife]&lt;br /&gt;
*[http://newsbou.blogspot.com/ British Ornithologists' Union news]&lt;br /&gt;
*[http://fieldmarking.reger.com/ FieldMarking] - An experiment to see how people can collaborate to record wildlife observations in blogs.&lt;br /&gt;
&lt;br /&gt;
==And finally...==&lt;br /&gt;
Gary Larson, in his book ''The Far Side Gallery'' (Warner Books, 1980, ISBN 0751502367) has a cartoon, showing two entomologists sitting down to eat dinner in a jungle. One says to the other &amp;quot;Hey! What's this ''Drosophila melanogaster'' doing in my soup?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proponent)&lt;br /&gt;
*Malcolm Storey (per e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Centre] (proponent)&lt;br /&gt;
*[[User:SteveMcBill|Steve McWilliam]], [http://www.rECOrd-LRC.co.uk/ rECOrd - The Biodiversity Information System for the Cheshire region] (proponent)&lt;br /&gt;
*[[User:PeNGo|Peter Halasz]], Wikipedia Admin.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{species}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples&amp;diff=34593</id>
		<title>species-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples&amp;diff=34593"/>
		<updated>2008-11-17T23:57:32Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Insect */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Species Examples=&lt;br /&gt;
&lt;br /&gt;
Examples of common and scientific names of living things, which could be marked up with a &amp;quot;'''[[species]]'''&amp;quot; (or similar) microformat. Note use of matching pairs of examples, where possible.&lt;br /&gt;
&lt;br /&gt;
:'''Note: the original name of the proposed microformat, &amp;quot;species&amp;quot;, is likely to change, probably to &amp;quot;biota&amp;quot; or &amp;quot;taxon&amp;quot;. The former has been retained here, to avoid having to make many repetitive and perhaps redundant edits'''&lt;br /&gt;
&lt;br /&gt;
'''If you find a link which is not working, please replace it with a suitable alternative, rather than simply deleting it. Thank you.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Types of publishers==&lt;br /&gt;
&lt;br /&gt;
There are, perhaps, three types of publisher of taxonomic information (with all the usual overlaps and exceptions one finds when generalising so much!):&lt;br /&gt;
&lt;br /&gt;
#Those which publish a full or partial hierarchy, like [http://names.ubio.org/browser/classifications.php?conceptID=2463046 UBIO].&lt;br /&gt;
#Those which publish a binominal, or a binominal with a qualifier, like a subspecies, variety, breed, hybridisation - but still referring to a single type of living thing, with no higher- level taxonomy. e.g [http://www.westmidlandbirdclub.com/records/lists.htm the West Midland Bird Club's county lists]&lt;br /&gt;
#These which publish common (or &amp;quot;vernacular&amp;quot;) names, but who would be interested in &amp;quot;aliasing&amp;quot; those to the scientific equivalent. e.g [http://www.westmidlandbirdclub.com/ladywalk/latest.htm the West Midland Bird Club's news from Ladywalk]&lt;br /&gt;
&lt;br /&gt;
Interestingly, some sites (Wikipedia, for example) have pages which fall into each of the three categories! &lt;br /&gt;
#[http://en.wikipedia.org/wiki/Bar-tailed_Godwit Bar tailed Godwit]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Genetics_of_humans Genetics of humans]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Ladywalk Ladywalk]&lt;br /&gt;
&lt;br /&gt;
[[User:AndyMabbett|AndyMabbett]] 12:05, 23 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
==Binominals==&lt;br /&gt;
&lt;br /&gt;
===Birds===&lt;br /&gt;
&lt;br /&gt;
'''Black-tailed Godwit''' on [http://www.westmidlandbirdclub.com/ladywalk/latest.htm West Midland Bird Club's Ladywalk reserve latest news page]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Limosa limosa'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/records/lists.htm West Midland Bird Club county lists]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Common Name&amp;lt;/th&amp;gt;&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Scientific Name&amp;lt;/th&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&amp;lt;th scope=&amp;quot;row&amp;quot; class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/th&amp;gt;&amp;lt;td class=&amp;quot;sci&amp;quot;&amp;gt;Limosa limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Eurasian Bittern'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/ladywalk/BITTE.htm Bitterns at LAdywalk]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Eurasian Bitterns&amp;lt;/b&amp;gt;, (&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Botaurus stellaris&amp;lt;/i&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Mammal===&lt;br /&gt;
'''Wolf''' on [http://www.wolf.org/wolves/index.asp International Wolf Center]&lt;br /&gt;
&lt;br /&gt;
'''''Canis_lupus''''' on [http://animaldiversity.ummz.umich.edu/site/accounts/information/Canis_lupus.html Animal Diversity Web]&lt;br /&gt;
&lt;br /&gt;
===Fish===&lt;br /&gt;
'''Northern pike''' on [http://www.dnr.state.mn.us/fish/northern/index.html Minnesota Department of Natural Resources]&lt;br /&gt;
&lt;br /&gt;
'''''Esox lucius''''' on [http://www.pikezander.co.uk/pike.htm Pike &amp;amp; Zander]&lt;br /&gt;
&lt;br /&gt;
===Insect===&lt;br /&gt;
'''Death’s Head Hawkmoth''' on [http://funkman.org/animal/insect/deathheadmoth.html Animal Teachers]&lt;br /&gt;
&lt;br /&gt;
'''''Acherontia atropos''''' on [http://ukmoths.org.uk/show.php?id=2540 UK Moths]&lt;br /&gt;
&lt;br /&gt;
'''Migrant Hawker''' (''Aeshna mixta'') on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Center]&lt;br /&gt;
&lt;br /&gt;
===Arachnid===&lt;br /&gt;
'''Rose Trantula''' on [http://www.practical-pet-care.com/spider_question.php?ID=1.2006100416232172 Pet Care Forum]&lt;br /&gt;
&lt;br /&gt;
'''''Araneus angulatus''''' on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Center] (this is a duplicate. [[User:BenWest|BenWest]] 21:56, 21 Oct 2006 (PDT))&lt;br /&gt;
&lt;br /&gt;
===Plant===&lt;br /&gt;
'''Bog Pimpernel''' on [http://www.map-reading.co.uk/wildflowers/HTML%20files/f0219.htm Map Reading's Wildflower Images]&lt;br /&gt;
&lt;br /&gt;
'''''Anagallis tenella''''' on [http://www.bioimages.org.uk/HTML/T47624.HTM BioImages]&lt;br /&gt;
&lt;br /&gt;
'''''Persicaria campanulatum''''' on [http://www.record-lrc.co.uk/?Mod=Forum&amp;amp;Do=ViewThread&amp;amp;ForumID=6&amp;amp;ThreadID=75 rECOrd - The Biodiversity Information Centre for the Cheshire region]&lt;br /&gt;
&lt;br /&gt;
'''''Galeopsis tetrahit s.s.'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm West Midland Bird Club]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Galeopsis tetrahit&amp;amp;nbsp;&lt;br /&gt;
&amp;lt;abbr lang=&amp;quot;la&amp;quot; title=&amp;quot;sensu stricto&amp;quot;&amp;gt;s.s.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
 (&amp;lt;b class=&amp;quot;plant&amp;quot;&amp;gt;Common Hemp-nettle&amp;lt;/b&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Fungi===&lt;br /&gt;
&lt;br /&gt;
'''''Amanita muscaria''''' on [http://www.mykoweb.com/CAF/species/Amanita_muscaria.html California Fungi]&lt;br /&gt;
* as '''''Amanita muscaria'' (L. per Fr.) Hooker'''&lt;br /&gt;
* as '''''Amanita muscaria var. flavivolvata'''''&lt;br /&gt;
&lt;br /&gt;
'''Fly Agaric''' on [http://www.treesforlife.org.uk/forest/mythfolk/flyagaric.html Trees for Life]&lt;br /&gt;
&lt;br /&gt;
'''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz: Fries) Singer''' on [http://www.ilmyco.gen.chicago.il.us/Taxa/Rhodomacul540.html]&lt;br /&gt;
*also written as '''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz ex Fries) Singer''' &lt;br /&gt;
*(This is where a post-Linnean author is given special rights (because his descriptions were comparatively complete - i.e. recognisable) so his interpretation of earlier names is taken as the sense meant by the original author. Think these used to be &amp;quot;apud&amp;quot; and are now &amp;quot;ex&amp;quot; although a colon has also been used. There are only a few sanctioning authors, the main one being Elias Fries.(Fr.) )&lt;br /&gt;
&lt;br /&gt;
==More than binominals==&lt;br /&gt;
&lt;br /&gt;
===Authority===&lt;br /&gt;
'''''Pica pica'' Linnaeus, (1758)''' on [http://en.wikipedia.org/wiki/European_Magpie Wikipedia: European Magpie]&lt;br /&gt;
:(i.e. named by Linnaeus in 1758)&lt;br /&gt;
&lt;br /&gt;
'''''Anarhynchus frontalis'' Quoy and Gaimard, 1830''' on [http://en.wikipedia.org/wiki/Wrybill Wikipedia: Wrybill]&lt;br /&gt;
:note two-person authority&lt;br /&gt;
&lt;br /&gt;
===Unspecified species===&lt;br /&gt;
'''''Podiceps sp.''''' on [http://www.birdlife.org/datazone/species/index.html?action=SpcHTMDetails.asp&amp;amp;sid=3644&amp;amp;m=0 Bird Life] &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;Podiceps&amp;lt;/i&amp;gt; sp.&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Psyllid plant hopper''' [http://ramblingsofanaturalist.blogspot.com/2006/07/bay-sucker-gall-trioza-alacris.html on Ramblings of a Naturalist blog]&lt;br /&gt;
&lt;br /&gt;
===Sub-species===&lt;br /&gt;
&lt;br /&gt;
====Animal====&lt;br /&gt;
'''''Larus glaucoides kumlieni''' on [http://www.birdguides.com/html/vidlib/species/Larus_glaucoides_kumlieni.htm BirdGuides]&lt;br /&gt;
&lt;br /&gt;
'''Kumlien's Gull''' on [http://www.birdsireland.com/pages/rare_bird_news/2005/january_photos.html Birds Ireland]&lt;br /&gt;
&lt;br /&gt;
====Plant====&lt;br /&gt;
'''''Pisum sativum L. subsp. sativum''''' on [http://www.plantnames.unimelb.edu.au/Sorting/Pisum.html] (also has other examples; note lack of required italics)&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;b&amp;gt;Pisum sativum&amp;lt;/b&amp;gt; L. subsp. &amp;lt;b&amp;gt;sativum&amp;lt;/b&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Cultivars (plant)===&lt;br /&gt;
'''''Chamaecyparis lawsoniana 'Aureomarginata'''''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;dd&amp;gt;&amp;lt;i&amp;gt;Chamaecyparis lawsoniana&amp;lt;/i&amp;gt; 'Aureomarginata'&amp;lt;/dd&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Chamaecyparis lawsoniana'' 'Golden Wonder'''' on [http://www.plantago.nl/plantindex/c/Chamaecyparis/Chamaecyparis_4.htm plantago.nl]&lt;br /&gt;
&lt;br /&gt;
====Cultivar groups (plant)====&lt;br /&gt;
'''''Brassica oleracea'' Botrytis Group'''  on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
&lt;br /&gt;
===Trade names (plant)===&lt;br /&gt;
&lt;br /&gt;
'''''Rosa'' Peace''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
:(&amp;quot;Peace&amp;quot; is a trade designation or &amp;quot;selling name&amp;quot; for the cultivar R. 'Madame A. Meilland' and should therefore be printed in a different typeface from the rest of the name, without any quote marks)&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Giant Single'''' on [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds]&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Infrared' F1''' on [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds] &lt;br /&gt;
:(Note &amp;quot;F1&amp;quot; cross designation)&lt;br /&gt;
&lt;br /&gt;
===Variety (plant)===&lt;br /&gt;
'''''Pisum sativum var. macrocarpon''''' on [http://davesgarden.com/pf/go/8/index.html Dave's Garden]&lt;br /&gt;
&lt;br /&gt;
====Sub-variety (plant)====&lt;br /&gt;
&lt;br /&gt;
'''''Betula ermani var. genuina subvar. brevidentata''''' on [http://www.nccpg.com/gloucestershire/wilson1.html National Council for the Conservation of Plants and Gardens, Gloucestershire Group] (plus many other examples)&lt;br /&gt;
&lt;br /&gt;
===Form (plant)===&lt;br /&gt;
&lt;br /&gt;
'''''Acanthocalycium spiniflorum f. klimpelianum''''' on [http://en.wikipedia.org/wiki/Form_%28botany%29 Wikipedia: form (botany)]&lt;br /&gt;
*aka '''''Acanthocalycium spiniflorum forma klimpelianum'''''&lt;br /&gt;
&lt;br /&gt;
===Sense (plant)===&lt;br /&gt;
'''''Ranunculus aquatilis s.l.''''' and '''''R. aquatilis s.s'''''; on [http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm Blithfield Reservoir: Survey of Flowering Plants...] (see also footnotes on that page)&lt;br /&gt;
&lt;br /&gt;
===Cross (plant)===&lt;br /&gt;
'''''Digitalis x mertonensis''''' on [http://www.hortax.org.uk/gardenplantsnames.html Hortax]&lt;br /&gt;
:The hybrid name for all plants derived from the cross between '''D. purpurea''' and '''D. grandiflora'''. The &amp;quot;x&amp;quot; indicates the hybrid status. &lt;br /&gt;
&lt;br /&gt;
'''''× Fatshedera lizei''''' on [http://oregonstate.edu/dept/ldplants/sci-names.htm Scientific Plant Names, Oregon State Univ., Landscape Plants]&lt;br /&gt;
&lt;br /&gt;
===Strain (bacteria)===&lt;br /&gt;
'''''Escherichia coli O157:H7''''' on [http://www.cfsan.fda.gov/~mow/chap15.html FDA.gov]&lt;br /&gt;
&lt;br /&gt;
'''''E.Coli''''' on [http://news.bbc.co.uk/1/hi/england/southern_counties/5346842.stm BBC news]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Synonyms===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Tarpan The Tarpan], '''''Equus ferus ferus''''':&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The Tarpan was first described by Johann Friedrich Gmelin in 1774; he had seen the animals in 1769 in the region of Bobrovsk, near Voronezh. In 1784 Pieter Boddaert named the species '''''Equus ferus''''', referring to Gmelin's description. Unaware of Boddaert's name, Otto Antonius published the name '''''Equus gmelini''''' in 1912, again referring to Gmelin's description. Since Antonius' name refers to the same description as Boddaert's it is a junior objective synonym.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
on http://www.westmidlandbirdclub.com/biblio/bb/71-338.htm:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;some authors still refer to Scandinavian Herring Gulls as '''''L. a. omissus'''''; others regard '''''omissus''''' as no longer valid (a synonym of '''''argentatus''''')&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Devario_chrysotaeniatus:&lt;br /&gt;
&lt;br /&gt;
:'''''Devario chrysotaeniatus''''' [...] former Names and Synonyms&lt;br /&gt;
::* '''''Danio chrysotaeniatus'''''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Tetracanthus:&lt;br /&gt;
&lt;br /&gt;
:'''''Echinocactus tetracanthus''''' synonym of '''''Parodia erinacea''''' - cactus&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Jostia_teaguei (using a &amp;quot;taxobox&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
:Binomial name&lt;br /&gt;
:'''''Jostia teaguei'''''&lt;br /&gt;
:(Luer) Luer&lt;br /&gt;
:Synonyms&lt;br /&gt;
:'''''Masdevallia teaguei''''' Luer, 1978&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://www.coleopterist.org.uk/haliplidae-list.htm &lt;br /&gt;
&lt;br /&gt;
:'''HALIPLUS''' Latreille, 1802&lt;br /&gt;
:Subgenus HALIPLUS Latreille, 1802&lt;br /&gt;
:''confinis'' Stephens, 1828&lt;br /&gt;
::''pallens'' Fowler, 1887&lt;br /&gt;
::''halberti'' Bullock, 1928&lt;br /&gt;
&lt;br /&gt;
i.e. ''Haliplus pallens'' and  ''H. halberti'' are synonyms of ''H. confinis''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See also [http://en.wikipedia.org/wiki/Special:Search?search=species+synonym&amp;amp;fulltext=Search Wkipedia search for &amp;quot;species synonym&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
===Superseded names===&lt;br /&gt;
'''''Tringa bartramia''''' superseded by '''''Bartramia longicauda''''' on [http://www.westmidlandbirdclub.com/firsts/UPLSA.htm West Midland Bird Club's Upland Sandpiper article]&lt;br /&gt;
&lt;br /&gt;
===GUID===&lt;br /&gt;
'''NBN Taxon Key''' for European Otter, ''Lutra lutra'', on [http://nbn.nhm.ac.uk/nhm/bin/nbntaxa.dll/taxon_details?taxon_key=NBNSYS0000005133 NBN Species Dictionary]: '''NBNSYS0000005133''' &lt;br /&gt;
&lt;br /&gt;
'''LSID ([http://lsid.sourceforge.net/#whatislsid Life Science Indicator])''' for ''Popillia japonica'' on [http://names.ubio.org/browser/details2.php?names=on&amp;amp;authors=on&amp;amp;sci=on&amp;amp;vern=on&amp;amp;conceptID=&amp;amp;expand=&amp;amp;namebankID=3377001 uBio]: '''urn:lsid:ubio.org:namebank:3377001'''&lt;br /&gt;
&lt;br /&gt;
===Wikipedia===&lt;br /&gt;
'''Black-tailed Godwit''' on [http://en.wikipedia.org/wiki/Black-tailed_Godwit Wikipedia: Black-tailed Godwit]&lt;br /&gt;
&lt;br /&gt;
Wikipedia uses several sets of markup, e.g. (in-line styles and links, plus some other markup, removed, for clarity):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;The &amp;lt;b&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;, &amp;lt;i&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Linking====&lt;br /&gt;
Wikipedia uses the standard convention of having species italicised. Internal links to species may be to the common name or scientific name depending on which is used as the article's title (usually common for animals, scientific for plants, although there are exceptions). Links to scientific names work regardless:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;[[Black-tailed Godwit]]&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name, but displaying scientific name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Black-tailed Godwit|Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These types of links are not used in the Black-tailed Godwit article itself, but in others related to it. e.g. [http://en.wikipedia.org/wiki/British_avifauna British avifauna]&lt;br /&gt;
&lt;br /&gt;
====Taxobox====&lt;br /&gt;
&lt;br /&gt;
Wiki markup for the taxobox (taxonomy infobox) on the English Wikipedia, as used on the Black-tailed Godwit article, with irrelevant fields removed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{Taxobox&lt;br /&gt;
| name = Black-tailed Godwit&lt;br /&gt;
| regnum = [[Animal]]ia&lt;br /&gt;
| phylum = [[Chordate|Chordata]]&lt;br /&gt;
| classis = [[bird|Aves]]&lt;br /&gt;
| ordo = [[Charadriiformes]]&lt;br /&gt;
| familia = [[Scolopacidae]]&lt;br /&gt;
| genus = ''[[Godwit|Limosa]]''&lt;br /&gt;
| species = '''''L. limosa'''''&lt;br /&gt;
| binomial = ''Limosa limosa''&lt;br /&gt;
| binomial_authority = ([[Carolus Linnaeus|Linnaeus]], 1758)&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Above is vaguely displayed in an HTML table as (with formatting and links removed):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Kingdom:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Animalia&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Phylum:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Chordata&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Class:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Aves&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Order:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Charadriiformes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Family:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Scolopacidae&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Genus:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Species:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;L. limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;th&amp;gt;binominal name&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;(Linnaeus, 1758)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also allows for other levels of taxonomy (e.g. genus or subspecies), and synonyms.&lt;br /&gt;
&lt;br /&gt;
==Quantitative evidence==&lt;br /&gt;
&lt;br /&gt;
For evidence of quantitative, rather than qualitative, use of species' and other taxonomic names, see [[species-examples-quantitative]]&lt;br /&gt;
&lt;br /&gt;
==Notable websites==&lt;br /&gt;
These high-profile websites use species names&lt;br /&gt;
&lt;br /&gt;
*Amazon&lt;br /&gt;
**[http://www.amazon.co.uk/s/?url=search-alias%3Daps&amp;amp;field-keywords=%22house+sparrow%22 search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*BBC News&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/uk/4835208.stm Fewer birds spotted in UK gardens]&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/england/london/4743250.stm Study to solve sparrow's decline riddle]&lt;br /&gt;
&lt;br /&gt;
*Encyclopaedia Britannica - all species, e.g.&lt;br /&gt;
**[http://concise.britannica.com/ebc/article-9379473/starling Starling]&lt;br /&gt;
&lt;br /&gt;
*Flickr&lt;br /&gt;
**[http://www.flickr.com/photos/tags/citheronia/ Tag for moth genera 'citheronia']&lt;br /&gt;
***[http://www.flickr.com/photos/30268343@N00/152101772/ Sample result from that search]&lt;br /&gt;
**[http://www.flickr.com/groups/birdguide/ Field Guide: Birds of the World] 23,073 tagged photos, as at 2006-10-21&lt;br /&gt;
&lt;br /&gt;
*CNN&lt;br /&gt;
**[http://archives.cnn.com/2001/NATURE/01/24/dying.eagles/ Disease threatens bald eagle population]&lt;br /&gt;
&lt;br /&gt;
*eBay&lt;br /&gt;
**[http://search.ebay.com/house-sparrow search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*The Guardian&lt;br /&gt;
**[http://environment.guardian.co.uk/conservation/story/0,,1878956,00.html The call of the wildlife]&lt;br /&gt;
**[http://education.guardian.co.uk/higher/news/story/0,,1665396,00.html Sparrow joins 'raped' duck in Dutch museum] (note improper capitalisation &amp;quot;''passer domesticus''&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*The Internet Movie Database&lt;br /&gt;
**[http://www.imdb.com/title/tt0029443/ Private Life of the Gannets]&lt;br /&gt;
***[http://www.imdb.com/title/tt0029443/trivia Private Life of the Gannets trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0133318/ The Trials of Life]&lt;br /&gt;
**[http://www.imdb.com/title/tt0227812/ Whooping Crane]&lt;br /&gt;
***[http://www.imdb.com/title/tt0227812/trivia Whooping Crane trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0301727/ Winged Migration]&lt;br /&gt;
&lt;br /&gt;
*London Zoo&lt;br /&gt;
**[http://www.zsl.org/london-zoo/animals/birds/tawny-frogmouth,99,AN.html Tawny frogmouth]&lt;br /&gt;
&lt;br /&gt;
*Microsoft&lt;br /&gt;
**[http://www.microsoft.com/games/zootycoon/zoo2/zoo2_ymi_animals1.asp Zoo Tycoon]&lt;br /&gt;
&lt;br /&gt;
*MSN-Encarta - all species, e.g.&lt;br /&gt;
**[http://encarta.msn.com/encnet/refpages/search.aspx?q=vulgaris&amp;amp;Submit2=Go Search for &amp;quot;vulgaris&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*MySpace&lt;br /&gt;
**[http://blog.myspace.com/index.cfm?fuseaction=blog.view&amp;amp;friendID=47134278&amp;amp;blogID=79591637]&lt;br /&gt;
&lt;br /&gt;
*Nature&lt;br /&gt;
**[http://www.nature.com/nature/focus/avianflu/index.html Avian flu web focus]&lt;br /&gt;
&lt;br /&gt;
*Nature Network, Boston&lt;br /&gt;
**[http://network.nature.com/boston/news/archive/2006/06/13/the-student-and-the-squid The student and the squid] '''N.B.''' site already supports rel-tag, hCard for user profiles and hCalendar for marking up events across the site.&lt;br /&gt;
&lt;br /&gt;
*NASA&lt;br /&gt;
**[http://history.nasa.gov/SP-401/ch3.htm SP-401 Skylab, Classroom in Space. Part II - Student Experiments] (&amp;quot;The common Cross spider (Araneus diadematus)&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*New York Times&lt;br /&gt;
**[http://query.nytimes.com/gst/fullpage.html?sec=travel&amp;amp;res=9D04E4DE1131F93BA25751C0A9669C8B63 Where the Eagles Fly: Seeing the National Symbol]&lt;br /&gt;
&lt;br /&gt;
*Sky News&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,15410-1249430,00.html Homo floresiensis]&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,30200-13546024,00.html Atlapetes latinuchus yariguierum]&lt;br /&gt;
**[http://news.sky.com/skynews/picture_gallery/picture_gallery/0,,15410-1244699,00.html Polypedates chlorophthalmus]&lt;br /&gt;
**[http://search.sky.com/search/skynews/results/1,,,00.html?CID=30000&amp;amp;QUERY=species&amp;amp;SITEREF=skynews&amp;amp;SECTION=&amp;amp;TYPE_REF=&amp;amp;radiodate=&amp;amp;dayFrom=dd&amp;amp;monthFrom=mm&amp;amp;yearFrom=yyyy&amp;amp;dayTo=dd&amp;amp;monthTo=mm&amp;amp;yearTo=yyyy&amp;amp;Submit.x=0&amp;amp;Submit.y=0 Sky News search for &amp;quot;species&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*Snopes (Urban Legends Reference Pages)&lt;br /&gt;
**[http://www.snopes.com/photos/animals/fishfly.asp Fish Fly]&lt;br /&gt;
&lt;br /&gt;
*United Kingdom Government&lt;br /&gt;
**[http://www.defra.gov.uk/wildlife-countryside/vertebrates/gen-licence.htm DEFRA: General licences under the Wildlife &amp;amp; Countryside Act 1981]&lt;br /&gt;
&lt;br /&gt;
*United Nations&lt;br /&gt;
** [http://www.oceansatlas.org/ Atlas of the Oceans] e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm Chilean nylon shrimp ''Heterocarpus reedi'']&lt;br /&gt;
&lt;br /&gt;
*United States of America Government &lt;br /&gt;
**ITIS, e.g. [http://www.itis.usda.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&amp;amp;search_value=179628 Passer Domesticus] - &amp;quot;authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://dev.w3.org/cvsweb/2000/10/swap/test/ferrell/biology.n3?rev=1.4 An Ontology of Biology]&lt;br /&gt;
**[http://esw.w3.org/topic/HCLSIG_BioRDF_Subgroup/Tasks/Reagents/Status_Reports/2006-05-04 BioRDF Sub-group Status Report, 4 May 2006]&lt;br /&gt;
&lt;br /&gt;
*Yahoo Groups&lt;br /&gt;
**[http://tech.groups.yahoo.com/group/passerdomesticus/ passerdomesticus] species as group name!&lt;br /&gt;
&lt;br /&gt;
*YouTube&lt;br /&gt;
**[http://www.youtube.com/results?search_query=starling&amp;amp;search=Search YouTube search for 'starling']]&lt;br /&gt;
&lt;br /&gt;
==Breaking news==&lt;br /&gt;
In under two weeks, the BBC News website carried the following stories, all including the scientific names of species:&lt;br /&gt;
*[http://news.bbc.co.uk/1/shared/spl/hi/pop_ups/06/sci_nat_orchid_spectacular/html/1.stm BBC News: Stunning new orchids from Asia's rainforest] - 2006-10-16&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6045802.stm BBC News: Winter home find cheers twitchers] (winter home of the northern bald ibis found) - 2006-10-13&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6043648.stm BBC News: New mouse find is 'living fossil'] - 2006-10-12&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6035113.stm BBC News: Giant camel fossil found in Syria] - 2006-10-10&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5414410.stm BBC News: Sharks swim into political waters] - 2006-10-06&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5403570.stm BBC News: 'Monster' fossil find in Arctic] - 2006-10-05&lt;br /&gt;
&lt;br /&gt;
==Use in blogs==&lt;br /&gt;
*[http://technorati.com/search/%22passer%20domesticus%22 Technorati search for &amp;quot;Passer domesticus&amp;quot;] (367 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22acer%20palmatum%22 Technorati search for &amp;quot;Acer palmatum&amp;quot;] (682 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22Homo%20sapiens%22 Technorati search for &amp;quot;Homo sapiens&amp;quot;] (40,932 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/birding Technorati search for &amp;quot;birding&amp;quot;] (26,472 found, as at 2006-09-25)&lt;br /&gt;
*[http://ramblingsofanaturalist.blogspot.com/ Ramblings of a Naturalist]&lt;br /&gt;
*[http://squaremetre1.blogspot.com/ The Square Metre]&lt;br /&gt;
*[http://windowboxwildlife.blogspot.com/index.html Windowbox Wildlife]&lt;br /&gt;
*[http://www.rxwildlife.org.uk/ RXWildlife]&lt;br /&gt;
*[http://newsbou.blogspot.com/ British Ornithologists' Union news]&lt;br /&gt;
*[http://fieldmarking.reger.com/ FieldMarking] - An experiment to see how people can collaborate to record wildlife observations in blogs.&lt;br /&gt;
&lt;br /&gt;
==And finally...==&lt;br /&gt;
Gary Larson, in his book ''The Far Side Gallery'' (Warner Books, 1980, ISBN 0751502367) has a cartoon, showing two entomologists sitting down to eat dinner in a jungle. One says to the other &amp;quot;Hey! What's this ''Drosophila melanogaster'' doing in my soup?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proponent)&lt;br /&gt;
*Malcolm Storey (per e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Centre] (proponent)&lt;br /&gt;
*[[User:SteveMcBill|Steve McWilliam]], [http://www.rECOrd-LRC.co.uk/ rECOrd - The Biodiversity Information System for the Cheshire region] (proponent)&lt;br /&gt;
*[[User:PeNGo|Peter Halasz]], Wikipedia Admin.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{species}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples-fr&amp;diff=34592</id>
		<title>species-examples-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples-fr&amp;diff=34592"/>
		<updated>2008-11-17T23:57:30Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Contributeurs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Les exemples de noms scientifiques communs des choses vivantes, qui pourraient être balisées avec un microformat &amp;quot;[[species-fr|species]]&amp;quot; (ou équivalent). Notez l'usage de paires correspondantes d'exemples quand cela est possible.&lt;br /&gt;
&lt;br /&gt;
:'''Note : le nom origianl du microformat proposé, &amp;quot;species&amp;quot; va probablement changer, probablement vers &amp;quot;biota&amp;quot; ou &amp;quot;taxon&amp;quot;. Le précédent a ici été retenu, pour éviter d'avoir à faire beaucoup d'éditions répétitives et peut-être redondantes'''&lt;br /&gt;
&lt;br /&gt;
'''Si vous trouvez un lien qui ne fonctionne pas, remplacez-le svp avec une alternative pertinente, plutôt que de simplement l'effacer. Merci.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Types d'éditeurs==&lt;br /&gt;
&lt;br /&gt;
There are, perhaps, three types of publisher of taxonomic information (with all the usual overlaps and exceptions one finds when generalising so much!):&lt;br /&gt;
&lt;br /&gt;
#Those which publish a full or partial hierarchy, like [http://names.ubio.org/browser/classifications.php?conceptID=2463046 UBIO].&lt;br /&gt;
#Those which publish a binominal, or a binominal with a qualifier, like a subspecies, variety, breed, hybridisation - but still referring to a single type of living thing, with no higher- level taxonomy. e.g [http://www.westmidlandbirdclub.com/records/lists.htm the West Midland Bird Club's county lists]&lt;br /&gt;
#These which publish common (or &amp;quot;vernacular&amp;quot;) names, but who would be interested in &amp;quot;aliasing&amp;quot; those to the scientific equivalent. e.g [http://www.westmidlandbirdclub.com/ladywalk/latest.htm the West Midland Bird Club's news from Ladywalk]&lt;br /&gt;
&lt;br /&gt;
Interestingly, some sites (Wikipedia, for example) have pages which fall into each of the three categories! &lt;br /&gt;
#[http://en.wikipedia.org/wiki/Bar-tailed_Godwit Bar tailed Godwit]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Genetics_of_humans Genetics of humans]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Ladywalk Ladywalk]&lt;br /&gt;
&lt;br /&gt;
[[User:AndyMabbett|AndyMabbett]] 12:05, 23 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Binomial==&lt;br /&gt;
&lt;br /&gt;
===Oiseaux===&lt;br /&gt;
&lt;br /&gt;
'''Black-tailed Godwit''' sur [http://www.westmidlandbirdclub.com/ladywalk/latest.htm West Ladywalk la page des dernières actualités du Midland Bird Club]&lt;br /&gt;
&lt;br /&gt;
'''''Limosa limosa''''' sur [http://www.westmidlandbirdclub.com/records/lists.htm les listes du West Midland Bird Club]&lt;br /&gt;
[http://www.westmidlandbirdclub.com/records/lists.htm West Midland Bird Club county lists]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Common Name&amp;lt;/th&amp;gt;&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Scientific Name&amp;lt;/th&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&amp;lt;th scope=&amp;quot;row&amp;quot; class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/th&amp;gt;&amp;lt;td class=&amp;quot;sci&amp;quot;&amp;gt;Limosa limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Eurasian Bittern'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/ladywalk/BITTE.htm Bitterns at LAdywalk]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Eurasian Bitterns&amp;lt;/b&amp;gt;, (&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Botaurus stellaris&amp;lt;/i&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Mammifères===&lt;br /&gt;
'''Loup''' sur l'[http://www.wolf.org/wolves/index.asp International Wolf Center]&lt;br /&gt;
&lt;br /&gt;
'''''Canis lupus''''' sur [http://www.nps.gov/archive/bela/html/wolves.htm NPS.gov]&lt;br /&gt;
&lt;br /&gt;
===Poisson===&lt;br /&gt;
'''Northern pike''' sur [http://www.dnr.state.mn.us/fish/northern/index.html Minnesota Department of Natural Resources]&lt;br /&gt;
&lt;br /&gt;
'''''Esox lucius''''' sur [http://www.pikezander.co.uk/pike.htm Pike &amp;amp; Zander]&lt;br /&gt;
&lt;br /&gt;
===Insecte===&lt;br /&gt;
'''Papillon à Tête de Mort''' sur [http://funkman.org/animal/insect/deathheadmoth.html Animal Teachers]&lt;br /&gt;
&lt;br /&gt;
'''''Acherontia atropos''''' sur [http://ukmoths.org.uk/show.php?id=2540 UK Moths]&lt;br /&gt;
&lt;br /&gt;
===Arachnid===&lt;br /&gt;
'''Rose Trantula''' on [http://www.practical-pet-care.com/spider_question.php?ID=1.2006100416232172 Pet Care Forum]&lt;br /&gt;
&lt;br /&gt;
'''''Araneus angulatus''''' on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Center] (this is a duplicate. [[User:BenWest|BenWest]] 21:56, 21 Oct 2006 (PDT))&lt;br /&gt;
&lt;br /&gt;
===Plante===&lt;br /&gt;
'''Bog Pimpernel''' sur [http://www.map-reading.co.uk/wildflowers/HTML%20files/f0219.htm les Images Wildflower Map Reading]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''''Anagallis tenella''''' on [http://www.bioimages.org.uk/HTML/T47624.HTM BioImages]&lt;br /&gt;
&lt;br /&gt;
'''''Persicaria campanulatum''''' on [http://www.record-lrc.co.uk/?Mod=Forum&amp;amp;Do=ViewThread&amp;amp;ForumID=6&amp;amp;ThreadID=75 rECOrd - The Biodiversity Information Center for the Cheshire region]&lt;br /&gt;
&lt;br /&gt;
'''''Galeopsis tetrahit s.s.'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm West Midland Bird Club]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Galeopsis tetrahit&amp;amp;nbsp;&lt;br /&gt;
&amp;lt;abbr lang=&amp;quot;la&amp;quot; title=&amp;quot;sensu stricto&amp;quot;&amp;gt;s.s.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
 (&amp;lt;b class=&amp;quot;plant&amp;quot;&amp;gt;Common Hemp-nettle&amp;lt;/b&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Fungi===&lt;br /&gt;
&lt;br /&gt;
'''''Amanita muscaria''''' on [http://www.mykoweb.com/CAF/species/Amanita_muscaria.html California Fungi]&lt;br /&gt;
* as '''''Amanita muscaria'' (L. per Fr.) Hooker'''&lt;br /&gt;
* as '''''Amanita muscaria var. flavivolvata'''''&lt;br /&gt;
&lt;br /&gt;
'''Fly Agaric''' on [http://www.treesforlife.org.uk/forest/mythfolk/flyagaric.html Trees for Life]&lt;br /&gt;
&lt;br /&gt;
'''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz: Fries) Singer''' on [http://www.ilmyco.gen.chicago.il.us/Taxa/Rhodomacul540.html]&lt;br /&gt;
*also written as '''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz ex Fries) Singer''' &lt;br /&gt;
*(This is where a post-Linnean author is given special rights (because his descriptions were comparatively complete - i.e. recognisable) so his interpretation of earlier names is taken as the sense meant by the original author. Think these used to be &amp;quot;apud&amp;quot; and are now &amp;quot;ex&amp;quot; although a colon has also been used. There are only a few sanctioning authors, the main one being Elias Fries.(Fr.) )&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plus sur les binômes==&lt;br /&gt;
&lt;br /&gt;
===Autorité===&lt;br /&gt;
'''''Pica pica'' Linnaeus, (1758)''' sur [http://fr.wikipedia.org/wiki/Pie_bavarde Wikipedia]&lt;br /&gt;
:(par exemple appelée par Linnaeus en 1758)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Espèces non spécifiées===&lt;br /&gt;
'''''Podiceps sp.''''' on [http://www.birdlife.org/datazone/species/index.html?action=SpcHTMDetails.asp&amp;amp;sid=3644&amp;amp;m=0 Bird Life] &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;Podiceps&amp;lt;/i&amp;gt; sp.&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Psyllid plant hopper''' [http://ramblingsofanaturalist.blogspot.com/2006/07/bay-sucker-gall-trioza-alacris.html on Ramblings of a Naturalist blog]&lt;br /&gt;
&lt;br /&gt;
===Sous-espèces===&lt;br /&gt;
&lt;br /&gt;
====Animal====&lt;br /&gt;
'''''Larus glaucoides kumlieni''' sur [http://www.birdguides.com/html/vidlib/species/Larus_glaucoides_kumlieni.htm BirdGuides]&lt;br /&gt;
&lt;br /&gt;
'''Kumlien's Gull''' sur [http://www.birdsireland.com/pages/rare_bird_news/2005/january_photos.html Birds Ireland]&lt;br /&gt;
&lt;br /&gt;
====Plante====&lt;br /&gt;
'''''Pisum sativum subsp. sativum''''' sur [http://www.plantnames.unimelb.edu.au/Sorting/Pisum.html] (a aussi d'autres exemples)&lt;br /&gt;
&lt;br /&gt;
===Cultivar (plante)===&lt;br /&gt;
'''''Chamaecyparis lawsoniana 'Aureomarginata'''''' sur [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
&lt;br /&gt;
'''''Chamaecyparis lawsoniana'' 'Golden Wonder'''' sur [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
&lt;br /&gt;
====Cultivar groupes (plantes)====&lt;br /&gt;
'''''Brassica oleracea'' Botrytis Group'''  sur [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Noms de marques commerciales (plantes)===&lt;br /&gt;
&lt;br /&gt;
'''''Rosa'' Peace''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
:(&amp;quot;Peace&amp;quot; est une désignation commercialisée ou &amp;quot;un nom de vente&amp;quot; pour le cultivar R. 'Madame A. Meilland' et devrait être imprimée par conséquent avec une police différente du reste du nom sans quelques guillemets de citations)&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Giant Single'''' sur [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds]&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Infrared' F1''' sur [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds] &lt;br /&gt;
:(Note &amp;quot;F1&amp;quot; croise la désignation)&lt;br /&gt;
&lt;br /&gt;
===Varieté (plante)===&lt;br /&gt;
'''''Pisum sativum var. macrocarpon''''' sur [http://davesgarden.com/pf/go/8/index.html le Jardin de Dave]&lt;br /&gt;
&lt;br /&gt;
====Sous-variété (plante)====&lt;br /&gt;
&lt;br /&gt;
'''''Betula ermani var. genuina subvar. brevidentata''''' sur [http://www.nccpg.com/gloucestershire/wilson1.html National Council for the Conservation of Plants and Gardens, Gloucestershire Group] (plus beaucoup d'autres exemples)&lt;br /&gt;
&lt;br /&gt;
===Forme (plante)===&lt;br /&gt;
&lt;br /&gt;
'''''Acanthocalycium spiniflorum f. klimpelianum''''' alias '''''Acanthocalycium spiniflorum forma klimpelianum''''' sur [http://en.wikipedia.org/wiki/Form_%28botany%29 Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Souche (bactérie)===&lt;br /&gt;
'''''Escherichia coli O157:H7''''' sur [http://www.cfsan.fda.gov/~mow/chap15.html FDA.gov]&lt;br /&gt;
&lt;br /&gt;
'''''E.Coli''''' sur [http://news.bbc.co.uk/1/hi/england/southern_counties/5346842.stm BBC news]&lt;br /&gt;
&lt;br /&gt;
===Sens (plante)===&lt;br /&gt;
'''''Ranunculus aquatilis s.l.''''' and '''''R. aquatilis s.s'''''; on [http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm Blithfield Reservoir: Survey of Flowering Plants...] (see also footnotes on that page)&lt;br /&gt;
&lt;br /&gt;
===Croisement (plante)===&lt;br /&gt;
'''''Digitalis x mertonensis''''' sur [http://www.hortax.org.uk/gardenplantsnames.html Hortax]&lt;br /&gt;
:The hybrid name for all plants derived from the cross between '''D. purpurea''' and '''D. grandiflora'''. The &amp;quot;x&amp;quot; indicates the hybrid status. &lt;br /&gt;
&lt;br /&gt;
'''''× Fatshedera lizei''''' on [http://oregonstate.edu/dept/ldplants/sci-names.htm Scientific Plant Names, Oregon State Univ., Landscape Plants]&lt;br /&gt;
&lt;br /&gt;
===Souche (bactéries)===&lt;br /&gt;
'''''Escherichia coli O157:H7''''' on [http://www.cfsan.fda.gov/~mow/chap15.html FDA.gov]&lt;br /&gt;
&lt;br /&gt;
'''''E.Coli''''' on [http://news.bbc.co.uk/1/hi/england/southern_counties/5346842.stm BBC news]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Synonyms===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Tarpan The Tarpan], '''''Equus ferus ferus''''':&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The Tarpan was first described by Johann Friedrich Gmelin in 1774; he had seen the animals in 1769 in the region of Bobrovsk, near Voronezh. In 1784 Pieter Boddaert named the species '''''Equus ferus''''', referring to Gmelin's description. Unaware of Boddaert's name, Otto Antonius published the name '''''Equus gmelini''''' in 1912, again referring to Gmelin's description. Since Antonius' name refers to the same description as Boddaert's it is a junior objective synonym.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
on http://www.westmidlandbirdclub.com/biblio/bb/71-338.htm:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;some authors still refer to Scandinavian Herring Gulls as '''''L. a. omissus'''''; others regard '''''omissus''''' as no longer valid (a synonym of '''''argentatus''''')&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Devario_chrysotaeniatus:&lt;br /&gt;
&lt;br /&gt;
:'''''Devario chrysotaeniatus''''' [...] former Names and Synonyms&lt;br /&gt;
::* '''''Danio chrysotaeniatus'''''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Tetracanthus:&lt;br /&gt;
&lt;br /&gt;
:'''''Echinocactus tetracanthus''''' synonym of '''''Parodia erinacea''''' - cactus&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Jostia_teaguei (using a &amp;quot;taxobox&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
:Binomial name&lt;br /&gt;
:'''''Jostia teaguei'''''&lt;br /&gt;
:(Luer) Luer&lt;br /&gt;
:Synonyms&lt;br /&gt;
:'''''Masdevallia teaguei''''' Luer, 1978&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://www.coleopterist.org.uk/haliplidae-list.htm &lt;br /&gt;
&lt;br /&gt;
:'''HALIPLUS''' Latreille, 1802&lt;br /&gt;
:Subgenus HALIPLUS Latreille, 1802&lt;br /&gt;
:''confinis'' Stephens, 1828&lt;br /&gt;
::''pallens'' Fowler, 1887&lt;br /&gt;
::''halberti'' Bullock, 1928&lt;br /&gt;
&lt;br /&gt;
i.e. ''Haliplus pallens'' and  ''H. halberti'' are synonyms of ''H. confinis''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See also [http://en.wikipedia.org/wiki/Special:Search?search=species+synonym&amp;amp;fulltext=Search Wkipedia search for &amp;quot;species synonym&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Divers==&lt;br /&gt;
===Noms supplantés===&lt;br /&gt;
'''''Tringa bartramia''''' supplanté par '''''Bartramia longicauda''''' sur [http://www.westmidlandbirdclub.com/firsts/UPLSA.htm West Midland Bird Club's Upland Sandpiper article]&lt;br /&gt;
&lt;br /&gt;
===GUID===&lt;br /&gt;
'''NBN Taxon Key''' for European Otter, ''Lutra lutra'', on [http://nbn.nhm.ac.uk/nhm/bin/nbntaxa.dll/taxon_details?taxon_key=NBNSYS0000005133 NBN Species Dictionary]: '''NBNSYS0000005133''' &lt;br /&gt;
&lt;br /&gt;
'''LSID ([http://lsid.sourceforge.net/#whatislsid Life Science Indicator])''' for ''Popillia japonica'' on [http://names.ubio.org/browser/details2.php?names=on&amp;amp;authors=on&amp;amp;sci=on&amp;amp;vern=on&amp;amp;conceptID=&amp;amp;expand=&amp;amp;namebankID=3377001 uBio]: '''urn:lsid:ubio.org:namebank:3377001'''&lt;br /&gt;
&lt;br /&gt;
===Wikipedia===&lt;br /&gt;
'''Black-tailed Godwit''' on [http://en.wikipedia.org/wiki/Black-tailed_Godwit Wikipedia: Black-tailed Godwit]&lt;br /&gt;
&lt;br /&gt;
Wikipedia uses several sets of markup, e.g. (in-line styles and links, plus some other markup, removed, for clarity):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;The &amp;lt;b&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;, &amp;lt;i&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Lien====&lt;br /&gt;
Wikipedia uses the standard convention of having species italicised. Internal links to species may be to the common name or scientific name depending on which is used as the article's title (usually common for animals, scientific for plants, although there are exceptions). Links to scientific names work regardless:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;[[Black-tailed Godwit]]&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name, but displaying scientific name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Black-tailed Godwit|Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These types of links are not used in the Black-tailed Godwit article itself, but in others related to it. e.g. [http://en.wikipedia.org/wiki/British_avifauna British avifauna]&lt;br /&gt;
&lt;br /&gt;
====Taxoboîte====&lt;br /&gt;
&lt;br /&gt;
Wiki markup for the taxobox (taxonomy infobox) on the English Wikipedia, as used on the Black-tailed Godwit article, with irrelevant fields removed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{Taxobox&lt;br /&gt;
| name = Black-tailed Godwit&lt;br /&gt;
| regnum = [[Animal]]ia&lt;br /&gt;
| phylum = [[Chordate|Chordata]]&lt;br /&gt;
| classis = [[bird|Aves]]&lt;br /&gt;
| ordo = [[Charadriiformes]]&lt;br /&gt;
| familia = [[Scolopacidae]]&lt;br /&gt;
| genus = ''[[Godwit|Limosa]]''&lt;br /&gt;
| species = '''''L. limosa'''''&lt;br /&gt;
| binomial = ''Limosa limosa''&lt;br /&gt;
| binomial_authority = ([[Carolus Linnaeus|Linnaeus]], 1758)&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Above is vaguely displayed in an HTML table as (with formatting and links removed):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Kingdom:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Animalia&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Phylum:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Chordata&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Class:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Aves&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Order:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Charadriiformes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Family:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Scolopacidae&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Genus:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Species:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;L. limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;th&amp;gt;binominal name&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;(Linnaeus, 1758)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also allows for other levels of taxonomy (e.g. genus or subspecies), and synonyms.&lt;br /&gt;
&lt;br /&gt;
==Evidence quantitative==&lt;br /&gt;
&lt;br /&gt;
For evidence of quantitative, rather than qualitative, use of species' and other taxonomic names, see [[species-examples-quantitative]]&lt;br /&gt;
&lt;br /&gt;
==Sites web notables==&lt;br /&gt;
Ces sites web de haut niveau utilisent des noms d'espèces&lt;br /&gt;
&lt;br /&gt;
*Amazon&lt;br /&gt;
**[http://www.amazon.co.uk/s/?url=search-alias%3Daps&amp;amp;field-keywords=%22house+sparrow%22 recherche sur &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*BBC News&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/uk/4835208.stm Fewer birds spotted in UK gardens]&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/england/london/4743250.stm Study to solve sparrow's decline riddle]&lt;br /&gt;
&lt;br /&gt;
*Encyclopaedia Britannica - all species, e.g.&lt;br /&gt;
**[http://concise.britannica.com/ebc/article-9379473/starling Starling]&lt;br /&gt;
&lt;br /&gt;
*Flickr&lt;br /&gt;
**[http://www.flickr.com/photos/tags/citheronia/ Tag for moth genera 'citheronia']&lt;br /&gt;
***[http://www.flickr.com/photos/30268343@N00/152101772/ Sample result from that search]&lt;br /&gt;
**[http://www.flickr.com/groups/birdguide/ Field Guide: Birds of the World] 23,073 tagged photos, as at 2006-10-21&lt;br /&gt;
&lt;br /&gt;
*CNN&lt;br /&gt;
**[http://archives.cnn.com/2001/NATURE/01/24/dying.eagles/ Disease threatens bald eagle population]&lt;br /&gt;
&lt;br /&gt;
*eBay&lt;br /&gt;
**[http://search.ebay.com/house-sparrow search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*The Guardian&lt;br /&gt;
**[http://environment.guardian.co.uk/conservation/story/0,,1878956,00.html The call of the wildlife]&lt;br /&gt;
**[http://education.guardian.co.uk/higher/news/story/0,,1665396,00.html Sparrow joins 'raped' duck in Dutch museum] (note improper capitalisation &amp;quot;''passer domesticus''&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*The Internet Movie Database&lt;br /&gt;
**[http://www.imdb.com/title/tt0029443/ Private Life of the Gannets]&lt;br /&gt;
***[http://www.imdb.com/title/tt0029443/trivia Private Life of the Gannets trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0133318/ The Trials of Life]&lt;br /&gt;
**[http://www.imdb.com/title/tt0227812/ Whooping Crane]&lt;br /&gt;
***[http://www.imdb.com/title/tt0227812/trivia Whooping Crane trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0301727/ Winged Migration]&lt;br /&gt;
&lt;br /&gt;
*London Zoo&lt;br /&gt;
**[http://www.zsl.org/london-zoo/animals/birds/tawny-frogmouth,99,AN.html Tawny frogmouth]&lt;br /&gt;
&lt;br /&gt;
*Microsoft&lt;br /&gt;
**[http://www.microsoft.com/games/zootycoon/zoo2/zoo2_ymi_animals1.asp Zoo Tycoon]&lt;br /&gt;
&lt;br /&gt;
*MSN-Encarta - all species, e.g.&lt;br /&gt;
**[http://encarta.msn.com/encnet/refpages/search.aspx?q=vulgaris&amp;amp;Submit2=Go Search for &amp;quot;vulgaris&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*MySpace&lt;br /&gt;
**[http://blog.myspace.com/index.cfm?fuseaction=blog.view&amp;amp;friendID=47134278&amp;amp;blogID=79591637]&lt;br /&gt;
&lt;br /&gt;
*Nature&lt;br /&gt;
**[http://www.nature.com/nature/focus/avianflu/index.html Avian flu web focus]&lt;br /&gt;
&lt;br /&gt;
*Nature Network, Boston&lt;br /&gt;
**[http://network.nature.com/boston/news/archive/2006/06/13/the-student-and-the-squid The student and the squid] '''N.B.''' site already supports rel-tag, hCard for user profiles and hCalendar for marking up events across the site.&lt;br /&gt;
&lt;br /&gt;
*NASA&lt;br /&gt;
**[http://history.nasa.gov/SP-401/ch3.htm SP-401 Skylab, Classroom in Space. Part II - Student Experiments] (&amp;quot;The common Cross spider (Araneus diadematus)&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*New York Times&lt;br /&gt;
**[http://query.nytimes.com/gst/fullpage.html?sec=travel&amp;amp;res=9D04E4DE1131F93BA25751C0A9669C8B63 Where the Eagles Fly: Seeing the National Symbol]&lt;br /&gt;
&lt;br /&gt;
*Sky News&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,15410-1249430,00.html Homo floresiensis]&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,30200-13546024,00.html Atlapetes latinuchus yariguierum]&lt;br /&gt;
**[http://news.sky.com/skynews/picture_gallery/picture_gallery/0,,15410-1244699,00.html Polypedates chlorophthalmus]&lt;br /&gt;
**[http://search.sky.com/search/skynews/results/1,,,00.html?CID=30000&amp;amp;QUERY=species&amp;amp;SITEREF=skynews&amp;amp;SECTION=&amp;amp;TYPE_REF=&amp;amp;radiodate=&amp;amp;dayFrom=dd&amp;amp;monthFrom=mm&amp;amp;yearFrom=yyyy&amp;amp;dayTo=dd&amp;amp;monthTo=mm&amp;amp;yearTo=yyyy&amp;amp;Submit.x=0&amp;amp;Submit.y=0 Sky News search for &amp;quot;species&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*Snopes (Urban Legends Reference Pages)&lt;br /&gt;
**[http://www.snopes.com/photos/animals/fishfly.asp Fish Fly]&lt;br /&gt;
&lt;br /&gt;
*United Kingdom Government&lt;br /&gt;
**[http://www.defra.gov.uk/wildlife-countryside/vertebrates/gen-licence.htm DEFRA: General licences under the Wildlife &amp;amp; Countryside Act 1981]&lt;br /&gt;
&lt;br /&gt;
*United Nations&lt;br /&gt;
** [http://www.oceansatlas.org/ Atlas of the Oceans] e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm Chilean nylon shrimp ''Heterocarpus reedi'']&lt;br /&gt;
&lt;br /&gt;
*United States of America Government &lt;br /&gt;
**ITIS, e.g. [http://www.itis.usda.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&amp;amp;search_value=179628 Passer Domesticus] - &amp;quot;authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://dev.w3.org/cvsweb/2000/10/swap/test/ferrell/biology.n3?rev=1.4 An Ontology of Biology]&lt;br /&gt;
**[http://esw.w3.org/topic/HCLSIG_BioRDF_Subgroup/Tasks/Reagents/Status_Reports/2006-05-04 BioRDF Sub-group Status Report, 4 May 2006]&lt;br /&gt;
&lt;br /&gt;
*Yahoo Groups&lt;br /&gt;
**[http://tech.groups.yahoo.com/group/passerdomesticus/ passerdomesticus] species as group name!&lt;br /&gt;
&lt;br /&gt;
*YouTube&lt;br /&gt;
**[http://www.youtube.com/results?search_query=starling&amp;amp;search=Search YouTube search for 'starling']]&lt;br /&gt;
&lt;br /&gt;
==Actualités==&lt;br /&gt;
In under two weeks, the BBC News website carried the following stories, all including the scientific names of species:&lt;br /&gt;
*[http://news.bbc.co.uk/1/shared/spl/hi/pop_ups/06/sci_nat_orchid_spectacular/html/1.stm BBC News: Stunning new orchids from Asia's rainforest] - 2006-10-16&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6045802.stm BBC News: Winter home find cheers twitchers] (winter home of the northern bald ibis found) - 2006-10-13&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6043648.stm BBC News: New mouse find is 'living fossil'] - 2006-10-12&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6035113.stm BBC News: Giant camel fossil found in Syria] - 2006-10-10&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5414410.stm BBC News: Sharks swim into political waters] - 2006-10-06&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5403570.stm BBC News: 'Monster' fossil find in Arctic] - 2006-10-05&lt;br /&gt;
&lt;br /&gt;
==Utilisation dans les blogs==&lt;br /&gt;
*[http://technorati.com/search/%22passer%20domesticus%22 Technorati search for &amp;quot;Passer domesticus&amp;quot;] (367 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22acer%20palmatum%22 Technorati search for &amp;quot;Acer palmatum&amp;quot;] (682 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22Homo%20sapiens%22 Technorati search for &amp;quot;Homo sapiens&amp;quot;] (40,932 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/birding Technorati search for &amp;quot;birding&amp;quot;] (26,472 found, as at 2006-09-25)&lt;br /&gt;
*[http://ramblingsofanaturalist.blogspot.com/ Ramblings of a Naturalist]&lt;br /&gt;
*[http://squaremetre1.blogspot.com/ The Square Metre]&lt;br /&gt;
*[http://windowboxwildlife.blogspot.com/index.html Windowbox Wildlife]&lt;br /&gt;
*[http://www.rxwildlife.org.uk/ RXWildlife]&lt;br /&gt;
*[http://newsbou.blogspot.com/ British Ornithologists' Union news]&lt;br /&gt;
*[http://fieldmarking.reger.com/ FieldMarking] - An experiment to see how people can collaborate to record wildlife observations in blogs.&lt;br /&gt;
&lt;br /&gt;
==Et pour finir...==&lt;br /&gt;
Gary Larson, in his book ''The Far Side Gallery'' (Warner Books, 1980, ISBN 0751502367) has a cartoon, showing two entomologists sitting down to eat dinner in a jungle. One says to the other &amp;quot;Hey! What's this ''Drosophila melanogaster'' doing in my soup?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Contributeurs==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proposition)&lt;br /&gt;
*Malcolm Storey (par e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Center] (proposition)&lt;br /&gt;
*[[User:SteveMcBill|Steve McWilliam]], [http://www.rECOrd-LRC.co.uk/ rECOrd - The Biodiversity Information System for the Cheshire region] (proposition)&lt;br /&gt;
*[[User:PeNGo|Peter Halasz]], Wikipedia Admin.&lt;br /&gt;
* Traduction en cours par [[Christophe Ducamp]]&lt;br /&gt;
&lt;br /&gt;
==Voir aussi==&lt;br /&gt;
{{species-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples&amp;diff=34591</id>
		<title>species-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples&amp;diff=34591"/>
		<updated>2008-11-17T23:56:58Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Arachnid */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Species Examples=&lt;br /&gt;
&lt;br /&gt;
Examples of common and scientific names of living things, which could be marked up with a &amp;quot;'''[[species]]'''&amp;quot; (or similar) microformat. Note use of matching pairs of examples, where possible.&lt;br /&gt;
&lt;br /&gt;
:'''Note: the original name of the proposed microformat, &amp;quot;species&amp;quot;, is likely to change, probably to &amp;quot;biota&amp;quot; or &amp;quot;taxon&amp;quot;. The former has been retained here, to avoid having to make many repetitive and perhaps redundant edits'''&lt;br /&gt;
&lt;br /&gt;
'''If you find a link which is not working, please replace it with a suitable alternative, rather than simply deleting it. Thank you.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Types of publishers==&lt;br /&gt;
&lt;br /&gt;
There are, perhaps, three types of publisher of taxonomic information (with all the usual overlaps and exceptions one finds when generalising so much!):&lt;br /&gt;
&lt;br /&gt;
#Those which publish a full or partial hierarchy, like [http://names.ubio.org/browser/classifications.php?conceptID=2463046 UBIO].&lt;br /&gt;
#Those which publish a binominal, or a binominal with a qualifier, like a subspecies, variety, breed, hybridisation - but still referring to a single type of living thing, with no higher- level taxonomy. e.g [http://www.westmidlandbirdclub.com/records/lists.htm the West Midland Bird Club's county lists]&lt;br /&gt;
#These which publish common (or &amp;quot;vernacular&amp;quot;) names, but who would be interested in &amp;quot;aliasing&amp;quot; those to the scientific equivalent. e.g [http://www.westmidlandbirdclub.com/ladywalk/latest.htm the West Midland Bird Club's news from Ladywalk]&lt;br /&gt;
&lt;br /&gt;
Interestingly, some sites (Wikipedia, for example) have pages which fall into each of the three categories! &lt;br /&gt;
#[http://en.wikipedia.org/wiki/Bar-tailed_Godwit Bar tailed Godwit]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Genetics_of_humans Genetics of humans]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Ladywalk Ladywalk]&lt;br /&gt;
&lt;br /&gt;
[[User:AndyMabbett|AndyMabbett]] 12:05, 23 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
==Binominals==&lt;br /&gt;
&lt;br /&gt;
===Birds===&lt;br /&gt;
&lt;br /&gt;
'''Black-tailed Godwit''' on [http://www.westmidlandbirdclub.com/ladywalk/latest.htm West Midland Bird Club's Ladywalk reserve latest news page]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Limosa limosa'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/records/lists.htm West Midland Bird Club county lists]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Common Name&amp;lt;/th&amp;gt;&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Scientific Name&amp;lt;/th&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&amp;lt;th scope=&amp;quot;row&amp;quot; class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/th&amp;gt;&amp;lt;td class=&amp;quot;sci&amp;quot;&amp;gt;Limosa limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Eurasian Bittern'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/ladywalk/BITTE.htm Bitterns at LAdywalk]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Eurasian Bitterns&amp;lt;/b&amp;gt;, (&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Botaurus stellaris&amp;lt;/i&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Mammal===&lt;br /&gt;
'''Wolf''' on [http://www.wolf.org/wolves/index.asp International Wolf Center]&lt;br /&gt;
&lt;br /&gt;
'''''Canis_lupus''''' on [http://animaldiversity.ummz.umich.edu/site/accounts/information/Canis_lupus.html Animal Diversity Web]&lt;br /&gt;
&lt;br /&gt;
===Fish===&lt;br /&gt;
'''Northern pike''' on [http://www.dnr.state.mn.us/fish/northern/index.html Minnesota Department of Natural Resources]&lt;br /&gt;
&lt;br /&gt;
'''''Esox lucius''''' on [http://www.pikezander.co.uk/pike.htm Pike &amp;amp; Zander]&lt;br /&gt;
&lt;br /&gt;
===Insect===&lt;br /&gt;
'''Death’s Head Hawkmoth''' on [http://funkman.org/animal/insect/deathheadmoth.html Animal Teachers]&lt;br /&gt;
&lt;br /&gt;
'''''Acherontia atropos''''' on [http://ukmoths.org.uk/show.php?id=2540 UK Moths]&lt;br /&gt;
&lt;br /&gt;
'''Migrant Hawker''' (''Aeshna mixta'') on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Centre]&lt;br /&gt;
&lt;br /&gt;
===Arachnid===&lt;br /&gt;
'''Rose Trantula''' on [http://www.practical-pet-care.com/spider_question.php?ID=1.2006100416232172 Pet Care Forum]&lt;br /&gt;
&lt;br /&gt;
'''''Araneus angulatus''''' on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Center] (this is a duplicate. [[User:BenWest|BenWest]] 21:56, 21 Oct 2006 (PDT))&lt;br /&gt;
&lt;br /&gt;
===Plant===&lt;br /&gt;
'''Bog Pimpernel''' on [http://www.map-reading.co.uk/wildflowers/HTML%20files/f0219.htm Map Reading's Wildflower Images]&lt;br /&gt;
&lt;br /&gt;
'''''Anagallis tenella''''' on [http://www.bioimages.org.uk/HTML/T47624.HTM BioImages]&lt;br /&gt;
&lt;br /&gt;
'''''Persicaria campanulatum''''' on [http://www.record-lrc.co.uk/?Mod=Forum&amp;amp;Do=ViewThread&amp;amp;ForumID=6&amp;amp;ThreadID=75 rECOrd - The Biodiversity Information Centre for the Cheshire region]&lt;br /&gt;
&lt;br /&gt;
'''''Galeopsis tetrahit s.s.'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm West Midland Bird Club]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Galeopsis tetrahit&amp;amp;nbsp;&lt;br /&gt;
&amp;lt;abbr lang=&amp;quot;la&amp;quot; title=&amp;quot;sensu stricto&amp;quot;&amp;gt;s.s.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
 (&amp;lt;b class=&amp;quot;plant&amp;quot;&amp;gt;Common Hemp-nettle&amp;lt;/b&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Fungi===&lt;br /&gt;
&lt;br /&gt;
'''''Amanita muscaria''''' on [http://www.mykoweb.com/CAF/species/Amanita_muscaria.html California Fungi]&lt;br /&gt;
* as '''''Amanita muscaria'' (L. per Fr.) Hooker'''&lt;br /&gt;
* as '''''Amanita muscaria var. flavivolvata'''''&lt;br /&gt;
&lt;br /&gt;
'''Fly Agaric''' on [http://www.treesforlife.org.uk/forest/mythfolk/flyagaric.html Trees for Life]&lt;br /&gt;
&lt;br /&gt;
'''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz: Fries) Singer''' on [http://www.ilmyco.gen.chicago.il.us/Taxa/Rhodomacul540.html]&lt;br /&gt;
*also written as '''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz ex Fries) Singer''' &lt;br /&gt;
*(This is where a post-Linnean author is given special rights (because his descriptions were comparatively complete - i.e. recognisable) so his interpretation of earlier names is taken as the sense meant by the original author. Think these used to be &amp;quot;apud&amp;quot; and are now &amp;quot;ex&amp;quot; although a colon has also been used. There are only a few sanctioning authors, the main one being Elias Fries.(Fr.) )&lt;br /&gt;
&lt;br /&gt;
==More than binominals==&lt;br /&gt;
&lt;br /&gt;
===Authority===&lt;br /&gt;
'''''Pica pica'' Linnaeus, (1758)''' on [http://en.wikipedia.org/wiki/European_Magpie Wikipedia: European Magpie]&lt;br /&gt;
:(i.e. named by Linnaeus in 1758)&lt;br /&gt;
&lt;br /&gt;
'''''Anarhynchus frontalis'' Quoy and Gaimard, 1830''' on [http://en.wikipedia.org/wiki/Wrybill Wikipedia: Wrybill]&lt;br /&gt;
:note two-person authority&lt;br /&gt;
&lt;br /&gt;
===Unspecified species===&lt;br /&gt;
'''''Podiceps sp.''''' on [http://www.birdlife.org/datazone/species/index.html?action=SpcHTMDetails.asp&amp;amp;sid=3644&amp;amp;m=0 Bird Life] &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;Podiceps&amp;lt;/i&amp;gt; sp.&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Psyllid plant hopper''' [http://ramblingsofanaturalist.blogspot.com/2006/07/bay-sucker-gall-trioza-alacris.html on Ramblings of a Naturalist blog]&lt;br /&gt;
&lt;br /&gt;
===Sub-species===&lt;br /&gt;
&lt;br /&gt;
====Animal====&lt;br /&gt;
'''''Larus glaucoides kumlieni''' on [http://www.birdguides.com/html/vidlib/species/Larus_glaucoides_kumlieni.htm BirdGuides]&lt;br /&gt;
&lt;br /&gt;
'''Kumlien's Gull''' on [http://www.birdsireland.com/pages/rare_bird_news/2005/january_photos.html Birds Ireland]&lt;br /&gt;
&lt;br /&gt;
====Plant====&lt;br /&gt;
'''''Pisum sativum L. subsp. sativum''''' on [http://www.plantnames.unimelb.edu.au/Sorting/Pisum.html] (also has other examples; note lack of required italics)&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;b&amp;gt;Pisum sativum&amp;lt;/b&amp;gt; L. subsp. &amp;lt;b&amp;gt;sativum&amp;lt;/b&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Cultivars (plant)===&lt;br /&gt;
'''''Chamaecyparis lawsoniana 'Aureomarginata'''''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;dd&amp;gt;&amp;lt;i&amp;gt;Chamaecyparis lawsoniana&amp;lt;/i&amp;gt; 'Aureomarginata'&amp;lt;/dd&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Chamaecyparis lawsoniana'' 'Golden Wonder'''' on [http://www.plantago.nl/plantindex/c/Chamaecyparis/Chamaecyparis_4.htm plantago.nl]&lt;br /&gt;
&lt;br /&gt;
====Cultivar groups (plant)====&lt;br /&gt;
'''''Brassica oleracea'' Botrytis Group'''  on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
&lt;br /&gt;
===Trade names (plant)===&lt;br /&gt;
&lt;br /&gt;
'''''Rosa'' Peace''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivar]&lt;br /&gt;
:(&amp;quot;Peace&amp;quot; is a trade designation or &amp;quot;selling name&amp;quot; for the cultivar R. 'Madame A. Meilland' and should therefore be printed in a different typeface from the rest of the name, without any quote marks)&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Giant Single'''' on [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds]&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Infrared' F1''' on [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds] &lt;br /&gt;
:(Note &amp;quot;F1&amp;quot; cross designation)&lt;br /&gt;
&lt;br /&gt;
===Variety (plant)===&lt;br /&gt;
'''''Pisum sativum var. macrocarpon''''' on [http://davesgarden.com/pf/go/8/index.html Dave's Garden]&lt;br /&gt;
&lt;br /&gt;
====Sub-variety (plant)====&lt;br /&gt;
&lt;br /&gt;
'''''Betula ermani var. genuina subvar. brevidentata''''' on [http://www.nccpg.com/gloucestershire/wilson1.html National Council for the Conservation of Plants and Gardens, Gloucestershire Group] (plus many other examples)&lt;br /&gt;
&lt;br /&gt;
===Form (plant)===&lt;br /&gt;
&lt;br /&gt;
'''''Acanthocalycium spiniflorum f. klimpelianum''''' on [http://en.wikipedia.org/wiki/Form_%28botany%29 Wikipedia: form (botany)]&lt;br /&gt;
*aka '''''Acanthocalycium spiniflorum forma klimpelianum'''''&lt;br /&gt;
&lt;br /&gt;
===Sense (plant)===&lt;br /&gt;
'''''Ranunculus aquatilis s.l.''''' and '''''R. aquatilis s.s'''''; on [http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm Blithfield Reservoir: Survey of Flowering Plants...] (see also footnotes on that page)&lt;br /&gt;
&lt;br /&gt;
===Cross (plant)===&lt;br /&gt;
'''''Digitalis x mertonensis''''' on [http://www.hortax.org.uk/gardenplantsnames.html Hortax]&lt;br /&gt;
:The hybrid name for all plants derived from the cross between '''D. purpurea''' and '''D. grandiflora'''. The &amp;quot;x&amp;quot; indicates the hybrid status. &lt;br /&gt;
&lt;br /&gt;
'''''× Fatshedera lizei''''' on [http://oregonstate.edu/dept/ldplants/sci-names.htm Scientific Plant Names, Oregon State Univ., Landscape Plants]&lt;br /&gt;
&lt;br /&gt;
===Strain (bacteria)===&lt;br /&gt;
'''''Escherichia coli O157:H7''''' on [http://www.cfsan.fda.gov/~mow/chap15.html FDA.gov]&lt;br /&gt;
&lt;br /&gt;
'''''E.Coli''''' on [http://news.bbc.co.uk/1/hi/england/southern_counties/5346842.stm BBC news]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Synonyms===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Tarpan The Tarpan], '''''Equus ferus ferus''''':&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The Tarpan was first described by Johann Friedrich Gmelin in 1774; he had seen the animals in 1769 in the region of Bobrovsk, near Voronezh. In 1784 Pieter Boddaert named the species '''''Equus ferus''''', referring to Gmelin's description. Unaware of Boddaert's name, Otto Antonius published the name '''''Equus gmelini''''' in 1912, again referring to Gmelin's description. Since Antonius' name refers to the same description as Boddaert's it is a junior objective synonym.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
on http://www.westmidlandbirdclub.com/biblio/bb/71-338.htm:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;some authors still refer to Scandinavian Herring Gulls as '''''L. a. omissus'''''; others regard '''''omissus''''' as no longer valid (a synonym of '''''argentatus''''')&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Devario_chrysotaeniatus:&lt;br /&gt;
&lt;br /&gt;
:'''''Devario chrysotaeniatus''''' [...] former Names and Synonyms&lt;br /&gt;
::* '''''Danio chrysotaeniatus'''''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Tetracanthus:&lt;br /&gt;
&lt;br /&gt;
:'''''Echinocactus tetracanthus''''' synonym of '''''Parodia erinacea''''' - cactus&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Jostia_teaguei (using a &amp;quot;taxobox&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
:Binomial name&lt;br /&gt;
:'''''Jostia teaguei'''''&lt;br /&gt;
:(Luer) Luer&lt;br /&gt;
:Synonyms&lt;br /&gt;
:'''''Masdevallia teaguei''''' Luer, 1978&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://www.coleopterist.org.uk/haliplidae-list.htm &lt;br /&gt;
&lt;br /&gt;
:'''HALIPLUS''' Latreille, 1802&lt;br /&gt;
:Subgenus HALIPLUS Latreille, 1802&lt;br /&gt;
:''confinis'' Stephens, 1828&lt;br /&gt;
::''pallens'' Fowler, 1887&lt;br /&gt;
::''halberti'' Bullock, 1928&lt;br /&gt;
&lt;br /&gt;
i.e. ''Haliplus pallens'' and  ''H. halberti'' are synonyms of ''H. confinis''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See also [http://en.wikipedia.org/wiki/Special:Search?search=species+synonym&amp;amp;fulltext=Search Wkipedia search for &amp;quot;species synonym&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
===Superseded names===&lt;br /&gt;
'''''Tringa bartramia''''' superseded by '''''Bartramia longicauda''''' on [http://www.westmidlandbirdclub.com/firsts/UPLSA.htm West Midland Bird Club's Upland Sandpiper article]&lt;br /&gt;
&lt;br /&gt;
===GUID===&lt;br /&gt;
'''NBN Taxon Key''' for European Otter, ''Lutra lutra'', on [http://nbn.nhm.ac.uk/nhm/bin/nbntaxa.dll/taxon_details?taxon_key=NBNSYS0000005133 NBN Species Dictionary]: '''NBNSYS0000005133''' &lt;br /&gt;
&lt;br /&gt;
'''LSID ([http://lsid.sourceforge.net/#whatislsid Life Science Indicator])''' for ''Popillia japonica'' on [http://names.ubio.org/browser/details2.php?names=on&amp;amp;authors=on&amp;amp;sci=on&amp;amp;vern=on&amp;amp;conceptID=&amp;amp;expand=&amp;amp;namebankID=3377001 uBio]: '''urn:lsid:ubio.org:namebank:3377001'''&lt;br /&gt;
&lt;br /&gt;
===Wikipedia===&lt;br /&gt;
'''Black-tailed Godwit''' on [http://en.wikipedia.org/wiki/Black-tailed_Godwit Wikipedia: Black-tailed Godwit]&lt;br /&gt;
&lt;br /&gt;
Wikipedia uses several sets of markup, e.g. (in-line styles and links, plus some other markup, removed, for clarity):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;The &amp;lt;b&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;, &amp;lt;i&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Linking====&lt;br /&gt;
Wikipedia uses the standard convention of having species italicised. Internal links to species may be to the common name or scientific name depending on which is used as the article's title (usually common for animals, scientific for plants, although there are exceptions). Links to scientific names work regardless:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;[[Black-tailed Godwit]]&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name, but displaying scientific name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Black-tailed Godwit|Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These types of links are not used in the Black-tailed Godwit article itself, but in others related to it. e.g. [http://en.wikipedia.org/wiki/British_avifauna British avifauna]&lt;br /&gt;
&lt;br /&gt;
====Taxobox====&lt;br /&gt;
&lt;br /&gt;
Wiki markup for the taxobox (taxonomy infobox) on the English Wikipedia, as used on the Black-tailed Godwit article, with irrelevant fields removed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{Taxobox&lt;br /&gt;
| name = Black-tailed Godwit&lt;br /&gt;
| regnum = [[Animal]]ia&lt;br /&gt;
| phylum = [[Chordate|Chordata]]&lt;br /&gt;
| classis = [[bird|Aves]]&lt;br /&gt;
| ordo = [[Charadriiformes]]&lt;br /&gt;
| familia = [[Scolopacidae]]&lt;br /&gt;
| genus = ''[[Godwit|Limosa]]''&lt;br /&gt;
| species = '''''L. limosa'''''&lt;br /&gt;
| binomial = ''Limosa limosa''&lt;br /&gt;
| binomial_authority = ([[Carolus Linnaeus|Linnaeus]], 1758)&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Above is vaguely displayed in an HTML table as (with formatting and links removed):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Kingdom:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Animalia&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Phylum:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Chordata&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Class:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Aves&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Order:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Charadriiformes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Family:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Scolopacidae&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Genus:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Species:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;L. limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;th&amp;gt;binominal name&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;(Linnaeus, 1758)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also allows for other levels of taxonomy (e.g. genus or subspecies), and synonyms.&lt;br /&gt;
&lt;br /&gt;
==Quantitative evidence==&lt;br /&gt;
&lt;br /&gt;
For evidence of quantitative, rather than qualitative, use of species' and other taxonomic names, see [[species-examples-quantitative]]&lt;br /&gt;
&lt;br /&gt;
==Notable websites==&lt;br /&gt;
These high-profile websites use species names&lt;br /&gt;
&lt;br /&gt;
*Amazon&lt;br /&gt;
**[http://www.amazon.co.uk/s/?url=search-alias%3Daps&amp;amp;field-keywords=%22house+sparrow%22 search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*BBC News&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/uk/4835208.stm Fewer birds spotted in UK gardens]&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/england/london/4743250.stm Study to solve sparrow's decline riddle]&lt;br /&gt;
&lt;br /&gt;
*Encyclopaedia Britannica - all species, e.g.&lt;br /&gt;
**[http://concise.britannica.com/ebc/article-9379473/starling Starling]&lt;br /&gt;
&lt;br /&gt;
*Flickr&lt;br /&gt;
**[http://www.flickr.com/photos/tags/citheronia/ Tag for moth genera 'citheronia']&lt;br /&gt;
***[http://www.flickr.com/photos/30268343@N00/152101772/ Sample result from that search]&lt;br /&gt;
**[http://www.flickr.com/groups/birdguide/ Field Guide: Birds of the World] 23,073 tagged photos, as at 2006-10-21&lt;br /&gt;
&lt;br /&gt;
*CNN&lt;br /&gt;
**[http://archives.cnn.com/2001/NATURE/01/24/dying.eagles/ Disease threatens bald eagle population]&lt;br /&gt;
&lt;br /&gt;
*eBay&lt;br /&gt;
**[http://search.ebay.com/house-sparrow search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*The Guardian&lt;br /&gt;
**[http://environment.guardian.co.uk/conservation/story/0,,1878956,00.html The call of the wildlife]&lt;br /&gt;
**[http://education.guardian.co.uk/higher/news/story/0,,1665396,00.html Sparrow joins 'raped' duck in Dutch museum] (note improper capitalisation &amp;quot;''passer domesticus''&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*The Internet Movie Database&lt;br /&gt;
**[http://www.imdb.com/title/tt0029443/ Private Life of the Gannets]&lt;br /&gt;
***[http://www.imdb.com/title/tt0029443/trivia Private Life of the Gannets trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0133318/ The Trials of Life]&lt;br /&gt;
**[http://www.imdb.com/title/tt0227812/ Whooping Crane]&lt;br /&gt;
***[http://www.imdb.com/title/tt0227812/trivia Whooping Crane trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0301727/ Winged Migration]&lt;br /&gt;
&lt;br /&gt;
*London Zoo&lt;br /&gt;
**[http://www.zsl.org/london-zoo/animals/birds/tawny-frogmouth,99,AN.html Tawny frogmouth]&lt;br /&gt;
&lt;br /&gt;
*Microsoft&lt;br /&gt;
**[http://www.microsoft.com/games/zootycoon/zoo2/zoo2_ymi_animals1.asp Zoo Tycoon]&lt;br /&gt;
&lt;br /&gt;
*MSN-Encarta - all species, e.g.&lt;br /&gt;
**[http://encarta.msn.com/encnet/refpages/search.aspx?q=vulgaris&amp;amp;Submit2=Go Search for &amp;quot;vulgaris&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*MySpace&lt;br /&gt;
**[http://blog.myspace.com/index.cfm?fuseaction=blog.view&amp;amp;friendID=47134278&amp;amp;blogID=79591637]&lt;br /&gt;
&lt;br /&gt;
*Nature&lt;br /&gt;
**[http://www.nature.com/nature/focus/avianflu/index.html Avian flu web focus]&lt;br /&gt;
&lt;br /&gt;
*Nature Network, Boston&lt;br /&gt;
**[http://network.nature.com/boston/news/archive/2006/06/13/the-student-and-the-squid The student and the squid] '''N.B.''' site already supports rel-tag, hCard for user profiles and hCalendar for marking up events across the site.&lt;br /&gt;
&lt;br /&gt;
*NASA&lt;br /&gt;
**[http://history.nasa.gov/SP-401/ch3.htm SP-401 Skylab, Classroom in Space. Part II - Student Experiments] (&amp;quot;The common Cross spider (Araneus diadematus)&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*New York Times&lt;br /&gt;
**[http://query.nytimes.com/gst/fullpage.html?sec=travel&amp;amp;res=9D04E4DE1131F93BA25751C0A9669C8B63 Where the Eagles Fly: Seeing the National Symbol]&lt;br /&gt;
&lt;br /&gt;
*Sky News&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,15410-1249430,00.html Homo floresiensis]&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,30200-13546024,00.html Atlapetes latinuchus yariguierum]&lt;br /&gt;
**[http://news.sky.com/skynews/picture_gallery/picture_gallery/0,,15410-1244699,00.html Polypedates chlorophthalmus]&lt;br /&gt;
**[http://search.sky.com/search/skynews/results/1,,,00.html?CID=30000&amp;amp;QUERY=species&amp;amp;SITEREF=skynews&amp;amp;SECTION=&amp;amp;TYPE_REF=&amp;amp;radiodate=&amp;amp;dayFrom=dd&amp;amp;monthFrom=mm&amp;amp;yearFrom=yyyy&amp;amp;dayTo=dd&amp;amp;monthTo=mm&amp;amp;yearTo=yyyy&amp;amp;Submit.x=0&amp;amp;Submit.y=0 Sky News search for &amp;quot;species&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*Snopes (Urban Legends Reference Pages)&lt;br /&gt;
**[http://www.snopes.com/photos/animals/fishfly.asp Fish Fly]&lt;br /&gt;
&lt;br /&gt;
*United Kingdom Government&lt;br /&gt;
**[http://www.defra.gov.uk/wildlife-countryside/vertebrates/gen-licence.htm DEFRA: General licences under the Wildlife &amp;amp; Countryside Act 1981]&lt;br /&gt;
&lt;br /&gt;
*United Nations&lt;br /&gt;
** [http://www.oceansatlas.org/ Atlas of the Oceans] e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm Chilean nylon shrimp ''Heterocarpus reedi'']&lt;br /&gt;
&lt;br /&gt;
*United States of America Government &lt;br /&gt;
**ITIS, e.g. [http://www.itis.usda.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&amp;amp;search_value=179628 Passer Domesticus] - &amp;quot;authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://dev.w3.org/cvsweb/2000/10/swap/test/ferrell/biology.n3?rev=1.4 An Ontology of Biology]&lt;br /&gt;
**[http://esw.w3.org/topic/HCLSIG_BioRDF_Subgroup/Tasks/Reagents/Status_Reports/2006-05-04 BioRDF Sub-group Status Report, 4 May 2006]&lt;br /&gt;
&lt;br /&gt;
*Yahoo Groups&lt;br /&gt;
**[http://tech.groups.yahoo.com/group/passerdomesticus/ passerdomesticus] species as group name!&lt;br /&gt;
&lt;br /&gt;
*YouTube&lt;br /&gt;
**[http://www.youtube.com/results?search_query=starling&amp;amp;search=Search YouTube search for 'starling']]&lt;br /&gt;
&lt;br /&gt;
==Breaking news==&lt;br /&gt;
In under two weeks, the BBC News website carried the following stories, all including the scientific names of species:&lt;br /&gt;
*[http://news.bbc.co.uk/1/shared/spl/hi/pop_ups/06/sci_nat_orchid_spectacular/html/1.stm BBC News: Stunning new orchids from Asia's rainforest] - 2006-10-16&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6045802.stm BBC News: Winter home find cheers twitchers] (winter home of the northern bald ibis found) - 2006-10-13&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6043648.stm BBC News: New mouse find is 'living fossil'] - 2006-10-12&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6035113.stm BBC News: Giant camel fossil found in Syria] - 2006-10-10&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5414410.stm BBC News: Sharks swim into political waters] - 2006-10-06&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5403570.stm BBC News: 'Monster' fossil find in Arctic] - 2006-10-05&lt;br /&gt;
&lt;br /&gt;
==Use in blogs==&lt;br /&gt;
*[http://technorati.com/search/%22passer%20domesticus%22 Technorati search for &amp;quot;Passer domesticus&amp;quot;] (367 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22acer%20palmatum%22 Technorati search for &amp;quot;Acer palmatum&amp;quot;] (682 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22Homo%20sapiens%22 Technorati search for &amp;quot;Homo sapiens&amp;quot;] (40,932 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/birding Technorati search for &amp;quot;birding&amp;quot;] (26,472 found, as at 2006-09-25)&lt;br /&gt;
*[http://ramblingsofanaturalist.blogspot.com/ Ramblings of a Naturalist]&lt;br /&gt;
*[http://squaremetre1.blogspot.com/ The Square Metre]&lt;br /&gt;
*[http://windowboxwildlife.blogspot.com/index.html Windowbox Wildlife]&lt;br /&gt;
*[http://www.rxwildlife.org.uk/ RXWildlife]&lt;br /&gt;
*[http://newsbou.blogspot.com/ British Ornithologists' Union news]&lt;br /&gt;
*[http://fieldmarking.reger.com/ FieldMarking] - An experiment to see how people can collaborate to record wildlife observations in blogs.&lt;br /&gt;
&lt;br /&gt;
==And finally...==&lt;br /&gt;
Gary Larson, in his book ''The Far Side Gallery'' (Warner Books, 1980, ISBN 0751502367) has a cartoon, showing two entomologists sitting down to eat dinner in a jungle. One says to the other &amp;quot;Hey! What's this ''Drosophila melanogaster'' doing in my soup?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proponent)&lt;br /&gt;
*Malcolm Storey (per e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Centre] (proponent)&lt;br /&gt;
*[[User:SteveMcBill|Steve McWilliam]], [http://www.rECOrd-LRC.co.uk/ rECOrd - The Biodiversity Information System for the Cheshire region] (proponent)&lt;br /&gt;
*[[User:PeNGo|Peter Halasz]], Wikipedia Admin.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
{{species}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples-fr&amp;diff=34590</id>
		<title>species-examples-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples-fr&amp;diff=34590"/>
		<updated>2008-11-17T23:56:55Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Plante */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Les exemples de noms scientifiques communs des choses vivantes, qui pourraient être balisées avec un microformat &amp;quot;[[species-fr|species]]&amp;quot; (ou équivalent). Notez l'usage de paires correspondantes d'exemples quand cela est possible.&lt;br /&gt;
&lt;br /&gt;
:'''Note : le nom origianl du microformat proposé, &amp;quot;species&amp;quot; va probablement changer, probablement vers &amp;quot;biota&amp;quot; ou &amp;quot;taxon&amp;quot;. Le précédent a ici été retenu, pour éviter d'avoir à faire beaucoup d'éditions répétitives et peut-être redondantes'''&lt;br /&gt;
&lt;br /&gt;
'''Si vous trouvez un lien qui ne fonctionne pas, remplacez-le svp avec une alternative pertinente, plutôt que de simplement l'effacer. Merci.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Types d'éditeurs==&lt;br /&gt;
&lt;br /&gt;
There are, perhaps, three types of publisher of taxonomic information (with all the usual overlaps and exceptions one finds when generalising so much!):&lt;br /&gt;
&lt;br /&gt;
#Those which publish a full or partial hierarchy, like [http://names.ubio.org/browser/classifications.php?conceptID=2463046 UBIO].&lt;br /&gt;
#Those which publish a binominal, or a binominal with a qualifier, like a subspecies, variety, breed, hybridisation - but still referring to a single type of living thing, with no higher- level taxonomy. e.g [http://www.westmidlandbirdclub.com/records/lists.htm the West Midland Bird Club's county lists]&lt;br /&gt;
#These which publish common (or &amp;quot;vernacular&amp;quot;) names, but who would be interested in &amp;quot;aliasing&amp;quot; those to the scientific equivalent. e.g [http://www.westmidlandbirdclub.com/ladywalk/latest.htm the West Midland Bird Club's news from Ladywalk]&lt;br /&gt;
&lt;br /&gt;
Interestingly, some sites (Wikipedia, for example) have pages which fall into each of the three categories! &lt;br /&gt;
#[http://en.wikipedia.org/wiki/Bar-tailed_Godwit Bar tailed Godwit]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Genetics_of_humans Genetics of humans]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Ladywalk Ladywalk]&lt;br /&gt;
&lt;br /&gt;
[[User:AndyMabbett|AndyMabbett]] 12:05, 23 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Binomial==&lt;br /&gt;
&lt;br /&gt;
===Oiseaux===&lt;br /&gt;
&lt;br /&gt;
'''Black-tailed Godwit''' sur [http://www.westmidlandbirdclub.com/ladywalk/latest.htm West Ladywalk la page des dernières actualités du Midland Bird Club]&lt;br /&gt;
&lt;br /&gt;
'''''Limosa limosa''''' sur [http://www.westmidlandbirdclub.com/records/lists.htm les listes du West Midland Bird Club]&lt;br /&gt;
[http://www.westmidlandbirdclub.com/records/lists.htm West Midland Bird Club county lists]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Common Name&amp;lt;/th&amp;gt;&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Scientific Name&amp;lt;/th&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&amp;lt;th scope=&amp;quot;row&amp;quot; class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/th&amp;gt;&amp;lt;td class=&amp;quot;sci&amp;quot;&amp;gt;Limosa limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Eurasian Bittern'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/ladywalk/BITTE.htm Bitterns at LAdywalk]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Eurasian Bitterns&amp;lt;/b&amp;gt;, (&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Botaurus stellaris&amp;lt;/i&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Mammifères===&lt;br /&gt;
'''Loup''' sur l'[http://www.wolf.org/wolves/index.asp International Wolf Center]&lt;br /&gt;
&lt;br /&gt;
'''''Canis lupus''''' sur [http://www.nps.gov/archive/bela/html/wolves.htm NPS.gov]&lt;br /&gt;
&lt;br /&gt;
===Poisson===&lt;br /&gt;
'''Northern pike''' sur [http://www.dnr.state.mn.us/fish/northern/index.html Minnesota Department of Natural Resources]&lt;br /&gt;
&lt;br /&gt;
'''''Esox lucius''''' sur [http://www.pikezander.co.uk/pike.htm Pike &amp;amp; Zander]&lt;br /&gt;
&lt;br /&gt;
===Insecte===&lt;br /&gt;
'''Papillon à Tête de Mort''' sur [http://funkman.org/animal/insect/deathheadmoth.html Animal Teachers]&lt;br /&gt;
&lt;br /&gt;
'''''Acherontia atropos''''' sur [http://ukmoths.org.uk/show.php?id=2540 UK Moths]&lt;br /&gt;
&lt;br /&gt;
===Arachnid===&lt;br /&gt;
'''Rose Trantula''' on [http://www.practical-pet-care.com/spider_question.php?ID=1.2006100416232172 Pet Care Forum]&lt;br /&gt;
&lt;br /&gt;
'''''Araneus angulatus''''' on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Center] (this is a duplicate. [[User:BenWest|BenWest]] 21:56, 21 Oct 2006 (PDT))&lt;br /&gt;
&lt;br /&gt;
===Plante===&lt;br /&gt;
'''Bog Pimpernel''' sur [http://www.map-reading.co.uk/wildflowers/HTML%20files/f0219.htm les Images Wildflower Map Reading]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''''Anagallis tenella''''' on [http://www.bioimages.org.uk/HTML/T47624.HTM BioImages]&lt;br /&gt;
&lt;br /&gt;
'''''Persicaria campanulatum''''' on [http://www.record-lrc.co.uk/?Mod=Forum&amp;amp;Do=ViewThread&amp;amp;ForumID=6&amp;amp;ThreadID=75 rECOrd - The Biodiversity Information Center for the Cheshire region]&lt;br /&gt;
&lt;br /&gt;
'''''Galeopsis tetrahit s.s.'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm West Midland Bird Club]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Galeopsis tetrahit&amp;amp;nbsp;&lt;br /&gt;
&amp;lt;abbr lang=&amp;quot;la&amp;quot; title=&amp;quot;sensu stricto&amp;quot;&amp;gt;s.s.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
 (&amp;lt;b class=&amp;quot;plant&amp;quot;&amp;gt;Common Hemp-nettle&amp;lt;/b&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Fungi===&lt;br /&gt;
&lt;br /&gt;
'''''Amanita muscaria''''' on [http://www.mykoweb.com/CAF/species/Amanita_muscaria.html California Fungi]&lt;br /&gt;
* as '''''Amanita muscaria'' (L. per Fr.) Hooker'''&lt;br /&gt;
* as '''''Amanita muscaria var. flavivolvata'''''&lt;br /&gt;
&lt;br /&gt;
'''Fly Agaric''' on [http://www.treesforlife.org.uk/forest/mythfolk/flyagaric.html Trees for Life]&lt;br /&gt;
&lt;br /&gt;
'''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz: Fries) Singer''' on [http://www.ilmyco.gen.chicago.il.us/Taxa/Rhodomacul540.html]&lt;br /&gt;
*also written as '''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz ex Fries) Singer''' &lt;br /&gt;
*(This is where a post-Linnean author is given special rights (because his descriptions were comparatively complete - i.e. recognisable) so his interpretation of earlier names is taken as the sense meant by the original author. Think these used to be &amp;quot;apud&amp;quot; and are now &amp;quot;ex&amp;quot; although a colon has also been used. There are only a few sanctioning authors, the main one being Elias Fries.(Fr.) )&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plus sur les binômes==&lt;br /&gt;
&lt;br /&gt;
===Autorité===&lt;br /&gt;
'''''Pica pica'' Linnaeus, (1758)''' sur [http://fr.wikipedia.org/wiki/Pie_bavarde Wikipedia]&lt;br /&gt;
:(par exemple appelée par Linnaeus en 1758)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Espèces non spécifiées===&lt;br /&gt;
'''''Podiceps sp.''''' on [http://www.birdlife.org/datazone/species/index.html?action=SpcHTMDetails.asp&amp;amp;sid=3644&amp;amp;m=0 Bird Life] &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;Podiceps&amp;lt;/i&amp;gt; sp.&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Psyllid plant hopper''' [http://ramblingsofanaturalist.blogspot.com/2006/07/bay-sucker-gall-trioza-alacris.html on Ramblings of a Naturalist blog]&lt;br /&gt;
&lt;br /&gt;
===Sous-espèces===&lt;br /&gt;
&lt;br /&gt;
====Animal====&lt;br /&gt;
'''''Larus glaucoides kumlieni''' sur [http://www.birdguides.com/html/vidlib/species/Larus_glaucoides_kumlieni.htm BirdGuides]&lt;br /&gt;
&lt;br /&gt;
'''Kumlien's Gull''' sur [http://www.birdsireland.com/pages/rare_bird_news/2005/january_photos.html Birds Ireland]&lt;br /&gt;
&lt;br /&gt;
====Plante====&lt;br /&gt;
'''''Pisum sativum subsp. sativum''''' sur [http://www.plantnames.unimelb.edu.au/Sorting/Pisum.html] (a aussi d'autres exemples)&lt;br /&gt;
&lt;br /&gt;
===Cultivar (plante)===&lt;br /&gt;
'''''Chamaecyparis lawsoniana 'Aureomarginata'''''' sur [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
&lt;br /&gt;
'''''Chamaecyparis lawsoniana'' 'Golden Wonder'''' sur [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
&lt;br /&gt;
====Cultivar groupes (plantes)====&lt;br /&gt;
'''''Brassica oleracea'' Botrytis Group'''  sur [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Noms de marques commerciales (plantes)===&lt;br /&gt;
&lt;br /&gt;
'''''Rosa'' Peace''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
:(&amp;quot;Peace&amp;quot; est une désignation commercialisée ou &amp;quot;un nom de vente&amp;quot; pour le cultivar R. 'Madame A. Meilland' et devrait être imprimée par conséquent avec une police différente du reste du nom sans quelques guillemets de citations)&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Giant Single'''' sur [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds]&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Infrared' F1''' sur [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds] &lt;br /&gt;
:(Note &amp;quot;F1&amp;quot; croise la désignation)&lt;br /&gt;
&lt;br /&gt;
===Varieté (plante)===&lt;br /&gt;
'''''Pisum sativum var. macrocarpon''''' sur [http://davesgarden.com/pf/go/8/index.html le Jardin de Dave]&lt;br /&gt;
&lt;br /&gt;
====Sous-variété (plante)====&lt;br /&gt;
&lt;br /&gt;
'''''Betula ermani var. genuina subvar. brevidentata''''' sur [http://www.nccpg.com/gloucestershire/wilson1.html National Council for the Conservation of Plants and Gardens, Gloucestershire Group] (plus beaucoup d'autres exemples)&lt;br /&gt;
&lt;br /&gt;
===Forme (plante)===&lt;br /&gt;
&lt;br /&gt;
'''''Acanthocalycium spiniflorum f. klimpelianum''''' alias '''''Acanthocalycium spiniflorum forma klimpelianum''''' sur [http://en.wikipedia.org/wiki/Form_%28botany%29 Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Souche (bactérie)===&lt;br /&gt;
'''''Escherichia coli O157:H7''''' sur [http://www.cfsan.fda.gov/~mow/chap15.html FDA.gov]&lt;br /&gt;
&lt;br /&gt;
'''''E.Coli''''' sur [http://news.bbc.co.uk/1/hi/england/southern_counties/5346842.stm BBC news]&lt;br /&gt;
&lt;br /&gt;
===Sens (plante)===&lt;br /&gt;
'''''Ranunculus aquatilis s.l.''''' and '''''R. aquatilis s.s'''''; on [http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm Blithfield Reservoir: Survey of Flowering Plants...] (see also footnotes on that page)&lt;br /&gt;
&lt;br /&gt;
===Croisement (plante)===&lt;br /&gt;
'''''Digitalis x mertonensis''''' sur [http://www.hortax.org.uk/gardenplantsnames.html Hortax]&lt;br /&gt;
:The hybrid name for all plants derived from the cross between '''D. purpurea''' and '''D. grandiflora'''. The &amp;quot;x&amp;quot; indicates the hybrid status. &lt;br /&gt;
&lt;br /&gt;
'''''× Fatshedera lizei''''' on [http://oregonstate.edu/dept/ldplants/sci-names.htm Scientific Plant Names, Oregon State Univ., Landscape Plants]&lt;br /&gt;
&lt;br /&gt;
===Souche (bactéries)===&lt;br /&gt;
'''''Escherichia coli O157:H7''''' on [http://www.cfsan.fda.gov/~mow/chap15.html FDA.gov]&lt;br /&gt;
&lt;br /&gt;
'''''E.Coli''''' on [http://news.bbc.co.uk/1/hi/england/southern_counties/5346842.stm BBC news]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Synonyms===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Tarpan The Tarpan], '''''Equus ferus ferus''''':&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The Tarpan was first described by Johann Friedrich Gmelin in 1774; he had seen the animals in 1769 in the region of Bobrovsk, near Voronezh. In 1784 Pieter Boddaert named the species '''''Equus ferus''''', referring to Gmelin's description. Unaware of Boddaert's name, Otto Antonius published the name '''''Equus gmelini''''' in 1912, again referring to Gmelin's description. Since Antonius' name refers to the same description as Boddaert's it is a junior objective synonym.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
on http://www.westmidlandbirdclub.com/biblio/bb/71-338.htm:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;some authors still refer to Scandinavian Herring Gulls as '''''L. a. omissus'''''; others regard '''''omissus''''' as no longer valid (a synonym of '''''argentatus''''')&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Devario_chrysotaeniatus:&lt;br /&gt;
&lt;br /&gt;
:'''''Devario chrysotaeniatus''''' [...] former Names and Synonyms&lt;br /&gt;
::* '''''Danio chrysotaeniatus'''''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Tetracanthus:&lt;br /&gt;
&lt;br /&gt;
:'''''Echinocactus tetracanthus''''' synonym of '''''Parodia erinacea''''' - cactus&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Jostia_teaguei (using a &amp;quot;taxobox&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
:Binomial name&lt;br /&gt;
:'''''Jostia teaguei'''''&lt;br /&gt;
:(Luer) Luer&lt;br /&gt;
:Synonyms&lt;br /&gt;
:'''''Masdevallia teaguei''''' Luer, 1978&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://www.coleopterist.org.uk/haliplidae-list.htm &lt;br /&gt;
&lt;br /&gt;
:'''HALIPLUS''' Latreille, 1802&lt;br /&gt;
:Subgenus HALIPLUS Latreille, 1802&lt;br /&gt;
:''confinis'' Stephens, 1828&lt;br /&gt;
::''pallens'' Fowler, 1887&lt;br /&gt;
::''halberti'' Bullock, 1928&lt;br /&gt;
&lt;br /&gt;
i.e. ''Haliplus pallens'' and  ''H. halberti'' are synonyms of ''H. confinis''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See also [http://en.wikipedia.org/wiki/Special:Search?search=species+synonym&amp;amp;fulltext=Search Wkipedia search for &amp;quot;species synonym&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Divers==&lt;br /&gt;
===Noms supplantés===&lt;br /&gt;
'''''Tringa bartramia''''' supplanté par '''''Bartramia longicauda''''' sur [http://www.westmidlandbirdclub.com/firsts/UPLSA.htm West Midland Bird Club's Upland Sandpiper article]&lt;br /&gt;
&lt;br /&gt;
===GUID===&lt;br /&gt;
'''NBN Taxon Key''' for European Otter, ''Lutra lutra'', on [http://nbn.nhm.ac.uk/nhm/bin/nbntaxa.dll/taxon_details?taxon_key=NBNSYS0000005133 NBN Species Dictionary]: '''NBNSYS0000005133''' &lt;br /&gt;
&lt;br /&gt;
'''LSID ([http://lsid.sourceforge.net/#whatislsid Life Science Indicator])''' for ''Popillia japonica'' on [http://names.ubio.org/browser/details2.php?names=on&amp;amp;authors=on&amp;amp;sci=on&amp;amp;vern=on&amp;amp;conceptID=&amp;amp;expand=&amp;amp;namebankID=3377001 uBio]: '''urn:lsid:ubio.org:namebank:3377001'''&lt;br /&gt;
&lt;br /&gt;
===Wikipedia===&lt;br /&gt;
'''Black-tailed Godwit''' on [http://en.wikipedia.org/wiki/Black-tailed_Godwit Wikipedia: Black-tailed Godwit]&lt;br /&gt;
&lt;br /&gt;
Wikipedia uses several sets of markup, e.g. (in-line styles and links, plus some other markup, removed, for clarity):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;The &amp;lt;b&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;, &amp;lt;i&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Lien====&lt;br /&gt;
Wikipedia uses the standard convention of having species italicised. Internal links to species may be to the common name or scientific name depending on which is used as the article's title (usually common for animals, scientific for plants, although there are exceptions). Links to scientific names work regardless:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;[[Black-tailed Godwit]]&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name, but displaying scientific name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Black-tailed Godwit|Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These types of links are not used in the Black-tailed Godwit article itself, but in others related to it. e.g. [http://en.wikipedia.org/wiki/British_avifauna British avifauna]&lt;br /&gt;
&lt;br /&gt;
====Taxoboîte====&lt;br /&gt;
&lt;br /&gt;
Wiki markup for the taxobox (taxonomy infobox) on the English Wikipedia, as used on the Black-tailed Godwit article, with irrelevant fields removed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{Taxobox&lt;br /&gt;
| name = Black-tailed Godwit&lt;br /&gt;
| regnum = [[Animal]]ia&lt;br /&gt;
| phylum = [[Chordate|Chordata]]&lt;br /&gt;
| classis = [[bird|Aves]]&lt;br /&gt;
| ordo = [[Charadriiformes]]&lt;br /&gt;
| familia = [[Scolopacidae]]&lt;br /&gt;
| genus = ''[[Godwit|Limosa]]''&lt;br /&gt;
| species = '''''L. limosa'''''&lt;br /&gt;
| binomial = ''Limosa limosa''&lt;br /&gt;
| binomial_authority = ([[Carolus Linnaeus|Linnaeus]], 1758)&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Above is vaguely displayed in an HTML table as (with formatting and links removed):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Kingdom:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Animalia&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Phylum:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Chordata&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Class:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Aves&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Order:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Charadriiformes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Family:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Scolopacidae&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Genus:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Species:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;L. limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;th&amp;gt;binominal name&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;(Linnaeus, 1758)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also allows for other levels of taxonomy (e.g. genus or subspecies), and synonyms.&lt;br /&gt;
&lt;br /&gt;
==Evidence quantitative==&lt;br /&gt;
&lt;br /&gt;
For evidence of quantitative, rather than qualitative, use of species' and other taxonomic names, see [[species-examples-quantitative]]&lt;br /&gt;
&lt;br /&gt;
==Sites web notables==&lt;br /&gt;
Ces sites web de haut niveau utilisent des noms d'espèces&lt;br /&gt;
&lt;br /&gt;
*Amazon&lt;br /&gt;
**[http://www.amazon.co.uk/s/?url=search-alias%3Daps&amp;amp;field-keywords=%22house+sparrow%22 recherche sur &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*BBC News&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/uk/4835208.stm Fewer birds spotted in UK gardens]&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/england/london/4743250.stm Study to solve sparrow's decline riddle]&lt;br /&gt;
&lt;br /&gt;
*Encyclopaedia Britannica - all species, e.g.&lt;br /&gt;
**[http://concise.britannica.com/ebc/article-9379473/starling Starling]&lt;br /&gt;
&lt;br /&gt;
*Flickr&lt;br /&gt;
**[http://www.flickr.com/photos/tags/citheronia/ Tag for moth genera 'citheronia']&lt;br /&gt;
***[http://www.flickr.com/photos/30268343@N00/152101772/ Sample result from that search]&lt;br /&gt;
**[http://www.flickr.com/groups/birdguide/ Field Guide: Birds of the World] 23,073 tagged photos, as at 2006-10-21&lt;br /&gt;
&lt;br /&gt;
*CNN&lt;br /&gt;
**[http://archives.cnn.com/2001/NATURE/01/24/dying.eagles/ Disease threatens bald eagle population]&lt;br /&gt;
&lt;br /&gt;
*eBay&lt;br /&gt;
**[http://search.ebay.com/house-sparrow search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*The Guardian&lt;br /&gt;
**[http://environment.guardian.co.uk/conservation/story/0,,1878956,00.html The call of the wildlife]&lt;br /&gt;
**[http://education.guardian.co.uk/higher/news/story/0,,1665396,00.html Sparrow joins 'raped' duck in Dutch museum] (note improper capitalisation &amp;quot;''passer domesticus''&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*The Internet Movie Database&lt;br /&gt;
**[http://www.imdb.com/title/tt0029443/ Private Life of the Gannets]&lt;br /&gt;
***[http://www.imdb.com/title/tt0029443/trivia Private Life of the Gannets trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0133318/ The Trials of Life]&lt;br /&gt;
**[http://www.imdb.com/title/tt0227812/ Whooping Crane]&lt;br /&gt;
***[http://www.imdb.com/title/tt0227812/trivia Whooping Crane trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0301727/ Winged Migration]&lt;br /&gt;
&lt;br /&gt;
*London Zoo&lt;br /&gt;
**[http://www.zsl.org/london-zoo/animals/birds/tawny-frogmouth,99,AN.html Tawny frogmouth]&lt;br /&gt;
&lt;br /&gt;
*Microsoft&lt;br /&gt;
**[http://www.microsoft.com/games/zootycoon/zoo2/zoo2_ymi_animals1.asp Zoo Tycoon]&lt;br /&gt;
&lt;br /&gt;
*MSN-Encarta - all species, e.g.&lt;br /&gt;
**[http://encarta.msn.com/encnet/refpages/search.aspx?q=vulgaris&amp;amp;Submit2=Go Search for &amp;quot;vulgaris&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*MySpace&lt;br /&gt;
**[http://blog.myspace.com/index.cfm?fuseaction=blog.view&amp;amp;friendID=47134278&amp;amp;blogID=79591637]&lt;br /&gt;
&lt;br /&gt;
*Nature&lt;br /&gt;
**[http://www.nature.com/nature/focus/avianflu/index.html Avian flu web focus]&lt;br /&gt;
&lt;br /&gt;
*Nature Network, Boston&lt;br /&gt;
**[http://network.nature.com/boston/news/archive/2006/06/13/the-student-and-the-squid The student and the squid] '''N.B.''' site already supports rel-tag, hCard for user profiles and hCalendar for marking up events across the site.&lt;br /&gt;
&lt;br /&gt;
*NASA&lt;br /&gt;
**[http://history.nasa.gov/SP-401/ch3.htm SP-401 Skylab, Classroom in Space. Part II - Student Experiments] (&amp;quot;The common Cross spider (Araneus diadematus)&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*New York Times&lt;br /&gt;
**[http://query.nytimes.com/gst/fullpage.html?sec=travel&amp;amp;res=9D04E4DE1131F93BA25751C0A9669C8B63 Where the Eagles Fly: Seeing the National Symbol]&lt;br /&gt;
&lt;br /&gt;
*Sky News&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,15410-1249430,00.html Homo floresiensis]&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,30200-13546024,00.html Atlapetes latinuchus yariguierum]&lt;br /&gt;
**[http://news.sky.com/skynews/picture_gallery/picture_gallery/0,,15410-1244699,00.html Polypedates chlorophthalmus]&lt;br /&gt;
**[http://search.sky.com/search/skynews/results/1,,,00.html?CID=30000&amp;amp;QUERY=species&amp;amp;SITEREF=skynews&amp;amp;SECTION=&amp;amp;TYPE_REF=&amp;amp;radiodate=&amp;amp;dayFrom=dd&amp;amp;monthFrom=mm&amp;amp;yearFrom=yyyy&amp;amp;dayTo=dd&amp;amp;monthTo=mm&amp;amp;yearTo=yyyy&amp;amp;Submit.x=0&amp;amp;Submit.y=0 Sky News search for &amp;quot;species&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*Snopes (Urban Legends Reference Pages)&lt;br /&gt;
**[http://www.snopes.com/photos/animals/fishfly.asp Fish Fly]&lt;br /&gt;
&lt;br /&gt;
*United Kingdom Government&lt;br /&gt;
**[http://www.defra.gov.uk/wildlife-countryside/vertebrates/gen-licence.htm DEFRA: General licences under the Wildlife &amp;amp; Countryside Act 1981]&lt;br /&gt;
&lt;br /&gt;
*United Nations&lt;br /&gt;
** [http://www.oceansatlas.org/ Atlas of the Oceans] e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm Chilean nylon shrimp ''Heterocarpus reedi'']&lt;br /&gt;
&lt;br /&gt;
*United States of America Government &lt;br /&gt;
**ITIS, e.g. [http://www.itis.usda.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&amp;amp;search_value=179628 Passer Domesticus] - &amp;quot;authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://dev.w3.org/cvsweb/2000/10/swap/test/ferrell/biology.n3?rev=1.4 An Ontology of Biology]&lt;br /&gt;
**[http://esw.w3.org/topic/HCLSIG_BioRDF_Subgroup/Tasks/Reagents/Status_Reports/2006-05-04 BioRDF Sub-group Status Report, 4 May 2006]&lt;br /&gt;
&lt;br /&gt;
*Yahoo Groups&lt;br /&gt;
**[http://tech.groups.yahoo.com/group/passerdomesticus/ passerdomesticus] species as group name!&lt;br /&gt;
&lt;br /&gt;
*YouTube&lt;br /&gt;
**[http://www.youtube.com/results?search_query=starling&amp;amp;search=Search YouTube search for 'starling']]&lt;br /&gt;
&lt;br /&gt;
==Actualités==&lt;br /&gt;
In under two weeks, the BBC News website carried the following stories, all including the scientific names of species:&lt;br /&gt;
*[http://news.bbc.co.uk/1/shared/spl/hi/pop_ups/06/sci_nat_orchid_spectacular/html/1.stm BBC News: Stunning new orchids from Asia's rainforest] - 2006-10-16&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6045802.stm BBC News: Winter home find cheers twitchers] (winter home of the northern bald ibis found) - 2006-10-13&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6043648.stm BBC News: New mouse find is 'living fossil'] - 2006-10-12&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6035113.stm BBC News: Giant camel fossil found in Syria] - 2006-10-10&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5414410.stm BBC News: Sharks swim into political waters] - 2006-10-06&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5403570.stm BBC News: 'Monster' fossil find in Arctic] - 2006-10-05&lt;br /&gt;
&lt;br /&gt;
==Utilisation dans les blogs==&lt;br /&gt;
*[http://technorati.com/search/%22passer%20domesticus%22 Technorati search for &amp;quot;Passer domesticus&amp;quot;] (367 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22acer%20palmatum%22 Technorati search for &amp;quot;Acer palmatum&amp;quot;] (682 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22Homo%20sapiens%22 Technorati search for &amp;quot;Homo sapiens&amp;quot;] (40,932 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/birding Technorati search for &amp;quot;birding&amp;quot;] (26,472 found, as at 2006-09-25)&lt;br /&gt;
*[http://ramblingsofanaturalist.blogspot.com/ Ramblings of a Naturalist]&lt;br /&gt;
*[http://squaremetre1.blogspot.com/ The Square Metre]&lt;br /&gt;
*[http://windowboxwildlife.blogspot.com/index.html Windowbox Wildlife]&lt;br /&gt;
*[http://www.rxwildlife.org.uk/ RXWildlife]&lt;br /&gt;
*[http://newsbou.blogspot.com/ British Ornithologists' Union news]&lt;br /&gt;
*[http://fieldmarking.reger.com/ FieldMarking] - An experiment to see how people can collaborate to record wildlife observations in blogs.&lt;br /&gt;
&lt;br /&gt;
==Et pour finir...==&lt;br /&gt;
Gary Larson, in his book ''The Far Side Gallery'' (Warner Books, 1980, ISBN 0751502367) has a cartoon, showing two entomologists sitting down to eat dinner in a jungle. One says to the other &amp;quot;Hey! What's this ''Drosophila melanogaster'' doing in my soup?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Contributeurs==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proposition)&lt;br /&gt;
*Malcolm Storey (par e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Centre] (proposition)&lt;br /&gt;
*[[User:SteveMcBill|Steve McWilliam]], [http://www.rECOrd-LRC.co.uk/ rECOrd - The Biodiversity Information System for the Cheshire region] (proposition)&lt;br /&gt;
*[[User:PeNGo|Peter Halasz]], Wikipedia Admin.&lt;br /&gt;
* Traduction en cours par [[Christophe Ducamp]]&lt;br /&gt;
&lt;br /&gt;
==Voir aussi==&lt;br /&gt;
{{species-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species-examples-fr&amp;diff=34589</id>
		<title>species-examples-fr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species-examples-fr&amp;diff=34589"/>
		<updated>2008-11-17T23:56:21Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Arachnid */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Les exemples de noms scientifiques communs des choses vivantes, qui pourraient être balisées avec un microformat &amp;quot;[[species-fr|species]]&amp;quot; (ou équivalent). Notez l'usage de paires correspondantes d'exemples quand cela est possible.&lt;br /&gt;
&lt;br /&gt;
:'''Note : le nom origianl du microformat proposé, &amp;quot;species&amp;quot; va probablement changer, probablement vers &amp;quot;biota&amp;quot; ou &amp;quot;taxon&amp;quot;. Le précédent a ici été retenu, pour éviter d'avoir à faire beaucoup d'éditions répétitives et peut-être redondantes'''&lt;br /&gt;
&lt;br /&gt;
'''Si vous trouvez un lien qui ne fonctionne pas, remplacez-le svp avec une alternative pertinente, plutôt que de simplement l'effacer. Merci.'''&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Types d'éditeurs==&lt;br /&gt;
&lt;br /&gt;
There are, perhaps, three types of publisher of taxonomic information (with all the usual overlaps and exceptions one finds when generalising so much!):&lt;br /&gt;
&lt;br /&gt;
#Those which publish a full or partial hierarchy, like [http://names.ubio.org/browser/classifications.php?conceptID=2463046 UBIO].&lt;br /&gt;
#Those which publish a binominal, or a binominal with a qualifier, like a subspecies, variety, breed, hybridisation - but still referring to a single type of living thing, with no higher- level taxonomy. e.g [http://www.westmidlandbirdclub.com/records/lists.htm the West Midland Bird Club's county lists]&lt;br /&gt;
#These which publish common (or &amp;quot;vernacular&amp;quot;) names, but who would be interested in &amp;quot;aliasing&amp;quot; those to the scientific equivalent. e.g [http://www.westmidlandbirdclub.com/ladywalk/latest.htm the West Midland Bird Club's news from Ladywalk]&lt;br /&gt;
&lt;br /&gt;
Interestingly, some sites (Wikipedia, for example) have pages which fall into each of the three categories! &lt;br /&gt;
#[http://en.wikipedia.org/wiki/Bar-tailed_Godwit Bar tailed Godwit]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Genetics_of_humans Genetics of humans]&lt;br /&gt;
#[http://en.wikipedia.org/wiki/Ladywalk Ladywalk]&lt;br /&gt;
&lt;br /&gt;
[[User:AndyMabbett|AndyMabbett]] 12:05, 23 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Binomial==&lt;br /&gt;
&lt;br /&gt;
===Oiseaux===&lt;br /&gt;
&lt;br /&gt;
'''Black-tailed Godwit''' sur [http://www.westmidlandbirdclub.com/ladywalk/latest.htm West Ladywalk la page des dernières actualités du Midland Bird Club]&lt;br /&gt;
&lt;br /&gt;
'''''Limosa limosa''''' sur [http://www.westmidlandbirdclub.com/records/lists.htm les listes du West Midland Bird Club]&lt;br /&gt;
[http://www.westmidlandbirdclub.com/records/lists.htm West Midland Bird Club county lists]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Common Name&amp;lt;/th&amp;gt;&amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;Scientific Name&amp;lt;/th&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&amp;lt;th scope=&amp;quot;row&amp;quot; class=&amp;quot;bird&amp;quot;&amp;gt;Black-tailed Godwit&amp;lt;/th&amp;gt;&amp;lt;td class=&amp;quot;sci&amp;quot;&amp;gt;Limosa limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Eurasian Bittern'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/ladywalk/BITTE.htm Bitterns at LAdywalk]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;b class=&amp;quot;bird&amp;quot;&amp;gt;Eurasian Bitterns&amp;lt;/b&amp;gt;, (&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Botaurus stellaris&amp;lt;/i&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Mammifères===&lt;br /&gt;
'''Loup''' sur l'[http://www.wolf.org/wolves/index.asp International Wolf Center]&lt;br /&gt;
&lt;br /&gt;
'''''Canis lupus''''' sur [http://www.nps.gov/archive/bela/html/wolves.htm NPS.gov]&lt;br /&gt;
&lt;br /&gt;
===Poisson===&lt;br /&gt;
'''Northern pike''' sur [http://www.dnr.state.mn.us/fish/northern/index.html Minnesota Department of Natural Resources]&lt;br /&gt;
&lt;br /&gt;
'''''Esox lucius''''' sur [http://www.pikezander.co.uk/pike.htm Pike &amp;amp; Zander]&lt;br /&gt;
&lt;br /&gt;
===Insecte===&lt;br /&gt;
'''Papillon à Tête de Mort''' sur [http://funkman.org/animal/insect/deathheadmoth.html Animal Teachers]&lt;br /&gt;
&lt;br /&gt;
'''''Acherontia atropos''''' sur [http://ukmoths.org.uk/show.php?id=2540 UK Moths]&lt;br /&gt;
&lt;br /&gt;
===Arachnid===&lt;br /&gt;
'''Rose Trantula''' on [http://www.practical-pet-care.com/spider_question.php?ID=1.2006100416232172 Pet Care Forum]&lt;br /&gt;
&lt;br /&gt;
'''''Araneus angulatus''''' on [http://www.sxbrc.org.uk/news/friston-forest-recording-day Sussex Biodiversity Record Center] (this is a duplicate. [[User:BenWest|BenWest]] 21:56, 21 Oct 2006 (PDT))&lt;br /&gt;
&lt;br /&gt;
===Plante===&lt;br /&gt;
'''Bog Pimpernel''' sur [http://www.map-reading.co.uk/wildflowers/HTML%20files/f0219.htm les Images Wildflower Map Reading]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''''Anagallis tenella''''' on [http://www.bioimages.org.uk/HTML/T47624.HTM BioImages]&lt;br /&gt;
&lt;br /&gt;
'''''Persicaria campanulatum''''' on [http://www.record-lrc.co.uk/?Mod=Forum&amp;amp;Do=ViewThread&amp;amp;ForumID=6&amp;amp;ThreadID=75 rECOrd - The Biodiversity Information Centre for the Cheshire region]&lt;br /&gt;
&lt;br /&gt;
'''''Galeopsis tetrahit s.s.'''''&lt;br /&gt;
[http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm West Midland Bird Club]&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;i class=&amp;quot;sci&amp;quot;&amp;gt;Galeopsis tetrahit&amp;amp;nbsp;&lt;br /&gt;
&amp;lt;abbr lang=&amp;quot;la&amp;quot; title=&amp;quot;sensu stricto&amp;quot;&amp;gt;s.s.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/i&amp;gt;&lt;br /&gt;
 (&amp;lt;b class=&amp;quot;plant&amp;quot;&amp;gt;Common Hemp-nettle&amp;lt;/b&amp;gt;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Fungi===&lt;br /&gt;
&lt;br /&gt;
'''''Amanita muscaria''''' on [http://www.mykoweb.com/CAF/species/Amanita_muscaria.html California Fungi]&lt;br /&gt;
* as '''''Amanita muscaria'' (L. per Fr.) Hooker'''&lt;br /&gt;
* as '''''Amanita muscaria var. flavivolvata'''''&lt;br /&gt;
&lt;br /&gt;
'''Fly Agaric''' on [http://www.treesforlife.org.uk/forest/mythfolk/flyagaric.html Trees for Life]&lt;br /&gt;
&lt;br /&gt;
'''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz: Fries) Singer''' on [http://www.ilmyco.gen.chicago.il.us/Taxa/Rhodomacul540.html]&lt;br /&gt;
*also written as '''''Rhodocollybia maculata'' (Albertini &amp;amp; Schweinitz ex Fries) Singer''' &lt;br /&gt;
*(This is where a post-Linnean author is given special rights (because his descriptions were comparatively complete - i.e. recognisable) so his interpretation of earlier names is taken as the sense meant by the original author. Think these used to be &amp;quot;apud&amp;quot; and are now &amp;quot;ex&amp;quot; although a colon has also been used. There are only a few sanctioning authors, the main one being Elias Fries.(Fr.) )&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plus sur les binômes==&lt;br /&gt;
&lt;br /&gt;
===Autorité===&lt;br /&gt;
'''''Pica pica'' Linnaeus, (1758)''' sur [http://fr.wikipedia.org/wiki/Pie_bavarde Wikipedia]&lt;br /&gt;
:(par exemple appelée par Linnaeus en 1758)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Espèces non spécifiées===&lt;br /&gt;
'''''Podiceps sp.''''' on [http://www.birdlife.org/datazone/species/index.html?action=SpcHTMDetails.asp&amp;amp;sid=3644&amp;amp;m=0 Bird Life] &amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;i&amp;gt;Podiceps&amp;lt;/i&amp;gt; sp.&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Psyllid plant hopper''' [http://ramblingsofanaturalist.blogspot.com/2006/07/bay-sucker-gall-trioza-alacris.html on Ramblings of a Naturalist blog]&lt;br /&gt;
&lt;br /&gt;
===Sous-espèces===&lt;br /&gt;
&lt;br /&gt;
====Animal====&lt;br /&gt;
'''''Larus glaucoides kumlieni''' sur [http://www.birdguides.com/html/vidlib/species/Larus_glaucoides_kumlieni.htm BirdGuides]&lt;br /&gt;
&lt;br /&gt;
'''Kumlien's Gull''' sur [http://www.birdsireland.com/pages/rare_bird_news/2005/january_photos.html Birds Ireland]&lt;br /&gt;
&lt;br /&gt;
====Plante====&lt;br /&gt;
'''''Pisum sativum subsp. sativum''''' sur [http://www.plantnames.unimelb.edu.au/Sorting/Pisum.html] (a aussi d'autres exemples)&lt;br /&gt;
&lt;br /&gt;
===Cultivar (plante)===&lt;br /&gt;
'''''Chamaecyparis lawsoniana 'Aureomarginata'''''' sur [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
&lt;br /&gt;
'''''Chamaecyparis lawsoniana'' 'Golden Wonder'''' sur [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
&lt;br /&gt;
====Cultivar groupes (plantes)====&lt;br /&gt;
'''''Brassica oleracea'' Botrytis Group'''  sur [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Noms de marques commerciales (plantes)===&lt;br /&gt;
&lt;br /&gt;
'''''Rosa'' Peace''' on [http://en.wikipedia.org/wiki/Cultivar Wikipedia]&lt;br /&gt;
:(&amp;quot;Peace&amp;quot; est une désignation commercialisée ou &amp;quot;un nom de vente&amp;quot; pour le cultivar R. 'Madame A. Meilland' et devrait être imprimée par conséquent avec une police différente du reste du nom sans quelques guillemets de citations)&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Giant Single'''' sur [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds]&lt;br /&gt;
&lt;br /&gt;
'''Sunflower 'Infrared' F1''' sur [http://cgi.www.johnsons-seeds.com/cgi-bin/www.johnsons-seeds.com/detail/azlist/S-1 Johnsons Seeds] &lt;br /&gt;
:(Note &amp;quot;F1&amp;quot; croise la désignation)&lt;br /&gt;
&lt;br /&gt;
===Varieté (plante)===&lt;br /&gt;
'''''Pisum sativum var. macrocarpon''''' sur [http://davesgarden.com/pf/go/8/index.html le Jardin de Dave]&lt;br /&gt;
&lt;br /&gt;
====Sous-variété (plante)====&lt;br /&gt;
&lt;br /&gt;
'''''Betula ermani var. genuina subvar. brevidentata''''' sur [http://www.nccpg.com/gloucestershire/wilson1.html National Council for the Conservation of Plants and Gardens, Gloucestershire Group] (plus beaucoup d'autres exemples)&lt;br /&gt;
&lt;br /&gt;
===Forme (plante)===&lt;br /&gt;
&lt;br /&gt;
'''''Acanthocalycium spiniflorum f. klimpelianum''''' alias '''''Acanthocalycium spiniflorum forma klimpelianum''''' sur [http://en.wikipedia.org/wiki/Form_%28botany%29 Wikipedia]&lt;br /&gt;
&lt;br /&gt;
===Souche (bactérie)===&lt;br /&gt;
'''''Escherichia coli O157:H7''''' sur [http://www.cfsan.fda.gov/~mow/chap15.html FDA.gov]&lt;br /&gt;
&lt;br /&gt;
'''''E.Coli''''' sur [http://news.bbc.co.uk/1/hi/england/southern_counties/5346842.stm BBC news]&lt;br /&gt;
&lt;br /&gt;
===Sens (plante)===&lt;br /&gt;
'''''Ranunculus aquatilis s.l.''''' and '''''R. aquatilis s.s'''''; on [http://www.westmidlandbirdclub.com/blithfield/plants20060815.htm Blithfield Reservoir: Survey of Flowering Plants...] (see also footnotes on that page)&lt;br /&gt;
&lt;br /&gt;
===Croisement (plante)===&lt;br /&gt;
'''''Digitalis x mertonensis''''' sur [http://www.hortax.org.uk/gardenplantsnames.html Hortax]&lt;br /&gt;
:The hybrid name for all plants derived from the cross between '''D. purpurea''' and '''D. grandiflora'''. The &amp;quot;x&amp;quot; indicates the hybrid status. &lt;br /&gt;
&lt;br /&gt;
'''''× Fatshedera lizei''''' on [http://oregonstate.edu/dept/ldplants/sci-names.htm Scientific Plant Names, Oregon State Univ., Landscape Plants]&lt;br /&gt;
&lt;br /&gt;
===Souche (bactéries)===&lt;br /&gt;
'''''Escherichia coli O157:H7''''' on [http://www.cfsan.fda.gov/~mow/chap15.html FDA.gov]&lt;br /&gt;
&lt;br /&gt;
'''''E.Coli''''' on [http://news.bbc.co.uk/1/hi/england/southern_counties/5346842.stm BBC news]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Synonyms===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Tarpan The Tarpan], '''''Equus ferus ferus''''':&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The Tarpan was first described by Johann Friedrich Gmelin in 1774; he had seen the animals in 1769 in the region of Bobrovsk, near Voronezh. In 1784 Pieter Boddaert named the species '''''Equus ferus''''', referring to Gmelin's description. Unaware of Boddaert's name, Otto Antonius published the name '''''Equus gmelini''''' in 1912, again referring to Gmelin's description. Since Antonius' name refers to the same description as Boddaert's it is a junior objective synonym.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
on http://www.westmidlandbirdclub.com/biblio/bb/71-338.htm:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;some authors still refer to Scandinavian Herring Gulls as '''''L. a. omissus'''''; others regard '''''omissus''''' as no longer valid (a synonym of '''''argentatus''''')&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Devario_chrysotaeniatus:&lt;br /&gt;
&lt;br /&gt;
:'''''Devario chrysotaeniatus''''' [...] former Names and Synonyms&lt;br /&gt;
::* '''''Danio chrysotaeniatus'''''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Tetracanthus:&lt;br /&gt;
&lt;br /&gt;
:'''''Echinocactus tetracanthus''''' synonym of '''''Parodia erinacea''''' - cactus&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://en.wikipedia.org/wiki/Jostia_teaguei (using a &amp;quot;taxobox&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
:Binomial name&lt;br /&gt;
:'''''Jostia teaguei'''''&lt;br /&gt;
:(Luer) Luer&lt;br /&gt;
:Synonyms&lt;br /&gt;
:'''''Masdevallia teaguei''''' Luer, 1978&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On http://www.coleopterist.org.uk/haliplidae-list.htm &lt;br /&gt;
&lt;br /&gt;
:'''HALIPLUS''' Latreille, 1802&lt;br /&gt;
:Subgenus HALIPLUS Latreille, 1802&lt;br /&gt;
:''confinis'' Stephens, 1828&lt;br /&gt;
::''pallens'' Fowler, 1887&lt;br /&gt;
::''halberti'' Bullock, 1928&lt;br /&gt;
&lt;br /&gt;
i.e. ''Haliplus pallens'' and  ''H. halberti'' are synonyms of ''H. confinis''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See also [http://en.wikipedia.org/wiki/Special:Search?search=species+synonym&amp;amp;fulltext=Search Wkipedia search for &amp;quot;species synonym&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
==Divers==&lt;br /&gt;
===Noms supplantés===&lt;br /&gt;
'''''Tringa bartramia''''' supplanté par '''''Bartramia longicauda''''' sur [http://www.westmidlandbirdclub.com/firsts/UPLSA.htm West Midland Bird Club's Upland Sandpiper article]&lt;br /&gt;
&lt;br /&gt;
===GUID===&lt;br /&gt;
'''NBN Taxon Key''' for European Otter, ''Lutra lutra'', on [http://nbn.nhm.ac.uk/nhm/bin/nbntaxa.dll/taxon_details?taxon_key=NBNSYS0000005133 NBN Species Dictionary]: '''NBNSYS0000005133''' &lt;br /&gt;
&lt;br /&gt;
'''LSID ([http://lsid.sourceforge.net/#whatislsid Life Science Indicator])''' for ''Popillia japonica'' on [http://names.ubio.org/browser/details2.php?names=on&amp;amp;authors=on&amp;amp;sci=on&amp;amp;vern=on&amp;amp;conceptID=&amp;amp;expand=&amp;amp;namebankID=3377001 uBio]: '''urn:lsid:ubio.org:namebank:3377001'''&lt;br /&gt;
&lt;br /&gt;
===Wikipedia===&lt;br /&gt;
'''Black-tailed Godwit''' on [http://en.wikipedia.org/wiki/Black-tailed_Godwit Wikipedia: Black-tailed Godwit]&lt;br /&gt;
&lt;br /&gt;
Wikipedia uses several sets of markup, e.g. (in-line styles and links, plus some other markup, removed, for clarity):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;p&amp;gt;The &amp;lt;b&amp;gt;Black-tailed Godwit&amp;lt;/b&amp;gt;, &amp;lt;i&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Lien====&lt;br /&gt;
Wikipedia uses the standard convention of having species italicised. Internal links to species may be to the common name or scientific name depending on which is used as the article's title (usually common for animals, scientific for plants, although there are exceptions). Links to scientific names work regardless:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;[[Black-tailed Godwit]]&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Link to common name, but displaying scientific name:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;''[[Black-tailed Godwit|Limosa limosa]]''&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These types of links are not used in the Black-tailed Godwit article itself, but in others related to it. e.g. [http://en.wikipedia.org/wiki/British_avifauna British avifauna]&lt;br /&gt;
&lt;br /&gt;
====Taxoboîte====&lt;br /&gt;
&lt;br /&gt;
Wiki markup for the taxobox (taxonomy infobox) on the English Wikipedia, as used on the Black-tailed Godwit article, with irrelevant fields removed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{Taxobox&lt;br /&gt;
| name = Black-tailed Godwit&lt;br /&gt;
| regnum = [[Animal]]ia&lt;br /&gt;
| phylum = [[Chordate|Chordata]]&lt;br /&gt;
| classis = [[bird|Aves]]&lt;br /&gt;
| ordo = [[Charadriiformes]]&lt;br /&gt;
| familia = [[Scolopacidae]]&lt;br /&gt;
| genus = ''[[Godwit|Limosa]]''&lt;br /&gt;
| species = '''''L. limosa'''''&lt;br /&gt;
| binomial = ''Limosa limosa''&lt;br /&gt;
| binomial_authority = ([[Carolus Linnaeus|Linnaeus]], 1758)&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Above is vaguely displayed in an HTML table as (with formatting and links removed):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Kingdom:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Animalia&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Phylum:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Chordata&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Class:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Aves&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Order:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Charadriiformes&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Family:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Scolopacidae&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Genus:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Species:&amp;lt;/td&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;L. limosa&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;th&amp;gt;binominal name&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;Limosa limosa&amp;lt;/i&amp;gt;&lt;br /&gt;
	&amp;lt;td&amp;gt;(Linnaeus, 1758)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also allows for other levels of taxonomy (e.g. genus or subspecies), and synonyms.&lt;br /&gt;
&lt;br /&gt;
==Evidence quantitative==&lt;br /&gt;
&lt;br /&gt;
For evidence of quantitative, rather than qualitative, use of species' and other taxonomic names, see [[species-examples-quantitative]]&lt;br /&gt;
&lt;br /&gt;
==Sites web notables==&lt;br /&gt;
Ces sites web de haut niveau utilisent des noms d'espèces&lt;br /&gt;
&lt;br /&gt;
*Amazon&lt;br /&gt;
**[http://www.amazon.co.uk/s/?url=search-alias%3Daps&amp;amp;field-keywords=%22house+sparrow%22 recherche sur &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*BBC News&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/uk/4835208.stm Fewer birds spotted in UK gardens]&lt;br /&gt;
**[http://news.bbc.co.uk/1/hi/england/london/4743250.stm Study to solve sparrow's decline riddle]&lt;br /&gt;
&lt;br /&gt;
*Encyclopaedia Britannica - all species, e.g.&lt;br /&gt;
**[http://concise.britannica.com/ebc/article-9379473/starling Starling]&lt;br /&gt;
&lt;br /&gt;
*Flickr&lt;br /&gt;
**[http://www.flickr.com/photos/tags/citheronia/ Tag for moth genera 'citheronia']&lt;br /&gt;
***[http://www.flickr.com/photos/30268343@N00/152101772/ Sample result from that search]&lt;br /&gt;
**[http://www.flickr.com/groups/birdguide/ Field Guide: Birds of the World] 23,073 tagged photos, as at 2006-10-21&lt;br /&gt;
&lt;br /&gt;
*CNN&lt;br /&gt;
**[http://archives.cnn.com/2001/NATURE/01/24/dying.eagles/ Disease threatens bald eagle population]&lt;br /&gt;
&lt;br /&gt;
*eBay&lt;br /&gt;
**[http://search.ebay.com/house-sparrow search for &amp;quot;House Sparrow&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*The Guardian&lt;br /&gt;
**[http://environment.guardian.co.uk/conservation/story/0,,1878956,00.html The call of the wildlife]&lt;br /&gt;
**[http://education.guardian.co.uk/higher/news/story/0,,1665396,00.html Sparrow joins 'raped' duck in Dutch museum] (note improper capitalisation &amp;quot;''passer domesticus''&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*The Internet Movie Database&lt;br /&gt;
**[http://www.imdb.com/title/tt0029443/ Private Life of the Gannets]&lt;br /&gt;
***[http://www.imdb.com/title/tt0029443/trivia Private Life of the Gannets trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0133318/ The Trials of Life]&lt;br /&gt;
**[http://www.imdb.com/title/tt0227812/ Whooping Crane]&lt;br /&gt;
***[http://www.imdb.com/title/tt0227812/trivia Whooping Crane trivia page with binominal]&lt;br /&gt;
**[http://www.imdb.com/title/tt0301727/ Winged Migration]&lt;br /&gt;
&lt;br /&gt;
*London Zoo&lt;br /&gt;
**[http://www.zsl.org/london-zoo/animals/birds/tawny-frogmouth,99,AN.html Tawny frogmouth]&lt;br /&gt;
&lt;br /&gt;
*Microsoft&lt;br /&gt;
**[http://www.microsoft.com/games/zootycoon/zoo2/zoo2_ymi_animals1.asp Zoo Tycoon]&lt;br /&gt;
&lt;br /&gt;
*MSN-Encarta - all species, e.g.&lt;br /&gt;
**[http://encarta.msn.com/encnet/refpages/search.aspx?q=vulgaris&amp;amp;Submit2=Go Search for &amp;quot;vulgaris&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*MySpace&lt;br /&gt;
**[http://blog.myspace.com/index.cfm?fuseaction=blog.view&amp;amp;friendID=47134278&amp;amp;blogID=79591637]&lt;br /&gt;
&lt;br /&gt;
*Nature&lt;br /&gt;
**[http://www.nature.com/nature/focus/avianflu/index.html Avian flu web focus]&lt;br /&gt;
&lt;br /&gt;
*Nature Network, Boston&lt;br /&gt;
**[http://network.nature.com/boston/news/archive/2006/06/13/the-student-and-the-squid The student and the squid] '''N.B.''' site already supports rel-tag, hCard for user profiles and hCalendar for marking up events across the site.&lt;br /&gt;
&lt;br /&gt;
*NASA&lt;br /&gt;
**[http://history.nasa.gov/SP-401/ch3.htm SP-401 Skylab, Classroom in Space. Part II - Student Experiments] (&amp;quot;The common Cross spider (Araneus diadematus)&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
*New York Times&lt;br /&gt;
**[http://query.nytimes.com/gst/fullpage.html?sec=travel&amp;amp;res=9D04E4DE1131F93BA25751C0A9669C8B63 Where the Eagles Fly: Seeing the National Symbol]&lt;br /&gt;
&lt;br /&gt;
*Sky News&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,15410-1249430,00.html Homo floresiensis]&lt;br /&gt;
**[http://news.sky.com/skynews/article/0,,30200-13546024,00.html Atlapetes latinuchus yariguierum]&lt;br /&gt;
**[http://news.sky.com/skynews/picture_gallery/picture_gallery/0,,15410-1244699,00.html Polypedates chlorophthalmus]&lt;br /&gt;
**[http://search.sky.com/search/skynews/results/1,,,00.html?CID=30000&amp;amp;QUERY=species&amp;amp;SITEREF=skynews&amp;amp;SECTION=&amp;amp;TYPE_REF=&amp;amp;radiodate=&amp;amp;dayFrom=dd&amp;amp;monthFrom=mm&amp;amp;yearFrom=yyyy&amp;amp;dayTo=dd&amp;amp;monthTo=mm&amp;amp;yearTo=yyyy&amp;amp;Submit.x=0&amp;amp;Submit.y=0 Sky News search for &amp;quot;species&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
*Snopes (Urban Legends Reference Pages)&lt;br /&gt;
**[http://www.snopes.com/photos/animals/fishfly.asp Fish Fly]&lt;br /&gt;
&lt;br /&gt;
*United Kingdom Government&lt;br /&gt;
**[http://www.defra.gov.uk/wildlife-countryside/vertebrates/gen-licence.htm DEFRA: General licences under the Wildlife &amp;amp; Countryside Act 1981]&lt;br /&gt;
&lt;br /&gt;
*United Nations&lt;br /&gt;
** [http://www.oceansatlas.org/ Atlas of the Oceans] e.g. [http://www.oceansatlas.org/world_fisheries_and_aquaculture/html/resources/capture/mainspec/species/sp2605.htm Chilean nylon shrimp ''Heterocarpus reedi'']&lt;br /&gt;
&lt;br /&gt;
*United States of America Government &lt;br /&gt;
**ITIS, e.g. [http://www.itis.usda.gov/servlet/SingleRpt/SingleRpt?search_topic=TSN&amp;amp;search_value=179628 Passer Domesticus] - &amp;quot;authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*W3C&lt;br /&gt;
**[http://dev.w3.org/cvsweb/2000/10/swap/test/ferrell/biology.n3?rev=1.4 An Ontology of Biology]&lt;br /&gt;
**[http://esw.w3.org/topic/HCLSIG_BioRDF_Subgroup/Tasks/Reagents/Status_Reports/2006-05-04 BioRDF Sub-group Status Report, 4 May 2006]&lt;br /&gt;
&lt;br /&gt;
*Yahoo Groups&lt;br /&gt;
**[http://tech.groups.yahoo.com/group/passerdomesticus/ passerdomesticus] species as group name!&lt;br /&gt;
&lt;br /&gt;
*YouTube&lt;br /&gt;
**[http://www.youtube.com/results?search_query=starling&amp;amp;search=Search YouTube search for 'starling']]&lt;br /&gt;
&lt;br /&gt;
==Actualités==&lt;br /&gt;
In under two weeks, the BBC News website carried the following stories, all including the scientific names of species:&lt;br /&gt;
*[http://news.bbc.co.uk/1/shared/spl/hi/pop_ups/06/sci_nat_orchid_spectacular/html/1.stm BBC News: Stunning new orchids from Asia's rainforest] - 2006-10-16&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6045802.stm BBC News: Winter home find cheers twitchers] (winter home of the northern bald ibis found) - 2006-10-13&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6043648.stm BBC News: New mouse find is 'living fossil'] - 2006-10-12&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/6035113.stm BBC News: Giant camel fossil found in Syria] - 2006-10-10&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5414410.stm BBC News: Sharks swim into political waters] - 2006-10-06&lt;br /&gt;
*[http://news.bbc.co.uk/1/hi/sci/tech/5403570.stm BBC News: 'Monster' fossil find in Arctic] - 2006-10-05&lt;br /&gt;
&lt;br /&gt;
==Utilisation dans les blogs==&lt;br /&gt;
*[http://technorati.com/search/%22passer%20domesticus%22 Technorati search for &amp;quot;Passer domesticus&amp;quot;] (367 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22acer%20palmatum%22 Technorati search for &amp;quot;Acer palmatum&amp;quot;] (682 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/%22Homo%20sapiens%22 Technorati search for &amp;quot;Homo sapiens&amp;quot;] (40,932 found, as at 2006-09-25)&lt;br /&gt;
*[http://technorati.com/search/birding Technorati search for &amp;quot;birding&amp;quot;] (26,472 found, as at 2006-09-25)&lt;br /&gt;
*[http://ramblingsofanaturalist.blogspot.com/ Ramblings of a Naturalist]&lt;br /&gt;
*[http://squaremetre1.blogspot.com/ The Square Metre]&lt;br /&gt;
*[http://windowboxwildlife.blogspot.com/index.html Windowbox Wildlife]&lt;br /&gt;
*[http://www.rxwildlife.org.uk/ RXWildlife]&lt;br /&gt;
*[http://newsbou.blogspot.com/ British Ornithologists' Union news]&lt;br /&gt;
*[http://fieldmarking.reger.com/ FieldMarking] - An experiment to see how people can collaborate to record wildlife observations in blogs.&lt;br /&gt;
&lt;br /&gt;
==Et pour finir...==&lt;br /&gt;
Gary Larson, in his book ''The Far Side Gallery'' (Warner Books, 1980, ISBN 0751502367) has a cartoon, showing two entomologists sitting down to eat dinner in a jungle. One says to the other &amp;quot;Hey! What's this ''Drosophila melanogaster'' doing in my soup?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Contributeurs==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proposition)&lt;br /&gt;
*Malcolm Storey (par e-mail)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Centre] (proposition)&lt;br /&gt;
*[[User:SteveMcBill|Steve McWilliam]], [http://www.rECOrd-LRC.co.uk/ rECOrd - The Biodiversity Information System for the Cheshire region] (proposition)&lt;br /&gt;
*[[User:PeNGo|Peter Halasz]], Wikipedia Admin.&lt;br /&gt;
* Traduction en cours par [[Christophe Ducamp]]&lt;br /&gt;
&lt;br /&gt;
==Voir aussi==&lt;br /&gt;
{{species-fr}}&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=species&amp;diff=34588</id>
		<title>species</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=species&amp;diff=34588"/>
		<updated>2008-11-17T23:56:17Z</updated>

		<summary type="html">&lt;p&gt;AmeerDawood: /* Contributors &amp;amp; Supporters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Species=&lt;br /&gt;
&lt;br /&gt;
:'''For the latest ideas, and to make comments, please see [[species-brainstorming]].'''&lt;br /&gt;
&lt;br /&gt;
:'''Note: the original name of the proposed microformat, &amp;quot;species&amp;quot;, is likely to change, probably to &amp;quot;biota&amp;quot; or &amp;quot;taxon&amp;quot;. The former has been retained here, to avoid having to make many repetitive and perhaps redundant edits'''&lt;br /&gt;
&lt;br /&gt;
:'''The [http://www.kaply.com/weblog/2007/02/16/operator-07a-is-available/ beta of Operator] (0.7a) detects ''Species''.  [http://www.westmidlandbirdclub.com/records/lists-2004.htm A test page is available]. Work on both continues!'''&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
People use the vernacular AND taxonomic names of species in everyday speech and writing - just read or watch any populist gardening magazine or television programme.&lt;br /&gt;
&lt;br /&gt;
*Consider this list: &amp;quot;'''Blackbird'''&amp;quot;, &amp;quot;'''poodle'''&amp;quot;, &amp;quot;'''T Rex'''&amp;quot;, &amp;quot;'''potato'''&amp;quot;, &amp;quot;'''French Marigold'''&amp;quot;, &amp;quot;'''Wisteria'''&amp;quot;, &amp;quot;'''E. Coli'''&amp;quot;, &amp;quot;'''HIV'''&amp;quot;, &amp;quot;'''Rubella'''&amp;quot; and &amp;quot;'''human being'''&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;'''T Rex'''&amp;quot; is &amp;quot;''Tyrannosaurus rex''&amp;quot;; &amp;quot;'''E. Coli'''&amp;quot; is &amp;quot;''Escherichia coli''&amp;quot;; &amp;quot;'''HIV'''&amp;quot; is &amp;quot;''Human immunodeficiency virus''&amp;quot; and &amp;quot;'''Rubella'''&amp;quot; is &amp;quot;''Rubella virus''&amp;quot;. All are the taxonomic (or scientific) names of unique species.&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;'''''Wisteria'''''&amp;quot; is a taxonomic genus.&lt;br /&gt;
&lt;br /&gt;
:&amp;quot;'''Blackbird'''&amp;quot;; &amp;quot;'''poodle'''&amp;quot;; &amp;quot;'''potato'''&amp;quot;; &amp;quot;'''French Marigold'''&amp;quot; and &amp;quot;'''human being'''&amp;quot; (arguments about Neanderthals not withstanding) are vernacular (or common) names, but still refer to individual species.&lt;br /&gt;
&lt;br /&gt;
*The scientific naming of organisms is a part of [http://www.calacademy.org/research/informatics/sblum/pub/biodiv_informatics.html biodiversity informatics] - &amp;quot;the application of information technology to the domain of biodiversity&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
*The proposal aligns with [http://www.ted.com/tedprize/2007/wilson.cfm E.O Wilson's wish]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;...that we will work together to help create the key tool that we need to inspire preservation of Earth's biodiversity: the Encyclopedia of Life [...] an encyclopedia that lives on the Internet, with an ever-evolving page for every species [and which] &lt;br /&gt;
does not duplicate existing efforts, but instead incorporates them through linking [with a] search technology that can aggregate existing biological information and make it easily accessible.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*As long ago as April 1998 on [http://www.w3.org/MarkUp/future/papers/rothenburg-19980412.html Robert Rothenburg's paper on Dictionaries] (''Note 4'') said:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;What is missing [from HTML] is an element for marking up &amp;quot;proper names&amp;quot; (names of people, geographic locations, institutions, or even '''scientific names such as genus/species''').&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:It's interesting that microformats have given us the first three missing items - and we're now debating the fourth!&lt;br /&gt;
&lt;br /&gt;
==Proposal==&lt;br /&gt;
Imagine viewing a web page with a reference to a species - and being able to use an add-on to you browser to be taken directly to information about that species, on, say, Wikipedia, or Wikispecies, or Google Images, or another site, such as in an academic database, of your choosing. &lt;br /&gt;
&lt;br /&gt;
Your software would automatically know to search site A if the scientific name referred to a moth, site B for a bird, and site C for a plant - and you could set your preferences as to which sites those were to be, and in which order two or more were to be searched (e.g. for moths, try [http://ukmoths.org.uk/ UK Moths] first, if not found try [http://www.nhm.ac.uk/research-curation/projects/lepindex/index.html The Global Lepidoptera Names Index]).&lt;br /&gt;
&lt;br /&gt;
Or supposing someone writes a long, chronologically-ordered web page about all the birds, insects, mammals and plants they saw on a wildlife safari, with lots of prose description about the paces where they saw them and the people they were with, but you want to extract a list of species, sorted into alphabetical order within taxonomic class (birds first, then insects then...) or in taxonomic order.&lt;br /&gt;
&lt;br /&gt;
Those are just two of the things a &amp;quot;species&amp;quot; microformat might do for you.&lt;br /&gt;
&lt;br /&gt;
Your software, or  a search engine, would be able to differentiate between a pages discussing HMS Beagle, the ship, and a Beagle dog; or birds that fly as opposed to a slang term for women.&lt;br /&gt;
&lt;br /&gt;
Another benefit would be that user-agents could be instructed to treat text marked up in this way as not being in the base language of the document or element in which they occur - pronunciation should be as for Latin, they should not be translated (e.g. where a component word happens also to be a valid word in that language, such as the genus '''''Colon''''', '''''Circus''' cyaneus'', ''Hesperia '''comma''''', or anything with ''major'' or ''minor'' on an English-language page) and should not be spell-checked, or be spell-checked with a specialised dictionary (a need identified in this [http://www.alvestrand.no/pipermail/ietf-languages/2003-February/000590.html 2003 ietf-languages discussion of language values for taxonomic names]).&lt;br /&gt;
&lt;br /&gt;
A further benefit the species microformat would bring is in the enriching and enhancement of species checklists, which are commonly found on the web. Broadly speaking, a species checklist is a list of taxa, usually for a particular group of similar organisms such as birds or vascular plants, found within a particular geographical region (a country, [http://www.westmidlandbirdclub.com/records/lists.htm a region], a county, or a specific site, large or small). A typical example of a species checklist is the [http://www.coleopterist.org.uk/checklist.htm Checklist of Beetles of the British Isles] which, as the name suggests, lists beetles known to be found within the British Isles. A [http://www.google.com/search?q=species+checklist Google Search for &amp;quot;species checklist&amp;quot;] will reveal many other such examples. Species checklists are presented in a broadly consistent manner but are usually unable to be parsed and utilised by computers due to the lack of a common standard for marking them up in HTML. The species microformat would provide that common standard. A fully microformat enabled checklist would be parsable by computers and thus would provide developers with a means by which to aggregate and otherwise make use of this invaluable content beyond the current, rather limited, use of simple online viewing. &lt;br /&gt;
&lt;br /&gt;
A specific example of checklist use might be in enabling [http://www.aditsite.co.uk/html/choosing_recording_software.html biological recording software] to parse and aggregate checklists in order to include them in their own species dictionaries. Typically there are waits of many months or even years while humans collate checklist changes manually for inclusion in recording software; automated checklist parsing and aggregation would greatly expedite and increase the efficiencies of this process.&lt;br /&gt;
&lt;br /&gt;
==Existing taxonomies==&lt;br /&gt;
The proposal respects all existing biological taxonomies, and is not intended to change or supplant any of them - it is intended merely to provide webmasters (from personal hobby sites to major academic databases; from news outlets to retail organisations) with a method of either:&lt;br /&gt;
&lt;br /&gt;
# marking-up a taxonomical name (or taxon-common name pair) in such a way that its components can be recognised by computers '''or'''&lt;br /&gt;
# marking up a common name, so as to associate with it a taxonomical name, in such a way that the latter's components can be recognised by computers.&lt;br /&gt;
&lt;br /&gt;
==Embedding within other microformats==&lt;br /&gt;
The proposed [[plant]] microformat (with care regime, supplier, etc.), [[hlisting]], [[recipe]] or [[hReview]] (and possibly others) could contain a scientific name microformat, in the same way that an [[hCalendar]] can contain an [[hCard]].&lt;br /&gt;
&lt;br /&gt;
See also: [[species-brainstorming#Future development]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
====General taxonomy====&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Scientific_classification Wikipedia: Scientific classification]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Binomial_nomenclature Wikipedia: Binomial nomenclature]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Binomen Wikipedia: Binomen]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Trinomial_nomenclature Wikipedia: Trinomial nomenclature]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Trinomen Wikipedia: Trinomen]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Taxon Wikipedia: Taxon]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Rank_%28zoology%29 Wikipedia: Rank (zoology)]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Rank_%28botany%29 Wikipedia: Rank (botany)]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Cultivar Wikipedia: Cultivars]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Variety_%28biology%29 Wikipedia: Varieties]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Subvariety Wikipedia: Sub-varieties]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Form_%28botany%29 Wikipedia: forms]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Synonym_%28taxonomy%29 Wikipedia: Synonyms]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/Wikipedia:How_to_read_a_taxobox How to read a taxobox]&lt;br /&gt;
&lt;br /&gt;
====Taxonomic codes====&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Nomenclature_Codes Wikipedia: Nomenclature Codes]&lt;br /&gt;
* [http://www.iczn.org/ http://www.iczn.org/ International Commission on Zoological Nomenclature] (ICZN)&lt;br /&gt;
** [http://en.wikipedia.org/wiki/International_Code_of_Zoological_Nomenclature Wikipedia: International Code of Zoological Nomenclature]&lt;br /&gt;
**[http://en.wikipedia.org/wiki/International_Commission_on_Zoological_Nomenclature Wikipedia: International Commission on Zoological Nomenclature]&lt;br /&gt;
* [http://ibot.sav.sk/icbn/main.htm International Code of Botanical Nomenclature] (ICBN)&lt;br /&gt;
** [http://en.wikipedia.org/wiki/International_Code_of_Botanical_Nomenclature Wikipedia: International Code of Botanical Nomenclature]&lt;br /&gt;
* [http://www.the-icsp.org/ International Committee on Systematics of Prokaryotes] (ICSP)&lt;br /&gt;
**[http://en.wikipedia.org/wiki/International_Code_of_Nomenclature_of_Bacteria Wikipedia: International Code of Nomenclature of Bacteria] (ICNB)&lt;br /&gt;
* [http://www.ictvonline.org/ International Committee on Taxonomy of Viruses] &lt;br /&gt;
**[http://en.wikipedia.org/wiki/International_Committee_on_Taxonomy_of_Viruses Wikipedia: International Committee on Taxonomy of Viruses]&lt;br /&gt;
&lt;br /&gt;
====Other references====&lt;br /&gt;
&lt;br /&gt;
*[http://www.rhs.org.uk/rhsplantfinder/plantnaming.asp RHS Plant Finder: The naming of plants] &lt;br /&gt;
*[http://www.ishs.org/sci/icracpco.htm International Code of Nomenclature for Cultivated Plants]&lt;br /&gt;
*[http://www.tdwg.org/index.html Taxonomic Databases Working Group]&lt;br /&gt;
*[http://www.hortax.org.uk/ Hortax] - The Names of Garden Plants&lt;br /&gt;
*[http://www.bgbm.fu-berlin.de/iapt/nomenclature/code/SaintLouis/0000St.Luistitle.htm www.bgbm.fu-berlin.de/iapt/nomenclature/code/SaintLouis/0000St.Luistitle.htm]&lt;br /&gt;
*[http://species.wikimedia.org/wiki/Main_Page WikiSpecies]&lt;br /&gt;
*[http://en.wiktionary.org/wiki/taxonomy Wiktionary: Taxonomy]&lt;br /&gt;
*[http://jbi.nhm.ku.edu/index.php/jbi/article/view/25 Biodiversity Informatics: Taxonomic names, metadata, and the Semantic Web]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Virus_classification  Wikipedia: Virus classification]&lt;br /&gt;
&lt;br /&gt;
==Contributors &amp;amp; Supporters==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proponent)&lt;br /&gt;
*[[User:RogerHyam|Roger Hyam]] (interested party?)&lt;br /&gt;
*[[User:SXBRC|Charles Roper]], [http://www.sxbrc.org.uk/ Sussex Biodiversity Record Center] (proponent)&lt;br /&gt;
*[[User:SteveMcBill|Steve McWilliam]], [http://www.rECOrd-LRC.co.uk/ rECOrd - The Biodiversity Information System for the Cheshire region] (supporter)&lt;br /&gt;
*[[User:KierenPitts|Kieren Pitts]], [http://www.ilrt.bris.ac.uk/ ILRT - Institute for Learning and Research Technology] and the [http://www.amentsoc.org/ Amateur Entomologists' Society] (supporter)&lt;br /&gt;
*[[User:CyndyParr|Cyndy Parr]], [http://spire.umbc.edu Spire project] (interested party)&lt;br /&gt;
*[[User:AnimalDiversity|Animal Diversity Web]], [http://animaldiversity.org] (interested party)&lt;br /&gt;
*[[User:Christoph|Christoph Champ]], [http://www.christophchamp.com/] (supporter with a background in biochemistry, biophysics, and bioinformatics)&lt;br /&gt;
*[[User:David Stang|David Stang]], [http://ZipcodeZoo.com] (interested party)&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Here's some work-in-progress:&lt;br /&gt;
{{species}}&lt;br /&gt;
*[https://addons.mozilla.org/firefox/169/ Biobar] - A customisable Firefox Extension providing a toolbar and content menu options for browsing biological data and databases, which shows what a user-agent could do, with data extracted from a species microformat&lt;br /&gt;
&lt;br /&gt;
==Examples in the wild==&lt;br /&gt;
&lt;br /&gt;
* An example use of the species microformat on the [http://www.amentsoc.org/insects/fact-files/orders/hymenoptera-parasitica.html Amateur Entomologists' Society Web site].&lt;br /&gt;
*Social network for gardeners marking up plant names with microformats [http://www.growsonyou.com/plant/Cosmos_bipinnatus Grows on You].&lt;br /&gt;
*A &amp;quot;proof-of-concept&amp;quot; example, with binomial and sub-family, but no other ranks, has been added to the Wikispecies entry for [http://species.wikimedia.org/wiki/Glaucidium_sanchezi Glaucidium sanchezi]; and to its subfamily, [http://species.wikimedia.org/wiki/Surniinae Surniinae]. See [http://species.wikimedia.org/wiki/Wikispecies:Microformat Wikispecies:Microformat] for related discussion.&lt;br /&gt;
*The current &amp;quot;[[species-brainstorming#Straw man proposal|straw man]]&amp;quot; for the Species microformat has been deployed, in part, on Wikipedia. '''''All''''' Wikipedia articles with &amp;quot;[http://en.wikipedia.org/wiki/Template:Taxobox taxoboxes]&amp;quot; (information panels on living things; and there are '''37,140''' as at the time of posting) now emit a species microformat. For example [http://en.wikipedia.org/wiki/Southern_Tamandua Southern_Tamandua] (a species) and [http://en.wikipedia.org/wiki/Anteater Anteater] (a family of species). &lt;br /&gt;
* A [http://www.westmidlandbirdclub.com/records/lists-2004.htm West Midland Bird Club test page] is available.&lt;br /&gt;
&lt;br /&gt;
==Implementations==&lt;br /&gt;
*[https://addons.mozilla.org/firefox/4106/ Operator] has a user-script for parsing ''Species''. &lt;br /&gt;
*[http://buzzword.org.uk/cognition/ Cognition] has an [http://buzzword.org.uk/cognition/uf-plus.html#species experimental implementation].&lt;br /&gt;
&lt;br /&gt;
===Implementations (pending)===&lt;br /&gt;
*[http://www.spacefornature.co.uk/biorec/taxoncheck.htm Taxon Checker] - a software tool which, given a common name, searches for the relevant taxonomic data and outputs the selected species' details as (among other options) an HTML fragment. It is intended to provide templates for outputting such fragments with &amp;quot;species&amp;quot; microformat markup, once this proposal is implemented.&lt;br /&gt;
*[http://en.wikipedia.org/wiki/User:Beastie_Bot Wikpedia's Beastie Bot] can be used to update the &amp;quot;taxoboxes&amp;quot; of articles about living things/&lt;/div&gt;</summary>
		<author><name>AmeerDawood</name></author>
	</entry>
</feed>