Displaying 7 results from an estimated 7 matches for "drainpatrol".
2006 Feb 14
2
Inline list editing with RJS: best practices
I wanted to get the community opinion on the best way to use partials and
inline list (<li>) editing.
I have a very common scenario where a list is rendered:
--- index.rhtml ---
<ul>
<%= render :partial => ''item'', @collection => @items %>
</ul>
--- _item.rhtml (simplified) ---
<li id="item_<%= item.id %>">
<div
2006 Jan 05
3
has_one :dependent => true question
Hello,
I have two classes that are self explanatory and are listed below.
class User < ActiveRecord::Base
belongs_to :account
end
class Account < ActiveRecord::Base
has_one :account_owner, { :dependent => true, :class_name => "User",
:conditions => "is_account_owner = 1" }
has_many :users
end
In the signup controller when an account is created one user
2006 Jan 13
1
h() aka. html_escape in controller code?
Hi.
In controller code I''m doing things like:
flash[:success] = "Customer {#@customer.name} has been deleted."
I know how to escape html in views by using the h() method. How can I do
the same thing here in the controller?
Thanks,
Zack
2006 Jan 20
6
Pre-populate db with yaml outside of testing?
Hi.
What is the best way to pre-populate your database with records while
developing, not testing?
For example, I want to:
1) > [run this command to populate db]
2) > ruby script/server
3) now I can surf to localhost:3000 and my app will already have relevant
data
I''m hoping to use yaml to suck it in.
Is there a way to use the Fixture class to handle this even though this is
2006 Feb 02
1
FYI lighttpd 1.4.9 has problems running with rails out-of-the-box
In case this helps anyone I recently finished setting up a Debian server
closely following Ezra''s excellent guidance @
http://brainspl.at/rails_stack.html.
I used newer libraries in some cases (and mysql 5.0) and everything worked
great until the end when lighttpd wouldn''t start. I finally figured out
that Lighty 1.4.9 has a problem working with rails out-of-the-box. See
2006 Feb 06
3
Typo download during site migration
Is there a deep link still active to download Typo while
http://typo.leetsoft.com/ moves to its new home?
Thanks,
Zack
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060206/9034c40f/attachment.html
2006 Jan 11
3
How do you do a custom sql call in rails?
Hi.
I am developing an industry specific crm that allows busineses to track
customers in a particular way. Each customer will be assigned a customer
number. The first customer will have a customer number of 1, the second
customer_number = 2, etc... Note that this customer number is not global
but particular to the account that created the customer (see schema snip
below).
I need to have a