<?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: Logical Tabs: a Rails helper for persistent HTML tab interfaces</title>
	<atom:link href="http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/</link>
	<description>Logical Reality Design: Web Design and Software Development</description>
	<lastBuildDate>Tue, 20 Dec 2011 19:03:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Montaro</title>
		<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/comment-page-1/#comment-16482</link>
		<dc:creator>Montaro</dc:creator>
		<pubDate>Thu, 14 Oct 2010 06:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lrdesign.com/?p=171#comment-16482</guid>
		<description>I try and it work for Rails 3. Thanks.</description>
		<content:encoded><![CDATA[<p>I try and it work for Rails 3. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evan</title>
		<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/comment-page-1/#comment-15601</link>
		<dc:creator>Evan</dc:creator>
		<pubDate>Sat, 14 Aug 2010 19:00:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lrdesign.com/?p=171#comment-15601</guid>
		<description>@peter:  thanks for the update and the note.  I hadn&#039;t tested in in Rails 2.0, so I appreciate the pointer.   I may go back and see if I can incorporate your fix so that it will work in both versions of Rails, but supporting Rails versions that old is a relatively low priority ... getting it working for Rails 3 is probably the next thing I&#039;ll do.</description>
		<content:encoded><![CDATA[<p>@peter:  thanks for the update and the note.  I hadn&#8217;t tested in in Rails 2.0, so I appreciate the pointer.   I may go back and see if I can incorporate your fix so that it will work in both versions of Rails, but supporting Rails versions that old is a relatively low priority &#8230; getting it working for Rails 3 is probably the next thing I&#8217;ll do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/comment-page-1/#comment-15599</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Sat, 14 Aug 2010 18:24:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lrdesign.com/?p=171#comment-15599</guid>
		<description>I fixed it in Rails 2.02 by using
  concat output,proc.binding</description>
		<content:encoded><![CDATA[<p>I fixed it in Rails 2.02 by using<br />
  concat output,proc.binding</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/comment-page-1/#comment-15596</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Sat, 14 Aug 2010 16:33:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lrdesign.com/?p=171#comment-15596</guid>
		<description>My program does an error in the &#039;create_tabbed_panel&#039; method in the Helper when executing line 14 in helper.rb:
  concat output 
==&gt; wrong number of arguments (1 for 2)
I have to use Rails 2.02 and Ruby 1.8.7 due to some reasons, so maybe it comes from there.

What exactly does this line do? Reading the code I think it should put together the tabbed_panel elements + output somehow.
I browsed back the git versions but did not find a clue how to solve this.</description>
		<content:encoded><![CDATA[<p>My program does an error in the &#8216;create_tabbed_panel&#8217; method in the Helper when executing line 14 in helper.rb:<br />
  concat output<br />
==&gt; wrong number of arguments (1 for 2)<br />
I have to use Rails 2.02 and Ruby 1.8.7 due to some reasons, so maybe it comes from there.</p>
<p>What exactly does this line do? Reading the code I think it should put together the tabbed_panel elements + output somehow.<br />
I browsed back the git versions but did not find a clue how to solve this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Lorenz</title>
		<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/comment-page-1/#comment-15011</link>
		<dc:creator>Mark Lorenz</dc:creator>
		<pubDate>Thu, 08 Jul 2010 03:19:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lrdesign.com/?p=171#comment-15011</guid>
		<description>Sorry for turning your comment section into a conversation thread.  I was able to git by doing the following:

$ cd vendor/plugins
$ git clone git://github.com/LRDesign/logical_tabs.git
$ rake vendor/plugins/logical_tabs/tasks/logical_tabs_tasks.rake
   - Kill the server -
$ script/server

I&#039;m a total moron when it comes to git and source control, so there maybe repercussions to do it this way.  Also I&#039;m not sure that rake task was really necessary.

Thanks again for the lovely tabs.</description>
		<content:encoded><![CDATA[<p>Sorry for turning your comment section into a conversation thread.  I was able to git by doing the following:</p>
<p>$ cd vendor/plugins<br />
$ git clone git://github.com/LRDesign/logical_tabs.git<br />
$ rake vendor/plugins/logical_tabs/tasks/logical_tabs_tasks.rake<br />
   &#8211; Kill the server -<br />
$ script/server</p>
<p>I&#8217;m a total moron when it comes to git and source control, so there maybe repercussions to do it this way.  Also I&#8217;m not sure that rake task was really necessary.</p>
<p>Thanks again for the lovely tabs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Lorenz</title>
		<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/comment-page-1/#comment-15008</link>
		<dc:creator>Mark Lorenz</dc:creator>
		<pubDate>Thu, 08 Jul 2010 02:15:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lrdesign.com/?p=171#comment-15008</guid>
		<description>Well, I&#039;m trying to use it, but I seem to be having the same problem as @stephen and @Ho

Specifically:

$ script/plugin install http://LRDesign@github.com/LRDesign/logical_tabs.git
Initialized empty Git repository in /Users/mark/Dropbox/src/BridalCore/vendor/plugins/logical_tabs/.git/
Password:</description>
		<content:encoded><![CDATA[<p>Well, I&#8217;m trying to use it, but I seem to be having the same problem as @stephen and @Ho</p>
<p>Specifically:</p>
<p>$ script/plugin install <a href="http://LRDesign@github.com/LRDesign/logical_tabs.git" rel="nofollow">http://LRDesign@github.com/LRDesign/logical_tabs.git</a><br />
Initialized empty Git repository in /Users/mark/Dropbox/src/BridalCore/vendor/plugins/logical_tabs/.git/<br />
Password:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evan</title>
		<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/comment-page-1/#comment-15007</link>
		<dc:creator>Evan</dc:creator>
		<pubDate>Thu, 08 Jul 2010 01:42:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lrdesign.com/?p=171#comment-15007</guid>
		<description>@Mark Lorenz:   Thanks for catching the typo!   I&#039;ve updated the post.

Glad to know someone&#039;s using logical_tabs; I enjoyed writing it!</description>
		<content:encoded><![CDATA[<p>@Mark Lorenz:   Thanks for catching the typo!   I&#8217;ve updated the post.</p>
<p>Glad to know someone&#8217;s using logical_tabs; I enjoyed writing it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Lorenz</title>
		<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/comment-page-1/#comment-15006</link>
		<dc:creator>Mark Lorenz</dc:creator>
		<pubDate>Thu, 08 Jul 2010 01:34:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lrdesign.com/?p=171#comment-15006</guid>
		<description>For the jQuery stylesheet you have as the path:
  vendor/plugins/logical_tabs/javascripts/logical_tabs_prototype.js

Your probably mean:
   vendor/plugins/logical_tabs/javascripts/logical_tabs_jquery.js

Thanks for posting this great project!</description>
		<content:encoded><![CDATA[<p>For the jQuery stylesheet you have as the path:<br />
  vendor/plugins/logical_tabs/javascripts/logical_tabs_prototype.js</p>
<p>Your probably mean:<br />
   vendor/plugins/logical_tabs/javascripts/logical_tabs_jquery.js</p>
<p>Thanks for posting this great project!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Judson</title>
		<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/comment-page-1/#comment-14752</link>
		<dc:creator>Judson</dc:creator>
		<pubDate>Thu, 24 Jun 2010 20:27:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lrdesign.com/?p=171#comment-14752</guid>
		<description>@stephen, @Ho Phoung Nam,

Could you be more specific?  I just logged out of github and was able to both download the archived source and clone the repo.  So, what do you need a password to do?</description>
		<content:encoded><![CDATA[<p>@stephen, @Ho Phoung Nam,</p>
<p>Could you be more specific?  I just logged out of github and was able to both download the archived source and clone the repo.  So, what do you need a password to do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LRBlog &#187; Blog Archive &#187; Tabbed Panels in Rails, Part 1</title>
		<link>http://blog.lrdesign.com/2010/06/logical-tabs-a-rails-helper-for-html-tab-interfaces-with-persistance/comment-page-1/#comment-14747</link>
		<dc:creator>LRBlog &#187; Blog Archive &#187; Tabbed Panels in Rails, Part 1</dc:creator>
		<pubDate>Thu, 24 Jun 2010 17:26:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lrdesign.com/?p=171#comment-14747</guid>
		<description>[...] NOTE: This post is now deprecated; I have stopped using the plugin described here and written my own, logical_tabs, which has several advantages over this approach and is more compatible across versions of Rails. Please see the new post instead. [...]</description>
		<content:encoded><![CDATA[<p>[...] NOTE: This post is now deprecated; I have stopped using the plugin described here and written my own, logical_tabs, which has several advantages over this approach and is more compatible across versions of Rails. Please see the new post instead. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

