Re: [Rails] Appending parameters to a link

2010-02-17 Thread Colin Law
On 17 February 2010 00:28, Philip Hallstrom phi...@pjkh.com wrote: Consider  link = url_for(:controller = signed_in,                :action = show, :id = user_info)  # = /signed_in/user_info to which I wish to add the either or both of the following  locale=en  nickname=ralph Is there

[Rails] Appending parameters to a link

2010-02-16 Thread Ralph Shnelvar
Consider link = url_for(:controller = signed_in, :action = show, :id = user_info) # = /signed_in/user_info to which I wish to add the either or both of the following locale=en nickname=ralph Is there a nice way in Rails or Ruby to do this so that I end up with

Re: [Rails] Appending parameters to a link

2010-02-16 Thread Philip Hallstrom
Consider link = url_for(:controller = signed_in, :action = show, :id = user_info) # = /signed_in/user_info to which I wish to add the either or both of the following locale=en nickname=ralph Is there a nice way in Rails or Ruby to do this so that I end up with