search for: iheartsquares

Displaying 12 results from an estimated 12 matches for "iheartsquares".

2006 Jan 03
3
render :partial stops setting local variables.
...dit.rhtml partial template. example: <p><b>Username:</b> <%= username %></p> Could this be a problem with Ruby 1.8.4? -- Sean Wolfe master nerd of i heart squares, Co. 3711 N. Ravenswood Ave. #147 Chicago, IL 60613 Ph. (773) 531-6301 Fx. (773) 529-7041 http://www.iheartsquares.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060103/5feaf484/attachment.html
2006 Jun 08
5
AM/PM select
...me selects seem to only support 24 hour time. I can''t seem to find any information on this. i was wondering if there is already a solution out there, or will i have to roll my own? Sean Wolfe master nerd of i heart squares, inc. 3711 N. Ravenswood Ave. #147 Chicago, IL 60613 http://www.iheartsquares.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060608/4aa674e0/attachment-0001.html
2006 Jan 01
11
Migration db_schema_import always fails.
...s like there might be some sort of bug with a backtick/single-quote mismatch. Migration db_schema_import always fails. Anybody else experiencing this? -- Sean Wolfe master nerd of i heart squares, Co. 3711 N. Ravenswood Ave. #147 Chicago, IL 60613 Ph. (773) 531-6301 Fx. (773) 529-7041 http://www.iheartsquares.com
2006 Jan 21
4
Single quotes in parameters
I have a "search" action for my "projects" controller, which defines a set of projects as follows @projects = Project.find(:all, :include => [:user,:clients], :conditions => "name like ''%" + params[:query] + "%''",:order => ''number'') This works fine, until I type an entry into my search box that has a single
2005 Dec 19
2
Logging of Form information in production environment.
...uot;Signup"} I'm not totally familiar with all the logging features, but for an production environment shouldn't this be off by default? -- Sean Wolfe master nerd of i heart squares, Co. 3711 N. Ravenswood Ave. #147 Chicago, IL 60613 Ph. (773) 531-6301 Fx. (773) 529-7041 http://www.iheartsquares.com _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
2006 Feb 20
1
Breakpointer fixed in OSX 10.4.5
.... This fix at least seems to work on the Intel macs. Haven''t checked it on the PPC macs yet, but I haven''t had the ''getaddrinfo'' errors on the PPC macs. -- Sean Wolfe master nerd of i heart squares, Co. 3711 N. Ravenswood Ave. #147 Chicago, IL 60613 http://www.iheartsquares.com
2006 Feb 02
3
breakpointer failing
...ver surely does stop at that point. I tried a bunch of searches on the net and have found pretty much nothing. Have any of you run into these issues? -- Sean Wolfe master nerd of i heart squares, Co. 3711 N. Ravenswood Ave. #147 Chicago, IL 60613 Ph. (773) 531-6301 Fx. (773) 529-7041 http://www.iheartsquares.com
2006 Feb 11
3
Intial data in Migrations
...ate or country). Do those get put into a separate file? something like an initialize_db.rb? How have others been able to handle this with migrations? -- Sean Wolfe master nerd of i heart squares, Co. 3711 N. Ravenswood Ave. #147 Chicago, IL 60613 Ph. (773) 531-6301 Fx. (773) 529-7041 http://www.iheartsquares.com
2006 Mar 27
0
Contract Development positions available.
...les directly to my email address. Please also take a look at http://someoddpilot.com, which is my design partner''s company that I work with regularly. Thanks for your time, list. Sean Wolfe master nerd of i heart squares, Co. 3711 N. Ravenswood Ave. #147 Chicago, IL 60613 http://www.iheartsquares.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060327/323dd77f/attachment.html
2006 Feb 03
3
Breakpointer not working
When I try to run script/breakpointer, I get the following error: /usr/local/lib/ruby/1.8/drb/drb.rb:837:in `getaddrinfo'': getnameinfo: Non-recoverable failure in name resolution (SocketError) It''s Rails 1.0 on OSX 10.4.4. Any suggestions?
2005 Dec 22
11
first day using rails
Hi - this is my first day with Ruby on Rails. I''m starting out by working through the Helloworld (Hello Ruby) example program printed up in "Agile Web Development with Rails." My steps are as in the text: 1. ruby script/generate controller Say 2. edit the proper file and add the hello method 3. fire up the browser using address http://localhost:3000 4. fire up the
2006 Apr 13
0
Re: One model won''t work like the others, generating weird e
Rails assumes tables that have a column called type are using a single inheritance pattern. For example, if you had a model called Article and then had a model called News and another called Feature that both inherit from Article. You can use a single table to represent both child types data. The type column tells rails which model should be used to create the object. sean -----Original