search for: curve21

Displaying 9 results from an estimated 9 matches for "curve21".

Did you mean: curve2
2006 Jun 30
4
Posting error: Ruby On Rails mailing list archieve
You do not have permission to post to group railinglist. You may need to join the group before being allowed to post, or this group may not be open to posting. Visit http://groups.google.com/group/railinglist/about to join or learn more about who is allowed to post to the group. Help on using Google Groups is also available at: http://groups.google.com/support -------------- next part
2006 Jun 09
9
Opinions on catch-all routing?
I remember reading somewhere a tip on improving your search engine ranking, by forming URLs that included relevant text, e.g. www.domain.com/article/man_eats_hat. In the rails app that I''m writing, I''ve noticed I can set this up very easily by appending the post title (after downcase.split.join(''_'')) to the post link. So, blog.com/posts/4 can easily also be
2006 Jun 07
6
Links on the left hand side - are components necessary?
Hello, Maybe this is super-trivial... I need to have a list of links on the left hand side of my application, for *every* single page. So, I''ve created a layout called "main" (main.rhtml) under view/layouts, and included >layout "main"< in pretty all of my controllers. main.rhtml has, amongst all the other HTML stuff: <%= render_component
2006 Jun 13
8
Joins or relationships ?
I have a table called Post (not the actual name) where users input various piece of information, Most of the input is done by dynamic select''s (drop downs). As an example: User would choose Field: Input: Values that go into Post table Category Full Time 2 Length 45 Days 4 State
2006 Jul 02
18
JOIN conditions
Hi, how can I get Rails to generate SQL queries with conditions in the JOIN clause? What I would want is: SELECT * FROM people p LEFT OUTER JOIN jobs j (p.job_id = j.id AND j.salary > 9999999) I tried People.find(:all, :include => ''jobs'', :conditions => ''jobs.salary > 9999999'') but that generates SELECT * FROM people p LEFT OUTER
2006 Jul 17
22
Rails - where are the BIG web apps?
Ok, Rails has been out for some time now. I''ve kept an eye on it pretty closely. I''ve heard Basecamp, Robot Coop, 43 Things, etc. are running on it. However, those have been the same apps people point to when the dreaded scalability question comes up. Are there any new web apps (large scale) in Rails or is it still the same old one? Something like on the scale of
2006 Jun 19
0
UrlColumn Plugin
Hey All, I''ve just packaged up a small plugin i wrote to manage nice urls from a model attribute. It''s available for download here: http://www.2404.co.uk/index.php?path=articles/view.php&articleId=23 I can only apologise in advance for my dodgy blog - don''t let the horrible url and php scare you off :0) This is a very ''new'' plugin so do have a
2006 May 31
1
mailer - from address not being set
I''m having a weird problem with a mailer model. The from address doesn''t seem to be set - my mail logs it shows that the sender address is the default www@my.server.hostname and this causes the mail to bounce. The mailer code looks like this: def thismail @subject = "Subject" @recipients = "toemail@address.com" @from =
2006 Jun 28
5
Idea in development - Dynamic Records
Hi All, I''ve been working on a client project where by the client can manage the some fields/values available in a model. Here''s a quick writeup: http://stephenbartholomew.wordpress.com/2006/06/28/dynamic-records/ The idea is very much in development, but i thought i''d like to put it out for feedback. The writeup is also pretty rushed so please excuse :0) Cheers!