<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>Fun With Radiant</title>
    <link>http://radiantcms.org/</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>The main blog for Radiant CMS</description>


    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/FunWithRadiant" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
      <title>Radiant 0.8.0 - Asterism Release</title>
      <description>&lt;p&gt;Radiant 0.8.0 &amp;#8220;Asterism&amp;#8221; features a brand new and more compliant caching
mechanism based on Rack::Cache, and numerous bugfixes and small enhancements.
Also included are:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;An extensive integration suite using &lt;a href="http://cukes.info"&gt;Cucumber&lt;/a&gt; and Webrat&lt;/li&gt;
		&lt;li&gt;Rails 2.3.2 (previously 2.1.2)&lt;/li&gt;
		&lt;li&gt;Highline 1.5.1&lt;/li&gt;
		&lt;li&gt;Haml 2.0.9&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;Many thanks to our contributors and committers for their contributions.&lt;/p&gt;


	&lt;h4&gt; Installation&lt;/h4&gt;


	&lt;p&gt;To install use the gem command (with &amp;#8216;sudo&amp;#8217; as necessary):&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;$ gem install radiant&lt;/code&gt;&lt;/pre&gt;

	&lt;h5&gt;Upgrading an existing project/site&lt;/h5&gt;


	&lt;p&gt;1. Change the &lt;span class="caps"&gt;RADIANT&lt;/span&gt;_GEM_VERSION constant in config/environment.rb to &amp;#8220;0.8.0&amp;#8221; or remove it altogether.&lt;/p&gt;


	&lt;p&gt;2. Update the Radiant assets in your project:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;rake radiant:update&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;3. Copy your customizations back into &lt;code&gt;config/environment.rb&lt;/code&gt;, if necessary.&lt;/p&gt;


	&lt;p&gt;4. Migrate the database:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;rake production db:migrate&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;5. Restart the server&lt;/p&gt;


	&lt;h5&gt;Creating a new project/site&lt;/h5&gt;


	&lt;p&gt;1. Invoke the &lt;code&gt;radiant&lt;/code&gt; command with your desired database driver:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;$ radiant -d sqlite3 my_project&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;2. Bootstrap the database:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;$ cd my_project
$ rake db:bootstrap&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;3. Startup the server and try it out!&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;$ script/server&lt;/code&gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/FunWithRadiant/~4/tBE-fTC8HRc" height="1" width="1"/&gt;</description>
      <dc:creator>Sean</dc:creator>
      <pubDate>Sun, 14 Jun 2009 14:34:43 GMT</pubDate>
      <guid isPermaLink="false">http://radiantcms.org/blog/archives/2009/06/14/radiant-0-8-0---asterism-release/</guid>
      <link>http://feedproxy.google.com/~r/FunWithRadiant/~3/tBE-fTC8HRc/</link>
    <feedburner:origLink>http://radiantcms.org/blog/archives/2009/06/14/radiant-0-8-0---asterism-release/</feedburner:origLink></item>

    <item>
      <title>Developer Tips: ResponseCache and Radiant::Cache</title>
      <description>&lt;p&gt;If you&amp;#8217;re looking to test out your site on edge to prepare for the next release but aren&amp;#8217;t ready to take the plunge, you can alter your environments to selectively set up ResponseCache&lt;/p&gt;


	&lt;pre&gt;&lt;code&gt;if defined? ResponseCache == 'constant'
  ResponseCache.defaults[:perform_caching] = true
end&lt;/code&gt;&lt;/pre&gt;


	&lt;p&gt;You may also set the &lt;code&gt;cache_timeout&lt;/code&gt; for &lt;code&gt;SiteController&lt;/code&gt; which will stand in the place of &lt;code&gt;ResponseCache.defaults[:expire_time]&lt;/code&gt;&lt;/p&gt;


	&lt;pre&gt;&lt;code&gt;config.after_initialize do
  ...
  if defined? ResponseCache == 'constant'
    ResponseCache.defaults[:expire_time] = 12.hours
  else
    SiteController.cache_timeout = 12.hours
  end
  ...
end&lt;/code&gt;&lt;/pre&gt;


	&lt;p&gt;That should get you going as you kick the tires on 0.8.&lt;/p&gt;


	&lt;p&gt;If you&amp;#8217;re looking for more control, take a look at &lt;a href="http://github.com/radiant/radiant/blob/b775ebe1f6c469fcb0fbb03b33afe1ee44bdb48a/lib/radiant/cache.rb"&gt;the source&lt;/a&gt; and know that Radiant::Cache is now implemented in &lt;a href="http://tomayko.com/src/rack-cache/"&gt;Rack::Cache&lt;/a&gt; and of course, keep your eye on the &lt;a href="http://wiki.github.com/radiant/radiant/developer-upgrade-notes"&gt;wiki page for developer upgrades&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FunWithRadiant/~4/YQlUtWrquPo" height="1" width="1"/&gt;</description>
      <dc:creator>Jim</dc:creator>
      <pubDate>Mon, 08 Jun 2009 13:35:44 GMT</pubDate>
      <guid isPermaLink="false">http://radiantcms.org/blog/archives/2009/06/08/developer-tips-responsecache-and-radiant-cache/</guid>
      <link>http://feedproxy.google.com/~r/FunWithRadiant/~3/YQlUtWrquPo/</link>
    <feedburner:origLink>http://radiantcms.org/blog/archives/2009/06/08/developer-tips-responsecache-and-radiant-cache/</feedburner:origLink></item>

    <item>
      <title>New Wiki Page: Developer Upgrade Notes</title>
      <description>&lt;p&gt;&lt;strong&gt;&lt;span class="caps"&gt;ATTENTION EXTENSION DEVELOPERS&lt;/span&gt;!&lt;/strong&gt;  When working to upgrade your extensions to be compatible with the latest Radiant, please refer to and update this new wiki page: &lt;a href="http://wiki.github.com/radiant/radiant/developer-upgrade-notes"&gt;Developer Upgrade Notes&lt;/a&gt;.  I&amp;#8217;d like to make this a one-stop-shop for inter-version upgrade questions.  &lt;em&gt;Do not&lt;/em&gt; put information on individual extensions here, but on upgrade issues in the general sense.  Things that will go well in the page:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Class/method/namespace changes&lt;/li&gt;
		&lt;li&gt;Common errors and how to resolve them&lt;/li&gt;
		&lt;li&gt;Library/API additions and modifications&lt;/li&gt;
		&lt;li&gt;New conventions, deprecated conventions&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;Start preparing your extensions for Radiant 0.8 as soon as you can!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FunWithRadiant/~4/r6zDR_nIXhI" height="1" width="1"/&gt;</description>
      <dc:creator>Sean</dc:creator>
      <pubDate>Tue, 12 May 2009 13:08:24 GMT</pubDate>
      <guid isPermaLink="false">http://radiantcms.org/blog/archives/2009/05/12/new-wiki-page-developer-upgrade-notes/</guid>
      <link>http://feedproxy.google.com/~r/FunWithRadiant/~3/r6zDR_nIXhI/</link>
    <feedburner:origLink>http://radiantcms.org/blog/archives/2009/05/12/new-wiki-page-developer-upgrade-notes/</feedburner:origLink></item>

    <item>
      <title>Radiant 0.8.0-RC1 Available</title>
      <description>&lt;p&gt;Hot on the heels of the feature list from this morning is Release Candidate 1 of Radiant 0.8.0.&lt;/p&gt;


	&lt;p&gt;Download the gem from &lt;a href="http://radiant.s3.amazonaws.com/radiant-0.8.0-rc1.gem"&gt;S3&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;The gem will install as &lt;code&gt;radiant-0.8.0&lt;/code&gt;.&lt;/p&gt;


	&lt;p&gt;Missing from the promised feature list in this release candidate are:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Support for cucumber features in extensions &amp;mdash; sorry, you&amp;#8217;ll have to rig something up yourself for now.&lt;/li&gt;
		&lt;li&gt;Packaged assets in DB templates &amp;#8211; Roasters is due for this enhancement.&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;&lt;strong&gt;This release is intended for developers and the brave only!&lt;/strong&gt; A production-ready release should be available later in the month.  Please use this release to test the new features and discover bugs.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FunWithRadiant/~4/8mWfLTxQFT4" height="1" width="1"/&gt;</description>
      <dc:creator>Sean</dc:creator>
      <pubDate>Mon, 11 May 2009 21:42:38 GMT</pubDate>
      <guid isPermaLink="false">http://radiantcms.org/blog/archives/2009/05/11/radiant-0-8-0-rc1-available/</guid>
      <link>http://feedproxy.google.com/~r/FunWithRadiant/~3/8mWfLTxQFT4/</link>
    <feedburner:origLink>http://radiantcms.org/blog/archives/2009/05/11/radiant-0-8-0-rc1-available/</feedburner:origLink></item>

    <item>
      <title>What's Coming in Radiant 0.8</title>
      <description>&lt;p&gt;The dev team has been working hard at preparing the next version of Radiant, which we believe will be ready later this month.  Here&amp;#8217;s an overview of the upcoming changes:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Rails 2.3.2 is bundled &amp;#8211; this includes support for Rack, so you can add your own &amp;#8220;metal&amp;#8221; or &amp;#8220;middleware&amp;#8221;, making certain tasks much easier and performant.&lt;/li&gt;
		&lt;li&gt;The integration specs are now &lt;a href="http://cukes.info"&gt;Cucumber&lt;/a&gt; stories, and you will be able to write Cucumber stories in your extensions.&lt;/li&gt;
		&lt;li&gt;RSpec and friends are only required to run tests and will no longer be install-time gem dependencies. Rake tasks that depend on them are stubbed.&lt;/li&gt;
		&lt;li&gt;&lt;code&gt;config.extensions&lt;/code&gt; will be pre-populated so you can easily turn off installed extensions like so: &lt;code&gt;config.extensions -= [:archive]&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;&lt;code&gt;ResponseCache&lt;/code&gt;, Radiant&amp;#8217;s built-in caching, has been replaced by  &lt;code&gt;Radiant::Cache&lt;/code&gt;, which wraps &lt;code&gt;Rack::Cache&lt;/code&gt; with some enhancements for manual expiration and acceleration headers.  This makes us more compliant with the &lt;span class="caps"&gt;HTTP&lt;/span&gt;/1.1 spec and removes some of the complexity of that code. Best of all, it&amp;#8217;s completely pluggable, so you can use plain &lt;code&gt;Rack::Cache&lt;/code&gt; or turn it off altogether in one line.&lt;/li&gt;
		&lt;li&gt;&lt;code&gt;Admin::AbstractModelController&lt;/code&gt; is no more.  Use &lt;code&gt;Admin::ResourceController&lt;/code&gt;!&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;Some efforts that are started but will not finish until after 0.8 release:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Internationalization of the interface has begun in the &lt;a href="http://github.com/radiant/radiant/tree/i18n"&gt;i18n&lt;/a&gt; branch, lead by Keith Bingman.&lt;/li&gt;
		&lt;li&gt;The new &amp;#8220;blade&amp;#8221; interface is nearly complete, John says.  Check it out in the &lt;a href="http://github.com/radiant/radiant-prototype"&gt;prototype&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/FunWithRadiant/~4/g-OsoFjgU4s" height="1" width="1"/&gt;</description>
      <dc:creator>Sean</dc:creator>
      <pubDate>Mon, 11 May 2009 09:11:03 GMT</pubDate>
      <guid isPermaLink="false">http://radiantcms.org/blog/archives/2009/05/11/whats-coming-in-radiant-0-8/</guid>
      <link>http://feedproxy.google.com/~r/FunWithRadiant/~3/g-OsoFjgU4s/</link>
    <feedburner:origLink>http://radiantcms.org/blog/archives/2009/05/11/whats-coming-in-radiant-0-8/</feedburner:origLink></item>

    <item>
      <title>Radiant Birds-of-Feather Session at RailsConf</title>
      <description>&lt;p&gt;If you are at &lt;a href="http://en.oreilly.com/rails2009/"&gt;RailsConf 2009&lt;/a&gt;, please consider attending the &lt;a href="http://en.oreilly.com/rails2009/public/schedule/detail/9204"&gt;Radiant BoF Session&lt;/a&gt;, which will be moderated by the awesome &lt;a href="http://www.keithbingman.com/"&gt;Keith Bingman&lt;/a&gt;, developer of &lt;a href="http://bitchkittyracing.com/"&gt;bitchkittyracing&lt;/a&gt; and leader of the i18n effort for Radiant.  John and Sean might also make an appearance remotely via Skype or &lt;span class="caps"&gt;IRC&lt;/span&gt;, so bring your questions, problems and comments!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FunWithRadiant/~4/aYNLEzv0U_0" height="1" width="1"/&gt;</description>
      <dc:creator>Sean</dc:creator>
      <pubDate>Mon, 04 May 2009 13:12:59 GMT</pubDate>
      <guid isPermaLink="false">http://radiantcms.org/blog/archives/2009/05/04/radiant-birds-of-feather-session-at-railsconf/</guid>
      <link>http://feedproxy.google.com/~r/FunWithRadiant/~3/aYNLEzv0U_0/</link>
    <feedburner:origLink>http://radiantcms.org/blog/archives/2009/05/04/radiant-birds-of-feather-session-at-railsconf/</feedburner:origLink></item>

    <item>
      <title>Radiant Hack Day - April 25, 2009</title>
      <description>&lt;p&gt;You&amp;#8217;re invited to another Radiant Hack Day/Sprint!&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;&lt;strong&gt;What:&lt;/strong&gt; Radiant Hack Day&lt;/li&gt;
		&lt;li&gt;&lt;strong&gt;When:&lt;/strong&gt; Saturday, April 25th, 10:00AM-? &lt;span class="caps"&gt;EDT&lt;/span&gt;&lt;/li&gt;
		&lt;li&gt;&lt;strong&gt;Where:&lt;/strong&gt;
  Carrboro Creative Coworking
  205 Lloyd St, Suite 101
  Carrboro, NC, 27510
  &lt;a href="http://www.carrborocoworking.com/"&gt;carrborocoworking.com&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;Both John and Sean will be in attendance, leading the design/UI and development pieces respectively. This is an easy way to get started contributing to the project, learn more about Radiant, or to work on your own feature with guidance from the community.  We&amp;#8217;re going lower ceremony than our big one in October, but still encourage out-of-towners to come.  Contact Sean privately via email if you need help making arrangements to attend, or if you&amp;#8217;d like to be involved remotely.&lt;/p&gt;


	&lt;p&gt;Happy hacking!&lt;/p&gt;


	&lt;p&gt;If you can attend, please &lt;a href="http://www.meetup.com/raleighrb/calendar/10176147/"&gt;&lt;span class="caps"&gt;RSVP&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FunWithRadiant/~4/T5qXcrCKnsM" height="1" width="1"/&gt;</description>
      <dc:creator>Sean</dc:creator>
      <pubDate>Fri, 17 Apr 2009 09:16:55 GMT</pubDate>
      <guid isPermaLink="false">http://radiantcms.org/blog/archives/2009/04/17/radiant-hack-day---april-25-2009/</guid>
      <link>http://feedproxy.google.com/~r/FunWithRadiant/~3/T5qXcrCKnsM/</link>
    <feedburner:origLink>http://radiantcms.org/blog/archives/2009/04/17/radiant-hack-day---april-25-2009/</feedburner:origLink></item>

    <item>
      <title>Radiant Wiki Moves to Github</title>
      <description>&lt;p&gt;Thanks to &lt;a href="http://stevensouthard.com"&gt;Steven Southard&lt;/a&gt; and &lt;a href="http://johnmuhl.com"&gt;John Muhl&lt;/a&gt;, we have moved the majority of the existing wiki over to &lt;a href="http://wiki.github.com/radiant/radiant"&gt;Github&lt;/a&gt;.  We encourage you to start contributing to the wiki there. You will need a Github account to participate.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;&lt;span class="caps"&gt;NOTE&lt;/span&gt;&lt;/strong&gt;: In an attempt to place this notice on the old wiki, Junebug failed for us again. &lt;a href="http://avlux.net"&gt;&lt;span class="caps"&gt;AVLUX&lt;/span&gt;&lt;/a&gt; attempted to help me with this, but we were unable to resurrect it.  If you need access to an old page on the wiki, please refer to the &lt;a href="http://lists.radiantcms.org/pipermail/radiant/2009-April/012739.html"&gt;file made available on the mailing list&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FunWithRadiant/~4/LoOFHbTOrcA" height="1" width="1"/&gt;</description>
      <dc:creator>Sean</dc:creator>
      <pubDate>Thu, 09 Apr 2009 11:35:03 GMT</pubDate>
      <guid isPermaLink="false">http://radiantcms.org/blog/archives/2009/04/09/radiant-wiki-moves-to-github/</guid>
      <link>http://feedproxy.google.com/~r/FunWithRadiant/~3/LoOFHbTOrcA/</link>
    <feedburner:origLink>http://radiantcms.org/blog/archives/2009/04/09/radiant-wiki-moves-to-github/</feedburner:origLink></item>

    <item>
      <title>Radiant Gets Some Love From Heroku</title>
      <description>&lt;p&gt;Over at the &lt;a href="http://heroku.com/"&gt;Heroku&lt;/a&gt; blog, &lt;em&gt;Morten&lt;/em&gt; &lt;a href="http://blog.heroku.com/archives/2009/3/26/radiant_cms_in_5_minutes_or_less/"&gt;has written up some details&lt;/a&gt; about using their &amp;#8220;instant ruby platform&amp;#8221; to get running on &lt;a href="http://radiantcms.org"&gt;Radiant&lt;/a&gt; with a tip on how to get around their read-only file system.&lt;/p&gt;


	&lt;p&gt;Happy content-managing!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FunWithRadiant/~4/tLRt0NsBMk8" height="1" width="1"/&gt;</description>
      <dc:creator>Jim</dc:creator>
      <pubDate>Fri, 27 Mar 2009 15:11:08 GMT</pubDate>
      <guid isPermaLink="false">http://radiantcms.org/blog/archives/2009/03/27/radiant-gets-some-love-from-heroku/</guid>
      <link>http://feedproxy.google.com/~r/FunWithRadiant/~3/tLRt0NsBMk8/</link>
    <feedburner:origLink>http://radiantcms.org/blog/archives/2009/03/27/radiant-gets-some-love-from-heroku/</feedburner:origLink></item>

    <item>
      <title>Developer Tips: Cold Deployment</title>
      <description>&lt;p&gt;Have you ever needed to bootstrap an installation of Radiant on your production server with Capistrano, Vlad, or some other method?&lt;/p&gt;


	&lt;p&gt;You may have thought that you couldn&amp;#8217;t because the &lt;code&gt;rake db:bootstrap&lt;/code&gt; task requires some user input (such as username and password for the administrator). If you have, you&amp;#8217;ve been wrong.&lt;/p&gt;


	&lt;p&gt;Take a look at the &lt;a href="http://github.com/radiant/radiant/blob/f909ad100c6d6d17882db112df442c59607bf5b4/lib/tasks/database.rake"&gt;code:&lt;/a&gt;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;
namespace :db do
  desc "Migrate schema to version 0 and back up again. WARNING: Destroys all data in tables!!" 
  task :remigrate =&amp;gt; :environment do
    require 'highline/import'
    if ENV['OVERWRITE'].to_s.downcase == 'true' or agree("This task will destroy any data in the database. Are you sure you want to \ncontinue? [yn] ")

      # Migrate downward
      ActiveRecord::Migrator.migrate("#{RADIANT_ROOT}/db/migrate/", 0)

      # Migrate upward 
      Rake::Task["db:migrate"].invoke

      # Dump the schema
      Rake::Task["db:schema:dump"].invoke
    else
      say "Task cancelled." 
      exit
    end
  end

  desc "Bootstrap your database for Radiant." 
  task :bootstrap =&amp;gt; :remigrate do
    require 'radiant/setup'
    Radiant::Setup.bootstrap(
      :admin_name =&amp;gt; ENV['ADMIN_NAME'],
      :admin_username =&amp;gt; ENV['ADMIN_USERNAME'],
      :admin_password =&amp;gt; ENV['ADMIN_PASSWORD'],
      :database_template =&amp;gt; ENV['DATABASE_TEMPLATE']
    )
  end
end
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;If any of those &lt;code&gt;ENV&lt;/code&gt; stand out at you, you might realize that you can easily do something like:&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;rake db:bootstrap ADMIN_NAME='Admin' ADMIN_USERNAME='admin' ...etc...&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Personally, however, if I do an automated bootstrap I then remove the task from my deployment recipe so that it can&amp;#8217;t happen again and wipe out all my work.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FunWithRadiant/~4/-6R3W3vEjTw" height="1" width="1"/&gt;</description>
      <dc:creator>Jim</dc:creator>
      <pubDate>Wed, 18 Mar 2009 11:23:12 GMT</pubDate>
      <guid isPermaLink="false">http://radiantcms.org/blog/archives/2009/03/18/developer-tips-cold-deployment/</guid>
      <link>http://feedproxy.google.com/~r/FunWithRadiant/~3/-6R3W3vEjTw/</link>
    <feedburner:origLink>http://radiantcms.org/blog/archives/2009/03/18/developer-tips-cold-deployment/</feedburner:origLink></item>


  </channel>
</rss>
