search for: changed_by

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

Did you mean: changed_
2006 Mar 24
2
Access to session data
...This, I hope, is a simply answered question. Based on Agile Web Development with Rails (depot application), I''m developing a single table application for contact info. There is only an admin side to this, so there''s always authentication. Part of the info record (member) is changed_by and changed_at which I automatically want updated. Changed_at looks after itself (yay!); however changed_by doesn''t. Since I know who is accessing the table (everyone has a user_name) I''ve stored user_name in the session. I can retrieve and display this information to the...
2010 Jun 30
1
...failed: too many links (31)
We do backups using rsync --link-dest. On one of our volumes, we just hit a limit in ext3 which generated the error: rsync: link "..." => ... failed: Too many links (31) This appears to be related to a limit in the number of directory entries to which an inode may be connected. In other words, it's a limit on the number of hard links that can exist to a given file. This
2008 Mar 08
9
Validation error handling on related models
I have 2 models, entity and client. Entity has_one client and client belongs_to entity. Entity has attributes name and legal_name. Entity also has an unique index on (lower(name)). The pKey for both is the conventional Rails id. Client has a fKey constraint on entity_id and is indexed in entity_id. In controllers/clients_controller.rb I have: # GET /clients/new # GET /clients/new.xml