<?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: Progress Bar in Rails</title>
	<atom:link href="http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/</link>
	<description>Ruby on Rails, Stock Markets, Technology news and info - Its all about my passion</description>
	<lastBuildDate>Wed, 25 Jan 2012 07:06:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Thomas</title>
		<link>http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/comment-page-1/#comment-1021</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Mon, 12 Dec 2011 19:49:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/#comment-1021</guid>
		<description>View (was not show inside last post): &quot;&quot;</description>
		<content:encoded><![CDATA[<p>View (was not show inside last post): &#8220;&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/comment-page-1/#comment-1020</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Mon, 12 Dec 2011 19:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/#comment-1020</guid>
		<description>Hi Dhaval,
thank you for your progress bar for rails. I have tried this within redmine and got a very nice bar, but only static. Do you know how I can add the dynamic refresh? I want to show the progress of importing some issues from an xml-file.

View: 

Controller: 
require &#039;action_view/helpers/asset_tag_helper&#039;
require File.dirname(__FILE__) + &#039;/../../../progress_bar_helper/lib/progress_bar_helper&#039;
include AttributesHelper
include ProgressBarHelper
include ActionView::Helpers::AssetTagHelper
include ActionView::Helpers::TagHelper
include ActionView::Helpers::AssetTagHelper
include ActionView::Helpers::JavaScriptHelper

def view_the_prbar
    @a_value = 0.5 #show me 50%
end

Thanks in advance, Thomas</description>
		<content:encoded><![CDATA[<p>Hi Dhaval,<br />
thank you for your progress bar for rails. I have tried this within redmine and got a very nice bar, but only static. Do you know how I can add the dynamic refresh? I want to show the progress of importing some issues from an xml-file.</p>
<p>View: </p>
<p>Controller:<br />
require &#8216;action_view/helpers/asset_tag_helper&#8217;<br />
require File.dirname(__FILE__) + &#8216;/../../../progress_bar_helper/lib/progress_bar_helper&#8217;<br />
include AttributesHelper<br />
include ProgressBarHelper<br />
include ActionView::Helpers::AssetTagHelper<br />
include ActionView::Helpers::TagHelper<br />
include ActionView::Helpers::AssetTagHelper<br />
include ActionView::Helpers::JavaScriptHelper</p>
<p>def view_the_prbar<br />
    @a_value = 0.5 #show me 50%<br />
end</p>
<p>Thanks in advance, Thomas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mathew</title>
		<link>http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/comment-page-1/#comment-961</link>
		<dc:creator>Mathew</dc:creator>
		<pubDate>Wed, 19 Oct 2011 09:41:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/#comment-961</guid>
		<description>can you tell me this example for file uploading.. i cant able to get exactly what you are trying to say in this line

Custom Static Progress Bar:
custom_static_progress_bar(name, value, options = {})

Options are:
# * name : used as an id for the progress bar
# * value : decimal value to represent (i.e. value &lt;= 1)
# * options : rendering options
#
# Rendering options are:
# * show_text : set to true to display percentage value in a text form
# * animate : set to true to animate the image
# * width : sets the width of the image (!must be the same as the actual box_image width
# * height : sets the height of the image (!must be the same as the actual box_image height
# * box_image : sets the container image
# * bar_images : sets the progress bar images (must be an Array)

Example:
”Test”,:animate=&gt;true,:width=&gt;120,:height=&gt;12})%&gt;

Progress Bar:
progress_bar(name,value, display_percentage_text = false, multicolor = false)

thanks in advance
mathew vivek</description>
		<content:encoded><![CDATA[<p>can you tell me this example for file uploading.. i cant able to get exactly what you are trying to say in this line</p>
<p>Custom Static Progress Bar:<br />
custom_static_progress_bar(name, value, options = {})</p>
<p>Options are:<br />
# * name : used as an id for the progress bar<br />
# * value : decimal value to represent (i.e. value &lt;= 1)<br />
# * options : rendering options<br />
#<br />
# Rendering options are:<br />
# * show_text : set to true to display percentage value in a text form<br />
# * animate : set to true to animate the image<br />
# * width : sets the width of the image (!must be the same as the actual box_image width<br />
# * height : sets the height of the image (!must be the same as the actual box_image height<br />
# * box_image : sets the container image<br />
# * bar_images : sets the progress bar images (must be an Array)</p>
<p>Example:<br />
”Test”,:animate=&gt;true,:width=&gt;120,:height=&gt;12})%&gt;</p>
<p>Progress Bar:<br />
progress_bar(name,value, display_percentage_text = false, multicolor = false)</p>
<p>thanks in advance<br />
mathew vivek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dhaval Parikh</title>
		<link>http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/comment-page-1/#comment-541</link>
		<dc:creator>Dhaval Parikh</dc:creator>
		<pubDate>Fri, 06 Nov 2009 05:16:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/#comment-541</guid>
		<description>Hi Amit

The description written here should solve the problem. You just need to install the plugin for the given url, include the js file as mentioned in the description and call it in the view as mentioned in the post. Let me know the exact problem you are facing or the error you are getting and I shall help you out with it.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Amit</p>
<p>The description written here should solve the problem. You just need to install the plugin for the given url, include the js file as mentioned in the description and call it in the view as mentioned in the post. Let me know the exact problem you are facing or the error you are getting and I shall help you out with it.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit Patel</title>
		<link>http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/comment-page-1/#comment-540</link>
		<dc:creator>Amit Patel</dc:creator>
		<pubDate>Wed, 04 Nov 2009 17:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/#comment-540</guid>
		<description>Hi Dhaval,

I need this for showing file upload progress.
I am fairly new to rails. Can you please provide me an exmple on how to do this.

Thanks a lot!!!!!!
-Amit Patel.
Software Developer, Rocky Hill, CT.</description>
		<content:encoded><![CDATA[<p>Hi Dhaval,</p>
<p>I need this for showing file upload progress.<br />
I am fairly new to rails. Can you please provide me an exmple on how to do this.</p>
<p>Thanks a lot!!!!!!<br />
-Amit Patel.<br />
Software Developer, Rocky Hill, CT.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dhaval Parikh</title>
		<link>http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/comment-page-1/#comment-539</link>
		<dc:creator>Dhaval Parikh</dc:creator>
		<pubDate>Tue, 06 Oct 2009 03:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/#comment-539</guid>
		<description>Hi Amit

http://progressbarhelper.googlecode.com/svn/trunk/progress_bar_helper/ This is the right path. If you open the url directly you will be able to see all the files. Try again it should work.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Amit</p>
<p><a href="http://progressbarhelper.googlecode.com/svn/trunk/progress_bar_helper/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/progressbarhelper.googlecode.com/svn/trunk/progress_bar_helper/?referer=');">http://progressbarhelper.googlecode.com/svn/trunk/progress_bar_helper/</a> This is the right path. If you open the url directly you will be able to see all the files. Try again it should work.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit</title>
		<link>http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/comment-page-1/#comment-538</link>
		<dc:creator>Amit</dc:creator>
		<pubDate>Mon, 05 Oct 2009 19:52:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/#comment-538</guid>
		<description>Hi Dhaval 

when I tried following command - I got error message - 

C:\test\bar\demo&gt;ruby script/plugin install http://progressbarhelper.googlecode.
com/svn/trunk/progress_bar_helper/

Plugin not found: [&quot;http://progressbarhelper.googlecode.com/svn/trunk/progress_b
ar_helper/&quot;]

Can you check the path?

Regards
Amit</description>
		<content:encoded><![CDATA[<p>Hi Dhaval </p>
<p>when I tried following command &#8211; I got error message &#8211; </p>
<p>C:\test\bar\demo&gt;ruby script/plugin install <a href="http://progressbarhelper.googlecode" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/progressbarhelper.googlecode?referer=');">http://progressbarhelper.googlecode</a>.<br />
com/svn/trunk/progress_bar_helper/</p>
<p>Plugin not found: ["http://progressbarhelper.googlecode.com/svn/trunk/progress_b<br />
ar_helper/"]</p>
<p>Can you check the path?</p>
<p>Regards<br />
Amit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twitter Trackbacks for Progress Bar in Rails &#124; Dhaval Parikh [dhavalparikh.co.in] on Topsy.com</title>
		<link>http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/comment-page-1/#comment-467</link>
		<dc:creator>Twitter Trackbacks for Progress Bar in Rails &#124; Dhaval Parikh [dhavalparikh.co.in] on Topsy.com</dc:creator>
		<pubDate>Mon, 24 Aug 2009 02:46:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails/#comment-467</guid>
		<description>[...] Progress Bar in Rails &#124; Dhaval Parikh  blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails &#8211; view page &#8211; cached  Ever thought of implementing a progress bar in rails? or did a need arise for you to do the same? Something like if you want the user to show the progress &#8212; From the page [...]</description>
		<content:encoded><![CDATA[<p>[...] Progress Bar in Rails | Dhaval Parikh  blog.dhavalparikh.co.in/2009/04/progress-bar-in-rails &ndash; view page &ndash; cached  Ever thought of implementing a progress bar in rails? or did a need arise for you to do the same? Something like if you want the user to show the progress &mdash; From the page [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

