[Rails] Re: Why do rails calls a method when I'm calling a property?

2010-06-18 Thread Taywin
to prevent from error, check for nil (and may take a proper action) before your let Rails render the action. Regards, Taywin On Jun 17, 6:32 pm, Omar Renteria li...@ruby-forum.com wrote: Well, I'm starting on RoR, so I got a Book called simply rails...Following the steps in it sometimes when I try

[Rails] Re: tiny mce and link to remote

2010-03-10 Thread Taywin
If I remember correctly, tinyMCE is static and won't work with dynamic changes of page content. In other words, your ajax result is unknown to tinyMCE. A work around might be that you need to load tinyMCE at the same time you get the result from ajax. I think I did this a long time before by

[Rails] Re: Deprecations

2010-03-10 Thread Taywin
Not sure if you are looking for. Maybe the link below would be a bit of help. http://mentalized.net/journal/2007/03/13/rails_20_deprecations/ On Mar 9, 3:42 am, Benoit Caccinolo benoit.caccin...@gmail.com wrote: Hi all, Is there a way to have a list of all deprecated methods or classes in

[Rails] Re: dispatch.fcgi is hanging indefinitely

2010-03-10 Thread Taywin
Old post... Anyway, I guess you get this problem from running production but not on development. It is that the fcgi process gets killed before it finishes the process. This could be from huge database manipulation. You can try to find it by comment a certain part of your code and see if it is