<?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: A simple Wiki with Ruby on Rails</title>
	<atom:link href="http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/</link>
	<description></description>
	<lastBuildDate>Mon, 07 May 2012 21:35:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Thabang</title>
		<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/comment-page-1/#comment-36373</link>
		<dc:creator>Thabang</dc:creator>
		<pubDate>Tue, 17 Apr 2012 10:44:54 +0000</pubDate>
		<guid isPermaLink="false">http://michaelnielsen.org/blog/?p=289#comment-36373</guid>
		<description>I see you say this was written under Rails 1.2. I am assuming this will not work under Rails 3.2.3. I tried it on Linux (openSUSE 12.1) and it works perfectly (after installing Git, curl and RVM) when I do what you did but it&#039;s a different story on Windows. Do I have to alter the code. For instance say &lt;code&gt;rails&lt;strong&gt; new &lt;/strong&gt; wiki&lt;/code&gt; instead of the code shown.</description>
		<content:encoded><![CDATA[<p>I see you say this was written under Rails 1.2. I am assuming this will not work under Rails 3.2.3. I tried it on Linux (openSUSE 12.1) and it works perfectly (after installing Git, curl and RVM) when I do what you did but it&#8217;s a different story on Windows. Do I have to alter the code. For instance say <code>rails<strong> new </strong> wiki</code> instead of the code shown.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/comment-page-1/#comment-36322</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Mon, 09 Apr 2012 20:21:39 +0000</pubDate>
		<guid isPermaLink="false">http://michaelnielsen.org/blog/?p=289#comment-36322</guid>
		<description>Hi Michael, I am getting a route error when its attempts to save a page, after the &quot;Create Page&quot; button is clicked.

This is my error:

Routing Error

No route matches [POST] &quot;/assets&quot;
Try running rake routes for more information on available routes.

I hope you could offer guidance! Unfortunately I need to finish making a wiki within a couple hours! 

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Michael, I am getting a route error when its attempts to save a page, after the &#8220;Create Page&#8221; button is clicked.</p>
<p>This is my error:</p>
<p>Routing Error</p>
<p>No route matches [POST] &#8220;/assets&#8221;<br />
Try running rake routes for more information on available routes.</p>
<p>I hope you could offer guidance! Unfortunately I need to finish making a wiki within a couple hours! </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Onalenna</title>
		<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/comment-page-1/#comment-30488</link>
		<dc:creator>Onalenna</dc:creator>
		<pubDate>Fri, 08 Apr 2011 16:54:11 +0000</pubDate>
		<guid isPermaLink="false">http://michaelnielsen.org/blog/?p=289#comment-30488</guid>
		<description>Hi Michael, is it possible for you to adapt this tutorial for the new version of rails and ruby?

&lt;em&gt;[MN: Sorry, don&#039;t have time!  But if you&#039;d like to, feel free to make the modifications!]&lt;/em&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Michael, is it possible for you to adapt this tutorial for the new version of rails and ruby?</p>
<p><em>[MN: Sorry, don't have time!  But if you'd like to, feel free to make the modifications!]</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Nielsen</title>
		<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/comment-page-1/#comment-26974</link>
		<dc:creator>Michael Nielsen</dc:creator>
		<pubDate>Mon, 19 Jul 2010 18:18:21 +0000</pubDate>
		<guid isPermaLink="false">http://michaelnielsen.org/blog/?p=289#comment-26974</guid>
		<description>Thankyou Dave!  Yes, indeed, I do.  Fixed.</description>
		<content:encoded><![CDATA[<p>Thankyou Dave!  Yes, indeed, I do.  Fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Bacon</title>
		<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/comment-page-1/#comment-26973</link>
		<dc:creator>Dave Bacon</dc:creator>
		<pubDate>Mon, 19 Jul 2010 04:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://michaelnielsen.org/blog/?p=289#comment-26973</guid>
		<description>&quot;These methods don’t do anything yet. In your browser, load the URL http://localhost:3000/page/create_page. You’ll get an error message that says “Unknown action: No action responded to create”. In fact, what has happened is that Rails parses the URL, and determines from the first part (“page”) that it should load page_controller.rb, and from the second part that it should call the display_page action.&quot;

Don&#039;t you mean &quot;create_page&quot; at the end of this paragraph?</description>
		<content:encoded><![CDATA[<p>&#8220;These methods don’t do anything yet. In your browser, load the URL <a href="http://localhost:3000/page/create_page" rel="nofollow">http://localhost:3000/page/create_page</a>. You’ll get an error message that says “Unknown action: No action responded to create”. In fact, what has happened is that Rails parses the URL, and determines from the first part (“page”) that it should load page_controller.rb, and from the second part that it should call the display_page action.&#8221;</p>
<p>Don&#8217;t you mean &#8220;create_page&#8221; at the end of this paragraph?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Nielsen</title>
		<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/comment-page-1/#comment-26327</link>
		<dc:creator>Michael Nielsen</dc:creator>
		<pubDate>Sun, 01 Nov 2009 18:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://michaelnielsen.org/blog/?p=289#comment-26327</guid>
		<description>Sai - I think you&#039;re probably seeing those errors because you&#039;re using a newer version of Rails.  This was written under Rails 1.2.</description>
		<content:encoded><![CDATA[<p>Sai &#8211; I think you&#8217;re probably seeing those errors because you&#8217;re using a newer version of Rails.  This was written under Rails 1.2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sai Emrys</title>
		<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/comment-page-1/#comment-26302</link>
		<dc:creator>Sai Emrys</dc:creator>
		<pubDate>Sat, 24 Oct 2009 07:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://michaelnielsen.org/blog/?p=289#comment-26302</guid>
		<description>You had errors because the standard method names are: index show new create edit update destroy

... i.e. show, not display.</description>
		<content:encoded><![CDATA[<p>You had errors because the standard method names are: index show new create edit update destroy</p>
<p>&#8230; i.e. show, not display.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RK</title>
		<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/comment-page-1/#comment-19127</link>
		<dc:creator>RK</dc:creator>
		<pubDate>Fri, 27 Mar 2009 05:21:43 +0000</pubDate>
		<guid isPermaLink="false">http://michaelnielsen.org/blog/?p=289#comment-19127</guid>
		<description>as john has said you need to install the plugin for inplace editor using ruby script/plugin install in_place_editing

and to make it work properly You need to apply this patch for inplace editor

http://dev.rubyonrails.org/attachment/ticket/10055/in_place_editing_should_work_with_csrf_and_rjs.patch



good article Michael</description>
		<content:encoded><![CDATA[<p>as john has said you need to install the plugin for inplace editor using ruby script/plugin install in_place_editing</p>
<p>and to make it work properly You need to apply this patch for inplace editor</p>
<p><a href="http://dev.rubyonrails.org/attachment/ticket/10055/in_place_editing_should_work_with_csrf_and_rjs.patch" rel="nofollow">http://dev.rubyonrails.org/attachment/ticket/10055/in_place_editing_should_work_with_csrf_and_rjs.patch</a></p>
<p>good article Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Schulman</title>
		<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/comment-page-1/#comment-11642</link>
		<dc:creator>John Schulman</dc:creator>
		<pubDate>Fri, 16 May 2008 14:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://michaelnielsen.org/blog/?p=289#comment-11642</guid>
		<description>In place editing has been moved to a plugin in Rails 2. The above code will probably work if do script/plugin install in_place_editing</description>
		<content:encoded><![CDATA[<p>In place editing has been moved to a plugin in Rails 2. The above code will probably work if do script/plugin install in_place_editing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Nielsen</title>
		<link>http://michaelnielsen.org/blog/a-simple-wiki-with-ruby-on-rails/comment-page-1/#comment-7056</link>
		<dc:creator>Michael Nielsen</dc:creator>
		<pubDate>Tue, 13 Nov 2007 18:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://michaelnielsen.org/blog/?p=289#comment-7056</guid>
		<description>I&#039;m not eager to get caught up in arguments over definitions.  I think it&#039;s pretty clear that I&#039;m using the term wiki very loosely here.  My micro-app is in no sense a complete wiki or CMS.

In regard to the second, I wrote:

&quot;A very simple Wiki in 42 lines of Rails code, with a few dozen extra lines of templates and stylesheets&quot;

I don&#039;t see that there&#039;s any inaccuracy here.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not eager to get caught up in arguments over definitions.  I think it&#8217;s pretty clear that I&#8217;m using the term wiki very loosely here.  My micro-app is in no sense a complete wiki or CMS.</p>
<p>In regard to the second, I wrote:</p>
<p>&#8220;A very simple Wiki in 42 lines of Rails code, with a few dozen extra lines of templates and stylesheets&#8221;</p>
<p>I don&#8217;t see that there&#8217;s any inaccuracy here.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

