hatom-examples: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
m (→‎Transformation 2: Replaced <address> with <span class="author">; was invalid XHTML)
m (Reverted edits by Domtheo (Talk) to last version by Elli)
 
(20 intermediate revisions by 13 users not shown)
Line 1: Line 1:
= hAtom examples =
<h1>hAtom examples</h1>


'''Work in progress!'''
Examples of [[hatom]] - '''Work in progress!'''


= Contributors =
* [[User:DavidJanes|David Janes]]
* [[User:RobertBachmann|Robert Bachmann]]
* [[User:Chris_Messina|Chris Messina]]


=== Transformation 1 ===
= Transformation 1 =


A well behaved weblog.
A well behaved weblog.
Line 52: Line 56:
</nowiki></pre>
</nowiki></pre>


Transformed to hAtom compliant (shown in UPPER CASE for visibility only):
Transformed to hAtom compliant:


<pre><nowiki>
&lt;body>
<body>
  &lt;div id="wrap">
<div id="wrap">
  &lt;div <span class="added">class="hfeed"</span> id="content">
  <div CLASS="HFEED" id="content">
    ...
  ...
    &lt;div class="<span class="added">hentry</span> entry" <span class="change">id</span>="post-60">
  <div class="HENTRY entry" ID="post-60">
    &lt;h3 class="<span class="added">entry-title</span>">
    <h3 class="HEADLINE">
      &lt;a href="<nowiki>http://</nowiki>www.microformats.org/blog/..." rel="bookmark" title="...">Wiki Attack&lt;/a>
    <a href="http://www.microformats.org/blog/..." rel="bookmark" title="...">Wiki Attack</a>
    &lt;/h3>
    </h3>
    <span class="added">&lt;div class="entry-content"></span>
    <DIV CLASS="CONTENT">
      &lt;p>We had a bit of trouble with ...&lt;/p>
    <p>We had a bit of trouble with ...</p>
      &lt;p>We&#8217;ve restored the wiki and ...&lt;/p>
    <p>We&#8217;ve restored the wiki and ...</p>
      &lt;p>If anyone is working to combat said spammers ...&lt;/p>
    <p>If anyone is working to combat said spammers ...</p>
    <span class="added">&lt;/div></span>
     </DIV>
    &lt;h4 class="tags">Technorati Tags:&lt;/h4>
    &lt;ul class="tags">
      &lt;li>&lt;a href="<nowiki>http://</nowiki>technorati.com/tag/mediawiki" rel="tag">mediawiki&lt;/a>&lt;/li>
      &lt;li>&lt;a href="<nowiki>http://</nowiki>technorati.com/tag/microformats" rel="tag">microformats&lt;/a>&lt;/li>
      &lt;li>&lt;a href="<nowiki>http://</nowiki>technorati.com/tag/spam" rel="tag">spam&lt;/a>&lt;/li>
    &lt;/ul>
    &lt;ul class="post-info">
      &lt;li>
      &lt;a href="<nowiki>http://</nowiki>www.microformats.org/blog/..." rel="bookmark"
        title="..."><span class="added">&lt;abbr class="published" title="2005-10-10T14:07:00-07:00"></span>October 10th, 2005<span class="added">&lt;/abbr></span>&lt;/a>
      &lt;/li>
      &lt;li>
      &lt;address class="vcard <span class="added">author</span>">&lt;a class="url fn" href="<nowiki>http://</nowiki>theryanking.com">Ryan King&lt;/a>&lt;/address>
      &lt;/li>
      &lt;li>
      &lt;a href="<nowiki>http://</nowiki>www.microformats.org/blog/...">4 Comments&lt;/a>
      &lt;/li>
    &lt;/ul>
    &lt;/div>
      
    &lt;div class="<span class="added">hentry</span> entry" <span class="change">id</span>="post-59">
    ....
    &lt;/div>
    ...
  &lt;/div>
  &lt;/div>
&lt;/body>


    <h4 class="tags">Technorati Tags:</h4>
    <ul class="tags">
    <li><a href="http://technorati.com/tag/mediawiki" rel="tag">mediawiki</a></li>
    <li><a href="http://technorati.com/tag/microformats" rel="tag">microformats</a></li>
    <li><a href="http://technorati.com/tag/spam" rel="tag">spam</a></li>
    </ul>
    <ul class="post-info">
    <li>
      <a href="http://www.microformats.org/blog/..." rel="bookmark"
        title="..."><ABBR CLASS="PUBLISHED" TITLE="2005-10-10T14:07:00-07:00">October 10th, 2005</ABBR></a>
    </li>
    <li>
      <address class="vcard"><a class="url fn" href="http://theryanking.com">Ryan King</a></address>
    </li>
    <li>
      <a href="http://www.microformats.org/blog/...">4 Comments</a>
    </li>
    </ul>
  </div>
 
  <div class="HENTRY entry" ID="post-59">
  ....
  </div>
  ...
  </div>
</div>
</body>
</nowiki></pre>


Changes:
Changes:
* Added <code>class="hfeed"</code> to Feed
* Added <code>class="hfeed"</code> to Feed
* Added <code>class="hentry"</code> to Entry
* Added <code>class="hentry"</code> to Entry
* Added <code>class="headline"</code> to Entry Title
* Added <code>class="entry-title"</code> to Entry Title
* Moved <code>id="###"</code> from <code>&lt;h3></code> to Entry
* Moved <code>id="###"</code> from <code>&lt;h3></code> to Entry
* Added <code>&lt;div class="content"></code>...<code>&lt;/div></code> around the Entry Content
* Added <code>&lt;div class="entry-content"></code>...<code>&lt;/div></code> around the Entry Content
* Added <code>&lt;abbr class="PUBLISHED" title="YYYY-MM-DDThh:mm:ss+ZZ:ZZ"></code>...<code>&lt;/abbr></code> around the Entry Datetime
* Added <code>&lt;abbr class="published" title="YYYY-MM-DDThh:mm:ss+ZZ:ZZ"></code>...<code>&lt;/abbr></code> around the Entry Datetime
* Added <code>class="author"</code> to &lt;address>


Also note:
Also note:
Line 112: Line 116:
* We did not need to add a <code>rel="bookmark"</code> to Entry Permalinks
* We did not need to add a <code>rel="bookmark"</code> to Entry Permalinks


=== Transformation 2 ===
= Transformation 2 =


A not-so well behaved weblog (an older blogspot weblog)
A not-so well behaved weblog (an older blogspot weblog)
Line 149: Line 153:
</nowiki></pre>
</nowiki></pre>


Transformed to hAtom compliant (shown in UPPER CASE for visibility only):
Transformed to hAtom compliant:


<pre><nowiki>
<body bgcolor="...">
<DIV CLASS="HFEED">
  <div class="HENTRY posts" ID="112993192128302715">
  <strong CLASS="HEADLINE CONTENT">
    Nelson's final prayer
  </strong>
  <SPAN CLASS="CONTENT">
    written on the night before Trafalgar:<blockquote>May the Great God, ... heart.
  </SPAN>
  <DIV>
    <span class="byline">posted by <span class="author">Natalie</span> at
    <a REL="BOOKMARK" href="HTTP://NATALIESOLENT.BLOGSPOT.COM/2005_10_16_nataliesolent_archive.html#112993192128302715">
    <ABBR CLASS="PUBLISHED" TITLE="2005-10-24T09:49:00-00:00">9:49 PM</ABBR></a>
    </span>
  </DIV>
  </div>


   <div class="HENTRY posts" ID="112993022840118939">
&lt;body bgcolor="...">
   <strong CLASS="HEADING CONTENT">I really, truly </strong>
  <SPAN CLASS="CONTENT">
   &lt;<span class="added">div class="hfeed"></span>
    didn't go ... view.
  &lt;div class="<span class="added">hentry</span> posts" <span class="added">id="112993192128302715"</span>>
  </SPAN>
    &lt;strong <span class="added">class="entry-title entry-content"</span>>
  <DIV>
    Nelson's final prayer
    <span class="byline">
    &lt;/strong>
    posted by <span class="author">Natalie</span> at  
    &lt;<span class="added">span class="entry-content"></span>
    <a REL="BOOKMARK" href="HTTP://NATALIESOLENT.BLOGSPOT.COM/2005_10_16_nataliesolent_archive.html#112993022840118939">
    written on the night before Trafalgar:&lt;blockquote>May the Great God, ... heart.
    <ABBR CLASS="PUBLISHED" TITLE="2005-10-24T09:49:00-00:00">9:28 PM</ABBR></a>
    <span class="added">&lt;/span></span>
     </span>
    &lt;div>
   </DIV>
    &lt;span class="byline">posted by <span class="added">&lt;span class="author vcard">&lt;span class="fn"></span>Natalie<span class="added">&lt;/span>&lt;/span></span> at
   </div>
      &lt;a <span class="added">rel="bookmark"</span> href="2005_10_16_nataliesolent_archive.html#112993192128302715">
  ...
      <span class="added">&lt;abbr class="published" title="2005-10-24t09:49:00-00:00"></span>9:49 PM<span class="added">&lt;/abbr></span>&lt;/a>
  </DIV>
    &lt;/span>
    &lt;/div>
   &lt;/div>
  &lt;div class="<span class="added">hentry</span> posts" <span class="added">id="112993022840118939"</span>>
    &lt;strong <span class="added">class="heading content</span>>"I really, truly &lt;/strong>
    <span class="added">&lt;span class="entry-content"></span>
    didn't go ... view.
    &lt;/span>
    &lt;div>
    &lt;span class="byline">
      posted by <span class="added">&lt;span class="author vcard">&lt;span class="fn"></span>Natalie<span class="added">&lt;/span>&lt;/span></span> at  
      &lt;a <span class="added">rel="bookmark"</span> href="2005_10_16_nataliesolent_archive.html#112993022840118939">
      <span class="added">&lt;abbr class="published" title="2005-10-24t09:49:00-00:00"></span>9:28 pm<span class="added">&lt;/abbr></span>&lt;/a>
    &lt;/span>
     &lt;/div>
   &lt;/div>
   ...
  &lt;/div>
   
  &lt;/body>


</body>
</nowiki></pre>


Changes:
Changes:
* Added <code>class="hfeed"</code> to Feed
* Added <code>class="hfeed"</code> to Feed
* Added <code>class="hentry"</code> to each Entry
* Added <code>class="hentry"</code> to each Entry
* Added <code>class="headline"</code> to each Entry Title
* Added <code>class="entry-title"</code> to each Entry Title
* Moved <code>id="###"</code> up to the Entry (and deleted the empty anchor block)
* Moved <code>id="###"</code> up to the Entry (and deleted the empty anchor block)
* Added <code>rel="bookmark"</code> to the Entry Permalinks
* Added <code>rel="bookmark"</code> to the Entry Permalinks
* Made the Entry Permalink non-relative
* Added <code>&lt;span class="entry-content"></code>...<code>&lt;/div></code> around the Entry Title (!)
* Added <code>&lt;span class="content"></code>...<code>&lt;/div></code> around the Entry Title (!)
* Added <code>&lt;span class="entry content"></code>...<code>&lt;/div></code> around the Entry Content
* Added <code>&lt;span class="content"></code>...<code>&lt;/div></code> around the Entry Content
* Added <code>&lt;abbr class="published" title="YYYY-MM-DDThh:mm:ss+ZZZZ"></code>...<code>&lt;/abbr></code> around the Entry Datetime
* Added <code>&lt;abbr class="published" title="YYYY-MM-DDThh:mm:ss+ZZZZ"></code>...<code>&lt;/abbr></code> around the Entry Datetime
* Added <code>&lt;span class="author"&gt;</code> to the poster's name
* Added <code>&lt;span class="author vcard"&gt;</code> and <code>&lt;span class="fn"&gt;</code> to the poster's name


Also note:
Also note:
Line 206: Line 209:
* cleaned up lots of crap HTML presentation stuff, with the assumption it would be fixed in the stylesheet
* cleaned up lots of crap HTML presentation stuff, with the assumption it would be fixed in the stylesheet
* this is one of the uglier transformations you're likely to see
* this is one of the uglier transformations you're likely to see
* we've respected the poster's poster apparent wish for anonimity by not adding an hCard


=== Transformation 3 ===
= Transformation 3 =


A media page (from [http://www.cbc.ca/story/world/national/2005/11/22/birdlfu051122.html CBC Newsworld]).
A media page (from [http://www.cbc.ca/story/world/national/2005/11/22/birdlfu051122.html CBC Newsworld]).
Line 226: Line 228:
   <p>
   <p>
     <ul>
     <ul>
     <li><font SIZE="1">INDEPTH: </font><font SIZE="2">  
     <li><font size="1">INDEPTH: </font><font size="2">  
     <a href="http://www.cbc.ca/news/background/avianflu/">Avian Flu</a></font>
     <a href="http://www.cbc.ca/news/background/avianflu/">Avian Flu</a></font>
     </ul>
     </ul>
Line 260: Line 262:
</nowiki></pre>
</nowiki></pre>


Transformed to hAtom compliant (shown in UPPER CASE for visibility only):
Transformed to hAtom compliant:


<pre><nowiki>
&lt;div class="news">
<div class="news">
  &lt;div class="<span class="added">hfeed hentry</span> story">
<div class="HFEED HENTRY story">
  &lt;h1 <span class="added">class="entry-title"></span>China confirms new bird flu outbreaks&lt;/h1>
  <h1 class="HEADLINE">China confirms new bird flu outbreaks</h1>
  &lt;span class="byline">Last Updated
  <span class="byline">Last Updated
  <span class="added">&lt;abbr class="published" title="2005-11-23T04:26:18Z"></span>Tue, 22 Nov 2005 23:26:18 EST<span class="added">&lt;/abbr></span>
  <ABBR CLASS="POSTED" TITLE="2005-11-23T04:26:18Z">Tue, 22 Nov 2005 23:26:18 EST</ABBR>
  &lt;/span>
  </span>
  <span class="added">&lt;address class="vcard author"></span>&lt;span class="text">&lt;a <span class="added">class="url"</span> href="/news/credit.html">CBC News&lt;/a>&lt;/span><span class="added">&lt;/address></span>
  <ADDRESS CLASS="VCARD"><div class="text"><a CLASS="URL" href="/news/credit.html">CBC News</a></div></ADDRESS>
 
  &lt;div class="text">
  <div class="text">
    &lt;p <span class="added">class="entry-content"</span>&gt;
  <p CLASS="CONTENT">
    China has confirmed three new outbreaks of bird flu, ...
  China has confirmed three new outbreaks of bird flu, ...
    &lt;/p>
  </p>
    &lt;p>
  <p>
    &lt;ul>
    <ul>
      &lt;li>&lt;font size="1">INDEPTH: &lt;/font>&lt;font size="2">  
    <li><font SIZE="1">INDEPTH: </font><font SIZE="2">  
      &lt;a href="<nowiki>http://</nowiki>www.cbc.ca/news/background/avianflu/">Avian Flu&lt;/a>&lt;/font>
    <a href="http://www.cbc.ca/news/background/avianflu/">Avian Flu</a></font>
    &lt;/ul>
    </ul>
    &lt;/p>
  </p>
    &lt;table align="right" cellpadding="0" cellspacing="4" hspace="4" width="220">
  <table align="right" cellpadding="0" cellspacing="4" hspace="4" width="220">
    &lt;tr>
    <tr>
    &lt;td align="center">
    <td align="center">
    &lt;img src="<nowiki>http://</nowiki>www.cbc.ca/gfx/pix/birdflu_china_cp_7707271.jpg" width="220" height="223" hspace="3" border="0">
    <img src="http://www.cbc.ca/gfx/pix/birdflu_china_cp_7707271.jpg" width="220" height="223" hspace="3" border="0">
    &lt;/td>
    </td>
    &lt;/tr>
    </tr>
    &lt;tr>
    <tr>
    &lt;td align="center">
    <td align="center">
    &lt;div class="caption">
    <div class="caption">
    &lt;font size="1" face="verdana,arial">&lt;i>&lt;/i>&lt;/font>
    <font size="1" face="verdana,arial"><i></i></font>
    &lt;/div>
    </div>
    &lt;/td>
    </td>
    &lt;/tr>
    </tr>
    &lt;/table>
  </table>
    &lt;p <span class="added">class="entry-content"</span>>State media says the new outbreaks are in...&lt;/p>
  <p CLASS="CONTENT">State media says the new outbreaks are in...</p>
    &lt;p <span class="added">class="entry-content"</span>>The news comes a day after China announced the ...&lt;/p>
  <p CLASS="CONTENT">The news comes a day after China announced the ...</p>
    &lt;p <span class="added">class="entry-content"</span>>In China's eastern Anhui province, authorities have ...&lt;/p>
  <p CLASS="CONTENT">In China's eastern Anhui province, authorities have ...</p>
    &lt;p <span class="added">class="entry-content"</span>>The province says the measure will prevent domestic ...&lt;/p>
  <p CLASS="CONTENT">The province says the measure will prevent domestic ...</p>
    &lt;p <span class="added">class="entry-content"</span>>Vietnamese health officials have confirmed that a  ...&lt;/p>
  <p CLASS="CONTENT">Vietnamese health officials have confirmed that a  ...</p>
    &lt;p <span class="added">class="entry-content"</span>>Doctors from the health department in the northern  ...&lt;/p>
  <p CLASS="CONTENT">Doctors from the health department in the northern  ...</p>
    &lt;p <span class="added">class="entry-content"</span>>Bird flu has killed 42 people in Vietnam since December  ...&lt;/p>
  <p CLASS="CONTENT">Bird flu has killed 42 people in Vietnam since December  ...</p>
    &lt;p <span class="added">class="entry-content"</span>>The World Health Organization fears the H5N1 strain of  ...&lt;/p>
  <p CLASS="CONTENT">The World Health Organization fears the H5N1 strain of  ...</p>
  &lt;/div>
  </div>
 
  &lt;p>&lt;font face="Verdana,Arial" size="1">with files from the Australian Broadcasting Corporation&lt;/font>&lt;/p>
  <p><font face="Verdana,Arial" size="1">with files from the <ADDRESS CLASS="CONTRIBUTOR">Australian Broadcasting Corporation</ADDRESS></font></p>
  &lt;/div>
</div>
  ...
...
&lt;/div>
</div>
</nowiki></pre>


Changes:
Changes:
* Added <code>&lt;div class="hfeed hentry"></code> around the single entry on the page
* Added <code>&lt;div class="hfeed hentry"></code> around the single entry on the page
* Added <code>&lt;div class="headline"></code> to the Entry Title
* Added <code>&lt;div class="entry-title"></code> to the Entry Title
* Added <code>&lt;span class="content"></code>...<code>&lt;/div></code> around every single paragraph -- this looks pathological but it may be the way this would need be produced from a template. The latter part of the document could be enclosed in a single "content" div but note that we did this so the "INDEPTH" part would not be marked as content,
* Added the class <code>class="entry-content"</code> to every paragraph, eg <code>&lt;p class="entry-content"></code>...<code>&lt;/p></code> -- this looks pathological but it may be the way this would need be produced from a template. The latter part of the document could be enclosed in a single "entry-content" div but note that we did this so the "INDEPTH" part would not be marked as content,
* Added <code>&lt;abbr class="published" title="YYYYMMDDThh:mm:ss+ZZZZ"></code>...<code>&lt;/abbr></code> around the Entry Datetime
* Added <code>&lt;abbr class="published" title="YYYYMMDDThh:mm:ss+ZZZZ"></code>...<code>&lt;/abbr></code> around the Entry Datetime
* Added <code>&lt;address></code> to the CBC Newsroom
* Added <code>&lt;address class="author vcard"></code> and <code>&lt;span class="fn org"></code> to the CBC Newsroom
* Added <code>&lt;address class="contributor"></code> to a contributor's name


Also note:
Also note:
* We may the document more XHTML compliant
* We made the document more XHTML compliant
* There is no <code>rel="bookmark"</code> so it is assumed to be the URI of the page
* There is no <code>rel="bookmark"</code> so it is assumed to be the URI of the page


=== Transformation 4 ===
= Transformation 4 =


A bulletin board ([http://forums.punbb.org/viewtopic.php?id=9135 PunBB])
A bulletin board ([http://forums.punbb.org/viewtopic.php?id=9135 PunBB])
Line 422: Line 421:
</nowiki></pre>
</nowiki></pre>


Transformed to hAtom compliant (changes shown in UPPER CASE for visibility only):
Transformed to hAtom compliant:
 
<pre><nowiki>
<body>
<div id="punwrap">
  <div id="punviewtopic" class="pun">


   <div id="brdheader" class="block">
&lt;body>
     ... header stuff ...
  &lt;div id="punwrap">
   &lt;div id="punviewtopic" class="pun">
    &lt;div id="brdheader" class="block">
    ... header stuff ...
     &lt;/div>
    &lt;div id="announce" class="block">
    ... announcement stuff ...
    &lt;/div>
    &lt;div class="linkst">
    ... controls for the blog
    &lt;/div>
    <span class="added">&lt;div class="hfeed"></span>
    &lt;div id="p54390" class="<span class="added">hentry</span> blockpost rowodd firstpost">
    &lt;h2>
      &lt;span>&lt;span class="conr">#1&nbsp;&lt;/span>
      &lt;a <span class="added">rel="bookmark"</span> href="viewtopic.php?pid=54390#p54390">
      <span class="added">&lt;abbr class="published" title="2005-10-16T10:36:24-0500"></span>2005-10-16 10:36:24<span class="added">&lt;/abbr></span>
      &lt;/a>&lt;/span>
    &lt;/h2>
    &lt;div class="box">
      &lt;div class="inbox">
      &lt;div class="postleft">
        &lt;dl>
        &lt;dt>&lt;strong><span class="added">&lt;address class="author vcard"></span>&lt;a <span class="added">class="url fn"</span>href="profile.php?id=2">Rickard&lt;/a><span class="added">&lt;/address></span>&lt;/strong>&lt;/dt>
        &lt;dd class="usertitle">&lt;strong>PunBB Developer&lt;/strong>&lt;/dd>
        &lt;dd class="postavatar">&lt;img src="img/avatars/2.png" width="60" height="60" alt="" />&lt;/dd>
        &lt;dd>From: 127.0.0.1&lt;/dd>
        &lt;dd>Registered: 2001-11-02&lt;/dd>
        &lt;dd>Posts: 7806&lt;/dd>
        &lt;dd class="usercontacts">&lt;a href="<nowiki>http://</nowiki>www.punbb.org/">Website&lt;/a>&lt;/dd>
        &lt;/dl>
      &lt;/div>
      &lt;div class="postright">
        &lt;h3 class="entry-title">PunBB 1.2.9&lt;/h3>
        &lt;div class="<span class="added">entry-content</span> postmsg">
        &lt;p>Just a quick note this time....&lt;/p>
        &lt;/div>
        &lt;div class="postsignature">&lt;hr />&quot;Programming is like sex: ...&lt;/div>
      &lt;/div>
      &lt;div class="clearer">&lt;/div>
      &lt;div class="postfootleft">&lt;p>Offline&lt;/p>&lt;/div>
      &lt;div class="postfootright">&lt;div>&nbsp;&lt;/div>&lt;/div>
      &lt;/div>
    &lt;/div>
    &lt;/div>
    &lt;div id="p54392" class="<span class="added">hentry</span> blockpost roweven">
    &lt;h2>
      &lt;span>&lt;span class="conr">#2&nbsp;&lt;/span>
      &lt;a <span class="added">rel="bookmark"</span> href="viewtopic.php?pid=54392#p54392">
      <span class="added">&lt;abbr class="published" title="2005-10-16T10:54:41-0500"></span>2005-10-16 10:54:41<span class="added">&lt;/abbr></span>
      &lt;/a>&lt;/span>
    &lt;/h2>
    &lt;div class="box">
      &lt;div class="inbox">
      &lt;div class="postleft">
        &lt;dl>
        &lt;dt>&lt;strong><span class="added">&lt;address class="author vcard"></span>&lt;a <span class="added">class="url fn"</span> href="profile.php?id=5298">IdleFire&lt;/a><span class="added">&lt;/address></span>&lt;/strong>&lt;/dt>
        &lt;dd class="usertitle">&lt;strong>Member&lt;/strong>&lt;/dd>
        &lt;dd class="postavatar">&lt;/dd>
        &lt;dd>Registered: 2005-10-14&lt;/dd>
        &lt;dd>Posts: 27&lt;/dd>
        &lt;/dl>
      &lt;/div>
      &lt;div class="postright">
        &lt;h3 class="entry-title"> Re: PunBB 1.2.9&lt;/h3>
        &lt;div class="<span class="added">entry-content</span> postmsg">
        &lt;p>...&lt;/p>
        &lt;/div>
      &lt;/div>
      &lt;div class="clearer">&lt;/div>
      &lt;div class="postfootleft">&lt;p>Offline&lt;/p>&lt;/div>
      &lt;div class="postfootright">&lt;div>&nbsp;&lt;/div>&lt;/div>
      &lt;/div>
    &lt;/div>
    &lt;/div>
   
    ... more entries ...
    <span class="added">&lt;/div></span>
    &lt;div id="brdfooter" class="block">
    ... footer stuff ...
    &lt;/div>
   </div>
   </div>
  </div>
</body>


  <div id="announce" class="block">
    ... announcement stuff ...
  </div>


  <div class="linkst">
    ... controls for the blog
  </div>


  <DIV CLASS="HFEED">
Changes:
  <div id="p54390" class="HENTRY blockpost rowodd firstpost">
* Added <code>&lt;div class="hfeed"></code> around the entries (as opposed to an existing <code>&lt;div</code> that enclosed more than entries.
    <h2>
* Added <code>class="hentry"</code> to each Entry
    <span><span class="conr">#1&nbsp;</span>
* Added <code>rel="bookmark"</code> to the Entry Permalinks
    <a REL="BOOKMARK" href="HTTP://FORUMS.PUNBB.ORG/viewtopic.php?pid=54390#p54390">
* Added <code>&lt;span class="entry-title"></code>...<code>&lt;/div></code> around the Entry Title
      <ABBR CLASS="POSTED" TITLE="20051016T103624-0500">2005-10-16 10:36:24</ABBR>
* Added <code>&lt;span class="entry-content"></code>...<code>&lt;/div></code> around the Entry Content
    </a></span>
* Added <code>&lt;abbr class="published" title="YYYY-MM-DDThh:mm:ss+ZZZZ"></code>...<code>&lt;/abbr></code> around the Entry Datetime
    </h2>
* Added <code>&lt;address class="author vcard"></code> and <code>class="fn url"</code> to the poster's name
    <div class="box">
    <div class="inbox">
      <div class="postleft">
      <dl>
        <dt><strong><ADDRESS><a href="profile.php?id=2">Rickard</a></ADDRESS></strong></dt>


        <dd class="usertitle"><strong>PunBB Developer</strong></dd>
Also note:
        <dd class="postavatar"><img src="img/avatars/2.png" width="60" height="60" alt="" /></dd>
* We did not need to add <code>id="###"</code> to the Entry
        <dd>From: 127.0.0.1</dd>
        <dd>Registered: 2001-11-02</dd>
        <dd>Posts: 7806</dd>
        <dd class="usercontacts"><a href="http://www.punbb.org/">Website</a></dd>
 
      </dl>
      </div>
      <div class="postright">
      <h3 class="HEADLINE">PunBB 1.2.9</h3>
      <div class="CONTENT postmsg">
        <p>Just a quick note this time....</p>
 
      </div>
      <div class="postsignature"><hr />&quot;Programming is like sex: ...</div>
      </div>
      <div class="clearer"></div>
      <div class="postfootleft"><p>Offline</p></div>
      <div class="postfootright"><div>&nbsp;</div></div>
    </div>
    </div>
 
  </div>
 
  <div id="p54392" class="HENTRY blockpost roweven">
    <h2>
    <span><span class="conr">#2&nbsp;</span>
    <a REL="BOOKMARK" href="HTTP://FORUMS.PUNBB.ORG/viewtopic.php?pid=54392#p54392">
      <ABBR CLASS="POSTED" TITLE="20051016T1105441-0500">2005-10-16 10:54:41</ABBR>
    </a></span>
    </h2>
    <div class="box">
    <div class="inbox">
      <div class="postleft">
      <dl>
        <dt><strong><ADDRESS CLASS="VCARD"><a CLASS="URL" href="profile.php?id=5298">IdleFire</a></ADDRESS></strong></dt>


        <dd class="usertitle"><strong>Member</strong></dd>
= Transformation 5 =
        <dd class="postavatar"></dd>
        <dd>Registered: 2005-10-14</dd>
        <dd>Posts: 27</dd>
      </dl>
      </div>
      <div class="postright">


      <h3 class="HEADLINE"> Re: PunBB 1.2.9</h3>
Transforming RSS to hatom using MagpieRSS. [http://factoryjoe.com/projects/sixwords/index.txt PHP source available]. Result:
      <div class="CONTENT postmsg">
        <p>...</p>
      </div>
      </div>
      <div class="clearer"></div>
      <div class="postfootleft"><p>Offline</p></div>


      <div class="postfootright"><div>&nbsp;</div></div>
<ol><li>&lt;html&gt;</li>
    </div>
<li>&lt;body <span class="added">class="hfeed"</span> id="<span class="nu0">173333</span>"&gt;</li>
    </div>
<li>&nbsp;</li>
  </div>
<li>&lt;div id="content" <span class="added">class="hentry"</span>&gt;</li>
 
<li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;h2 <span class="added">class="entry-title"</span>&gt;</li>
  ... more entries ...
<li>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; No. &lt;a href="http://twitter.com/ssmith/statuses/<span class="nu0">173333</span>" <span class="added">rel="bookmark"</span>&gt;<span class="nu0">173333</span>&lt;/a&gt;</li>
  </DIV>
<li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/h2&gt;</li>
<li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;p <span class="added">class="entry-content"</span>&gt;</li>
<li>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;Sweet potato pie. Sugar coma. Die.</li>
<li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/p&gt;</li>
<li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;</li>
<li>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;small&gt;Penned by &lt;span <span class="added">class="vcard author"</span>&gt;&lt;a href="http://twitter.com/ssmith" <span class="added">class="url fn"</span>&gt;Sean&lt;/a&gt;&lt;/span&gt; at <span class="added">&lt;abbr title="Fri, <span class="nu0">24</span> Nov <span class="nu0">2006</span> <span class="nu0">01</span>:<span class="nu0">03</span>:<span class="nu0">11</span> <span class="nu0">+0000</span>" class="updated"&gt;</span><span class="nu0">1</span>:03am&lt;/abbr&gt;&lt;/small&gt;.</li>
<li>&nbsp; &nbsp; &nbsp; &nbsp; &lt;/p&gt;</li>
<li>&nbsp;</li>
<li>&lt;/div&gt;</li>
<li>&lt;/body&gt;</li>
<li>&lt;/html&gt;</li></ol>


  <div id="brdfooter" class="block">
= More Examples =
    ... footer stuff ...
  </div>


  </div>
hAtom for search results, from [[http://randomchaos.com/microformats/base/ Microformats Base]]:
</div>
</body>
</nowiki></pre>


&lt;li <span class="added">class="hentry"</span>>&lt;a <span class="added">rel="bookmark"</span> href="http://tantek.com/presentations/2006/03/what-are-microformats/" <span class="added">class="headline"</span>>http://tantek.com/presentations/2006/03/what-are-microformats/&lt;/a> <span class="added">updated &lt;abbr class="published" title="2006-07-10T14:05:54-04:00">2006-07-10 14:05:54&lt;/abbr></span>&lt;/li>


Changes:
Changes:
* Added <code>&lt;div class="hfeed"></code> around the entries (as opposed to an existing <code>&lt;div</code> that enclosed more than entries.
* Added <code>class="hentry"</code> to each result
* Added <code>class="hentry"</code> to each Entry
* Added <code>rel="bookmark"</code> to each result link
* Added <code>rel="bookmark"</code> to the Entry Permalinks
* Added <code>&lt;abbr class="updated" title="YYYY-MM-DDThh:mm:ss+ZZZZ"></code>...<code>&lt;/abbr></code> for date of index update
* Made the Entry Permalink non-relative
* Added <code>&lt;span class="headline"></code>...<code>&lt;/div></code> around the Entry Title
* Added <code>&lt;span class="content"></code>...<code>&lt;/div></code> around the Entry Content
* Added <code>&lt;abbr class="posted" title="YYYYMMDDThh:mm:ss+ZZZZ"></code>...<code>&lt;/abbr></code> around the Entry Datetime
* Added <code>&lt;address></code> to the poster's name
 
Also note:
* We did not need to add <code>id="###"</code> to the Entry
 
=== More Examples ===

Latest revision as of 06:51, 20 August 2013

hAtom examples

Examples of hatom - Work in progress!

Contributors

Transformation 1

A well behaved weblog.

Original:

<body>
 <div id="wrap">
  <div id="content">
   ...
   <div class="entry">
    <h3 id="post-60">
     <a href="http://www.microformats.org/blog/..." rel="bookmark" title="...">Wiki Attack</a>
    </h3>
    <p>We had a bit of trouble with ...</p>
    <p>We’ve restored the wiki and ...</p>
    <p>If anyone is working to combat said spammers ...</p>

    <h4 class="tags">Technorati Tags:</h4>
    <ul class="tags">
     <li><a href="http://technorati.com/tag/mediawiki" rel="tag">mediawiki</a></li>
     <li><a href="http://technorati.com/tag/microformats" rel="tag">microformats</a></li>
     <li><a href="http://technorati.com/tag/spam" rel="tag">spam</a></li>
    </ul>

    <ul class="post-info">
     <li>
      <a href="http://www.microformats.org/blog/..." rel="bookmark" title="...">October 10th, 2005</a>
     </li>
     <li>
      <address class="vcard"><a class="url fn" href="http://theryanking.com">Ryan King</a></address>
     </li>
     <li>
      <a href="http://www.microformats.org/blog/...">4 Comments</a>
     </li>
    </ul>
   </div>
   
   <div class="entry">
   ....
   </div>
   ...
  </div>
 </div>
</body>

Transformed to hAtom compliant:

<body>
 <div id="wrap">
  <div class="hfeed" id="content">
   ...
   <div class="hentry entry" id="post-60">
    <h3 class="entry-title">
     <a href="http://www.microformats.org/blog/..." rel="bookmark" title="...">Wiki Attack</a>
    </h3>
    <div class="entry-content">
     <p>We had a bit of trouble with ...</p>
     <p>We’ve restored the wiki and ...</p>
     <p>If anyone is working to combat said spammers ...</p>
    </div>

    <h4 class="tags">Technorati Tags:</h4>
    <ul class="tags">
     <li><a href="http://technorati.com/tag/mediawiki" rel="tag">mediawiki</a></li>
     <li><a href="http://technorati.com/tag/microformats" rel="tag">microformats</a></li>
     <li><a href="http://technorati.com/tag/spam" rel="tag">spam</a></li>
    </ul>

    <ul class="post-info">
     <li>
      <a href="http://www.microformats.org/blog/..." rel="bookmark" 
        title="..."><abbr class="published" title="2005-10-10T14:07:00-07:00">October 10th, 2005</abbr></a>
     </li>
     <li>
      <address class="vcard author"><a class="url fn" href="http://theryanking.com">Ryan King</a></address>
     </li>
     <li>
      <a href="http://www.microformats.org/blog/...">4 Comments</a>
     </li>
    </ul>
   </div>
   
   <div class="hentry entry" id="post-59">
   ....
   </div>
   ...
  </div>
 </div>
</body>


Changes:

  • Added class="hfeed" to Feed
  • Added class="hentry" to Entry
  • Added class="entry-title" to Entry Title
  • Moved id="###" from <h3> to Entry
  • Added <div class="entry-content">...</div> around the Entry Content
  • Added <abbr class="published" title="YYYY-MM-DDThh:mm:ss+ZZ:ZZ">...</abbr> around the Entry Datetime
  • Added class="author" to <address>

Also note:

  • We did not need to add a <address> element
  • We did not need to add a <h#> element
  • We did not need to add a rel="bookmark" to Entry Permalinks

Transformation 2

A not-so well behaved weblog (an older blogspot weblog)

Original:

<body bgcolor="...">

 <div class="posts">
  <a name="112993192128302715"> </a><br>
  <div style="clear:both;"></div><strong>Nelson's final prayer</strong> 
  written on the night before Trafalgar:<blockquote>May the Great God, ... heart.
  <div style="clear:both; padding-bottom: 0.25em;"></div>
  <br>
  <span class="byline">
   posted by Natalie at 
   <a href="2005_10_16_nataliesolent_archive.html#112993192128302715">9:49 PM</a>
  </span>
 </div>

 <div class="posts">
  <a name="112993022840118939"> </a>
  <br>
  <div style="clear:both;"></div><strong>I really, truly </strong>didn't go ... view.
  <div style="clear:both; padding-bottom: 0.25em;"></div>
  <br>
  <span class="byline">
   posted by Natalie at 
   <a href="2005_10_16_nataliesolent_archive.html#112993022840118939">9:28 PM</a>
  </span>
 </div>
 ...

</body>

Transformed to hAtom compliant:


<body bgcolor="...">

 <div class="hfeed">
  <div class="hentry posts" id="112993192128302715">
   <strong class="entry-title entry-content">
    Nelson's final prayer
   </strong> 
   <span class="entry-content">
    written on the night before Trafalgar:<blockquote>May the Great God, ... heart.
   </span>
   <div>
    <span class="byline">posted by <span class="author vcard"><span class="fn">Natalie</span></span> at 
     <a rel="bookmark" href="2005_10_16_nataliesolent_archive.html#112993192128302715">
     <abbr class="published" title="2005-10-24t09:49:00-00:00">9:49 PM</abbr></a>
    </span>
   </div>
  </div>

  <div class="hentry posts" id="112993022840118939">
   <strong class="heading content>"I really, truly </strong>
   <span class="entry-content">
    didn't go ... view.
   </span>
   <div>
    <span class="byline">
     posted by <span class="author vcard"><span class="fn">Natalie</span></span> at 
     <a rel="bookmark" href="2005_10_16_nataliesolent_archive.html#112993022840118939">
     <abbr class="published" title="2005-10-24t09:49:00-00:00">9:28 pm</abbr></a>
    </span>
   </div>
  </div>
 ...
 </div>

</body>


Changes:

  • Added class="hfeed" to Feed
  • Added class="hentry" to each Entry
  • Added class="entry-title" to each Entry Title
  • Moved id="###" up to the Entry (and deleted the empty anchor block)
  • Added rel="bookmark" to the Entry Permalinks
  • Added <span class="entry-content">...</div> around the Entry Title (!)
  • Added <span class="entry content">...</div> around the Entry Content
  • Added <abbr class="published" title="YYYY-MM-DDThh:mm:ss+ZZZZ">...</abbr> around the Entry Datetime
  • Added <span class="author vcard"> and <span class="fn"> to the poster's name

Also note:

  • the ID/fragments are not XHTML -- this is a big problem.
  • there are multiple content blocks, because Natalie Solent embeds the title in the content
  • cleaned up lots of crap HTML presentation stuff, with the assumption it would be fixed in the stylesheet
  • this is one of the uglier transformations you're likely to see

Transformation 3

A media page (from CBC Newsworld).

Original:

<div class="news">
 <div class="story">
  <h1>China confirms new bird flu outbreaks</h1>
  <span class="byline">Last Updated Tue, 22 Nov 2005 23:26:18 EST</span>
  <div class="text"><a href="/news/credit.html">CBC News</a></div>

  <div class="text">
   <p>
   China has confirmed three new outbreaks of bird flu, ...
   <p>
    <ul>
     <li><font size="1">INDEPTH: </font><font size="2"> 
     <a href="http://www.cbc.ca/news/background/avianflu/">Avian Flu</a></font>
    </ul>
   </p>
   <table align="right" cellpadding="0" cellspacing="4" hspace="4" width="220">
    <tr>
    <td align="center">
    <img src="http://www.cbc.ca/gfx/pix/birdflu_china_cp_7707271.jpg" width="220" height="223" hspace="3" border="0">
    </td>
    </tr>
    <tr>
    <td align="center">
    <div class="caption">
    <font size="1" face="verdana,arial"><i></i></font>
    </div>
    </td>
    </tr>
   </table>
   <p>State media says the new outbreaks are in...</p>
   <p>The news comes a day after China announced the ...</p>
   <p>In China's eastern Anhui province, authorities have ...</p>
   <p>The province says the measure will prevent domestic ...</p>
   <p>Vietnamese health officials have confirmed that a  ...</p>
   <p>Doctors from the health department in the northern  ...</p>
   <p>Bird flu has killed 42 people in Vietnam since December  ...</p>
   <p>The World Health Organization fears the H5N1 strain of  ...</p>
  </div>

  <p><font face="Verdana,Arial" size="1">with files from the Australian Broadcasting Corporation</font></p>
 </div>
 ...
</div>

Transformed to hAtom compliant:

<div class="news">
 <div class="hfeed hentry story">
  <h1 class="entry-title">China confirms new bird flu outbreaks</h1>
  <span class="byline">Last Updated
  <abbr class="published" title="2005-11-23T04:26:18Z">Tue, 22 Nov 2005 23:26:18 EST</abbr>
  </span>
  <address class="vcard author"><span class="text"><a class="url" href="/news/credit.html">CBC News</a></span></address>

  <div class="text">
   <p class="entry-content">
   China has confirmed three new outbreaks of bird flu, ...
   </p>
   <p>
    <ul>
     <li><font size="1">INDEPTH: </font><font size="2"> 
     <a href="http://www.cbc.ca/news/background/avianflu/">Avian Flu</a></font>
    </ul>
   </p>
   <table align="right" cellpadding="0" cellspacing="4" hspace="4" width="220">
    <tr>
    <td align="center">
    <img src="http://www.cbc.ca/gfx/pix/birdflu_china_cp_7707271.jpg" width="220" height="223" hspace="3" border="0">
    </td>
    </tr>
    <tr>
    <td align="center">
    <div class="caption">
    <font size="1" face="verdana,arial"><i></i></font>
    </div>
    </td>
    </tr>
   </table>
   <p class="entry-content">State media says the new outbreaks are in...</p>
   <p class="entry-content">The news comes a day after China announced the ...</p>
   <p class="entry-content">In China's eastern Anhui province, authorities have ...</p>
   <p class="entry-content">The province says the measure will prevent domestic ...</p>
   <p class="entry-content">Vietnamese health officials have confirmed that a  ...</p>
   <p class="entry-content">Doctors from the health department in the northern  ...</p>
   <p class="entry-content">Bird flu has killed 42 people in Vietnam since December  ...</p>
   <p class="entry-content">The World Health Organization fears the H5N1 strain of  ...</p>
  </div>

  <p><font face="Verdana,Arial" size="1">with files from the Australian Broadcasting Corporation</font></p>
 </div>
 ...
</div>

Changes:

  • Added <div class="hfeed hentry"> around the single entry on the page
  • Added <div class="entry-title"> to the Entry Title
  • Added the class class="entry-content" to every paragraph, eg <p class="entry-content">...</p> -- this looks pathological but it may be the way this would need be produced from a template. The latter part of the document could be enclosed in a single "entry-content" div but note that we did this so the "INDEPTH" part would not be marked as content,
  • Added <abbr class="published" title="YYYYMMDDThh:mm:ss+ZZZZ">...</abbr> around the Entry Datetime
  • Added <address class="author vcard"> and <span class="fn org"> to the CBC Newsroom

Also note:

  • We made the document more XHTML compliant
  • There is no rel="bookmark" so it is assumed to be the URI of the page

Transformation 4

A bulletin board (PunBB)

Original:

<body>
 <div id="punwrap">
  <div id="punviewtopic" class="pun">

   <div id="brdheader" class="block">
    ... header stuff ...
   </div>

   <div id="announce" class="block">
    ... announcement stuff ...
   </div>

   <div class="linkst">
    ... controls for the blog
   </div>

   <div id="p54390" class="blockpost rowodd firstpost">
    <h2>
     <span><span class="conr">#1 </span>
     <a href="viewtopic.php?pid=54390#p54390">2005-10-16 10:36:24</a></span>
    </h2>
    <div class="box">
     <div class="inbox">
      <div class="postleft">
       <dl>
        <dt><strong><a href="profile.php?id=2">Rickard</a></strong></dt>

        <dd class="usertitle"><strong>PunBB Developer</strong></dd>
        <dd class="postavatar"><img src="img/avatars/2.png" width="60" height="60" alt="" /></dd>
        <dd>From: 127.0.0.1</dd>
        <dd>Registered: 2001-11-02</dd>
        <dd>Posts: 7806</dd>
        <dd class="usercontacts"><a href="http://www.punbb.org/">Website</a></dd>

       </dl>
      </div>
      <div class="postright">
       <h3>PunBB 1.2.9</h3>
       <div class="postmsg">
        <p>Just a quick note this time....</p>

       </div>
       <div class="postsignature"><hr />"Programming is like sex: ...</div>
      </div>
      <div class="clearer"></div>
      <div class="postfootleft"><p>Offline</p></div>
      <div class="postfootright"><div> </div></div>
     </div>
    </div>

   </div>

   <div id="p54392" class="blockpost roweven">
    <h2><span><span class="conr">#2 </span><a href="viewtopic.php?pid=54392#p54392">2005-10-16 10:54:41</a></span></h2>
    <div class="box">
     <div class="inbox">
      <div class="postleft">
       <dl>
        <dt><strong><a href="profile.php?id=5298">IdleFire</a></strong></dt>

        <dd class="usertitle"><strong>Member</strong></dd>
        <dd class="postavatar"></dd>
        <dd>Registered: 2005-10-14</dd>
        <dd>Posts: 27</dd>
       </dl>
      </div>
      <div class="postright">

       <h3> Re: PunBB 1.2.9</h3>
       <div class="postmsg">
        <p>...</p>
       </div>
      </div>
      <div class="clearer"></div>
      <div class="postfootleft"><p>Offline</p></div>

      <div class="postfootright"><div> </div></div>
     </div>
    </div>
   </div>
   
   ... more entries ...

   <div id="brdfooter" class="block">
    ... footer stuff ...
   </div>

  </div>
 </div>
</body>

Transformed to hAtom compliant:

<body>
 <div id="punwrap">
  <div id="punviewtopic" class="pun">

   <div id="brdheader" class="block">
    ... header stuff ...
   </div>

   <div id="announce" class="block">
    ... announcement stuff ...
   </div>

   <div class="linkst">
    ... controls for the blog
   </div>

   <div class="hfeed">
   <div id="p54390" class="hentry blockpost rowodd firstpost">
    <h2>
     <span><span class="conr">#1 </span>
     <a rel="bookmark" href="viewtopic.php?pid=54390#p54390">
      <abbr class="published" title="2005-10-16T10:36:24-0500">2005-10-16 10:36:24</abbr>
     </a></span>
    </h2>
    <div class="box">
     <div class="inbox">
      <div class="postleft">
       <dl>
        <dt><strong><address class="author vcard"><a class="url fn"href="profile.php?id=2">Rickard</a></address></strong></dt>

        <dd class="usertitle"><strong>PunBB Developer</strong></dd>
        <dd class="postavatar"><img src="img/avatars/2.png" width="60" height="60" alt="" /></dd>
        <dd>From: 127.0.0.1</dd>
        <dd>Registered: 2001-11-02</dd>
        <dd>Posts: 7806</dd>
        <dd class="usercontacts"><a href="http://www.punbb.org/">Website</a></dd>

       </dl>
      </div>
      <div class="postright">
       <h3 class="entry-title">PunBB 1.2.9</h3>
       <div class="entry-content postmsg">
        <p>Just a quick note this time....</p>

       </div>
       <div class="postsignature"><hr />"Programming is like sex: ...</div>
      </div>
      <div class="clearer"></div>
      <div class="postfootleft"><p>Offline</p></div>
      <div class="postfootright"><div> </div></div>
     </div>
    </div>

   </div>

   <div id="p54392" class="hentry blockpost roweven">
    <h2>
     <span><span class="conr">#2 </span>
     <a rel="bookmark" href="viewtopic.php?pid=54392#p54392">
      <abbr class="published" title="2005-10-16T10:54:41-0500">2005-10-16 10:54:41</abbr>
     </a></span>
    </h2>
    <div class="box">
     <div class="inbox">
      <div class="postleft">
       <dl>
        <dt><strong><address class="author vcard"><a class="url fn" href="profile.php?id=5298">IdleFire</a></address></strong></dt>

        <dd class="usertitle"><strong>Member</strong></dd>
        <dd class="postavatar"></dd>
        <dd>Registered: 2005-10-14</dd>
        <dd>Posts: 27</dd>
       </dl>
      </div>
      <div class="postright">

       <h3 class="entry-title"> Re: PunBB 1.2.9</h3>
       <div class="entry-content postmsg">
        <p>...</p>
       </div>
      </div>
      <div class="clearer"></div>
      <div class="postfootleft"><p>Offline</p></div>

      <div class="postfootright"><div> </div></div>
     </div>
    </div>
   </div>
   
   ... more entries ...
   </div>

   <div id="brdfooter" class="block">
    ... footer stuff ...
   </div>

</body>


Changes:

  • Added <div class="hfeed"> around the entries (as opposed to an existing <div that enclosed more than entries.
  • Added class="hentry" to each Entry
  • Added rel="bookmark" to the Entry Permalinks
  • Added <span class="entry-title">...</div> around the Entry Title
  • Added <span class="entry-content">...</div> around the Entry Content
  • Added <abbr class="published" title="YYYY-MM-DDThh:mm:ss+ZZZZ">...</abbr> around the Entry Datetime
  • Added <address class="author vcard"> and class="fn url" to the poster's name

Also note:

  • We did not need to add id="###" to the Entry

Transformation 5

Transforming RSS to hatom using MagpieRSS. PHP source available. Result:

  1. <html>
  2. <body class="hfeed" id="173333">
  3.  
  4. <div id="content" class="hentry">
  5.         <h2 class="entry-title">
  6.                 No. <a href="http://twitter.com/ssmith/statuses/173333" rel="bookmark">173333</a>
  7.         </h2>
  8.         <p class="entry-content">
  9.                   Sweet potato pie. Sugar coma. Die.
  10.         </p>
  11.         <p>
  12.                 <small>Penned by <span class="vcard author"><a href="http://twitter.com/ssmith" class="url fn">Sean</a></span> at <abbr title="Fri, 24 Nov 2006 01:03:11 +0000" class="updated">1:03am</abbr></small>.
  13.         </p>
  14.  
  15. </div>
  16. </body>
  17. </html>

More Examples

hAtom for search results, from [Microformats Base]:

<li class="hentry"><a rel="bookmark" href="http://tantek.com/presentations/2006/03/what-are-microformats/" class="headline">http://tantek.com/presentations/2006/03/what-are-microformats/</a> updated <abbr class="published" title="2006-07-10T14:05:54-04:00">2006-07-10 14:05:54</abbr></li>

Changes:

  • Added class="hentry" to each result
  • Added rel="bookmark" to each result link
  • Added <abbr class="updated" title="YYYY-MM-DDThh:mm:ss+ZZZZ">...</abbr> for date of index update