<?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=Rossputin</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=Rossputin"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/Special:Contributions/Rossputin"/>
	<updated>2026-05-14T13:52:27Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-brainstorming&amp;diff=46133</id>
		<title>sitemap-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-brainstorming&amp;diff=46133"/>
		<updated>2012-04-23T20:50:56Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Brainstorming&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page documents attempts to brainstorm a sitemap and related mechanisms microformat.&lt;br /&gt;
&lt;br /&gt;
'''Note''' : We define 'site mapping' as the process of generating a particular sitemap flavour, like sitemap.xml or an HTML sitemap, or something related like an HTML5 cache manifest.&lt;br /&gt;
&lt;br /&gt;
'''Note''' : Here we are attempting to derive a simple mechanism, lowest common denominator and driven by a top level HTML nav mechanism.  We are not considering crawlers etc just yet.  It is possible that later when/if we look at crawlers we may need to encode some kind of order information (for now this is explicitly defined in the order the author defined the link elements).&lt;br /&gt;
&lt;br /&gt;
== Brainstorming solution 1 ==&lt;br /&gt;
=== Content and class values ===&lt;br /&gt;
* h-sitemap required&lt;br /&gt;
** wraps a sitemap block&lt;br /&gt;
* u-url, required&lt;br /&gt;
** every link element we want included in a generated artifact must be annotated with this&lt;br /&gt;
* p-priority-x, optional&lt;br /&gt;
** only pertinent to sitemap.xml&lt;br /&gt;
** p-priority-0-0 = 0.0, p-priority-0.1 = 0.1 ... p-priority-1-0 = 1.0&lt;br /&gt;
** if the author fails to specify a priority it is sane to assume a machine may generate the default of 0.5 as per the sitemaps.org protocol&lt;br /&gt;
* p-change-x, optional&lt;br /&gt;
** only pertinent to sitemap.xml&lt;br /&gt;
** we can lift the possible values directly out of the sitemaps.org protocol (p-change-always|p-change-hourly...)&lt;br /&gt;
&lt;br /&gt;
'''Note''' : We ignore 'lastmod' for now (again only pertinent to sitemap.xml)&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
==== Simple HTML sitemap or cache manifest example ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;ul class=&amp;quot;h-sitemap&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;&lt;br /&gt;
    &amp;lt;a class=&amp;quot;u-url&amp;quot; href=&amp;quot;http://www.site.tld/&amp;quot;&amp;gt;Home&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 class=&amp;quot;u-url&amp;quot; href=&amp;quot;http://www.site.tld/section1/&amp;quot;&amp;gt;Section 1&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== sitemap.xml example with changefreq specified ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;ul class=&amp;quot;h-sitemap&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;&lt;br /&gt;
    &amp;lt;a class=&amp;quot;u-url p-change-daily&amp;quot; href=&amp;quot;http://www.site.tld/&amp;quot;&amp;gt;Home&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 class=&amp;quot;u-url p-change-weekly&amp;quot; href=&amp;quot;http://www.site.tld/section1/&amp;quot;&amp;gt;Section 1&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== sitemap.xml example with changefreq and priority specified ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;ul class=&amp;quot;h-sitemap&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;&lt;br /&gt;
    &amp;lt;a class=&amp;quot;u-url p-change-daily p-priority-1-0&amp;quot; href=&amp;quot;http://www.site.tld/&amp;quot;&amp;gt;Home&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 class=&amp;quot;u-url p-change-weekly p-priority-0-8&amp;quot; href=&amp;quot;http://www.site.tld/section1/&amp;quot;&amp;gt;Section 1&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== sitemap.xml example where nav mechanism is structured differently ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;h-sitemap&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;a class=&amp;quot;u-url p-change-weekly p-priority-0-6&amp;quot; href=&amp;quot;/section1&amp;quot;&amp;gt;Section 1&amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;a class=&amp;quot;u-url p-change-monthly p-priority-0-4&amp;quot; href=&amp;quot;/section2&amp;quot;&amp;gt;Section 2&amp;lt;/a&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>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46132</id>
		<title>sitemap</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46132"/>
		<updated>2012-04-23T19:21:21Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Authors==&lt;br /&gt;
[http://www.bheap.co.uk/about/ross.html#about-me Ross McDonald]&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
Enable the automatic generation of a number of different sitemap and related mechanisms from existing HTML navigation constructs by specifying a minimal amount of semantic information.  &lt;br /&gt;
&lt;br /&gt;
There is currently no way to encode in a machine readable way which navigation link elements pointing to locations in a site should be considered for inclusion in a sitemap.xml, cache manifest or related artifact, additionally information is not currently available which would enable specification of priority weighting or frequency of change.&lt;br /&gt;
&lt;br /&gt;
Currently accurate sitemap.xml files, HTML sitemaps and cache manifests are written manually, or created by supplying information generator services/sites.  This is rather disconnected from our sites, and not always as accurate as we would like.&lt;br /&gt;
&lt;br /&gt;
== Use Cases ==&lt;br /&gt;
Examples of what could be generated if we had such information:&lt;br /&gt;
* sitemap.xml&lt;br /&gt;
* HTML sitemap for usability/accessibility&lt;br /&gt;
* HTML5 cache manifest&lt;br /&gt;
&lt;br /&gt;
Countless sites contain HTML navigation constructs which already detail all/most of the information required to build an HTML sitemap or cache manifest, and parts of the information required to build a sitemap.xml file.&lt;br /&gt;
&lt;br /&gt;
Typically these constructs leverage link elements which conveniently expose an 'href' attribute.  Add a way to specify 'priority' and maybe 'changefreq' and enough would be in place for machines to build a sitemap.xml.&lt;br /&gt;
&lt;br /&gt;
Useful metadata could be generated by machines or browser plugins with both leveraging a simple microformat.&lt;br /&gt;
&lt;br /&gt;
== Proposal ==&lt;br /&gt;
Per the microformats [[process]]:&lt;br /&gt;
&lt;br /&gt;
* [[sitemap-examples]]&lt;br /&gt;
* [[sitemap-formats]]&lt;br /&gt;
* [[sitemap-brainstorming]]&lt;br /&gt;
* [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46131</id>
		<title>sitemap</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46131"/>
		<updated>2012-04-23T19:14:37Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Authors==&lt;br /&gt;
[http://www.bheap.co.uk/about/ross.html#about-me Ross McDonald]&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
Enable the automatic generation of a number of different sitemap and related mechanisms from existing HTML navigation constructs by specifying a minimal amount of semantic information.  There is currently no way to encode in a machine readable way which navigation link elements pointing to locations in a site should be considered for inclusion in a sitemap.xml, cache manifest or related artifact, additionally information is not currently available which would enable specification of priority weighting or frequency of change.&lt;br /&gt;
&lt;br /&gt;
Examples of what could be generated if we had such information:&lt;br /&gt;
* sitemap.xml&lt;br /&gt;
* HTML sitemap for usability/accessibility&lt;br /&gt;
* HTML5 cache manifest&lt;br /&gt;
&lt;br /&gt;
Countless sites contain HTML navigation constructs which already detail all/most of the information required to build an HTML sitemap or cache manifest, and parts of the information required to build a sitemap.xml file.&lt;br /&gt;
&lt;br /&gt;
Typically these constructs leverage link elements which conveniently expose an 'href' attribute.  Add a way to specify 'priority' and maybe 'changefreq' and enough would be in place for machines to build a sitemap.xml.&lt;br /&gt;
&lt;br /&gt;
Currently the alternative is to either write a site map manually, or supply information to a generator (the said data being disconnected from your site).&lt;br /&gt;
&lt;br /&gt;
Useful metadata could be generated by machines or browser plugins with both leveraging a simple microformat.&lt;br /&gt;
&lt;br /&gt;
== Proposal ==&lt;br /&gt;
Per the microformats [[process]]:&lt;br /&gt;
&lt;br /&gt;
* [[sitemap-examples]]&lt;br /&gt;
* [[sitemap-formats]]&lt;br /&gt;
* [[sitemap-brainstorming]]&lt;br /&gt;
* [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-brainstorming&amp;diff=46130</id>
		<title>sitemap-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-brainstorming&amp;diff=46130"/>
		<updated>2012-04-23T19:04:31Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Brainstorming&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page documents attempts to brainstorm a sitemap and related mechanisms microformat.&lt;br /&gt;
&lt;br /&gt;
'''Note''' : We define 'site mapping' as the process of generating a particular sitemap flavour, like sitemap.xml or an HTML sitemap, or something related like an HTML5 cache manifest.&lt;br /&gt;
&lt;br /&gt;
'''Note''' : Here we are attempting to derive a simple mechanism, lowest common denominator and driven by a top level HTML nav mechanism.  We are not considering crawlers etc just yet.  It is possible that later when/if we look at crawlers we may need to encode some kind of order information (for now this is explicitly defined in the order the author defined the link elements).&lt;br /&gt;
&lt;br /&gt;
== Brainstorming solution 1 ==&lt;br /&gt;
=== Content and class values ===&lt;br /&gt;
* mapmf (shorthand for map microformat), required&lt;br /&gt;
** mapmf can be used to declare a link element as something the author wants considered when site mapping occurs&lt;br /&gt;
** mapmf would be required to generate all the different sitemap and related mechanisms, HTML sitemap, sitemap.xml and cache manifest&lt;br /&gt;
* priority, optional&lt;br /&gt;
** priority is only pertinent to sitemap.xml&lt;br /&gt;
** a first iteration for defining possible values could be (p0|p1|p2|p3|p4|p5|p6|p7|p8|p9|one)&lt;br /&gt;
** p0 = 0.0, p1 = 0.1, one = 1.0&lt;br /&gt;
** if the author fails to specify a priority it is sane to assume a machine may generate the default of 0.5 as per the sitemaps.org protocol&lt;br /&gt;
* changefreq, optional&lt;br /&gt;
** changefreq is only pertinent to sitemap.xml&lt;br /&gt;
** we can lift the possible values directly out of the sitemaps.org protocol (always|hourly|daily|weekly|monthly|yearly|never)&lt;br /&gt;
&lt;br /&gt;
'''Note''' : We ignore 'lastmod' for now (again only pertinent to sitemap.xml)&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
==== Simple HTML sitemap or cache manifest example ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&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.site.tld/&amp;quot; class=&amp;quot;mapmf&amp;quot;&amp;gt;Home&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.site.tld/section1/&amp;quot; class=&amp;quot;mapmf&amp;quot;&amp;gt;Section 1&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== sitemap.xml example with changefreq specified ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&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.site.tld/&amp;quot; class=&amp;quot;mapmf daily&amp;quot;&amp;gt;Home&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.site.tld/section1/&amp;quot; class=&amp;quot;mapmf weekly&amp;quot;&amp;gt;Section 1&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== sitemap.xml example with changefreq and priority specified ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&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.site.tld/&amp;quot; class=&amp;quot;mapmf daily one&amp;quot;&amp;gt;Home&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.site.tld/section1/&amp;quot; class=&amp;quot;mapmf weekly p8&amp;quot;&amp;gt;Section 1&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-issues&amp;diff=46129</id>
		<title>sitemap-issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-issues&amp;diff=46129"/>
		<updated>2012-04-23T17:56:19Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Issues&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page tracks issues raised against the different elements of the sitemap microformat investigation.&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
&lt;br /&gt;
=== brainstorming ===&lt;br /&gt;
&lt;br /&gt;
==== brainstorming solution 1 ====&lt;br /&gt;
* {{OpenIssue}} 2012-04-23 raised by [[User:Tantek|Tantek]]&lt;br /&gt;
*# ''Uses class names for data (i.e. values like daily weekly monthly).''&lt;br /&gt;
*#* Normally that kind of information is user-visible on a page, with micro formats used to put markup around it.  &lt;br /&gt;
*#* Currently we have no counter proposal (at least not one that would not require adding significant extra markup), and the values are specifically from the sitemap protocol.&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-issues&amp;diff=46128</id>
		<title>sitemap-issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-issues&amp;diff=46128"/>
		<updated>2012-04-23T17:51:18Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Issues&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page tracks issues raised against the different elements of the sitemap microformat investigation.&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
&lt;br /&gt;
=== brainstorming ===&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-issues&amp;diff=46127</id>
		<title>sitemap-issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-issues&amp;diff=46127"/>
		<updated>2012-04-23T17:50:34Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: New page: &amp;lt;entry-title&amp;gt;Sitemap Issues&amp;lt;entry-title&amp;gt;  Per the microformats process this page tracks issues raised against the different elements of the sitemap microformat investigation.  == Issue...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Issues&amp;lt;entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page tracks issues raised against the different elements of the sitemap microformat investigation.&lt;br /&gt;
&lt;br /&gt;
== Issues == &lt;br /&gt;
=== brainstorming ===&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-formats&amp;diff=46126</id>
		<title>sitemap-formats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-formats&amp;diff=46126"/>
		<updated>2012-04-23T17:31:02Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: New page: &amp;lt;entry-title&amp;gt;Sitemap Formats&amp;lt;/entry-title&amp;gt;  Per the microformats process this page documents existing formats we may choose to leverage.  == sitemaps.org protocol == The [http://www.si...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Formats&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page documents existing formats we may choose to leverage.&lt;br /&gt;
&lt;br /&gt;
== sitemaps.org protocol ==&lt;br /&gt;
The [http://www.sitemaps.org/protocol.html sitemap] protocol is very simple.&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46125</id>
		<title>sitemap</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46125"/>
		<updated>2012-04-23T17:29:34Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Authors==&lt;br /&gt;
[http://www.bheap.co.uk/about/ross.html#about-me Ross McDonald]&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
Enable the automatic generation of a number of different sitemap and related mechanisms from existing HTML by specifying a minimal amount of semantic information.&lt;br /&gt;
&lt;br /&gt;
Examples that could be generated:&lt;br /&gt;
* sitemap.xml&lt;br /&gt;
* HTML sitemap for usability/accessibility&lt;br /&gt;
* HTML5 cache manifest&lt;br /&gt;
&lt;br /&gt;
Countless sites contain HTML navigation constructs which already detail all/most of the information required to build an HTML sitemap or cache manifest, and parts of the information required to build a sitemap.xml file.&lt;br /&gt;
&lt;br /&gt;
Typically these constructs leverage link elements which conveniently expose an 'href' attribute.  Add a way to specify 'priority' and maybe 'changefreq' and enough would be in place for machines to build a sitemap.xml.&lt;br /&gt;
&lt;br /&gt;
Currently the alternative is to either write a site map manually, or supply information to a generator (the said data being disconnected from your site).&lt;br /&gt;
&lt;br /&gt;
Useful metadata could be generated by machines or browser plugins with both leveraging a simple microformat.&lt;br /&gt;
&lt;br /&gt;
== Proposal ==&lt;br /&gt;
Per the microformats [[process]]:&lt;br /&gt;
&lt;br /&gt;
* [[sitemap-examples]]&lt;br /&gt;
* [[sitemap-formats]]&lt;br /&gt;
* [[sitemap-brainstorming]]&lt;br /&gt;
* [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-brainstorming&amp;diff=46120</id>
		<title>sitemap-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-brainstorming&amp;diff=46120"/>
		<updated>2012-04-21T15:45:07Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: New page: &amp;lt;entry-title&amp;gt;Sitemap Brainstorming&amp;lt;/entry-title&amp;gt;  Per the microformats process this page documents attempts to brainstorm a sitemap and related mechanisms microformat.  '''Note''' : We...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Brainstorming&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page documents attempts to brainstorm a sitemap and related mechanisms microformat.&lt;br /&gt;
&lt;br /&gt;
'''Note''' : We define 'site mapping' as the process of generating a particular sitemap flavour, like sitemap.xml or an HTML sitemap, or something related like an HTML5 cache manifest.&lt;br /&gt;
&lt;br /&gt;
'''Note''' : Here we are attempting to derive a simple mechanism, lowest common denominator and driven by a top level HTML nav mechanism.  We are not considering crawlers etc just yet.  It is possible that later when/if we look at crawlers we may need to encode some kind of order information (for now this is explicitly defined in the order the author defined the link elements).&lt;br /&gt;
&lt;br /&gt;
== Content and class values ==&lt;br /&gt;
* mapmf (shorthand for map microformat), required&lt;br /&gt;
** mapmf can be used to declare a link element as something the author wants considered when site mapping occurs&lt;br /&gt;
** mapmf would be required to generate all the different sitemap and related mechanisms, HTML sitemap, sitemap.xml and cache manifest&lt;br /&gt;
* priority, optional&lt;br /&gt;
** priority is only pertinent to sitemap.xml&lt;br /&gt;
** a first iteration for defining possible values could be (p0|p1|p2|p3|p4|p5|p6|p7|p8|p9|one)&lt;br /&gt;
** p0 = 0.0, p1 = 0.1, one = 1.0&lt;br /&gt;
** if the author fails to specify a priority it is sane to assume a machine may generate the default of 0.5 as per the sitemaps.org protocol&lt;br /&gt;
* changefreq, optional&lt;br /&gt;
** changefreq is only pertinent to sitemap.xml&lt;br /&gt;
** we can lift the possible values directly out of the sitemaps.org protocol (always|hourly|daily|weekly|monthly|yearly|never)&lt;br /&gt;
&lt;br /&gt;
'''Note''' : We ignore 'lastmod' for now (again only pertinent to sitemap.xml)&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
=== Simple HTML sitemap or cache manifest example ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&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.site.tld/&amp;quot; class=&amp;quot;mapmf&amp;quot;&amp;gt;Home&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.site.tld/section1/&amp;quot; class=&amp;quot;mapmf&amp;quot;&amp;gt;Section 1&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== sitemap.xml example with changefreq specified ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&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.site.tld/&amp;quot; class=&amp;quot;mapmf daily&amp;quot;&amp;gt;Home&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.site.tld/section1/&amp;quot; class=&amp;quot;mapmf weekly&amp;quot;&amp;gt;Section 1&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== sitemap.xml example with changefreq and priority specified ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&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.site.tld/&amp;quot; class=&amp;quot;mapmf daily one&amp;quot;&amp;gt;Home&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.site.tld/section1/&amp;quot; class=&amp;quot;mapmf weekly p8&amp;quot;&amp;gt;Section 1&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;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46119</id>
		<title>sitemap</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46119"/>
		<updated>2012-04-21T14:58:55Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Authors==&lt;br /&gt;
[http://www.bheap.co.uk/about/ross.html#about-me Ross McDonald]&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
Enable the automatic generation of a number of different sitemap and related mechanisms from existing HTML by specifying a minimal amount of semantic information.&lt;br /&gt;
&lt;br /&gt;
Examples that could be generated:&lt;br /&gt;
* sitemap.xml&lt;br /&gt;
* HTML sitemap for usability/accessibility&lt;br /&gt;
* HTML5 cache manifest&lt;br /&gt;
&lt;br /&gt;
Countless sites contain HTML navigation constructs which already detail all/most of the information required to build an HTML sitemap or cache manifest, and parts of the information required to build a sitemap.xml file.&lt;br /&gt;
&lt;br /&gt;
Typically these constructs leverage link elements which conveniently expose an 'href' attribute.  Add a way to specify 'priority' and maybe 'changefreq' and enough would be in place for machines to build a sitemap.xml.&lt;br /&gt;
&lt;br /&gt;
Currently the alternative is to either write a site map manually, or supply information to a generator (the said data being disconnected from your site).&lt;br /&gt;
&lt;br /&gt;
Useful metadata could be generated by machines or browser plugins with both leveraging a simple microformat.&lt;br /&gt;
&lt;br /&gt;
== Existing standards ==&lt;br /&gt;
The [http://www.sitemaps.org/protocol.html sitemap] protocol is very simple.&lt;br /&gt;
&lt;br /&gt;
== Proposal ==&lt;br /&gt;
Per the microformats [[process]]:&lt;br /&gt;
&lt;br /&gt;
* [[sitemap-examples]]&lt;br /&gt;
* [[sitemap-formats]]&lt;br /&gt;
* [[sitemap-brainstorming]]&lt;br /&gt;
* [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-examples&amp;diff=46105</id>
		<title>sitemap-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-examples&amp;diff=46105"/>
		<updated>2012-04-20T16:38:58Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Examples&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page documents common examples of HTML navigation mechanisms out of which we may want to construct a sitemap.xml.&lt;br /&gt;
&lt;br /&gt;
== HTML navigation mechanism examples ==&lt;br /&gt;
There would be no difference here really between websites and webapps, both use HTML elements for nav in the same way.&lt;br /&gt;
&lt;br /&gt;
=== bbc.co.uk ===&lt;br /&gt;
As per any decent POSH citizen the BBC's website uses a simple list element for navigation.  The BBC admirably use very standard attributes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;ul id=&amp;quot;blq-nav-main&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li id=&amp;quot;blq-nav-news&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;a href=&amp;quot;http://www.bbc.co.uk/news/&amp;quot;&amp;gt;News&amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== apple.com ===&lt;br /&gt;
Apple use the same construct.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;ul id=&amp;quot;globalnav&amp;quot; role=&amp;quot;navigation&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li id=&amp;quot;gn_store&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;a href=&amp;quot;http://store.apple.com/uk&amp;quot;&amp;gt;&amp;lt;span&amp;gt;Store&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== instapaper.com ===&lt;br /&gt;
Subjectively not so semantic in terms of markup.&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;userpanel&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;a href=&amp;quot;/extras&amp;quot;&amp;gt;Extras&amp;lt;/a&amp;gt;&lt;br /&gt;
 &amp;lt;span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&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;
== Existing practices and patterns ==&lt;br /&gt;
While the semantic markup differs slightly between these different example mechanisms, and many others, a common theme is the use of the link element.  We have always used the same for our own sites.&lt;br /&gt;
&lt;br /&gt;
== Proposal ==&lt;br /&gt;
** [[sitemap-formats]]&lt;br /&gt;
** [[sitemap-brainstorming]]&lt;br /&gt;
** [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-examples&amp;diff=46099</id>
		<title>sitemap-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-examples&amp;diff=46099"/>
		<updated>2012-04-20T14:18:31Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Examples&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page documents common examples of HTML navigation mechanisms out of which we may want to construct a sitemap.xml.&lt;br /&gt;
&lt;br /&gt;
== HTML navigation mechanism examples ==&lt;br /&gt;
&lt;br /&gt;
There would be no difference here really between websites and webapps, both use HTML elements for nav in the same way.&lt;br /&gt;
&lt;br /&gt;
=== bbc.co.uk ===&lt;br /&gt;
&lt;br /&gt;
As per any decent POSH citizen the BBC's website uses a simple list element for navigation.  The BBC admirably use very standard attributes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;ul id=&amp;quot;blq-nav-main&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li id=&amp;quot;blq-nav-news&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;a href=&amp;quot;http://www.bbc.co.uk/news/&amp;quot;&amp;gt;News&amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== apple.com ===&lt;br /&gt;
&lt;br /&gt;
Apple use the same construct.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;ul id=&amp;quot;globalnav&amp;quot; role=&amp;quot;navigation&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li id=&amp;quot;gn_store&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;a href=&amp;quot;http://store.apple.com/uk&amp;quot;&amp;gt;&amp;lt;span&amp;gt;Store&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== instapaper.com ===&lt;br /&gt;
&lt;br /&gt;
Subjectively not so semantic in terms of markup.&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;userpanel&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;a href=&amp;quot;/extras&amp;quot;&amp;gt;Extras&amp;lt;/a&amp;gt;&lt;br /&gt;
 &amp;lt;span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&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>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-examples&amp;diff=46098</id>
		<title>sitemap-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-examples&amp;diff=46098"/>
		<updated>2012-04-20T14:15:13Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Examples&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page documents common examples of HTML navigation mechanisms out of which we may want to construct a sitemap.xml.&lt;br /&gt;
&lt;br /&gt;
== HTML navigation mechanism examples ==&lt;br /&gt;
&lt;br /&gt;
There would be no difference here really between websites and webapps, both use HTML elements for nav in the same way.&lt;br /&gt;
&lt;br /&gt;
=== BBC ===&lt;br /&gt;
&lt;br /&gt;
As per any decent POSH citizen the BBC's website uses a simple list element for navigation.  The BBC admirably use very standard attributes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;ul id=&amp;quot;blq-nav-main&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li id=&amp;quot;blq-nav-news&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;a href=&amp;quot;http://www.bbc.co.uk/news/&amp;quot;&amp;gt;News&amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Apple ===&lt;br /&gt;
&lt;br /&gt;
Apple use the same construct.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;ul id=&amp;quot;globalnav&amp;quot; role=&amp;quot;navigation&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li id=&amp;quot;gn_store&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;a href=&amp;quot;http://store.apple.com/uk&amp;quot;&amp;gt;&amp;lt;span&amp;gt;Store&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
  &amp;lt;/li&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Instapaper ===&lt;br /&gt;
&lt;br /&gt;
Subjectively not so semantic in terms of markup.&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;userpanel&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;a href=&amp;quot;/extras&amp;quot;&amp;gt;Extras&amp;lt;/a&amp;gt;&lt;br /&gt;
 &amp;lt;span&amp;gt;.&amp;lt;/span&amp;gt;&lt;br /&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>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap-examples&amp;diff=46097</id>
		<title>sitemap-examples</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap-examples&amp;diff=46097"/>
		<updated>2012-04-20T13:37:41Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: New page: &amp;lt;entry-title&amp;gt;Sitemap Examples&amp;lt;/entry-title&amp;gt;  Per the microformats process this page documents common examples of HTML navigation mechanisms out of which we may want to construct a site...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap Examples&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]] this page documents common examples of HTML navigation mechanisms out of which we may want to construct a sitemap.xml.&lt;br /&gt;
&lt;br /&gt;
== HTML navigation mechanism examples ==&lt;br /&gt;
&lt;br /&gt;
=== BBC ===&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46096</id>
		<title>sitemap</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46096"/>
		<updated>2012-04-20T11:57:01Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Authors==&lt;br /&gt;
[http://www.bheap.co.uk/about/ross.html#about-me Ross McDonald]&lt;br /&gt;
&lt;br /&gt;
== Problem ==&lt;br /&gt;
Enable the automatic generation of sitemap.xml from existing HTML by specifying a minimal amount of semantic information.&lt;br /&gt;
&lt;br /&gt;
Countless sites contain HTML navigation constructs which already detail parts of the information required to build a sitemap file.  Typically these constructs leverage link elements which conveniently expose an 'href' attribute.  Add a way to specify 'priority' and maybe 'changefreq' and enough would be in place for machines to build a site map.&lt;br /&gt;
&lt;br /&gt;
Currently the alternative is to either write a site map manually, or supply information to a generator (the said data being disconnected from your site).&lt;br /&gt;
&lt;br /&gt;
== Existing standards ==&lt;br /&gt;
The [http://www.sitemaps.org/protocol.html sitemap] protocol is very simple.&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]]:&lt;br /&gt;
&lt;br /&gt;
* [[sitemap-examples]]&lt;br /&gt;
* [[sitemap-formats]]&lt;br /&gt;
* [[sitemap-brainstorming]]&lt;br /&gt;
* [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46095</id>
		<title>sitemap</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46095"/>
		<updated>2012-04-20T11:52:55Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Authors==&lt;br /&gt;
[http://www.bheap.co.uk/about/ross.html#about-me Ross McDonald]&lt;br /&gt;
&lt;br /&gt;
Enable the automatic generation of sitemap.xml from existing HTML by specifying a minimal amount of semantic information.&lt;br /&gt;
&lt;br /&gt;
Countless sites contain HTML navigation constructs which already detail parts of the information required to build a sitemap file.  Typically these constructs leverage link elements which conveniently expose an 'href' attribute.  Add a way to specify 'priority' and maybe 'changefreq' and enough would be in place for machines to build a site map.&lt;br /&gt;
&lt;br /&gt;
Currently the alternative is to either write a site map manually, or supply information to a generator (the said data being disconnected from your site).&lt;br /&gt;
&lt;br /&gt;
The [http://www.sitemaps.org/protocol.html sitemap] protocol is very simple.&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]]:&lt;br /&gt;
&lt;br /&gt;
* [[sitemap-examples]]&lt;br /&gt;
* [[sitemap-formats]]&lt;br /&gt;
* [[sitemap-brainstorming]]&lt;br /&gt;
* [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46094</id>
		<title>sitemap</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46094"/>
		<updated>2012-04-20T11:50:54Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable the automatic generation of sitemap.xml from existing HTML by specifying a minimal amount of semantic information.&lt;br /&gt;
&lt;br /&gt;
Countless sites contain HTML navigation constructs which already detail parts of the information required to build a sitemap file.  Typically these constructs leverage link elements which conveniently expose an 'href' attribute.  Add a way to specify 'priority' and maybe 'changefreq' and enough would be in place for machines to build a site map.&lt;br /&gt;
&lt;br /&gt;
Currently the alternative is to either write a site map manually, or supply information to a generator (the said data being disconnected from your site).&lt;br /&gt;
&lt;br /&gt;
The [http://www.sitemaps.org/protocol.html sitemap] protocol is very simple.&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]]:&lt;br /&gt;
&lt;br /&gt;
* [[sitemap-examples]]&lt;br /&gt;
* [[sitemap-formats]]&lt;br /&gt;
* [[sitemap-brainstorming]]&lt;br /&gt;
* [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46077</id>
		<title>sitemap</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46077"/>
		<updated>2012-04-19T20:32:59Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable the automatic generation of sitemap.xml from existing HTML by specifying a minimal amount of semantic information.&lt;br /&gt;
&lt;br /&gt;
Countless sites contain HTML navigation constructs which already detail parts of the information required to build a sitemap file.  Add a way to specify 'priority' and maybe 'changefreq' and enough would be in place for machines to build a sitemap.&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]]:&lt;br /&gt;
&lt;br /&gt;
* [[sitemap-examples]]&lt;br /&gt;
* [[sitemap-formats]]&lt;br /&gt;
* [[sitemap-brainstorming]]&lt;br /&gt;
* [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46074</id>
		<title>sitemap</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46074"/>
		<updated>2012-04-19T20:20:44Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable the automatic generation of sitemap.xml from existing HTML by specifying a minimal amount of semantic information.&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]]:&lt;br /&gt;
&lt;br /&gt;
* [[sitemap-examples]]&lt;br /&gt;
* [[sitemap-formats]]&lt;br /&gt;
* [[sitemap-brainstorming]]&lt;br /&gt;
* [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46073</id>
		<title>sitemap</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=sitemap&amp;diff=46073"/>
		<updated>2012-04-19T20:06:16Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: New page: &amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;  Enable the automatic generation of sitemap.xml from existing HTML by specifying a minimal amount of semantic information.  Per the microformats [[proces...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;Sitemap&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable the automatic generation of sitemap.xml from existing HTML by specifying a minimal amount of semantic information.&lt;br /&gt;
&lt;br /&gt;
Per the microformats [[process]]:&lt;br /&gt;
&lt;br /&gt;
* [[sitemap-problem]]&lt;br /&gt;
* [[sitemap-examples]]&lt;br /&gt;
* [[sitemap-formats]]&lt;br /&gt;
* [[sitemap-brainstorming]]&lt;br /&gt;
* [[sitemap-issues]]&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-tag-issues&amp;diff=46061</id>
		<title>rel-tag-issues</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-tag-issues&amp;diff=46061"/>
		<updated>2012-04-18T18:57:05Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: /* Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= relTag Issues =&lt;br /&gt;
&lt;br /&gt;
These are externally raised issues about [[rel-tag]] with broadly varying degrees of merit.  Thus some issues are REJECTED for a number of obvious reasons (but still documented here in case they are re-raised), and others contain longer discussions.  Some issues may be ACCEPTED and perhaps cause changes or improved explanations in the spec.  Submitted issues may (and probably will) be edited and rewritten for better terseness, clarity, calmness, rationality, and as neutral a point of view as possible. Write your issues well. — [http://tantek.com/log/ Tantek]&lt;br /&gt;
&lt;br /&gt;
== Issues ==&lt;br /&gt;
&lt;br /&gt;
{{issues-format}}&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2012-04-18 raised by [[User:Rossputin|Ross McDonald]]&lt;br /&gt;
*# At the time of writing rel-tag is catagorised as stable, but has a sub-heading 'Draft Specification 2005-01-10'.&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2009-12-27 raised by [[User:GagaPete|Sebastian Joseph]]&lt;br /&gt;
*# I have a problem with this specification. It requires the tags to be links, but isn't it possible to select tags without linking them? In my opinion tags are not anything different than visible keywords. So it should be allowed to use any html elements as tags, too. I would prefer the usage of a wrapper, for example with class ''page-tags''. Then the text content of the wrapped elements with class ''tag'' should be used as tags for this page. If a Image if used as tag, then the implementations should use the alt-text of this element. The element with class ''page-tags'' should only appear once at a page.&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2007-03-28 raised by [[User:JamesCraig|James Craig]]&lt;br /&gt;
*# [[internationalization|Internationalization]] (i18n) issue with restful tag spaces. Restful tag spaces cannot be used with non-western characters unless escaped in unicode, which renders a restful tag space quite pointless. For example:&lt;br /&gt;
*#*A Japanese Katakana tag ピフ would have to be &amp;lt;nowiki&amp;gt;http://example.com/tags/%E3%83%94%E3%83%95/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
*#*A Hindi Devanagri tag चट would have to be &amp;lt;nowiki&amp;gt;http://example.com/tags/%E0%A4%9A%E0%A4%9F/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
::There should be another way to specify the human-readable tagname.&lt;br /&gt;
*#*One possible solution is to provide a &amp;quot;romaji&amp;quot; or transliteration of the characters to the Latin alphabet.  It would be a bit troublesome for pictographic alphabets such as kanji, but it would work well for Russian, Katakana, Hiragana, and similar phonetic alphabets.  This i18n issue is a problem for URLs in general, a more fundamental issue that has to be fixed.  The URL spec was created before UTF existed.  (NOTE: index names for tags can be different from the raw tag, as demonstrated by Flickr).  [[User:Bloritsch|Bloritsch]] 19:19, 23 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2007-01-10 raised by [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*# I recently received an e-mail circular, asking that images and blog posts about a particular event be tagged in the style:&lt;br /&gt;
&lt;br /&gt;
::20070110 AB123YZ postcode:uk=AB123YZ upcoming:id=123456 upcoming:event=19876 upcoming:venue=14567 url=example.com geocoded geotagged geo:lat=52.3456 geo:lon=-1.2345&lt;br /&gt;
&lt;br /&gt;
:Is any work being done, to document such tag &amp;quot;schema&amp;quot;? [[User:AndyMabbett|Andy Mabbett]] 12:43, 10 Jan 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
: Isn't that several different tags?  I.e. &amp;quot;20070110&amp;quot;, &amp;quot;AB123YZ&amp;quot;, &amp;quot;postcode:uk=AB123YZ&amp;quot; ....  At least this is how a site like Flickr would decipher it.  The rel-tag standard handles each one separately, although the &amp;quot;machine tags&amp;quot; (as Flickr calls them) have the same issues as the i18n issue above.  [[User:Bloritsch|Bloritsch]] 18:00, 17 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2005-06-21 raised by Hixie&lt;br /&gt;
*# ''Issue H-1: This specification is lacking a user agent conformance section. Does the UA simply crawl the DOM looking for all &amp;lt;html:a&amp;gt; elements with a &amp;quot;rel&amp;quot; attribute that contains a &amp;quot;tag&amp;quot; keyword (after space-separated splitting) and then grab the href=&amp;quot;&amp;quot; value? How about relative links? Must they implement xml:base? &amp;lt;html:base&amp;gt;? Other things?&lt;br /&gt;
*# ''Issue H-2: What's the point? Isn't free-text search more effective than relying on people to remember to put a particular tag?&lt;br /&gt;
*#* Tags are used for various reasons, including the ability to re-find information later.  Free text search has its own issues, including raising the signal to noise ratio of search results.&lt;br /&gt;
&lt;br /&gt;
* 2006-01-10 raised by Adam Willard&lt;br /&gt;
*# ''Issue 1: Somewhat confused. Please either fix or elaborate the difference in the URLs in the Tag Spaces area -&amp;gt; is it /tag/ or /tags/ or /wiki/. Is this URI changeable or is this just showing other implementations. If this is the case I am confused on the implementation. Should /wiki/ only show tagged content of wiki? Should URIs be constructed as /definition/ /blog/ etc... to return those items? Or is it just returning pages and the webmaster just decided on /wiki/ or /tag/ or /applicationdir/?''&lt;br /&gt;
*#* ACCEPTED FAQ - We need to make this an FAQ entry. --[[User:RyanKing|RyanKing]] 14:46, 25 Jan 2006 (PST) (@TODO)&lt;br /&gt;
*# ''Issue 2: More information on actually implementing a tag space would be helpful. I wrote a tagging system on our intranet and we run IIS. So I had to install URLrewrite (ISAPI) to create the URI /tag/tagname. We horrible Microsoft people aren't as lucky to have Mod Rewrite.''&lt;br /&gt;
*#* REJECTED IRRELEVANT - Implementing a tagspace is well outside the bounds of the rel-tag specification. --[[User:RyanKing|RyanKing]] 14:46, 25 Jan 2006 (PST)&lt;br /&gt;
&lt;br /&gt;
* 2006-02-09 raised by JonathanFeinberg&lt;br /&gt;
*# ''Issue 1: It's bizarre to have the tag be denoted by the URL. The content of the '''a''' tag is a perfectly suitable place to '''contain''' the tag.''&lt;br /&gt;
*#* REJECTED, IGNORES ESTABLISHED PRACTICE.  Flickr and del.icio.us and other tagging sites established the defacto standard of having the tag term be denoted by the last segment in the URL.  [[rel-tag]] was designed to leverage that existing behavior.  Theoretical arguments about suitability are irrelevant in the fact of overwhelming existing practice.&lt;br /&gt;
*# ''Issue 2: There's no way to distinguish between an individual user's notion of a tag and a global tag (i.e., Fred's java tag versus all things tagged with java.''&lt;br /&gt;
*#* REJECTED UNTRUE.  ACCEPTED FAQ.  Tag spaces (see [[rel-tag]] specification) are used for distinguishing, e.g. Flickr does this with photos from one user with a tag, vs. photos from all users with a tag. [[to-do]] - add this to the the [[rel-tag-faq]].&lt;br /&gt;
*# ''Issue 3: It's not reasonable to restrict the host's REST implementation according to this spec's rather limited idea of a &amp;quot;good&amp;quot; tag URL. The idea of tags as query parameters is rejected without justification, for example. Query parameters are a perfectly legitimate means of denoting state.''&lt;br /&gt;
*#* REJECTED, IGNORES ESTABLISHED PRACTICE. Flickr and del.icio.us and other tagging sites established the defacto standard of having the tag term be denoted by the last segment in the URL and thus defined what makes a &amp;quot;good&amp;quot; tag URL.  [[rel-tag]] has codified this good practice.&lt;br /&gt;
&lt;br /&gt;
* 2006-02-09 raised by Robert Yates&lt;br /&gt;
*# ''Issue 1: So I work alongside Jonathan at Lotus / IBM and we have several systems in development each with their own tag implementations.  All of them have their own pages that are dedicated to listing the things within them that have been tagged by a given tag.  Some of these systems use a url notation that ends in /tag but many (the majority) do not.  We are looking to have a standard way that these systems can sematically tag their tags and relTag looked very promising.  However, given that some of the systems produce tag urls that do not end in /tag we are a little stuck.    It would be extremely hard and somewhat impracticle to get all these groups to ensure that their tag urls end in /tag.  Are you at all considering another approach.  We'd love to use relTag within our products, but at the moment we can't.  Looking for some help / guidance.''&lt;br /&gt;
*#* Clarification: By '/tag' do you mean '/&amp;lt;tag-name&amp;gt;'? --[[User:RyanKing|RyanKing]] 15:21, 9 Feb 2006 (PST)&lt;br /&gt;
*#*:* yes -- rob yates 18:56, 9 Feb 2006 (EST)&lt;br /&gt;
*#* I wanted to do a quick survey to see how many other sites would struggle to easily adopt this format, due to the fact that they don't currently end their tag urls '/&amp;lt;tag-name&amp;gt;'.  While I definately agree that ending with '/&amp;lt;tag-name&amp;gt;' is a best practice, I do feel that their needs to be an option for sites that don't do this, but still want to semantically tag their tags.  Here's some sites that I found that cannot easily adopt reltag without reworking server side logic. There's some pretty big names on this list.&lt;br /&gt;
*#*:* O'Reilly.com.  See the tags at this url http://www.xml.com/pub/a/2004/11/10/delicious.html note: O'Reilly uses javascript and AJAX to populate the content on page.  This is definitely not standard.&lt;br /&gt;
*#*:* Dodgeball.  http://boston.dodgeball.com/tags.php&lt;br /&gt;
*#*:* Any typepad blog.  See for instance the categories here http://ideasinfood.typepad.com/ideas_in_food/&lt;br /&gt;
*#*:* Eventful.  http://eventful.com/&lt;br /&gt;
*#*:* WordPress blogs, default permalink structure (http://example.com/?cat=N).  Pretty permalinks (http://example.com/category/&amp;lt;tagname&amp;gt;) are supported through various methods, but cannot be enabled by default due to technical variances in web servers and setups. The rigidity of the spec has set a high technical barrier to entry. Even if the category name were put into the URL, it would have to be in the querystring for default WordPress setups, which isn't supported in the spec.  A querystring fallback (?tag=&amp;lt;tagname&amp;gt;) would enable many more systems to use rel-tag.  --[[User:MarkJaquith|MarkJaquith]] 15:39, 20 Oct 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2006-04-06 raised by [[User:Evan|Evan]]&lt;br /&gt;
*# ''The scope says 'rel=&amp;quot;tag&amp;quot; is specifically designed for &amp;quot;tagging&amp;quot; content, typically web pages (or portions thereof, like blog posts).', but it's not clear how to associate a tag with one portion of a web page and not another. Some common use cases: image galleries, blog posts, yellow-pages directories, hcard directories, del.icio.us-style lists of bookmarks. Does the tag apply to the &amp;lt;a&amp;gt; element's immediate containing element? All containing elements? One possibility I suggest: the tag applies to the '''most immediately enclosing element with an &amp;quot;id&amp;quot; attribute''' (addressable, at least in XHTML, as #idval), or to the entire page if there is no such element. Another possibility is having a '''tagtarget''' class, so that the parent with that class is the object being tagged.''&lt;br /&gt;
*# In most sites that support tagging, the association is done visually.  There isn't any semantic markup that would tie the tag to the &amp;quot;id&amp;quot; attribute of the content being tagged.  XML has &amp;quot;ref-id&amp;quot; attribute, which can be used.  Not sure if it should be made part of the rel-tag standard though.  [[User:Bloritsch|Bloritsch]] 18:26, 17 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2006-11-24 raised by [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*# Why not ''also'' allow tagging on within-page links (i.e. after &amp;quot;#&amp;quot; as well as after &amp;quot;/&amp;quot;)? Then, if I have a page with sub-sections, each of those could be a tag, according to their ID:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;ul class=&amp;quot;navbar&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#whisky&amp;quot; rel=&amp;quot;tag&amp;quot;&amp;gt;Whisky&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#wine&amp;quot; rel=&amp;quot;tag&amp;quot;&amp;gt;Wine&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;h2 id=&amp;quot;whisky&amp;quot;&amp;gt;&amp;quot;Whisky&amp;lt;/h2&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&amp;lt;h2 id=&amp;quot;wine&amp;quot;&amp;gt;&amp;quot;Wine&amp;lt;/h2&amp;gt;&lt;br /&gt;
[...]&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*# Isn't this a major departure from how tags are used across different sites?  When I click on a tag link, I expect to see other content that applies that tag. [[User:Bloritsch|Bloritsch]] 18:26, 17 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2006-11-25 raised by [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*#Caution should be advised when recommending Wikipedia as a name-space. For example, an article about Birmingham, Alabama, tagged with a link to http://en.wikipedia.org/wiki/Birmingham would link to an article about Birmingham, England. Similarly, a tag using http://wikitravel.org/en/Newcastle will link to a disambiguation page.&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2006-11-26 raised by [[User:AndyMabbett|Andy Mabbett]]&lt;br /&gt;
*#There is a danger of encouraging users to breach [http://www.w3.org/TR/WCAG10/wai-pageauth.html#tech-meaningful-links WCAG 1.0 priority 2 guideline 13.6] &amp;quot;'''Clearly identify the target of each link'''&amp;quot;. If a page has a link thus &amp;lt;code&amp;gt;&amp;lt;a href=&amp;quot;http://www.bbc.co.uk&amp;quot;&amp;gt;BBC&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;, tagging it with a link thus &amp;lt;code&amp;gt;&amp;lt;a href=&amp;quot;http://www.example.com/BBC&amp;quot; rel=&amp;quot;tag&amp;quot;&amp;gt;BBC&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt; will result in two links on the page, both labelled &amp;quot;BBC&amp;quot;, with different targets.&lt;br /&gt;
*#Typically tags are kept in one location on a screen so that visually they have a context--this provides disambiguation for seeing users.  However, this practice does not address usability for people dependent on screen readers.[[User:Bloritsch|Bloritsch]] 18:26, 17 July 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
*{{OpenIssue}} 2007-01-01 raised Jan 2006 by Ben Buchanan as [http://weblog.200ok.com.au/2006/01/limitations-of-rel-microformat.html limitations of rel=&amp;quot;tag&amp;quot; microformat]&lt;br /&gt;
*#Summary: Under the current draft, tags and relevant tagspaces are potentially hard to create; and it's still easy to abuse the system. Humans can still be tricked and so can the machines. It's a great spec if you happen to have a compliant directory structure, but if your site doesn't match then you either recreate your entire system... or, more likely, you sadly advise the client that tags aren't happening.&lt;br /&gt;
&lt;br /&gt;
* {{OpenIssue}} 2007-02-03 raised by [[User:Evan|Evan]]&lt;br /&gt;
*#There may be value in adopting, supporting or commenting on the [http://www.flickr.com/groups/api/discuss/72157594497877875/ machine tags] format in use at [http://flickr.com/ Flickr]. Machine tags (also called [http://geobloggers.com/archives/2007/01/24/offtopic-ish-flickr-ramps-up-triple-tag-support/ triple tags]) are a structured tag format with the syntax &amp;quot;''namespace'':''property''=''value''&amp;quot;. Examples: &amp;quot;geo:city=Portland&amp;quot;. It's not clear how machine tags interact with other microformats (&amp;quot;geo:long=...&amp;quot; and &amp;quot;geo:lat=...&amp;quot; are two commonly-used examples, which clearly overlaps with [[geo]]), whether other sites and services will support machine tags, and how to include them here.&lt;br /&gt;
&lt;br /&gt;
== Need reformatting ==&lt;br /&gt;
&lt;br /&gt;
These issues were mistakenly added to the [[rel-tag-faq]] and should have been put here in the first place.  They need to be reformatted as issues.&lt;br /&gt;
&lt;br /&gt;
===Are tags case sensitive?===&lt;br /&gt;
*Are tags case sensitive? Is &amp;quot;Dog&amp;quot; the same tag as &amp;quot;dog&amp;quot; and &amp;quot;DOG&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
===Multi-word tags===&lt;br /&gt;
*How should a multi-word tag be made? For instance, if using Wikipedia as a name space, a page about a Black Redstart (a bird) would be tagged '''Black_Redstart''', with an underscore [http://en.wikipedia.org/wiki/Black_Redstart]. Is there any way of aliasing alternatives (&amp;quot;BlackRedstart&amp;quot;, &amp;quot;Black-Redstart&amp;quot;, etc.)? Is any particular format preferable?&lt;br /&gt;
&lt;br /&gt;
==Related pages==&lt;br /&gt;
{{rel-tag-related-pages}}&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:Rossputin&amp;diff=46060</id>
		<title>User:Rossputin</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:Rossputin&amp;diff=46060"/>
		<updated>2012-04-18T18:49:55Z</updated>

		<summary type="html">&lt;p&gt;Rossputin: About Me&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Geek, software architect, Open Source committer, [http://www.bheap.co.uk company] co-founder and director, Jiu Jitsu fan, wine taster and father.&lt;/div&gt;</summary>
		<author><name>Rossputin</name></author>
	</entry>
</feed>