search for: talcott

Displaying 10 results from an estimated 10 matches for "talcott".

Did you mean: talbott
2006 Jun 12
5
railish icons?
This is a little off topic but someone here knows, I''m sure... Does anyone have a good site to find freely available standard icons for things like add/edit/delete/save? I''m looking for a set of clean and simple matching icons that capture that Railsy-Web 2.0 feel... Maybe icons aren''t Railsy... Steven -- Posted via http://www.ruby-forum.com/.
2006 May 29
7
re-coding a sizable PHP app in rails
Hello, I am the developer of a fairly major PHP app. It has the full compliment of web application goodies -- email, batch processes, cc transactions, multi-level authentication, security, content management, curl-type interaction with other applications, etc. I am obsessed with the idea of re-doing a year and a half of work in Rails and the more I learn the worse my itch gets. I feel
2006 Jul 28
8
mass emails
Say we have 20k-50k users signed up for an email newsletter. Does anyone have any data on how well ActionMailer does with mass emails? How long would that take to send? Anything I should watch out for? Thanks, Joe
2006 Jun 10
4
using STI in a migration
I have some classes in my model which use STI and they work as expected in the console. However, when I try to use them in a migration, I get "uninitialized constant OfficePhone", for example. Why doesn''t the migration environment pick up the class defs? OfficePhone is defined in the model/phone.rb. I put model :phone in the application.rb but my migration just
2006 Jun 13
9
act_as_versioned and join tables?
Greetings! I''m attempting to use the act_as_versioned plugin to provide versioning functionality for my rails app, but can''t think my way through this: How can you use act_as_versioned to perform versioning on a HABTM join table? It is easy to see how to do so for join models (:has_many :through) but not so for the join table. I want to use act_as_versioned to maintain
2006 Jun 25
2
credit card transactions in Rails?
What are most rails sites using to do credit card transactions? Has anyone written a module to run transactions through eFunds/ClearCommerce? If not, I will just rewrite my old PHP code... Thanks, Steven -- Posted via http://www.ruby-forum.com/.
2008 May 09
4
[Bug 1462] New: Unaligned access warnings on IA64 when using umac-64
...nux Status: NEW Severity: normal Priority: P2 Component: ssh AssignedTo: bitbucket at mindrot.org ReportedBy: imorgan at nas.nasa.gov Created an attachment (id=1499) --> (http://bugzilla.mindrot.org/attachment.cgi?id=1499) Patch by Dale Talcott. Force nh_result to be aligned on a 64-bit boundary. When using the umac-64 algorithm on IA64 numberous 'unaligned access' warnings occur at runtime for both the client and server. These potentially affect performance and can be quite disturbing to users. -- Configure bugmail: https://b...
2006 Aug 02
1
capistrano+mongrel struggles
Hello, I am trying to deploy on to OS X Server with capistrano+mongrel+apache2, etc. I''m trying to do a "cap cold_deploy" as recommended here: http://blog.codahale.com/2006/06/19/time-for-a-grown-up-server-rails-mongrel-apache-capistrano-and-you/ I had a devil of a time getting cap to find the mongrel_rails command (which is in /opt/local/bin) on the server. I set the
2006 Jul 23
8
belongs_to :through ?
Suppose I have a belongs_to relationship and the thing it belongs to, belongs in turn to something else. For example, I would like to do: belongs_to :city belongs_to: :county, :through => :city While it is not too much trouble to do obj.city.county, there are times when I need to iterate through the attributes and include this second-order attribute. Special code to handle this messes up
2006 Jul 23
0
Refactoring or renaming things in Rails
Something nice would be a script/rename or script/refactor which would allow for easy renaming of some model/view/controller or combination, including a db migration if necessary. One does not always start out with a complete understanding of the domain or with the greatest Rails purity and often it is desirable to go back and rename something. Maybe it does not even count as refactoring. I