Tagged Questions
The actioncontroller tag has no wiki summary.
8
votes
5answers
5k views
How do I configure the hostname of a Rails app?
I'm working on a fairly traditional forgot password email - I want to email the user a password change token embedded in a link that they can click on in order to change their password. I'm emailing ...
6
votes
2answers
638 views
Why is Rails before_filter called twice when the controller is subclassed?
I'm at Rails 2.3.5 and I have this problem:
class BaseController < ApplicationController
before_filter :foo, :only => [:index]
end
class ChildController < BaseController
before_filter ...
5
votes
2answers
659 views
Rails best practice for having same form on multiple pages
I am developing an Rails 2.3.1 Web site. Throughout the Web site, I need to have a form for creating Posts on various pages (Home page, Create Posts page, Post listing page, Comment listing page, etc. ...
4
votes
1answer
119 views
How to prevent force_ssl from destroying params in redirect?
I have the following route:
resources :widgets do
resources :orders
end
so that a request, e.g. to /widgets/1/orders/new goes to OrderController, which can access params[:widget_id] to know which ...
4
votes
1answer
513 views
Rails 3: Proper way to Delete resource using respond_with
I'm trying to DRY up a controller by incorporating respond_with. When I do, following some instructions in a Railscast, I get things mostly working. The problem lies in the redirect after deleting a ...
4
votes
1answer
735 views
Rails ActionController: Difference between request.remote_ip and request.remote_addr
In the ActionController source, local requests are defined as follows:
def local_request? #:doc:
request.remote_addr == LOCALHOST && request.remote_ip == LOCALHOST
end
In my ...
4
votes
2answers
345 views
Action caching is not expiring correctly, even when I can see it's being called
I've got a sweeper that's supposed to expire a few action caches. Even though the debugger stops immediately before the call to expire_action, it's not actually expiring the action. Any idea what ...
3
votes
2answers
127 views
list and create on one page rails 3
I want to make a dashboard page with on top a create action (form) and underneath it a list action... (to display all the questions that have been made) I was wondering what is the best way to do ...
3
votes
2answers
91 views
Where to put OAuth logic?
I'm using Zend Framework in a project, and I'm creating a controller only for authentication.
In this project we'll accept that a user signs up through a account of other sites like facebook, twitter, ...
3
votes
1answer
71 views
Why ActionController::Metal leaks memory?
I have a following class:
class Myclass < ActionController::Metal
def myaction
huge_object.do_something
# etc.
end
private
def huge_object
@obj ||= begin
# allocate and ...
3
votes
2answers
914 views
How to set config.action_controller.default_url_options = {:host = '#''} on per environment basis
Right now I'm using this which works for the development host, but I have to manually change the {:host => ""} code when I move to production.
post.rb
def share_all
url = ...
3
votes
1answer
618 views
SqlSessionStore in Rails 3
I am migrating an existing application from Rails 2 to Rails 3. In the old environment file, SqlSessionStore was set up with:
...
3
votes
2answers
67 views
How to determine which view to render in a controller action
Okay, I have a few different of ideas of how I would achieve this, but thought I would ask here in case someone has a better solution.
I have a SessionsController that has a login view and a ...
3
votes
1answer
407 views
after_filter for exceptions
Is there something similar to an after_filter that still runs if the action raises an exception?
I'm using an external logger (since I'm on Heroku); the response headers are filtered and logged in ...
3
votes
2answers
332 views
How to make Rails caches_page survive a capistrano deploy?
Is it possible to configure Rails so caches created with caches_page survive a Capistrano deploy? Ie, can I configure the cache to be saved into a shared directory rather than in the public directory?
...
3
votes
1answer
289 views
Getting around dots in “pretty urls”
In my routes.rb I've got:
map.connect ':name',
:controller => 'my_classes',
:action => 'show'
And that works perfectly, so a url like this sends params like so:
...
3
votes
1answer
1k views
Transaction Action with Ruby On Rails
I have a complex action inside controller that performs several update queries to the database.
How can I make this action acts like transaction without any structural refactoring?
2
votes
2answers
93 views
How do I unit test the zend action controller?
I need to rapidly build good software in php and using the zend framework. I try to go at this in a TDD way because its people more experienced than me told me that was the best way to rapidly build ...
2
votes
2answers
959 views
default_url_options and rails 3
As ActionController::Base#default_url_options is deprecated, I wonder how to set default url options in rails3. The default url options are not static but dependent of the current request.
...
2
votes
2answers
164 views
Getting access to :not_found, :internal_server_error etc. in Rails 3
It looks like ActionController::StatusCodes has been removed from Rails 3.
I used synonyms for HTTP status codes such as
200 => :ok
404 => :not_found
500 => :internal_server_error
For ...
2
votes
0answers
975 views
Working with and Testing Rails ActionController's respond_with
Apologies in advance for the verbosity of this question. If you bear with me I think you'll find it's actually quite simple...just hard for me to explain given my limited Rails domain knowledge.
...
2
votes
3answers
1k views
Rails 3: Get current namespace?
using a method :layout_for_namespace I set my app's layout depending on whether I am in frontend or backend, as the backend is using an namespace "admin".
I could not find a pretty way to find out ...
2
votes
1answer
341 views
FInding out which before_filters are already set in Rails 3
I have a DSL for controller configuration. The underlying functionality relies on before_filters. To prevent setting the before_filter more than once, I really need to find out whether a ...
2
votes
2answers
373 views
How can I access UrlWriter url/path generators from a model's class method?
I want to generate urls from a model's class method. I've done this before from an instance method by simply including ActionController::UrlWriter -- I tried including this in the instance definition ...
2
votes
3answers
523 views
class variables and module inclusion, specifically in ActionController
I want to have some kind of single list that is initialized in a seperate module, then can be included in a controller and modified at the controller-class level, and accessed at the ...
2
votes
1answer
264 views
How rails render works in controller? Why something it doesn't use layout?
I tried to write render in an action, but layout behavior is different, why?
def show
# assuming we have a partial in app/views/shared/_panel_show.html.erb
#render "shared/_panel_show" # have ...
2
votes
3answers
348 views
Rails ActionController Execute Same Code for Every Action
To the rails experts out there I was wondering where/how you would execute the same code for every action in your web application? If you can point me to an article or provide a short code snippet I ...
1
vote
1answer
35 views
Is it possible to stop Rails from rendering views for actions not defined in controllers?
Following this question, I'd like to know if there is a way to override that new rails behaviour. I run into a security issue with a forgotten view, that was suddenly exposed although the action was ...
1
vote
0answers
26 views
Specifying format: “xml” ignored with render_to_string
I have an action that needs to render a view to string. The view is called index.xml.erb. I am trying to achieve this with render_to_string:
my_string = render_to_string(layout: false, format: "xml")
...
1
vote
1answer
32 views
ActionController Mixin
How could I create a mixin for action controller, which does something like:
layout Proc.new { |controller|
if controller.request.xhr?
'minimal'
else
'application'
end
}
(I can't ...
1
vote
1answer
82 views
Undefined method 'url_for' while rendering a Rails 2.3.x template inside a ActiveRecord model
I know that this not an "acceptable" practice but as a background process I am caching a rendered Rails partial into the database for faster output via JSONP. I have found many resources on the topic ...
1
vote
0answers
29 views
NameError for ActionMailer within ActionController
I'm on Rails 3.0, and I pretty much followed the steps on the API to define a mailer by doing
rails generate mailer Notifier
Within my controller, I call Notifier.mytemplate(...)
When I go to the ...
1
vote
1answer
39 views
Rendering Rails partial view (with issues reading the Rails API)
I have a jQuery post submitting a form to a controller create action, which works great. If the save was successful I would like the create action to return a different form so the success callback ...
1
vote
1answer
108 views
NameError uninitialized constant in Jruy/Rails 3
I'm upgrading a project to Rails 3.1 and Jruby 1.6.4 from rails 2.6 I followed the Rails Handbook by Jeremy.
Now I'm getting some errors while booting the server.
NameError in ...
1
vote
1answer
56 views
Transfer only a part of properties in a class in struts' json
Sorry, I really don't know how to summarize the title of this question. So, the title may not be clear.
I have an action class which performs some business logic.
in the Action Class:
class ...
1
vote
0answers
70 views
How to disable rendering the view in ActionController TestCase (Rails 3.0.9)
What's the proper way to disable ActionController::TestCase to actually render the views?
Alternatively, what'd be the way to render the view without the layout in the tests?
Using rr, I've tried
...
1
vote
2answers
99 views
Retrieve a record's created_by field to a passed in month and year in Rails3?
Im trying to make a side bar for my blog archive that lists out all the months for my blog entries, so when you click on a link such as "June 2007" all the blogs from June 07 are loaded.
Heres my ...
1
vote
1answer
204 views
How to get segment keys from a Rails 3 route?
I need to determine the number of route segment keys in the current path for an application I'm working on, and despite digging around for a bit in the related Rails 3 source files, I can't figure it ...
1
vote
1answer
391 views
Rails 3- fixing juggernaut involving template and JS generator
I'm using the original Juggernaut (not Juggernaut 2) with Rails 3. In the lib/juggernaut.rb, it breaks due to not being able to find @template. According to this other post, @template is not provided ...
1
vote
1answer
164 views
Migrating from Rails 2 to Rails 3 problem (nil.any?)
I've been upgrading my app from Rails 2.3.8 to Rails 3.
After getting all the basic stuff done (configs, routes, and the new AR API, replacing Authlogic with Devise) and getting some mostly static ...
1
vote
2answers
597 views
Ruby on rails nested form model
I'm trying to use rails nested form_for helper, but I am getting the following error:
BlogPage(#49859550) expected, got Array(#31117360)
Here are my model objects:
class Blog < ...
1
vote
1answer
797 views
Avoiding repetitive “content_for” in views
I have a submenu placed in my layout wich differs from controller to controller, but not between each controllers method views. What I am currently doing is the following:
<% content_for( :submenu ...
1
vote
1answer
624 views
Rails controller testing - Validation errors do not raise a HTTP error response
I have an ActionController derived Test which sends a 'post' request to the controller under test with incorrect data. The controller tries to create a new object and save it. The model has validation ...
1
vote
5answers
566 views
One controller, different views for normal users and admins
in my application, I have a "User" model. Each user can have multiple (email) addresses which are defined in the model "Address":
Class User < ActiveRecord::Base
has_many :addresses
def ...
1
vote
2answers
838 views
Rails default_url_options for actioncontroller to auto format all urls/paths with .html
One of our requirements was that all our url's ended with .html
We've overridden the default_url_options method to add the format to the options
def default_url_options(options={})
...
1
vote
4answers
3k views
uninitialized constant ActionController::Dispatcher::MiddlewareStack
I installed some new gems for testing and ran into an uninitialized constant ActionController::Dispatcher::MiddlewareStack error. I followed the instructions on the gem rdocs-specified the gem ...
0
votes
0answers
26 views
In rails, the controller.action_methods returns methods even if they have no associated routes
For resourceful controllers, calling the controller.action_methods is yielding all the possible action methods on the controller. I have a resource for which I have restricted the routes to [:only=> ...
0
votes
1answer
23 views
Rails detecting the request type in the controller?
I have a controller which via html shows the user profile, via JSON shows a user hover card w profile info.
class UsersController < ApplicationController
def show
@user = User.where(:id ...
0
votes
2answers
42 views
Receiving AbstractController::DoubleRenderError when using authenticate_or_request_with_http_basic()
I have a working controller action that breaks when I add a call to authenticate_or_request_with_http_basic at the beginning of the block. Here is the non-functioning action code:
def index
...
0
votes
0answers
42 views
Does wrap_parameters work for virtual accessors?
I have a model with a completed_at datetime in the schema. I also have a virtual accessor like this:
attr_accessible :completed
def completed=(flag)
self.completed_at = flag ? Time.now : nil
...