<?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"
	>

<channel>
	<title>null is not an object</title>
	<atom:link href="http://nullisnotanobject.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nullisnotanobject.com</link>
	<description></description>
	<pubDate>Mon, 01 Mar 2010 21:35:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>QUnit Server</title>
		<link>http://nullisnotanobject.com/2010/03/qunit-server/</link>
		<comments>http://nullisnotanobject.com/2010/03/qunit-server/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 21:23:51 +0000</pubDate>
		<dc:creator>Dave Johnson</dc:creator>
		
		<category><![CDATA[Components]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Testing]]></category>

		<category><![CDATA[continuous integration]]></category>

		<category><![CDATA[qunit]]></category>

		<guid isPermaLink="false">http://nullisnotanobject.com/?p=342</guid>
		<description><![CDATA[QUnit is a great little JavaScript test framework written by none other than John Resig of jQuery fame.
I love how easy it is to write tests, especially asynchronous ones, with QUnit and so was quick to start using it for my JavaScript tests.
The one thing that I found it lacked was support for continuous integration [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://docs.jquery.com/QUnit">QUnit</a> is a great little JavaScript test framework written by none other than <a href="http://www.ejohn.org">John Resig</a> of <a href="http://www.jquery.com">jQuery</a> fame.</p>
<p>I love how easy it is to write tests, especially asynchronous ones, with QUnit and so was quick to start using it for my JavaScript tests.</p>
<p>The one thing that I found it lacked was support for continuous integration products like <a href="https://hudson.dev.java.net/">Hudson</a>, <a href="http://cruisecontrol.sourceforge.net/">CruiseControl</a> or <a href="http://continuum.apache.org">Continuum</a>. So I figured that I would change that.</p>
<p>For a long time I have been using <a href="http://www.jsunit.net">JsUnit</a> along with JsUnit Server to merge in client side JavaScript test results with a server side test integration workflow. Essentially, JsUnit Server is a Jetty server and JsUnit posts back a form with test results to that server, which logs the results to standard JUnit formatted test results files. Those files can then be read by most continuous integration products and included in their reporting.</p>
<p>What I decided to do was hack QUnit so that it too could submit test results back to the JsUnit Server in the same format that JsUnit submits results and could therefore continue using the same JsUnit Server workflow and simply change the client JavaScript test framework to QUnit. It worked like a charm!</p>
<p>I wrote a couple of simple function that in the background dynamically create an HTML form in the QUnit test page and add the results to the form as each test is run. When the tests are complete the page submits back to the JsUnit Server and the test results are logged as they were when I was using JsUnit.</p>
<p>It is some pretty simple changes but does make using QUnit that much better, especially if you were hesitant to switch just because the continuous integration support was not there for QUnit.</p>
<p><a href="http://www.github.com/davejohnson/qunit-server">Check it out on GitHub</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nullisnotanobject.com/2010/03/qunit-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Require RubyGems</title>
		<link>http://nullisnotanobject.com/2010/02/require-rubygems/</link>
		<comments>http://nullisnotanobject.com/2010/02/require-rubygems/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 00:22:44 +0000</pubDate>
		<dc:creator>Dave Johnson</dc:creator>
		
		<category><![CDATA[ruby]]></category>

		<category><![CDATA[gems]]></category>

		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://nullisnotanobject.com/?p=338</guid>
		<description><![CDATA[I have never really written much ruby outside of a Rails app and so when I wanted to write a short script for a cron job.
I kept getting an error like:
&#8216;require&#8217;: no such file to load &#8212; some_gem (LoadError)
In the end it was all because I had forgotten to first require rubygems!
It was a hard [...]]]></description>
			<content:encoded><![CDATA[<p>I have never really written much ruby outside of a Rails app and so when I wanted to write a short script for a cron job.</p>
<p>I kept getting an error like:</p>
<blockquote><p>&#8216;require&#8217;: no such file to load &#8212; some_gem (LoadError)</p></blockquote>
<p>In the end it was all because I had forgotten to first require rubygems!</p>
<p>It was a hard thing to find an answer to from The Google.</p>
]]></content:encoded>
			<wfw:commentRss>http://nullisnotanobject.com/2010/02/require-rubygems/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML 5 and sessionStorage</title>
		<link>http://nullisnotanobject.com/2010/02/html-5-and-sessionstorage/</link>
		<comments>http://nullisnotanobject.com/2010/02/html-5-and-sessionstorage/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 20:47:54 +0000</pubDate>
		<dc:creator>Dave Johnson</dc:creator>
		
		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[quirks]]></category>

		<category><![CDATA[HTML5]]></category>

		<category><![CDATA[sessionStorage]]></category>

		<guid isPermaLink="false">http://nullisnotanobject.com/?p=337</guid>
		<description><![CDATA[We came across a strange bug today that was being caused by our recent addition of sessionStorage to our application.
The Mozilla Developer Center says this about sessionStorage:
This is a global object (sessionStorage) that maintains a storage area that&#8217;s available for the duration of the page session. A page session lasts for as long as the [...]]]></description>
			<content:encoded><![CDATA[<p>We came across a strange bug today that was being caused by our recent addition of sessionStorage to our application.</p>
<p>The Mozilla Developer Center says this about sessionStorage:</p>
<blockquote><p>This is a global object (<code>sessionStorage</code>) that maintains a storage area that&#8217;s available for the duration of the page session. A page session lasts for as long as the browser is open and survives over page reloads and restores. <em><strong>Opening a page in a new tab or window will cause a new session to be initiated</strong></em>.</p></blockquote>
<p>Emphasis mine.</p>
<p>What we found was that of the three different browsers that currently &#8220;support&#8221; sessionStorage, there are three different implementations. Go figure.</p>
<p>I looked at a few different ways of opening new windows or tabs and those included anchor tags with target values of &#8220;&#8221; and &#8220;_blank&#8221;, window.open() JavaScript calls with different targets, and context menu open in new window or tab.</p>
<p>Internet Explorer 8 is furthest from the spec, as one might expect. No matter how you opened a new window from the page, the sessionStorage is preserved in the new window.</p>
<p>Firefox is only slightly better in that it does not preserve the sessionStorage in new windows when the new window is created by choosing open in new window / tab from the context menu on an anchor.</p>
<p>Safari is more or less like Firefox except that it does not preserve the sessionStorage when the target on an anchor is &#8220;_blank&#8221;.</p>
<p>In short, if you are expecting that sessionStorage is tied to a single browser window then think again.</p>
]]></content:encoded>
			<wfw:commentRss>http://nullisnotanobject.com/2010/02/html-5-and-sessionstorage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Work</title>
		<link>http://nullisnotanobject.com/2010/01/work/</link>
		<comments>http://nullisnotanobject.com/2010/01/work/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 00:42:24 +0000</pubDate>
		<dc:creator>Dave Johnson</dc:creator>
		
		<category><![CDATA[phonegap]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://nullisnotanobject.com/?p=336</guid>
		<description><![CDATA[Crap it has been busy at work the past few months!
More to come soon though since I am working on a few small JavaScript libraries and two services that I will be releasing soon!
There has of course also been a tonne of amazing work being done on PhoneGap (tests, Palm, Nokia, simulator) - though not [...]]]></description>
			<content:encoded><![CDATA[<p>Crap it has been busy at work the past few months!</p>
<p>More to come soon though since I am working on a few small JavaScript libraries and two services that I will be releasing soon!</p>
<p>There has of course also been a tonne of amazing work being done on PhoneGap (tests, Palm, Nokia, simulator) - though not by me so much <img src='http://nullisnotanobject.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Check out the latest at GitHub http://github.com/phonegap</p>
]]></content:encoded>
			<wfw:commentRss>http://nullisnotanobject.com/2010/01/work/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Managers and Technical Debt</title>
		<link>http://nullisnotanobject.com/2009/09/managers-and-technical-debt-2/</link>
		<comments>http://nullisnotanobject.com/2009/09/managers-and-technical-debt-2/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 05:36:10 +0000</pubDate>
		<dc:creator>Dave Johnson</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[startup]]></category>

		<category><![CDATA[technical debt]]></category>

		<guid isPermaLink="false">http://nullisnotanobject.com/?p=334</guid>
		<description><![CDATA[Managers love technical debt. It helps them to make it seem like they are doing a better job than they are. They can do this in a few ways. 
First, by skipping tests and taking on other types of technical debt during development they come slightly closer to meeting tight timelines and releasing software that [...]]]></description>
			<content:encoded><![CDATA[<p>Managers love technical debt. It helps them to make it seem like they are doing a better job than they are. They can do this in a few ways. </p>
<p>First, by skipping tests and taking on other types of technical debt during development they come slightly closer to meeting tight timelines and releasing software that is not as good as it could have been, but good enough.</p>
<p>Second, when there are bugs found in the software the manager can blame the developers who were previously told to omit things like tests in an effort to get the software out sooner. Not only do the developers take the blame, but they are also forced to fix the bugs, often by working long hours outside of regular business.</p>
<p>The end result is that the software is closer to the quality it should have been in the first place, and the developers have done it in record time because they had to work evenings and weekends. And the manager, has not only released the software on time but he has also taken the credit for the heroic bug fixing effort.</p>
<p>That leaves the developers paying off the technical debt and looking for a new job where, hopefully, it won&#8217;t happen again.</p>
]]></content:encoded>
			<wfw:commentRss>http://nullisnotanobject.com/2009/09/managers-and-technical-debt-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Passenger on Rails Playground</title>
		<link>http://nullisnotanobject.com/2009/08/passenger-on-rails-playground/</link>
		<comments>http://nullisnotanobject.com/2009/08/passenger-on-rails-playground/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 22:36:32 +0000</pubDate>
		<dc:creator>Dave Johnson</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nullisnotanobject.com/?p=333</guid>
		<description><![CDATA[I finally setup Passenger (mod_rails) on my Rails Playground server the other day so that I can quit worrying about Mongrel and it is super easy. The main problem that I found was that I had a spelling mistake in my httpd.conf file in the PassengerRuby config line. The error that this produced in the [...]]]></description>
			<content:encoded><![CDATA[<p>I finally setup <a href="http://www.modrails.com/">Passenger</a> (mod_rails) on my <a href="http://railsplayground.com/">Rails Playground</a> server the other day so that I can quit worrying about <a href="http://mongrel.rubyforge.org/">Mongrel</a> and it is super easy. The main problem that I found was that I had a spelling mistake in my httpd.conf file in the <em>PassengerRuby</em> config line. The error that this produced in the Apache error_log file seemed to be referring to starting the spawn server.</p>
<blockquote><p>Could not start the spawn server: /usr/local/lib/ruby: Permission denied (13)
</p></blockquote>
<p>So I spent a long time trying to find info about Passenger spawn server settings, but the problem in the end was that the path shown in the error did not exist - it should have been pointing to bin obviously :S</p>
<p>The other part of using passenger is the slightly different <a href="http://www.capify.org/index.php/Capistrano">Capistrano</a> recipe. With Passenger there is no spinner task and you need to put in an empty restart task. Here is my recipe:</p>
<blockquote><p>
########################<br />
#	Application<br />
########################</p>
<p>set :application, &#8220;example.com&#8221;<br />
set :deploy_to, &#8220;/var/rails/#{application}&#8221;</p>
<p>########################<br />
#	Settings<br />
########################</p>
<p>default_run_options[:pty] = true<br />
ssh_options[:forward_agent] = false<br />
set :runner, &#8220;user&#8221;</p>
<p>########################<br />
#	Servers<br />
########################</p>
<p>set :user, &#8220;user&#8221;<br />
set :domain, &#8220;example.com&#8221;<br />
server domain, :app, :web<br />
role :db, domain, :primary => true</p>
<p>########################<br />
#	Subversion<br />
########################</p>
<p>set :repository,  &#8220;http://svn.example.com/trunk/server&#8221;<br />
set :scm_username, &#8220;user&#8221;<br />
set :scm_password, &#8220;password&#8221;</p>
<p>########################<br />
#	Passenger<br />
########################</p>
<p>namespace :passenger do<br />
  desc &#8220;Restart Application&#8221;<br />
  task :restart do<br />
    run &#8220;chown -R apache:apache #{current_path}&#8221;<br />
    run &#8220;touch #{current_path}/tmp/restart.txt&#8221;<br />
  end<br />
end</p>
<p>after :deploy, &#8220;passenger:restart&#8221;</p>
<p>deploy.task :start do<br />
  # nothing<br />
end
</p></blockquote>
<p>The other thing that I found I had to do was the chown call since Passenger runs the <a href="http://rubyonrails.org">Rails</a> app with the same user as is running Apache, in this case the apache user and apache group.</p>
<p>Now on to try out <a href="http://incubator.apache.org/cassandra/">Cassandra</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nullisnotanobject.com/2009/08/passenger-on-rails-playground/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Long Live PhoneGap for BlackBerry</title>
		<link>http://nullisnotanobject.com/2009/07/long-live-phonegap-for-blackberry/</link>
		<comments>http://nullisnotanobject.com/2009/07/long-live-phonegap-for-blackberry/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 06:28:44 +0000</pubDate>
		<dc:creator>Dave Johnson</dc:creator>
		
		<category><![CDATA[phonegap]]></category>

		<category><![CDATA[blackberry]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[rim]]></category>

		<guid isPermaLink="false">http://nullisnotanobject.com/?p=332</guid>
		<description><![CDATA[There have been some new developments in the PhoneGap on BlackBerry breathing new life into the project! It all boils down to the fact that in RIM OS >= 4.6 there is a browser rendering option that you can set to make the browser render using the modern rendering engine rather than the archaic one [...]]]></description>
			<content:encoded><![CDATA[<p>There have been some new developments in the PhoneGap on BlackBerry breathing new life into the project! It all boils down to the fact that in RIM OS >= 4.6 there is a browser rendering option that you can set to make the browser render using the modern rendering engine rather than the archaic one from OS 4.2. </p>
<p>It look something like this:</p>
<pre class="code">
_renderingSession.getRenderingOptions().setProperty(
  RenderingOptions.CORE_OPTIONS_GUID, 17000, true);
</pre>
<p>After much trial and error it was found that the BrowserContentManager did not support this rendering option (and RIM says it is completely unsupported / experimental anyhow) yet the Field returned from BrowserContent.getDisplayableContent() does support it!</p>
<p>Long story short it looks like PhoneGap on RIM OS >= 4.6 is going to work really well.</p>
<p>Next up is looking at the new features in OS 5.0.</p>
]]></content:encoded>
			<wfw:commentRss>http://nullisnotanobject.com/2009/07/long-live-phonegap-for-blackberry/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PhoneGap iPhone Approval</title>
		<link>http://nullisnotanobject.com/2009/06/phonegap-iphone-app-approval/</link>
		<comments>http://nullisnotanobject.com/2009/06/phonegap-iphone-app-approval/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 19:26:53 +0000</pubDate>
		<dc:creator>Dave Johnson</dc:creator>
		
		<category><![CDATA[mobile]]></category>

		<category><![CDATA[phonegap]]></category>

		<category><![CDATA[appstore]]></category>

		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://nullisnotanobject.com/?p=330</guid>
		<description><![CDATA[The guys over at Rhomobile posted about IPhone App Store rejection issues the other day - I can only assume due to the recent problems that some users of PhoneGap have been having. Rhomobile and PhoneGap are similar in that they are frameworks that enable developers to build native mobile apps in a language they [...]]]></description>
			<content:encoded><![CDATA[<p>The guys over at <a href="http://www.rhomobile.com">Rhomobile</a> posted about <a href="http://www.rhomobile.com/blog/2009/05/29/iphone-app-store-rules-and-guidelines-on-use-of-frameworks/"><b style="color:black;background-color:#ff9999">IPhone</b> App Store rejection issues</a> the other day - I can only assume due to the recent problems that some users of <a href="http://www.phonegap.com"><b style="color:black;background-color:#ff66ff">PhoneGap</b></a> have been having. Rhomobile and <b style="color:black;background-color:#ff66ff">PhoneGap</b> are similar in that they are frameworks that enable developers to build native mobile apps in a language they are familiar with, Ruby and JavaScript respectively.</p>
<p>I think that they are pretty much spot on in terms of their interpretation of the App Store rule 3.2.2 that states:</p>
<blockquote><p>
An Application may <b style="color:black;background-color:#a0ffff">not</b> itself install or launch other executable code by any means, including without limitation through the use of a plug-in architecture, calling other frameworks, other APIs or otherwise. No interpreted code may be downloaded and used in an Application except for code that is interpreted and run by Apple’s Published APIs and built-in interpreter(s).</p>
</blockquote>
<p>The two key points in this App Store rule are where it says an app &#8220;<em>may <b style="color:black;background-color:#a0ffff">not</b> itself install or launch other executable code by any means</em>&#8221; and this is exactly what users of <b style="color:black;background-color:#ff66ff">PhoneGap</b> are doing <strong>if their apps are downloading JavaScript over the network rather than including it in the application www folder</strong>. By downloading JavaScript over the network at runtime the application is downloading and running interpreted code that Apple has <b style="color:black;background-color:#a0ffff">not</b> control over during their app approval process.</p>
<p>So if any of you <b style="color:black;background-color:#ff66ff">PhoneGap</b> developers are worried about Apple rejecting your app just make sure that you don&#8217;t download any JavaScript at runtime and instead include it in the application. Having said that, also make sure that you apps don&#8217;t look like you just took a shit and emailed it to Apple <img src='http://nullisnotanobject.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>That is just my thoughts on the issue, whether or <b style="color:black;background-color:#a0ffff">not</b> that is the *real* reason that Apple is rejecting <b style="color:black;background-color:#ff66ff">PhoneGap</b> apps we may never know but that is certainly one reason that they would do it I think. It could just be <a href="http://www.seoxys.com/apples-increasingly-ridiculous-rejections/">because they feel like it</a>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://nullisnotanobject.com/2009/06/phonegap-iphone-app-approval/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Where 2.0 Slides</title>
		<link>http://nullisnotanobject.com/2009/06/where-20-slides/</link>
		<comments>http://nullisnotanobject.com/2009/06/where-20-slides/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 03:38:44 +0000</pubDate>
		<dc:creator>Dave Johnson</dc:creator>
		
		<category><![CDATA[Conference]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[geo]]></category>

		<category><![CDATA[geoweb]]></category>

		<category><![CDATA[phonegap]]></category>

		<category><![CDATA[where20]]></category>

		<guid isPermaLink="false">http://nullisnotanobject.com/?p=329</guid>
		<description><![CDATA[Here are my slides from my workshop at the recent O&#8217;Reilly Where 2.0 conference down in San Jose. 
Where 2.0
View more PDF documents from davejohnson.

]]></description>
			<content:encoded><![CDATA[<p>Here are my slides from my workshop at the recent O&#8217;Reilly Where 2.0 conference down in San Jose. </p>
<div style="width:425px;text-align:left" id="__ss_1546659"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/davejohnson/where-20?type=presentation" title="Where 2.0">Where 2.0</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=where20-090607222628-phpapp02&#038;stripped_title=where-20" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=where20-090607222628-phpapp02&#038;stripped_title=where-20" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">PDF documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/davejohnson">davejohnson</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://nullisnotanobject.com/2009/06/where-20-slides/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Where 2.0 Workshop</title>
		<link>http://nullisnotanobject.com/2009/05/where-20-workshop/</link>
		<comments>http://nullisnotanobject.com/2009/05/where-20-workshop/#comments</comments>
		<pubDate>Sun, 17 May 2009 22:56:02 +0000</pubDate>
		<dc:creator>Dave Johnson</dc:creator>
		
		<category><![CDATA[Conference]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[geo]]></category>

		<category><![CDATA[gps]]></category>

		<category><![CDATA[oreilly]]></category>

		<category><![CDATA[where20]]></category>

		<guid isPermaLink="false">http://nullisnotanobject.com/?p=328</guid>
		<description><![CDATA[I am going to be running a workshop down at the O&#8217;Reilly Where 2.0 conference on Tuesday called Giving Your Mobile Apps a Sense of Place.
I am going to cover Geo related features and issues of IPhone 2.2.1, Android 1.5 (aka Cupcake), RIM OS 4.7, and, most importantly, PhoneGap. I will be sure to post [...]]]></description>
			<content:encoded><![CDATA[<p>I am going to be running a workshop down at the O&#8217;Reilly Where 2.0 conference on Tuesday called <a href="http://en.oreilly.com/where2009/public/schedule/detail/7778">Giving Your Mobile Apps a Sense of Place</a>.</p>
<p>I am going to cover Geo related features and issues of IPhone 2.2.1, Android 1.5 (aka Cupcake), RIM OS 4.7, and, most importantly, PhoneGap. I will be sure to post the slides once I am done them as well as put all the sample projects up on <a href="http://www.github.com/davejohnson">my GitHub</a>.</p>
<p>If you are in San Jose Monday night then you will probably find me in the bar, whether I am done my slides or not!</p>
]]></content:encoded>
			<wfw:commentRss>http://nullisnotanobject.com/2009/05/where-20-workshop/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
