1
vote
2answers
103 views
RedCloth’s odd support of the <del> tag
I am using RedCloth with Rails 2.1.1. The Textile <del> tag markup format (i.e. -delete-) was not translating at all. Tried a few choice options.
> x=RedCloth …
4
votes
2answers
101 views
Getting renders to recognize custom routing paths
So I have a snazzy custom route for login
# routes.rb
map.login '/login', :controller => 'sessions', :action => 'new'
Visit www.asite.com/login and you're th …
1
vote
3answers
147 views
Sharing code in respond_to blocks
I have the following before_filter:
def find_current_membership
respond_to do |wants|
wants.html { @current_membership = @group.memberships.for(@current_use …
1
vote
Rails - Tracking Referrals to Conversions
Indeed, I would suggest storing the referrer in the user record. Then you can write some code to sensibly draw out additional data from the URL. For instance, you could parse Google URL's to determ …
0
votes
rails include with options
I'm not going to investigate the detailed query, but I'm thinking find_by_sql is in order for this particular case.
…
1
vote
Using link_to_remote inside of a controller
You'll need to discover all of the helpers that need to be included to make it work. For instance, content_tag is part of ActionView::Helpers::TagHelper.
…
1
vote
Rails Validation for users email - only want it to validate when a user signs up or updates email address.
I think EmFi is on to something. But I don't think the validates_presence_of :email should be holding you up. The email should always be present - if it is left blank in t …
1
vote
Prevent image caching in rails on a per tag basis
One option I can think of to do this would be to write a little helper that would append a "?YYYYMMDDHH" to the end of Gravatar URL's. You could generate the URL's to include year, month, day and h …
2
votes
Including and excluding helpers in Rails
I think you would need to write a custom method (say, all_helpers) to get symbols (:foo) or module names (FooHelper) for all of your helpers (probably via fil …
0
votes
autoreload partial every few seconds ala twitter search style
It may be time to roll up your sleeves and view source. I've heard of folks using Juggernaut to keep a live server connection open for …
