<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom"><title>Simon Willison's Weblog: trackback</title><link href="http://simonwillison.net/" rel="alternate"/><link href="http://simonwillison.net/tags/trackback.atom" rel="self"/><id>http://simonwillison.net/</id><updated>2007-12-07T01:04:36+00:00</updated><author><name>Simon Willison</name></author><entry><title>Blogmaker, a free blogging app for Django</title><link href="https://simonwillison.net/2007/Dec/7/blogmaker/#atom-tag" rel="alternate"/><published>2007-12-07T01:04:36+00:00</published><updated>2007-12-07T01:04:36+00:00</updated><id>https://simonwillison.net/2007/Dec/7/blogmaker/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://blog.blogcosm.com/2007/12/06/developers-we-just-released-blogmaker-free-blogging-app-django/"&gt;Blogmaker, a free blogging app for Django&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
“Blogmaker is a full-featured, production-quality blogging application for Django. It supports trackbacks, ping and comments with moderation and honeypot spam prevention.”

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://blog.michaeltrier.com/2007/12/6/blogmaker-for-django"&gt;Michael Trier&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/blogging"&gt;blogging&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/django"&gt;django&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/michael-trier"&gt;michael-trier&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;



</summary><category term="blogging"/><category term="django"/><category term="michael-trier"/><category term="trackback"/></entry><entry><title>TrackBack and Pingback supported by CNET News.com</title><link href="https://simonwillison.net/2004/Nov/24/trackback/#atom-tag" rel="alternate"/><published>2004-11-24T01:04:47+00:00</published><updated>2004-11-24T01:04:47+00:00</updated><id>https://simonwillison.net/2004/Nov/24/trackback/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://news.com.com/TrackBack and Pingback supported by CNET News.com/2030-9368_3-5462850.html"&gt;TrackBack and Pingback supported by CNET News.com&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Blog technolog goes mainstream.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://photomatt.net/2004/11/23/tb-pb-news/"&gt;Photo Matt&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/cnet"&gt;cnet&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/pingback"&gt;pingback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;



</summary><category term="cnet"/><category term="pingback"/><category term="trackback"/></entry><entry><title>Signing comments on blogs</title><link href="https://simonwillison.net/2003/Jul/22/signingComments/#atom-tag" rel="alternate"/><published>2003-07-22T21:10:50+00:00</published><updated>2003-07-22T21:10:50+00:00</updated><id>https://simonwillison.net/2003/Jul/22/signingComments/#atom-tag</id><summary type="html">
    &lt;p&gt;Adrian Holovaty has implemented &lt;a href="http://www.holovaty.com/blog/archive/2003/07/22/0211" title="New weblog feature: Reserved comment names"&gt;reserved comment names&lt;/a&gt; in his blog, a feature that prevents anyone apart from him from using the names "Adrian", "Adrian H." or "Adrian Holovaty" when posting a comment. François Nonnenmacher suggests &lt;a href="http://www.padawan.info/trusted_comments.html" title="Trusted comments"&gt;extending the idea&lt;/a&gt; to allow people to "confirm" their authorship of comments on any blog using a TrackBack sent to their site that in turn causes them to be sent an alert email, which they can then use to confirm their comment. I like his idea of authentication based on &lt;acronym title="Uniform Resource Locator"&gt;URL&lt;/acronym&gt;s (email addresses are no good; they should not be publically displayed for fear of spam harvesters) but I think I've come up with an alternative authentication scheme that removes the need for the user to manually confirm authorship. This is pretty complicated, so bare with me.&lt;/p&gt;

&lt;ol&gt;
 &lt;li&gt;The comment author enter's their comment in to a form on the site. They see a standard icon indicating that the blog in question supports comment signing. Rather than manually entering their name and &lt;acronym title="Uniform Resource Locator"&gt;URL&lt;/acronym&gt;, they activate a bookmarklet that they have previously added to their browser.&lt;/li&gt;
 &lt;li&gt;The bookmarklet fills in the name and &lt;acronym title="Uniform Resource Locator"&gt;URL&lt;/acronym&gt; fields for them. It also takes the comment, appends a secret key (stored in the bookmarklet) and finds the MD5 hash of the new string, using the &lt;a href="http://pajhome.org.uk/crypt/md5/index.html"&gt;Javascript MD5 library&lt;/a&gt;. It inserts this hash in to a hidden field in the comment form.&lt;/li&gt;
 &lt;li&gt;The user can now submit the new comment. That's all they have to do.&lt;/li&gt;
 &lt;li&gt;The weblog server now kicks in to action. If the comment has not been signed (there is no hash in the hidden field) it adds the comment normally, noting that it should be displayed as an "unsigned" comment on the comments page. End of story.&lt;/li&gt;
 &lt;li&gt;If it &lt;em&gt;has&lt;/em&gt; been signed, the server has some work to do. First it must start loading the &lt;acronym title="Uniform Resource Locator"&gt;URL&lt;/acronym&gt; indicated by the user on the comment form. It is looking for a &lt;code&gt;&amp;lt;link rel="signature"&amp;gt;&lt;/code&gt; element, which will provide the &lt;acronym title="Uniform Resource Locator"&gt;URL&lt;/acronym&gt; of a signature authenticating web service. If the &amp;lt;/head&amp;gt; tag is reached, the system can assume the link element does not exist and can mark the comment as "unsigned",&lt;/li&gt;
 &lt;li&gt;If the web service is found, the server can now send it the comment and the User's site &lt;acronym title="Uniform Resource Locator"&gt;URL&lt;/acronym&gt;. The web service (which knows the user's secret key) will respond with a hash created in the same way as the one constructed by the bookmarklet.&lt;/li&gt;
 &lt;li&gt;If the hash returned by the web service matches the hash provided by the bookmarklet, the comment is considered "signed". The server can store it as such, and later display it with an icon or style that indicates it is a signed comment. If they do not match, the server can either store the comment as "unsigned" or even flag it as "untrusted", since it was incorrectly signed.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;As you can see, it's a relatively complicated system. The comment authors must have a custom bookmarklet and add a tag to their home page indicating their authenticating web service &lt;acronym title="Uniform Resource Locator"&gt;URL&lt;/acronym&gt;. Note that they do &lt;em&gt;not&lt;/em&gt; need to host the authentication web service themselves - they can instead point to one run by someone else who they trust (trust here is essential as the web service must know the user's private key). Meanwhile, the blogging system needs to be able to perform &lt;acronym title="HyperText Transfer Protocol"&gt;HTTP&lt;/acronym&gt; requests.&lt;/p&gt;

&lt;p&gt;The key advantage of my system is that, being based on MD5, it is relatively easy to implement (as opposed to a system based on something like &lt;acronym title="Pretty Good Privacy"&gt;PGP&lt;/acronym&gt;). Provided no one points out any immediate flaws, I would happily construct a prototype in &lt;acronym title="PHP: Hypertext Preprocessor"&gt;PHP&lt;/acronym&gt;. I'm sure a Perl implementation for Moveable Type users would not prove much of a challenge to any talented plugin author.&lt;/p&gt;

&lt;p&gt;Security wise, it strikes me that the weakest link is the client side bookmarklet which comment authors would need to use. However, comment signing is not the most critical security application in the world and comment authors could easily change their password by updating their bookmarklet and alerting their signature web-service provider (which could even be themselves) of the change.&lt;/p&gt;

&lt;p&gt;And if the signature idea doesn't win any favour, the idea of having a bookmarklet to fill in your name and &lt;acronym title="Uniform Resource Locator"&gt;URL&lt;/acronym&gt; in blog comment forms is one I've been meaning to share for some time.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/adrian-holovaty"&gt;adrian-holovaty&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/blogging"&gt;blogging&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/hashing"&gt;hashing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/security"&gt;security&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/site-upgrades"&gt;site-upgrades&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="adrian-holovaty"/><category term="blogging"/><category term="hashing"/><category term="security"/><category term="trackback"/><category term="site-upgrades"/></entry><entry><title>More Vellum</title><link href="https://simonwillison.net/2003/Jan/21/moreVellum/#atom-tag" rel="alternate"/><published>2003-01-21T11:14:58+00:00</published><updated>2003-01-21T11:14:58+00:00</updated><id>https://simonwillison.net/2003/Jan/21/moreVellum/#atom-tag</id><summary type="html">
    &lt;p&gt;Vellum 1.0a4 is &lt;a href="http://www.kryogenix.org/code/vellum/" title="Vellum: a weblogging system in Python"&gt;out&lt;/a&gt;, and features comment support via a new Comments plugin and an Audience generic object type that abstracts the concept of "responses to your post" and is also used for Pingback support. Different response types within the same interface is a very neat idea, as Sam Ruby has &lt;a href="http://www.intertwingly.net/blog/1136.html" title="Pingback now with excerpts"&gt;demonstrated&lt;/a&gt; with his integrated comments, referral tracking, Pingbacks and TrackBacks. Stuart also &lt;a href="http://www.kryogenix.org/days/383.html" title="Comment pings"&gt;suggests&lt;/a&gt; auto-discovery of You-Know-Me information from the &lt;acronym title="Uniform Resource Locator"&gt;URL&lt;/acronym&gt; of your weblog, presumably by another &lt;code&gt;link&lt;/code&gt; element. This is a great idea, but I have reservations about the performance trade off as unauthenticated comment systems will have to retrieve the poster's home page in the background every time they make a post.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/pingback"&gt;pingback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/stuart-langridge"&gt;stuart-langridge&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/vellum"&gt;vellum&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="pingback"/><category term="stuart-langridge"/><category term="trackback"/><category term="vellum"/></entry><entry><title>A global conversation</title><link href="https://simonwillison.net/2003/Jan/19/aGlobalConversation/#atom-tag" rel="alternate"/><published>2003-01-19T22:26:40+00:00</published><updated>2003-01-19T22:26:40+00:00</updated><id>https://simonwillison.net/2003/Jan/19/aGlobalConversation/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;a href="http://scriptingnews.userland.com/backissues/2003/01/19#When:10:50:42AM" title="Scripting News: Sunday, January 19, 2003"&gt;Dave Winer&lt;/a&gt; on TrackBacks and push backs (and presumably &lt;a href="http://www.hixie.ch/specs/pingback/pingback"&gt;PingBack&lt;/a&gt; as well):&lt;/p&gt;

&lt;blockquote cite="http://scriptingnews.userland.com/backissues/2003/01/19#When:10:50:42AM"&gt;&lt;p&gt;
I'm old school. I think the cool thing about weblogs is that they are not discussion groups or mail lists. If I want to know what all the people are saying there are ways to do that, but very often I'm content to read email and a few weblogs that I trust. Personally I don't think there's gold in them thar hills, but of course I've been wrong before.
&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;I think Dave has missed the boat on this one by a long way. Just the other day I realised that weblogs (or at least the one's I read) are essentially a huge global conversation. Anyone can join in, but the price of entry is having your own blog and something interesting to say. With those two pre-requisites the social network of the blogosphere does the rest - people will see what you have to say via random browsing, links on other blogs, TrackBack return links and so forth and before you know it your (useful) opinion will be being read by people who normally you wouldn't communicate with in your entire lifetime.&lt;/p&gt;

&lt;p&gt;Mark Pilgrim knows this, and his &lt;a href="http://diveintomark.org/projects/recommended_reading/"&gt;Recommended Reading&lt;/a&gt; and &lt;a href="http://diveintomark.org/archives/2002/04/20.html#automatic_linkbacks"&gt;Automatic Linkback&lt;/a&gt; tools provide him with an excellent way of participating in the global conversation. Dave Winer, as a contrast, appears to treat his blog as read-only - no comments, no trackbacks. There's nothing wrong with this (how someone runs their blog is a very personal thing) but I can't help but think that by doing so Dave is missing out on a truly remarkable example of the two way web in action.&lt;/p&gt;

&lt;p&gt;So that's my rant. Unfortunately, seeing as I'm unlikely to feature on Dave's "few weblogs" that he trusts the chances are he'll never read it. Çe la vie.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/dave-winer"&gt;dave-winer&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/pingback"&gt;pingback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="dave-winer"/><category term="pingback"/><category term="trackback"/></entry><entry><title>Stuart's pingback roundup</title><link href="https://simonwillison.net/2003/Jan/11/stuartsPingbackRoundup/#atom-tag" rel="alternate"/><published>2003-01-11T17:54:37+00:00</published><updated>2003-01-11T17:54:37+00:00</updated><id>https://simonwillison.net/2003/Jan/11/stuartsPingbackRoundup/#atom-tag</id><summary type="html">
    &lt;p&gt;Stuart has a &lt;a href="http://www.kryogenix.org/days/000431.cas" title="Pingbacks and trackbacks and implementation"&gt;good summary&lt;/a&gt; of the recent advances being made in the Pingback/Trackback implementation sphere.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/pingback"&gt;pingback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/stuart-langridge"&gt;stuart-langridge&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="pingback"/><category term="stuart-langridge"/><category term="trackback"/></entry><entry><title>Merging comments and pingbacks</title><link href="https://simonwillison.net/2003/Jan/5/mergingCommentsAndPingbacks/#atom-tag" rel="alternate"/><published>2003-01-05T11:17:27+00:00</published><updated>2003-01-05T11:17:27+00:00</updated><id>https://simonwillison.net/2003/Jan/5/mergingCommentsAndPingbacks/#atom-tag</id><summary type="html">
    &lt;p&gt;&lt;a href="http://tantek.com/log/2003/01.html#L20030104t1249" title="Comment markup, presentation and plumbing"&gt;Tantek&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote cite="http://tantek.com/log/2003/01.html#L20030104t1249"&gt;
&lt;p&gt;[...] we now have Trackback and Pingback to help automate generating comment hyperlinks to blog-on-blog commentary. While I certainly applaud these efforts at automating the plumbing, I must ask - why is there any distinction in the presentation? I ask because many blogs present separate and different interfaces for their comments, trackbacks, and/or pingbacks.&lt;/p&gt;

&lt;p&gt;A comment is a comment is a comment. Why should it matter whether it was posted using a web form, sent via email, entered into a blog, or posted to Netnews? From a blog reader's perspective, I'd just like to see a list of the comments, and not care (nor know) about how the comment got there. Presentation/interface should be designed to present the data (information), not the underlying plumbing.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Good point (besides, I'm kind of fed up of having a seperate counter for comments and pingbacks under every post). I'm sure I've seen a blog that combines comments, pingbacks and trackbacks in to the same interface - I think it was &lt;a href="http://www.intertwingly.net/blog/"&gt;Sam Ruby's&lt;/a&gt; and I'm sure I've seen it elsewhere as well. Something else to add to the list for the forever forthcoming redesign.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/pingback"&gt;pingback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/tantek-celik"&gt;tantek-celik&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="pingback"/><category term="tantek-celik"/><category term="trackback"/></entry><entry><title>Taking a leaf from Pingback's book</title><link href="https://simonwillison.net/2002/Oct/10/takingALeafFromPingbacksBook/#atom-tag" rel="alternate"/><published>2002-10-10T13:01:26+00:00</published><updated>2002-10-10T13:01:26+00:00</updated><id>https://simonwillison.net/2002/Oct/10/takingALeafFromPingbacksBook/#atom-tag</id><summary type="html">
    &lt;p&gt;Moveable Type 2.5 is &lt;a href="http://www.movabletype.org/25/" title="Download Version 2.5"&gt;out&lt;/a&gt;. From the &lt;a href="http://www.movabletype.org/docs/mtchanges.html#2.5%20(2002.10.08)"&gt;changelog&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote cite="http://www.movabletype.org/docs/mtchanges.html#2.5%20(2002.10.08)"&gt;
&lt;p&gt;
Added TrackBack auto-discovery, which can automatically find TrackBack ping URLs based on permalinks in entry bodies. These entries can then be pinged without any extra effort. Inspired in part by the pingback specification.
&lt;/p&gt;
&lt;/blockquote&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/moveabletype"&gt;moveabletype&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/pingback"&gt;pingback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="moveabletype"/><category term="pingback"/><category term="trackback"/></entry><entry><title>Pingback and Trackback</title><link href="https://simonwillison.net/2002/Sep/30/pingbackAndTrackback/#atom-tag" rel="alternate"/><published>2002-09-30T13:16:54+00:00</published><updated>2002-09-30T13:16:54+00:00</updated><id>https://simonwillison.net/2002/Sep/30/pingbackAndTrackback/#atom-tag</id><summary type="html">
    &lt;p&gt;Hixie has written &lt;a href="http://ln.hixie.ch/?start=1033171507&amp;amp;count=1" title="Whitepaper: Pingback vs Trackback"&gt;a whitepaper&lt;/a&gt; comparing Pingback to Trackback, and answering pretty much every question that has been asked about Pingback in the past week.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/hixie"&gt;hixie&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/pingback"&gt;pingback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="hixie"/><category term="pingback"/><category term="trackback"/></entry><entry><title>Pingback implemented</title><link href="https://simonwillison.net/2002/Sep/2/pingBackImplemented/#atom-tag" rel="alternate"/><published>2002-09-02T15:18:27+00:00</published><updated>2002-09-02T15:18:27+00:00</updated><id>https://simonwillison.net/2002/Sep/2/pingBackImplemented/#atom-tag</id><summary type="html">
    &lt;p&gt;I've implemented PingBack on my blog. PingBack is a system for tracking who is linking to your blog in a controlled way, based on a &lt;a href="http://www.kryogenix.org/days/000138.cas" title="Making TrackBack happen automatically"&gt;post by Stuart&lt;/a&gt; a few months ago. The idea is that when you link to a PingBack enabled blog you (or your blogging tool) should send an XML-RPC "ping" to that blog's PingBack server telling it where you have linked to and where you linked from. The PingBack server can then grab your page, check that the link is there and extract a title and short description from the blog. The system is an alternative to (and was inspired by) MoveableType's &lt;a href="http://www.moveabletype.org/trackback/"&gt;TrackBack&lt;/a&gt; feature. Stuart and I are actively developing the idea and will be releasing code and documentation to help other people experiment with the system in the near future.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/pingback"&gt;pingback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/projects"&gt;projects&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/stuart-langridge"&gt;stuart-langridge&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/xml-rpc"&gt;xml-rpc&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/site-upgrades"&gt;site-upgrades&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="pingback"/><category term="projects"/><category term="stuart-langridge"/><category term="trackback"/><category term="xml-rpc"/><category term="site-upgrades"/></entry><entry><title>A better trackback</title><link href="https://simonwillison.net/2002/Sep/1/aBetterTrackback/#atom-tag" rel="alternate"/><published>2002-09-01T11:33:19+00:00</published><updated>2002-09-01T11:33:19+00:00</updated><id>https://simonwillison.net/2002/Sep/1/aBetterTrackback/#atom-tag</id><summary type="html">
    &lt;p&gt;A discussion on Aquarionics &lt;a href="http://www.aquarionics.com/index.php?id=678" title="Trackback"&gt;nails&lt;/a&gt; why TrackBack isn't quite there yet (emphasis mine):&lt;/p&gt;&lt;blockquote cite="http://www.aquarionics.com/index.php?id=678"&gt;&lt;p&gt;Plus, to support Trackback, I must put what amounts to part of an RSS feed in each post so that Movable Type's Bookmarklet thing can magically know what to do. I don't object to the idea as much as... &lt;strong&gt;well, there has to be a better way of doing this&lt;/strong&gt;.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;In the comments attached to the entry Stuart links to &lt;a href="http://www.kryogenix.org/days/000138.cas" title="Making TrackBack happen automatically"&gt;his thoughts&lt;/a&gt; on a better way of implementing the same functionality, using an XMLRPC server that can be auto-discovered via a &amp;lt;link&amp;gt; element.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="trackback"/></entry><entry><title>Trackback roundup</title><link href="https://simonwillison.net/2002/Aug/30/trackbackRoundup/#atom-tag" rel="alternate"/><published>2002-08-30T22:59:38+00:00</published><updated>2002-08-30T22:59:38+00:00</updated><id>https://simonwillison.net/2002/Aug/30/trackbackRoundup/#atom-tag</id><summary type="html">
    &lt;p&gt;Plenty of action on the &lt;a href="http://www.movabletype.org/trackback/"&gt;TrackBack&lt;/a&gt; front. Michel V is &lt;a href="http://tidakada.com/archives/m/200208#TrackBack_in_b2" title="TrackBack in b2"&gt;adding&lt;/a&gt; TrackBack support to b2, Moveable Type have released a &lt;a href="http://www.movabletype.org/docs/tb-standalone.html"&gt;standalone Perl implementation&lt;/a&gt; of TrackBack under the Artistic license, MetaFilter have &lt;a href="http://www.metafilter.com/tb.mefi" title="Trackback at MetaFilter"&gt;added TrackBack support&lt;/a&gt; and Matt Kingston has published a full blown &lt;a href="http://www.hitormiss.org/projects/trackback/"&gt;Homebrew TrackBack Tutorial&lt;/a&gt; for people who want to roll TrackBack support in to their own home grown blogs. Yet another thing to add to the todo list...&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="trackback"/></entry><entry><title>More on TrackBack</title><link href="https://simonwillison.net/2002/Jul/2/moreOnTrackBack/#atom-tag" rel="alternate"/><published>2002-07-02T20:23:55+00:00</published><updated>2002-07-02T20:23:55+00:00</updated><id>https://simonwillison.net/2002/Jul/2/moreOnTrackBack/#atom-tag</id><summary type="html">
    &lt;p&gt;Phil Ringnalda (now added to my blogroll) has posted his &lt;a href="http://philringnalda.com/archives/002259.php" title="Third (and final?) idea for TrackBack and XHTML validation"&gt;latest thoughts&lt;/a&gt; on TrackBack, and he seems to have come on an ideal solution to the problems &lt;a href="http://www.bath.ac.uk/~cs1spw/blog/archive/2002/07/01/#trackBack"&gt;mentioned earlier&lt;/a&gt;. He is now considering keeping the TrackBack &lt;acronym title="Resource Description Framework"&gt;RDF&lt;/acronym&gt; data in a seperate file referenced via a &amp;lt;link&amp;gt; tag. This gets around the validation problems and the weirdness of embedding &lt;acronym title="Resource Description Framework"&gt;RDF&lt;/acronym&gt; in &lt;acronym title="eXtensible HyperText Markup Language"&gt;XHTML&lt;/acronym&gt; in one stroke, but it seems &lt;a href="http://www.blogger.com/"&gt;Blogger&lt;/a&gt; may have a problem supporting it as it does not have the ability to generate external files.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="trackback"/></entry><entry><title>TrackBack</title><link href="https://simonwillison.net/2002/Jul/1/trackBack/#atom-tag" rel="alternate"/><published>2002-07-01T23:53:06+00:00</published><updated>2002-07-01T23:53:06+00:00</updated><id>https://simonwillison.net/2002/Jul/1/trackBack/#atom-tag</id><summary type="html">
    &lt;p&gt;MovableType have released version 2.21, which finally introduces support for mySQL and also comes with an intriguing new feature called &lt;a href="http://www.movabletype.org/trackback/"&gt;TrackBack&lt;/a&gt;. I'm stil trying to figure out exactly what TrackBack is.. so far I've figured out that it invovles embedding RDF information directly in to your blog which can then be combined with a "ping" to other blogs to inform them that you have linked to them, and give them additional information about your blog for display on a special TrackBack section for each of their blog entries. Scott Andrew has already &lt;a href="http://www.scottandrew.com/weblog/000392"&gt;implemented it&lt;/a&gt; and many other MovableType blogs are setting it up as well. TrackBack has &lt;a href="http://www.movabletype.org/trackback/"&gt;its own blog&lt;/a&gt;, which has an &lt;a href="http://www.movabletype.org/trackback/archives/000510.html#more" title="Other implementations of TrackBack"&gt;interesting entry&lt;/a&gt; hinting that TrackBack could soon become part of a system for distributed taxonomies (a problem that &lt;a href="http://www.xfml.org/"&gt;XFML&lt;/a&gt; is also looking to solve).&lt;/p&gt;

&lt;p&gt;I'm not completely convinced by TrackBack. The implementation includes RDF embedded in blog entries which breaks XHTML validation (a problem the trackBack developers &lt;a href="http://www.movabletype.org/trackback/archives/000512.html#000512" title="TrackBack and XHTML Validation"&gt;are already working on&lt;/a&gt; - could comments around the RDF data help here?) and I can't really see any advantages over standard referral tracking as implemented on &lt;a href="http://diveintomark.org/"&gt;diveintomark&lt;/a&gt;. I plan to implement my own referral tracking system soon and I will almost certainly model it on Mark Pilgrim's, although I hope to provide additional information about the referral source gained by parsing their HTML. That said, I'm still trying to understand exactly how TrackBack works so I will reserve judgement until then.&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/moveabletype"&gt;moveabletype&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/trackback"&gt;trackback&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="moveabletype"/><category term="trackback"/></entry></feed>