I'm quite satisfied with the Stack Overflow sites, but there's a (sort of) minor feature I'm missing, which would be rather easy to implement: microformats.
In essence, microformats serve the purpose of adding semantic, machine-parseable information to websites. Some more common uses are
- vcard-like information about authors
- Tagging events with in-line iCal calendar markup
- Establishing relations between websites, users, and links.
The general principle is that microformats are added by using the class attribute of HTML elements. This way, there's absolutely no problem with compatability, as browsers just ignore classes they don't know what to do with.
The hCard and hCalendar microformats allow embedding of vcard and iCal information into the flow of the page, for example. Also, there are definitions (along with XDMP profiles)
What I was thinking of that could benefit the sites:
- Adding `hCard` info to profile pages as well as any place where user information is displayed.
- Using `rel="tag"` notation to designate tagspaces.
- Using `rel="me"` notation on profile pages to designate the user's home page. (A useful feature for identity consolidation, which slots in quite well with OpenID.)
- Not sure about this one, but using the `hAtom` format to define an in-line Atom feed. This could also be enhanced by simultaneously adding the Atom Publishing API and autodiscovery headers for said API.
A simple example, using my profile badge:
<div class="user-info">
<div class="user-action-time">
answered <span title="2009-07-14 12:35:48Z UTC" class="relativetime">Jul 14 at 12:35</span>
</div>
<div class="user-gravatar32">
<a href="/users/11716/towo">
<img src="http://www.gravatar.com/avatar/fabc12ff04817d5768e0388e94a0c868?s=32&d=identicon&r=PG" alt="" height="32" width="32">
</a>
</div>
<div class="user-details">
<a href="/users/11716/towo">towo</a>
[SNIP: badge info]
</div>
</div>
Would simply look like:
<div class="user-info vcard">
<div class="user-action-time">
answered <span title="2009-07-14 12:35:48Z UTC" class="relativetime">Jul 14 at 12:35</span>
</div>
<div class="user-gravatar32">
<a href="/users/11716/towo">
<img class="photo" src="http://www.gravatar.com/avatar/fabc12ff04817d5768e0388e94a0c868?s=32&d=identicon&r=PG" alt="" height="32" width="32">
</a>
</div>
<div class="user-details">
<a class="url fn" href="/users/11716/towo">towo</a>
[SNIP: badge info]
</div>
</div>
Some further reading on MFs: