<?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: Blogging software</title>
	<atom:link href="http://gabrito.com/post/blogging-software/feed" rel="self" type="application/rss+xml" />
	<link>http://gabrito.com/post/blogging-software</link>
	<description>Anecdotes on Java, Ruby, Sysadmin, SEO, Design, and Management</description>
	<pubDate>Tue, 06 Jan 2009 11:45:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Todd Huss</title>
		<link>http://gabrito.com/post/blogging-software/comment-page-1#comment-44</link>
		<dc:creator>Todd Huss</dc:creator>
		<pubDate>Sun, 12 Feb 2006 23:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/blogging-software#comment-44</guid>
		<description>That's great, I'm glad you managed to figure it out and thanks for posting the solution!</description>
		<content:encoded><![CDATA[<p>That&#8217;s great, I&#8217;m glad you managed to figure it out and thanks for posting the solution!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dash</title>
		<link>http://gabrito.com/post/blogging-software/comment-page-1#comment-42</link>
		<dc:creator>Dash</dc:creator>
		<pubDate>Fri, 10 Feb 2006 10:52:18 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/blogging-software#comment-42</guid>
		<description>I've found a solution, thanks for the guidance!

The secret seemed to be adding:

&lt;code&gt;

#set( $xmap = $pageModel.getRecentWeblogEntries( 1000, "nil" ) )
#foreach( $day in $xmap.keySet() )
  #set( $recentEntries = $xmap.get($day) )
  #foreach ($entry in $recentEntries)

#if ( $pageModel.getWeblogEntry() )
  #set( $entry = $pageModel.getWeblogEntry() )
#end
#if( $entry )
  #set( $day = $entry.pubTime )
  #set( $textcontent = $entry.text)
  #set( $comments = $entry.comments )
&lt;/code&gt;

...into the rss page using the exportrss.vm model above. 

Now I've got some script kiddies changing my xml to sql insert statements. Full description will be up on &lt;a href="http://jroller.com/page/Dash" rel="nofollow"&gt;Skip The Budgie&lt;/a&gt; when I move next week.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve found a solution, thanks for the guidance!</p>
<p>The secret seemed to be adding:</p>
<p><code></p>
<p>#set( $xmap = $pageModel.getRecentWeblogEntries( 1000, "nil" ) )<br />
#foreach( $day in $xmap.keySet() )<br />
  #set( $recentEntries = $xmap.get($day) )<br />
  #foreach ($entry in $recentEntries)</p>
<p>#if ( $pageModel.getWeblogEntry() )<br />
  #set( $entry = $pageModel.getWeblogEntry() )<br />
#end<br />
#if( $entry )<br />
  #set( $day = $entry.pubTime )<br />
  #set( $textcontent = $entry.text)<br />
  #set( $comments = $entry.comments )<br />
</code></p>
<p>&#8230;into the rss page using the exportrss.vm model above. </p>
<p>Now I&#8217;ve got some script kiddies changing my xml to sql insert statements. Full description will be up on <a href="http://jroller.com/page/Dash" rel="nofollow">Skip The Budgie</a> when I move next week.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dash</title>
		<link>http://gabrito.com/post/blogging-software/comment-page-1#comment-38</link>
		<dc:creator>Dash</dc:creator>
		<pubDate>Mon, 06 Feb 2006 11:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/blogging-software#comment-38</guid>
		<description>Sorry to keep bothering you, but I'm really not that up on Java...

I've found &lt;a href="http://svn.apache.org/viewcvs.cgi/incubator/roller/trunk/src/org/roller/presentation/velocity/ExportRss.java?view=markup" rel="nofollow"&gt;exportrss.java&lt;/a&gt;, and &lt;a href="http://svn.apache.org/viewcvs.cgi/incubator/roller/trunk/src/org/roller/presentation/velocity/export_rss.vm?view=markup" rel="nofollow"&gt;exportrss.vm&lt;/a&gt;

Are you saying that if I can override the 

loadDates(website); or loadDates(WebsiteData website); (a bit further down)

My default rss page will change?

I feel really lost and/or dumb now! I need to know exactly what to write... sorry.</description>
		<content:encoded><![CDATA[<p>Sorry to keep bothering you, but I&#8217;m really not that up on Java&#8230;</p>
<p>I&#8217;ve found <a href="http://svn.apache.org/viewcvs.cgi/incubator/roller/trunk/src/org/roller/presentation/velocity/ExportRss.java?view=markup" rel="nofollow">exportrss.java</a>, and <a href="http://svn.apache.org/viewcvs.cgi/incubator/roller/trunk/src/org/roller/presentation/velocity/export_rss.vm?view=markup" rel="nofollow">exportrss.vm</a></p>
<p>Are you saying that if I can override the </p>
<p>loadDates(website); or loadDates(WebsiteData website); (a bit further down)</p>
<p>My default rss page will change?</p>
<p>I feel really lost and/or dumb now! I need to know exactly what to write&#8230; sorry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd Huss</title>
		<link>http://gabrito.com/post/blogging-software/comment-page-1#comment-32</link>
		<dc:creator>Todd Huss</dc:creator>
		<pubDate>Fri, 03 Feb 2006 18:20:12 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/blogging-software#comment-32</guid>
		<description>That's a good question, I just looked and I can't remember now. I vaguely recall that there is a way to pass arguments to the http://jroller.com/rss/username page to get it to give you entries within a certain range! Now I can't figure out what the arguments are though so I'd recommend hitting the source at http://svn.apache.org/viewcvs.cgi/incubator/roller/trunk/ and see if you can figure out which options the rss page responds to.</description>
		<content:encoded><![CDATA[<p>That&#8217;s a good question, I just looked and I can&#8217;t remember now. I vaguely recall that there is a way to pass arguments to the <a href="http://jroller.com/rss/username" rel="nofollow">http://jroller.com/rss/username</a> page to get it to give you entries within a certain range! Now I can&#8217;t figure out what the arguments are though so I&#8217;d recommend hitting the source at <a href="http://svn.apache.org/viewcvs.cgi/incubator/roller/trunk/" rel="nofollow">http://svn.apache.org/viewcvs.cgi/incubator/roller/trunk/</a> and see if you can figure out which options the rss page responds to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dash</title>
		<link>http://gabrito.com/post/blogging-software/comment-page-1#comment-31</link>
		<dc:creator>Dash</dc:creator>
		<pubDate>Fri, 03 Feb 2006 10:13:50 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/blogging-software#comment-31</guid>
		<description>Thanks, I was looking into scraping my site but I ended up with a lot of unwanted stuff!

The RSS feeds I get are only 30 days old though?

How do you get a feed for the whole page (obviously I can make the front page as long as the whole blog if I wanted)</description>
		<content:encoded><![CDATA[<p>Thanks, I was looking into scraping my site but I ended up with a lot of unwanted stuff!</p>
<p>The RSS feeds I get are only 30 days old though?</p>
<p>How do you get a feed for the whole page (obviously I can make the front page as long as the whole blog if I wanted)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd Huss</title>
		<link>http://gabrito.com/post/blogging-software/comment-page-1#comment-29</link>
		<dc:creator>Todd Huss</dc:creator>
		<pubDate>Thu, 02 Feb 2006 20:39:23 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/blogging-software#comment-29</guid>
		<description>Hi Dash, It was quite tedious actually. I never managed to move the comments so I left all of those behind which was unfortunate. In Roller you can download each page of posts as an RSS feed. My blog was about 5 pages so I downloaded the 5 RSS feeds, saved them to disk, and then in Wordpress I used the import from RSS feature to load them into Wordpress.</description>
		<content:encoded><![CDATA[<p>Hi Dash, It was quite tedious actually. I never managed to move the comments so I left all of those behind which was unfortunate. In Roller you can download each page of posts as an RSS feed. My blog was about 5 pages so I downloaded the 5 RSS feeds, saved them to disk, and then in Wordpress I used the import from RSS feature to load them into Wordpress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dash</title>
		<link>http://gabrito.com/post/blogging-software/comment-page-1#comment-28</link>
		<dc:creator>Dash</dc:creator>
		<pubDate>Thu, 02 Feb 2006 13:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/blogging-software#comment-28</guid>
		<description>I'm trying to move to Drupal, and I asked Matt Schmidt about three months ago to give me a database dump of my roller site for the migration, but he seems to have disappeared into the ether (and jrollers' howling problems, no doubt)!

It looks like you've managed to move everything here, would you mind mailing me how you did it?

Cheers,

Dash</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to move to Drupal, and I asked Matt Schmidt about three months ago to give me a database dump of my roller site for the migration, but he seems to have disappeared into the ether (and jrollers&#8217; howling problems, no doubt)!</p>
<p>It looks like you&#8217;ve managed to move everything here, would you mind mailing me how you did it?</p>
<p>Cheers,</p>
<p>Dash</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd Huss</title>
		<link>http://gabrito.com/post/blogging-software/comment-page-1#comment-11</link>
		<dc:creator>Todd Huss</dc:creator>
		<pubDate>Sun, 08 Jan 2006 22:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/blogging-software#comment-11</guid>
		<description>I liked Typo but my impression was that Wordpress has a much larger user community, ergo more themes, plugins, etc... I also don't have FastCGI or Lighty running on my current Linux server so it would have been a little extra work to setup, whereas I already had Apache, MySQL, and PHP installed.</description>
		<content:encoded><![CDATA[<p>I liked Typo but my impression was that Wordpress has a much larger user community, ergo more themes, plugins, etc&#8230; I also don&#8217;t have FastCGI or Lighty running on my current Linux server so it would have been a little extra work to setup, whereas I already had Apache, MySQL, and PHP installed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://gabrito.com/post/blogging-software/comment-page-1#comment-10</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sun, 08 Jan 2006 22:23:07 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/blogging-software#comment-10</guid>
		<description>If Ruby was your first choice of language why not go with Typo?</description>
		<content:encoded><![CDATA[<p>If Ruby was your first choice of language why not go with Typo?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
