xfolk-pollas: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
No edit summary
 
Line 2: Line 2:
<p>Anders Pollas maintains a [http://pollas.dk/ blog] where he discusses music, media, and new means of distribution for information products.  His link blog already has many semantic elements.  Here is the version before xFolk with items to be changed marked with a comment at the end of the line.  Note that Pollas does not publish tags for his links.</p>
<p>Anders Pollas maintains a [http://pollas.dk/ blog] where he discusses music, media, and new means of distribution for information products.  His link blog already has many semantic elements.  Here is the version before xFolk with items to be changed marked with a comment at the end of the line.  Note that Pollas does not publish tags for his links.</p>


<pre>&lt;ul class=“delicious”&gt;
<pre>&lt;ul class="delicious"&gt;
   &lt;li&gt;
   &lt;li&gt;
     &lt;a href=“http://db.tidbits.com/getbits.acgi?tbart=07140”&gt;
     &lt;a href="http://db.tidbits.com/getbits.acgi?tbart=07140"&gt;
       TidBITS: Catching Up with the Voice of Macintosh: Fred
       TidBITS: Catching Up with the Voice of Macintosh: Fred
     &lt;/a&gt;  
     &lt;/a&gt;  
     &lt;div class=“extended”&gt; <!-- will change -->
     &lt;div class="extended"&gt; <!-- will change -->
       Airport meetup with ... Fred
       Airport meetup with ... Fred
     &lt;/div&gt;
     &lt;/div&gt;
Line 15: Line 15:
<p>One issue with Pollas' strategy is that he specifies a collection of entries vs. one entry at a time as required by xFolk.  Therefore, we will have to add a container element for the entry.  Here is the altered version.</p>
<p>One issue with Pollas' strategy is that he specifies a collection of entries vs. one entry at a time as required by xFolk.  Therefore, we will have to add a container element for the entry.  Here is the altered version.</p>


<pre>&lt;ul class=“delicious”&gt;
<pre>&lt;ul class="delicious"&gt;
   &lt;li class=“xfolkentry”&gt; <!-- changed -->
   &lt;li class="xfolkentry"&gt; <!-- changed -->
     &lt;a class=“taggedlink” <!-- changed -->
     &lt;a class="taggedlink" <!-- changed -->
     href=“http://db.tidbits.com/getbits.acgi?tbart=07140”&gt;
     href="http://db.tidbits.com/getbits.acgi?tbart=07140"&gt;
       TidBITS: Catching Up with the Voice of Macintosh: Fred
       TidBITS: Catching Up with the Voice of Macintosh: Fred
     &lt;/a&gt;  
     &lt;/a&gt;  
     &lt;div class=“description”&gt; <!-- changed -->
     &lt;div class="description"&gt; <!-- changed -->
       Airport meetup with ... Fred
       Airport meetup with ... Fred
     &lt;/div&gt;
     &lt;/div&gt;
   &lt;/li&gt;
   &lt;/li&gt;
&lt;/ul&gt;</pre>
&lt;/ul&gt;</pre>

Revision as of 20:25, 10 July 2005

Anders Pollas

Anders Pollas maintains a blog where he discusses music, media, and new means of distribution for information products. His link blog already has many semantic elements. Here is the version before xFolk with items to be changed marked with a comment at the end of the line. Note that Pollas does not publish tags for his links.

<ul class="delicious">
  <li>
    <a href="http://db.tidbits.com/getbits.acgi?tbart=07140">
      TidBITS: Catching Up with the Voice of Macintosh: Fred
    </a> 
    <div class="extended"> <!-- will change -->
      Airport meetup with ... Fred
    </div>
  </li>
</ul>

One issue with Pollas' strategy is that he specifies a collection of entries vs. one entry at a time as required by xFolk. Therefore, we will have to add a container element for the entry. Here is the altered version.

<ul class="delicious">
  <li class="xfolkentry"> <!-- changed -->
    <a class="taggedlink" <!-- changed -->
     href="http://db.tidbits.com/getbits.acgi?tbart=07140">
      TidBITS: Catching Up with the Voice of Macintosh: Fred
    </a> 
    <div class="description"> <!-- changed -->
      Airport meetup with ... Fred
    </div>
  </li>
</ul>