search for: schmandards

Displaying 3 results from an estimated 3 matches for "schmandards".

2006 May 25
1
Instructions for virtual hosting with Apache + Mongrel?
...ructions on how to set up Mongrel for virtual hosting specifically. My hosting provider runs FreeBSD. Installing the Mongrel gem and providing each account with an extra higher port for proxing behind Apache seems to easy. Could it really be that simple? Kind regards, Peter http://www.standards-schmandards.com http://www.peterkrantz.com
2008 Mar 15
9
Spaces in Ruby on Rails and how to avoid them!
Hi, I just started learning ruby on rails and I am having hard time with white spacing! Here is the piece of code that will not work: validates_format_of :image_url, :with => %r{\.(gif|jpg|png)$}i, :message => "must be a URL for a GIF, JPG or PNG image" and here is the piece of code that will work: validates_format_of :image_url, :with => %r{\.(gif|jpg|png)$}i, :message
2006 May 20
10
HOW TO create a new record and its associated objects within the SAME PAGE
hi, can''t find any good tutorial or advice to deal with the creation of a new record and it''s associated objects within the same page. do i have to use ajax just to add custom form fields that will be handled by the controller for associated objects creation.? do i have to use ajax to add associated objects to the unsaved but allready in session parent object? what''s