search for: guitaut

Displaying 5 results from an estimated 5 matches for "guitaut".

Did you mean: guitart
2010 May 26
3
Safebuffer with rails 2.3.8
...ARNING: ActionView::SafeBuffer is deprecated! Use ActiveSupport::SafeBuffer instead." But I don''t understand how to remove this. I searched through installed plugins, and there is no reference to SafeBuffer :( Any help would be appreciated please. Thanks! -- ,= ,-_-. =. Loïc Guitaut ((_/)o o(\_)) http://www.belfalas.org `-''(. .)`-'' Jabber ID : Flink-z1Ll2v8wZ5tg9hUCZPvPmw@public.gmane.org \_/ GnuPG KeyID : 0xA78CD85D
2006 Apr 25
3
Profiling views
Hi folks ! I''ve been using Rails for about 2 months now, but I''ve some performance problems. So I was wondering if there''s a way to profile views ? Thanks ! -- ,= ,-_-. =. Lo?c Guitaut ((_/)o o(\_)) http://www.belfalas.org `-''(. .)`-'' Jabber ID : Flink@im.apinc.org \_/ GnuPG KeyID : 0xA78CD85D -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: n...
2006 Jun 14
3
How to use at_beginning_of_year
I want to get the Date in formation YYYY-MM-DD for the start of the current year But I cannot think how to do it... This generates a name error .rhtml view. <%= at_beginning_of_year.Time.now %> -- Posted via http://www.ruby-forum.com/.
2006 Apr 07
3
Howto set a global parameter
Hi, In my login_controller I get the usename of the person logging in. @username = @user.name puts " DEBUG: #{@username} just logged in\n" # This works But @username seems empty when accessed from numbers_controller.rb , how to I set it to be accessible global? Or at least move the content of that variable over to another controller. Best regards, Martin
2006 Mar 20
5
:conditions => ["phone like ''%:phone%''" , {:phone => "555"}]
Hi all, What''s wrong with the way I specify the condition in : Person.find :all, :conditions => ["phone like ''%:phone%''" , {:phone => "555"}] ? It translates to (note the two '' between the two ") SELECT * FROM people WHERE (phone like "%''555''%" ) instead of SELECT * FROM people WHERE