search for: yanime

Displaying 6 results from an estimated 6 matches for "yanime".

Did you mean: anime
2006 Jun 14
0
krjs plugin: a different way of doing RJS
...tead of explicitly doing remote_form_tag or link_to_remote in the views templates. You''ll only need to continue using form_tag, text_field_tag et al to get the benefits. Markaby supported. I''m finding it useful (duh), pls feel free to comment. Cheers -- choonkeat - http://blog.yanime.org/ - http://www.rssfwd.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060614/1771fe39/attachment.html
2006 Jun 14
1
reset_session when Ruby goes down
Hi, In my web application we have implemented the session and it works fine. ie. it prompts for the userid/password when ever we give the URL by opening a new IE window. i.e it goes through the session and see if the :user_id is present in the session if not it prompts to log-in again. But my problem is say if we "kill" the WebRICK abruptly by pressing ^C and say my browser window
2006 Jul 17
1
FF1.0 + Prototype Ajax not working in 0.3.13.x
...body size 2 but declared Content-Length: 0 > Anyways, to have a (Firefox 1.0+Prototype)-friendly Mongrel, just change line 203 to: if remain == 0 || remain < 0 > In case anyone else has problems. Hopefully other parts of the sky don''t fall due to this. -- choonkeat http://blog.yanime.org/ http://www.rssfwd.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20060717/680a3fde/attachment.html
2006 May 30
3
extra attributes in habtm
Hi, Posting here since issue tracking isn''t the best place to discuss. I can understand habtm is moving towards deprecating support for extra attributes in join_table, and to use :through for those cases instead. To clarify, patch<http://dev.rubyonrails.org/attachment/ticket/5216/habtm_join_table_test.patch1.diff>for #5216 <http://dev.rubyonrails.org/ticket/5216>
2006 Aug 10
3
Radio buttons refusing to load checked...
Hi, Having big problems with radio buttons that just don''t make sense: <%= radio_button "events", "impact_type", true %> Positive <%= radio_button "events", "impact_type", false %> Negative This should create two radio buttons with the first one checked by default, right? Cos it doesn''t :( Any ideas would be great, Thanks,
2006 Aug 09
7
changing find method
Hi, i was wondering if there was a nice clean way(after all, it is ruby) to change the find method of a certain model/class (Page) so that if i wanted to use a find method on a @page instance it would return only specific rows from the table(if the page.published == true/false: the pages table looked like SQL: ... id int not null auto_increment, published tinyint(1) not null, something