<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dougal Campbell&#039;s geek ramblings &#187; Syndication</title>
	<atom:link href="http://dougal.gunters.org/blog/category/syndication/feed" rel="self" type="application/rss+xml" />
	<link>http://dougal.gunters.org</link>
	<description>WordPress, web development, and world domination.</description>
	<lastBuildDate>Wed, 21 Jul 2010 12:00:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<atom:link rel='hub' href='http://dougal.gunters.org/?pushpress=hub'/>
		<item>
		<title>WP-Cache fix for Content-Type in feeds</title>
		<link>http://dougal.gunters.org/blog/2007/06/19/wp-cache-fix-for-content-type-in-feeds?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://dougal.gunters.org/blog/2007/06/19/wp-cache-fix-for-content-type-in-feeds#comments</comments>
		<pubDate>Tue, 19 Jun 2007 16:56:42 +0000</pubDate>
		<dc:creator>Dougal</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Syndication]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Atom]]></category>
		<category><![CDATA[Feeds]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://dougal.gunters.org/blog/2007/06/19/wp-cache-fix-for-content-type-in-feeds</guid>
		<description><![CDATA[<p>
If you run a busy <a href="http://wordpress.org/">WordPress</a> site, or even if your site just has a lot of processor-intensive plugins, then you probably already run the WP-Cache plugin (<a href="http://dev.wp-plugins.org/browser/wp-cache/">plugin directory</a>, <a href="http://mnm.uib.es/gallir/wp-cache-2/">original announcment</a>, <a href="http://mnm.uib.es/gallir/posts/2007/03/23/1017/">recent security update info</a>). Even though my site isn&#8217;t super busy, my server is a little light in the RAM department, and using WP-Cache helps the box keep up with requests better.
</p>
<p>
One minor annoyance, however, is that with WP-Cache enabled, my syndication feeds aren&#8217;t delivered with the correct Content-Type. [...]</p>


Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2009/08/26/w3-total-cache-plugin' rel='bookmark' title='Permanent Link: W3 Total Cache Plugin'>W3 Total Cache Plugin</a></li>
<li><a href='http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25' rel='bookmark' title='Permanent Link: XCache Object Cache Plugin for WordPress 2.5+'>XCache Object Cache Plugin for WordPress 2.5+</a></li>
<li><a href='http://dougal.gunters.org/blog/2006/07/21/using-the-wordpress-object-cache' rel='bookmark' title='Permanent Link: Using the WordPress Object Cache'>Using the WordPress Object Cache</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>
If you run a busy <a href="http://wordpress.org/">WordPress</a> site, or even if your site just has a lot of processor-intensive plugins, then you probably already run the WP-Cache plugin (<a href="http://dev.wp-plugins.org/browser/wp-cache/">plugin directory</a>, <a href="http://mnm.uib.es/gallir/wp-cache-2/">original announcment</a>, <a href="http://mnm.uib.es/gallir/posts/2007/03/23/1017/">recent security update info</a>). Even though my site isn&#8217;t super busy, my server is a little light in the RAM department, and using WP-Cache helps the box keep up with requests better.
</p>
<p>
One minor annoyance, however, is that with WP-Cache enabled, my syndication feeds aren&#8217;t delivered with the correct Content-Type. They are all cached with a &#8220;text/html&#8221; type. Again, this is only a minor annoyance, since I haven&#8217;t run across a feed reader yet that cares very much about the Content-Type header. But the <a href="http://feedvalidator.org/">Feed Validator</a> does. If it sees an Atom feed delivered with content type &#8220;text/html&#8221; instead of &#8220;application/atom+xml&#8221;, it gives you a warning. It still checks the validity of the actual feed content, but there&#8217;s that big ugly warning at the top.
</p>
<p>
But <a href="http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fdougal.gunters.org%2Ffeed%2Fatom">not any more</a>. I dug a little bit into the WP Cache plugin to try to figure out what was going on. The plugin <em>does</em> attempt to preserve the correct content type of pages when it caches them, but the output buffering that it uses to capture the content gets in the way. You can&#8217;t get to the generated headers until after you flush the buffer. But you don&#8217;t want to flush the buffer until you&#8217;ve got all of the data to write into the cache meta files. It&#8217;s a catch-22. (Actually, it might be okay to flush the buffer at the point where you need the headers, but I&#8217;m not sure without further analysis, and I just don&#8217;t have the time right now. I&#8217;ll leave that as an exercise for someone else. <img src='http://dougal.gunters.org/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )
</p>
<p>
So, if you&#8217;re a stickler about minor things like the Content-Type of your feeds, and you&#8217;re using WP-Cache, feel free to check out my patch: <a href="http://dougal.gunters.org/projects/wp-cache2/wp-cache-phase2.php.diff">WP-Cache Feed Content Type Patch</a>. Note that the changes to the <code>wp_cache_get_response_headers()</code> function don&#8217;t actually work for me. But I left them in the patch in case anybody else wants to examine that section more closely. It might just be something that works in some combinations of Apache/<acronym title='Php Hypertext Processor'><span class='caps'>PHP</span></acronym> versions and not others.
</p>
<p><ins datetime="2007-10-12T13:25:41+00:00">
<p><b>Update 2007-10-12:</b> This problem was officially fixed in <a href="http://wordpress.org/extend/plugins/wp-cache/">wp-cache version 2.1.2</a>.
</p>
<p></ins></p>


<p>Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2009/08/26/w3-total-cache-plugin' rel='bookmark' title='Permanent Link: W3 Total Cache Plugin'>W3 Total Cache Plugin</a></li>
<li><a href='http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25' rel='bookmark' title='Permanent Link: XCache Object Cache Plugin for WordPress 2.5+'>XCache Object Cache Plugin for WordPress 2.5+</a></li>
<li><a href='http://dougal.gunters.org/blog/2006/07/21/using-the-wordpress-object-cache' rel='bookmark' title='Permanent Link: Using the WordPress Object Cache'>Using the WordPress Object Cache</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dougal.gunters.org/blog/2007/06/19/wp-cache-fix-for-content-type-in-feeds/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Feedlounge is live</title>
		<link>http://dougal.gunters.org/blog/2006/01/25/feedlounge-is-live?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://dougal.gunters.org/blog/2006/01/25/feedlounge-is-live#comments</comments>
		<pubDate>Wed, 25 Jan 2006 22:52:36 +0000</pubDate>
		<dc:creator>Dougal</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[Syndication]]></category>
		<category><![CDATA[FeedLounge]]></category>
		<category><![CDATA[Feeds]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://dougal.gunters.org/blog/2006/01/25/feedlounge-is-live</guid>
		<description><![CDATA[<p>
This is old news now, but what the heck &#8212; I haven&#8217;t posted in a while, and this will be quick. In case you didn&#8217;t already know, <a href="http://feedlounge.com/">FeedLounge</a>, that fantabulous online feed reader that all the Cool Kids have been raving about, is out of testing and ready for the world. It&#8217;s currently only available with a paid subscription, but to get a taste (the first hit&#8217;s free), you can take the <a href="http://feedlounge.com/blog/2006/01/24/free-tour/">Three Hour Tour</a>.
</p>
<p>
I&#8217;m using FeedLounge to track stories from over 100 different sites (over 120 feeds, but a few are different topics from the same site, see?). [...]</p>


Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2005/12/05/the-state-of-feedlounge' rel='bookmark' title='Permanent Link: The State of FeedLounge'>The State of FeedLounge</a></li>
<li><a href='http://dougal.gunters.org/blog/2005/06/14/feedlounge-10a2' rel='bookmark' title='Permanent Link: FeedLounge 1.0a2'>FeedLounge 1.0a2</a></li>
<li><a href='http://dougal.gunters.org/blog/2005/06/10/feedlounge' rel='bookmark' title='Permanent Link: Feedlounge web-based aggregator'>Feedlounge web-based aggregator</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>
This is old news now, but what the heck &#8212; I haven&#8217;t posted in a while, and this will be quick. In case you didn&#8217;t already know, <a href="http://feedlounge.com/">FeedLounge</a>, that fantabulous online feed reader that all the Cool Kids have been raving about, is out of testing and ready for the world. It&#8217;s currently only available with a paid subscription, but to get a taste (the first hit&#8217;s free), you can take the <a href="http://feedlounge.com/blog/2006/01/24/free-tour/">Three Hour Tour</a>.
</p>
<p>
I&#8217;m using FeedLounge to track stories from over 100 different sites (over 120 feeds, but a few are different topics from the same site, see?). As an alpha tester, I get a couple of months service for free. But when my free time is up, I&#8217;m going to see if I can squeeze a subscription into my budget. This is one of the few web-based applications that I&#8217;d ever consider paying for.</p>


<p>Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2005/12/05/the-state-of-feedlounge' rel='bookmark' title='Permanent Link: The State of FeedLounge'>The State of FeedLounge</a></li>
<li><a href='http://dougal.gunters.org/blog/2005/06/14/feedlounge-10a2' rel='bookmark' title='Permanent Link: FeedLounge 1.0a2'>FeedLounge 1.0a2</a></li>
<li><a href='http://dougal.gunters.org/blog/2005/06/10/feedlounge' rel='bookmark' title='Permanent Link: Feedlounge web-based aggregator'>Feedlounge web-based aggregator</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dougal.gunters.org/blog/2006/01/25/feedlounge-is-live/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>The State of FeedLounge</title>
		<link>http://dougal.gunters.org/blog/2005/12/05/the-state-of-feedlounge?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://dougal.gunters.org/blog/2005/12/05/the-state-of-feedlounge#comments</comments>
		<pubDate>Mon, 05 Dec 2005 16:25:42 +0000</pubDate>
		<dc:creator>Dougal</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Atom]]></category>
		<category><![CDATA[Syndication]]></category>
		<category><![CDATA[Aggregators]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[FeedLounge]]></category>
		<category><![CDATA[Feeds]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://dougal.gunters.org/?p=688</guid>
		<description><![CDATA[<p>
<a href="http://alexking.org/blog/">Alex</a> has posted a moderately detailed article explaining <a href="http://feedlounge.com/blog/2005/12/05/state-of-feedlounge/">The State of FeedLounge</a>. For any newcomers who don&#8217;t know what <a href="http://feedlounge.com/">FeedLounge</a> is, it&#8217;s a web based feed aggregator, not unlike BlogLines. But FeedLounge is a next-generation web service that looks and acts more like a desktop application than a web site.
</p>
<p>
I&#8217;m one of the lucky <a href="http://dougal.gunters.org/blog/2005/06/10/feedlounge">alpha testers</a> who have had access for the last six months. [...]</p>


Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2005/06/10/feedlounge' rel='bookmark' title='Permanent Link: Feedlounge web-based aggregator'>Feedlounge web-based aggregator</a></li>
<li><a href='http://dougal.gunters.org/blog/2006/01/25/feedlounge-is-live' rel='bookmark' title='Permanent Link: Feedlounge is live'>Feedlounge is live</a></li>
<li><a href='http://dougal.gunters.org/blog/2005/07/14/feedlounge-wants-browser-developers' rel='bookmark' title='Permanent Link: FeedLounge wants browser developers'>FeedLounge wants browser developers</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://alexking.org/blog/">Alex</a> has posted a moderately detailed article explaining <a href="http://feedlounge.com/blog/2005/12/05/state-of-feedlounge/">The State of FeedLounge</a>. For any newcomers who don&#8217;t know what <a href="http://feedlounge.com/">FeedLounge</a> is, it&#8217;s a web based feed aggregator, not unlike BlogLines. But FeedLounge is a next-generation web service that looks and acts more like a desktop application than a web site.
</p>
<p>
I&#8217;m one of the lucky <a href="http://dougal.gunters.org/blog/2005/06/10/feedlounge">alpha testers</a> who have had access for the last six months. I committed to using FeedLounge as my only feed reader, dumping SharpReader and the <acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym> capabilities of Thunderbird. I&#8217;ve watched FeedLounge go through some rough spots, and it always came back better than before. Alex and <a href="http://dotnot.org/blog/">Scott</a> have done an outstanding job with everything from the great AJAXian user interface to the invisible backend. When the time comes, if the price is right, I&#8217;m going to be a paying customer.
</p>
<p>
But you don&#8217;t care about all that, do you? What good is it to read about a service that you don&#8217;t have access to? All you care about is knowing that FeedLounge will be open for public beta on January 16, 2006.</p>


<p>Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2005/06/10/feedlounge' rel='bookmark' title='Permanent Link: Feedlounge web-based aggregator'>Feedlounge web-based aggregator</a></li>
<li><a href='http://dougal.gunters.org/blog/2006/01/25/feedlounge-is-live' rel='bookmark' title='Permanent Link: Feedlounge is live'>Feedlounge is live</a></li>
<li><a href='http://dougal.gunters.org/blog/2005/07/14/feedlounge-wants-browser-developers' rel='bookmark' title='Permanent Link: FeedLounge wants browser developers'>FeedLounge wants browser developers</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dougal.gunters.org/blog/2005/12/05/the-state-of-feedlounge/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Google Blog Search</title>
		<link>http://dougal.gunters.org/blog/2005/09/14/google-blog-search?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://dougal.gunters.org/blog/2005/09/14/google-blog-search#comments</comments>
		<pubDate>Wed, 14 Sep 2005 21:31:24 +0000</pubDate>
		<dc:creator>Dougal</dc:creator>
				<category><![CDATA[Atom]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Syndication]]></category>
		<category><![CDATA[Feeds]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[pingomatic]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://dougal.gunters.org/?p=657</guid>
		<description><![CDATA[<p>
I may be a little late coming to this party, but Google has introduced <a href="http://www.google.com/blogsearch">Google Blog Search</a>, which limits searches to just blogs (well, in theory, anyhow). The most interesting thing about this, to me, is that GBS provides the search results for your terms as Atom and <acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym> feeds.
</p>
<p>
It seems that Google is leveraging blog feeds to get structured data, and <a href="http://pingomatic.com/blog/2005/09/14/google-blog-search/" class="broken_link" rel="nofollow">monitoring ping sites</a> for timely updates. [...]</p>


Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2003/08/14/google-gets-geekier' rel='bookmark' title='Permanent Link: Google Gets Geekier'>Google Gets Geekier</a></li>
<li><a href='http://dougal.gunters.org/blog/2005/02/08/google-maps' rel='bookmark' title='Permanent Link: Google Maps'>Google Maps</a></li>
<li><a href='http://dougal.gunters.org/blog/2004/11/04/a2b-location-based-search' rel='bookmark' title='Permanent Link: A2B Location-Based Search'>A2B Location-Based Search</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>
I may be a little late coming to this party, but Google has introduced <a href="http://www.google.com/blogsearch">Google Blog Search</a>, which limits searches to just blogs (well, in theory, anyhow). The most interesting thing about this, to me, is that GBS provides the search results for your terms as Atom and <acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym> feeds.
</p>
<p>
It seems that Google is leveraging blog feeds to get structured data, and <a href="http://pingomatic.com/blog/2005/09/14/google-blog-search/" class="broken_link" rel="nofollow">monitoring ping sites</a> for timely updates. This is something that lots of people speculated about way back before Google bought Blogger. <acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym>/Atom feeds from blogs are such a rich source of structured information, it only makes sense that a &#8220;mainstream&#8221; search engine should take advantage of it. I can only wonder what took them so long?
</p>
<p>
The next feature I&#8217;m looking for: &#8220;Search within X miles of location Y&#8221;, using geotagged blogs. This would be great for searching for information written by other bloggers in your vicinity.</p>


<p>Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2003/08/14/google-gets-geekier' rel='bookmark' title='Permanent Link: Google Gets Geekier'>Google Gets Geekier</a></li>
<li><a href='http://dougal.gunters.org/blog/2005/02/08/google-maps' rel='bookmark' title='Permanent Link: Google Maps'>Google Maps</a></li>
<li><a href='http://dougal.gunters.org/blog/2004/11/04/a2b-location-based-search' rel='bookmark' title='Permanent Link: A2B Location-Based Search'>A2B Location-Based Search</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dougal.gunters.org/blog/2005/09/14/google-blog-search/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New My Yahoo Beta brings RSS to the masses</title>
		<link>http://dougal.gunters.org/blog/2004/09/28/yahoo-brings-rss-to-the-masses?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://dougal.gunters.org/blog/2004/09/28/yahoo-brings-rss-to-the-masses#comments</comments>
		<pubDate>Tue, 28 Sep 2004 20:51:50 +0000</pubDate>
		<dc:creator>Dougal</dc:creator>
				<category><![CDATA[Search]]></category>
		<category><![CDATA[Syndication]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Atom]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Technorati]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://dougal.gunters.org/blog/2004/09/28/new-my-yahoo-beta-brings-rss-to-the-masses</guid>
		<description><![CDATA[<p>
From <a href="http://jeremy.zawodny.com/blog/archives/002653.html">Jeremy Zawodny&#8217;s blog</a>:
</p>
<blockquote cite="http://jeremy.zawodny.com/blog/archives/002653.html">
<p>
Well, we just launched a beta of the next generation of My Yahoo that fits into that reality. Instead of &#8220;you can add anything you want, as long as it&#8217;s on the list of My Yahoo content&#8221; you can now add pretty much any public <acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym> or Atom feed. In other words, the content model is open.
</p>
<p>
Let me say that again, just for dramatic effect: <em>the content model is open now.</em>
</p>
</blockquote>
<p>
<acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym> has slowly been edging into the mainstream for a while now. [...]</p>


Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2006/03/28/how-to-revamp-yahoo-groups' rel='bookmark' title='Permanent Link: How to revamp Yahoo! Groups?'>How to revamp Yahoo! Groups?</a></li>
<li><a href='http://dougal.gunters.org/blog/2004/05/01/wordpress-12-beta' rel='bookmark' title='Permanent Link: WordPress 1.2 Beta'>WordPress 1.2 Beta</a></li>
<li><a href='http://dougal.gunters.org/blog/2005/06/29/yahoo-my-web-20' rel='bookmark' title='Permanent Link: Yahoo! My Web 2.0'>Yahoo! My Web 2.0</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>
From <a href="http://jeremy.zawodny.com/blog/archives/002653.html">Jeremy Zawodny&#8217;s blog</a>:
</p>
<blockquote cite="http://jeremy.zawodny.com/blog/archives/002653.html">
<p>
Well, we just launched a beta of the next generation of My Yahoo that fits into that reality. Instead of &#8220;you can add anything you want, as long as it&#8217;s on the list of My Yahoo content&#8221; you can now add pretty much any public <acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym> or Atom feed. In other words, the content model is open.
</p>
<p>
Let me say that again, just for dramatic effect: <em>the content model is open now.</em>
</p>
</blockquote>
<p>
<acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym> has slowly been edging into the mainstream for a while now. But with this new exposure, we can expect a veritable explosion of new awareness of <acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym> from the non-technorati. Creators of feed aggregator software and services should expect a fresh deluge of new users. Fortunately, most of the feed software/services out there are pretty mature now.
</p>
<p>
One note: for some reason, when I tried to add my feed to My Yahoo, it didn&#8217;t like the <acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym> 2.0 version. It would show me the headlines just fine, but then complained when I tried to perform the final add. But it liked the <acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym> 1.0 (<acronym title='Resource Description Framework'><span class='caps'>RDF</span></acronym>) version just fine.</p>


<p>Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2006/03/28/how-to-revamp-yahoo-groups' rel='bookmark' title='Permanent Link: How to revamp Yahoo! Groups?'>How to revamp Yahoo! Groups?</a></li>
<li><a href='http://dougal.gunters.org/blog/2004/05/01/wordpress-12-beta' rel='bookmark' title='Permanent Link: WordPress 1.2 Beta'>WordPress 1.2 Beta</a></li>
<li><a href='http://dougal.gunters.org/blog/2005/06/29/yahoo-my-web-20' rel='bookmark' title='Permanent Link: Yahoo! My Web 2.0'>Yahoo! My Web 2.0</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dougal.gunters.org/blog/2004/09/28/yahoo-brings-rss-to-the-masses/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Conversational Web</title>
		<link>http://dougal.gunters.org/blog/2003/01/28/the-conversational-web?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://dougal.gunters.org/blog/2003/01/28/the-conversational-web#comments</comments>
		<pubDate>Tue, 28 Jan 2003 17:57:55 +0000</pubDate>
		<dc:creator>Dougal</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Jabber]]></category>
		<category><![CDATA[Syndication]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">//?p=</guid>
		<description><![CDATA[<p>
A lot of blog development of late has been directed towards establishing connections between multiple weblogs via mechanisms such as <a href="http://www.benhammersley.com/archives/003862.html" class="broken_link" rel="nofollow">Trackback, Pingback, and friends</a>. Throw in a little <a href="http://www.intertwingly.net/blog/1116.html"><acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym></a> and a <a href="http://www.syndirella.net/">news aggregator</a> that can tell you where to go to comment on an article. Maybe add a dash of <a href="http://esigler.2nw.net/blog/archives/000046.html#000046" class="broken_link" rel="nofollow"><acronym title='Friend of a Friend vocabulary'><span class='caps'>FOAF</span></acronym></a>&#8230;. [...]</p>


Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2004/12/20/wordpress-and-jabber-sitting-in-a-tree' rel='bookmark' title='Permanent Link: WordPress and Jabber, sitting in a tree&#8230;'>WordPress and Jabber, sitting in a tree&#8230;</a></li>
<li><a href='http://dougal.gunters.org/blog/2002/12/20/announcing-jabfoaf' rel='bookmark' title='Permanent Link: Announcing: JabFoaf'>Announcing: JabFoaf</a></li>
<li><a href='http://dougal.gunters.org/blog/2003/01/08/more-mapping-goodness' rel='bookmark' title='Permanent Link: More Mapping Goodness'>More Mapping Goodness</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>
A lot of blog development of late has been directed towards establishing connections between multiple weblogs via mechanisms such as <a href="http://www.benhammersley.com/archives/003862.html" class="broken_link" rel="nofollow">Trackback, Pingback, and friends</a>. Throw in a little <a href="http://www.intertwingly.net/blog/1116.html"><acronym title='Rich Site Summary'><span class='caps'>RSS</span></acronym></a> and a <a href="http://www.syndirella.net/">news aggregator</a> that can tell you where to go to comment on an article. Maybe add a dash of <a href="http://esigler.2nw.net/blog/archives/000046.html#000046" class="broken_link" rel="nofollow"><acronym title='Friend of a Friend vocabulary'><span class='caps'>FOAF</span></acronym></a>&#8230;. The result is that multiple websites become part of one big conversation.
</p>
<p>
Well, if it&#8217;s a conversation, how about we add a <a href="http://www.kosmo.com/blogs/TimsBlog/2003/01/27.html#a309">splash</a> of <a href="http://radio.weblogs.com/0001015/2003/01/26.html#a1691">Instant Messaging</a>? Yum. Now we&#8217;re cooking!
</p>
<p>
A couple of days ago, I  whipped a quick mod for this site that will notify me via <a href="http://www.jabber.org/" title="Jabber Software Foundation">Jabber</a> when a new comment is posted. I&#8217;ve got an idea in the back of my brain for setting up a Jabber <a href="http://www.jabber.org/jeps/jep-0060.html" title="JEP-0060: Publish-Subscribe">PubSub</a> component that would let people subscribe themselves to the comments of a particular story. Since not everybody uses Jabber, I figure there will need to be an email notification option, as well. I haven&#8217;t had the time to work out the details yet, let alone start any code. Heck, I&#8217;ve been typing this entry off-and-on over the last 24+ hours, as it is.
</p>
<p>
And this is the point where I wish I had already recoded my Trackback implementation to handle autodiscovery and multiple trackbacks.</p>


<p>Related posts:<ol><li><a href='http://dougal.gunters.org/blog/2004/12/20/wordpress-and-jabber-sitting-in-a-tree' rel='bookmark' title='Permanent Link: WordPress and Jabber, sitting in a tree&#8230;'>WordPress and Jabber, sitting in a tree&#8230;</a></li>
<li><a href='http://dougal.gunters.org/blog/2002/12/20/announcing-jabfoaf' rel='bookmark' title='Permanent Link: Announcing: JabFoaf'>Announcing: JabFoaf</a></li>
<li><a href='http://dougal.gunters.org/blog/2003/01/08/more-mapping-goodness' rel='bookmark' title='Permanent Link: More Mapping Goodness'>More Mapping Goodness</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dougal.gunters.org/blog/2003/01/28/the-conversational-web/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: dougal.gunters.org @ 2010-08-01 00:03:08 by W3 Total Cache -->