<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: The Problem With Atom</title>
	<atom:link href="http://www.symphonious.net/2008/09/02/the-problem-with-atom/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.symphonious.net/2008/09/02/the-problem-with-atom/</link>
	<description>Living in a state of accord.</description>
	<lastBuildDate>Fri, 12 Mar 2010 07:41:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Adrian Sutton</title>
		<link>http://www.symphonious.net/2008/09/02/the-problem-with-atom/comment-page-1/#comment-173299</link>
		<dc:creator>Adrian Sutton</dc:creator>
		<pubDate>Wed, 03 Sep 2008 09:07:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.symphonious.net/?p=949#comment-173299</guid>
		<description>Having used both WordPress and WCM for the same site, there are trade offs both ways.  WCM doesn&#039;t have feeds baked in, but WordPress lacks workflow. WCM is difficult to set up but extremely flexible, WordPress is fast to get up and running but then took as much effort as WCM in the end to get some of the elements of the site and they were far less maintainable. I&#039;d have the same horror story for you about getting dynamic side bar menus in WordPress or the plugins listing on the front page, or the changelog on the early access stuff. I&#039;ve essentially had to develop plugins and custom code for both WCM and WordPress.

Drupal is probably a good middle ground and is likely to be the ideal type of system for LiveWorks! but we do a huge amount of partnering with IBM and want to dog food our integration with their products. Besides which, I&#039;ll sound a lot more intelligent talking to WCM clients now that I know how the whole system works in the real world, not just the editor bit of it.</description>
		<content:encoded><![CDATA[<p>Having used both WordPress and WCM for the same site, there are trade offs both ways.  WCM doesn&#8217;t have feeds baked in, but WordPress lacks workflow. WCM is difficult to set up but extremely flexible, WordPress is fast to get up and running but then took as much effort as WCM in the end to get some of the elements of the site and they were far less maintainable. I&#8217;d have the same horror story for you about getting dynamic side bar menus in WordPress or the plugins listing on the front page, or the changelog on the early access stuff. I&#8217;ve essentially had to develop plugins and custom code for both WCM and WordPress.</p>
<p>Drupal is probably a good middle ground and is likely to be the ideal type of system for LiveWorks! but we do a huge amount of partnering with IBM and want to dog food our integration with their products. Besides which, I&#8217;ll sound a lot more intelligent talking to WCM clients now that I know how the whole system works in the real world, not just the editor bit of it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asbjørn Ulsberg</title>
		<link>http://www.symphonious.net/2008/09/02/the-problem-with-atom/comment-page-1/#comment-173298</link>
		<dc:creator>Asbjørn Ulsberg</dc:creator>
		<pubDate>Wed, 03 Sep 2008 08:24:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.symphonious.net/?p=949#comment-173298</guid>
		<description>You make me feel like the happiest man alive for not having to poke around with IWWCM. Sounds like a pretty horrifying CMS to me. It sure seems enterprisey, though. If that&#039;s a positive or negative label is within the eye of the beholder I guess. Personally, I hate everything purporting itself as &quot;Enterprise Software&quot;. Which is why I&#039;d choose WordPress (or Drupal) any day over multi-million dollar solutions. At least they&#039;re FOSS, so if they don&#039;t match my needs exactly, I can tweak and bend them in any direction and way I want.</description>
		<content:encoded><![CDATA[<p>You make me feel like the happiest man alive for not having to poke around with IWWCM. Sounds like a pretty horrifying CMS to me. It sure seems enterprisey, though. If that&#8217;s a positive or negative label is within the eye of the beholder I guess. Personally, I hate everything purporting itself as &#8220;Enterprise Software&#8221;. Which is why I&#8217;d choose WordPress (or Drupal) any day over multi-million dollar solutions. At least they&#8217;re FOSS, so if they don&#8217;t match my needs exactly, I can tweak and bend them in any direction and way I want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian Sutton</title>
		<link>http://www.symphonious.net/2008/09/02/the-problem-with-atom/comment-page-1/#comment-173296</link>
		<dc:creator>Adrian Sutton</dc:creator>
		<pubDate>Tue, 02 Sep 2008 14:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.symphonious.net/?p=949#comment-173296</guid>
		<description>You could post process it using a reverse proxy server type set etc, but IWWCM itself literally has 3 fields:  start, item and end.  You can only refer to specifically named content items in the start and end sections and the item section is repeated for every content item that gets output. You can generate the updated element for each item because in that field you have access to the current item, but you don&#039;t have access to the first item in the start field.

You also can&#039;t create the updated element in the item field because then every content item would generate it, giving you something like: &lt;updated&gt;&lt;item&gt;...&lt;/item&gt;&lt;updated&gt;&lt;item&gt;...&lt;/item&gt;

I think you could do it by adding a second menu that only ever output 1 item (the most recent) and you could include that menu by name in the start section.  With the way IWWCM iterates through content to find items to include in menus though that would be almost equivalent to generating the entire feed twice for each request. It&#039;s also way more complex that you&#039;d want just so that you can have an updated element.

Oh and there&#039;s no XML structure in IWWCM - you&#039;re just outputting text that happens to be XML when it all comes out.  IWWCM doesn&#039;t know it&#039;s generating XML - and in fact it declares the content type as text/html which is rather unfortunate.</description>
		<content:encoded><![CDATA[<p>You could post process it using a reverse proxy server type set etc, but IWWCM itself literally has 3 fields:  start, item and end.  You can only refer to specifically named content items in the start and end sections and the item section is repeated for every content item that gets output. You can generate the updated element for each item because in that field you have access to the current item, but you don&#8217;t have access to the first item in the start field.</p>
<p>You also can&#8217;t create the updated element in the item field because then every content item would generate it, giving you something like: <updated><item>&#8230;</item></updated><updated><item>&#8230;</item></p>
<p>I think you could do it by adding a second menu that only ever output 1 item (the most recent) and you could include that menu by name in the start section.  With the way IWWCM iterates through content to find items to include in menus though that would be almost equivalent to generating the entire feed twice for each request. It&#8217;s also way more complex that you&#8217;d want just so that you can have an updated element.</p>
<p>Oh and there&#8217;s no XML structure in IWWCM &#8211; you&#8217;re just outputting text that happens to be XML when it all comes out.  IWWCM doesn&#8217;t know it&#8217;s generating XML &#8211; and in fact it declares the content type as text/html which is rather unfortunate.</updated></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asbjørn Ulsberg</title>
		<link>http://www.symphonious.net/2008/09/02/the-problem-with-atom/comment-page-1/#comment-173295</link>
		<dc:creator>Asbjørn Ulsberg</dc:creator>
		<pubDate>Tue, 02 Sep 2008 13:56:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.symphonious.net/?p=949#comment-173295</guid>
		<description>How can the IWWCM menu structure not handle the &quot;updated&quot; element? Can&#039;t you drive it through XSLT or otherwise manipulate the XML structure somehow? The &quot;updated&quot; element is there, as you write yourself, for easy consumption.</description>
		<content:encoded><![CDATA[<p>How can the IWWCM menu structure not handle the &#8220;updated&#8221; element? Can&#8217;t you drive it through XSLT or otherwise manipulate the XML structure somehow? The &#8220;updated&#8221; element is there, as you write yourself, for easy consumption.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian Sutton</title>
		<link>http://www.symphonious.net/2008/09/02/the-problem-with-atom/comment-page-1/#comment-173289</link>
		<dc:creator>Adrian Sutton</dc:creator>
		<pubDate>Mon, 01 Sep 2008 21:56:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.symphonious.net/?p=949#comment-173289</guid>
		<description>Yeah time.now isn&#039;t available either but that&#039;s good to know for most other situations. I&#039;m sure I could do some more Apache regex foo as well but RSS 2 is simpler and works just as well for this use case.

IWWCM has a whole swag of caching stuff that I haven&#039;t delved into yet but by default it recomputes the feed every time. The feed IWWCM generates is only fed into FeedBurner and FeedBurner is smart enough to do it&#039;s own caching etc so the impact is minimal.  The bigger problem is the lack of caching on a number of resources like JavaScript files etc - at least the theme images are served directly from Apache so are fairly cacheable.  Overall though the site is a pretty spectacular example of bad caching practices - just like it was when it was running on WordPress.</description>
		<content:encoded><![CDATA[<p>Yeah time.now isn&#8217;t available either but that&#8217;s good to know for most other situations. I&#8217;m sure I could do some more Apache regex foo as well but RSS 2 is simpler and works just as well for this use case.</p>
<p>IWWCM has a whole swag of caching stuff that I haven&#8217;t delved into yet but by default it recomputes the feed every time. The feed IWWCM generates is only fed into FeedBurner and FeedBurner is smart enough to do it&#8217;s own caching etc so the impact is minimal.  The bigger problem is the lack of caching on a number of resources like JavaScript files etc &#8211; at least the theme images are served directly from Apache so are fairly cacheable.  Overall though the site is a pretty spectacular example of bad caching practices &#8211; just like it was when it was running on WordPress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Ruby</title>
		<link>http://www.symphonious.net/2008/09/02/the-problem-with-atom/comment-page-1/#comment-173287</link>
		<dc:creator>Sam Ruby</dc:creator>
		<pubDate>Mon, 01 Sep 2008 21:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.symphonious.net/?p=949#comment-173287</guid>
		<description>There would not be anything invalid about producing an Atom feed where feed/updated is always time.now (as in, the time the feed was produced).

A possibly related question: does IWWCM produce ETags and/or Last-Modifed dates, or does it recompute the entire feed on every request?</description>
		<content:encoded><![CDATA[<p>There would not be anything invalid about producing an Atom feed where feed/updated is always time.now (as in, the time the feed was produced).</p>
<p>A possibly related question: does IWWCM produce ETags and/or Last-Modifed dates, or does it recompute the entire feed on every request?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
