search for: lee_longmore

Displaying 4 results from an estimated 4 matches for "lee_longmore".

2006 Oct 14
2
Documentation for html_options = {}
Hi, trying to locate documentation for html_options = {} as allowed in RJS calls such as link_to_remote. Can anyone point me in the right direction please? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2006 Jun 19
1
Best practice?
Hi, I am new to Ruby on Rails, and should like to validate the following assumptions: - static html is best placed in the public directory of the server such as Apache rather than the public or views directory of the RoR application e.g. static home page with links to my RoR application - under CGI/FastCGI, the server will first try to find files in its own filesystem before passing through
2013 Mar 03
0
Lee Longmore
ydt mvz.vsd/http://www.maaelimpresiones.com/vwubayz/gxhlhmjm8hou8o.sfv?5vt79tkz29wawzjvixyrbt6phwrtsicupi cxsg.vsd/rsnajkb uzfktrn.vsd/ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/rspec-users/attachments/20130303/713053e5/attachment.html>
2006 Nov 11
1
<< does it force a save?
my tests seem to imply that << forces an insert of the parent and child records in a has_many relationship when both are newly created objects. for example, Controller code: xy=XY.new pc=PC.new xy.addPC(pc) Model code: Class XY < ActiveRecord.... def addPC(pc) self.controls<<pc end end where XY has a "has_many" association with PC and PC has a