Displaying 12 results from an estimated 12 matches for "_controller".
Did you mean:
controller
2005 Nov 16
4
What happened to mysql connection?
...ecord/base.rb:930:in `construct_finder_sql''
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.13.0/lib/
active_record/base.rb:411:in `find''
/opt/local/lib/ruby/gems/1.8/gems/activerecord-1.13.0/lib/
active_record/base.rb:409:in `find''
#{RAILS_ROOT}app/controllers/customer_controller.rb:13:in `pre_check''
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.11.0/lib/
action_controller/filters.rb:354:in `send''
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.11.0/lib/
action_controller/filters.rb:354:in `call_filters''
/opt/local/lib/ruby/gems/1.8/gems/actionp...
2006 May 23
6
How to list all models of an application?!?
How can I get a list of all model classes in the domain of a Rails
application (all models, both in "app/models" and in
components/somedir/model.rb)?
Thanx in advance for your precious help!
Edoardo "Dado" Marcora
2006 Jan 19
4
UserEngine - rake bootstrap aborted => undefined method `synchronize_with_controllers'' for Permission:Class
Good day all.
I have successfully installed Engines and LoginEngine and LE is setup and
running correctly.
However, after installing and setting up UE, when attempting to run the rake
bootstrap method I get the following error:
undefined method `synchronize_with_controllers'' for Permission:Class
My environment is
Rails 1.0.0
Ruby 1.8.2
WinXP
WebBRICK
MySQL 4.1.14
I found the following in a thread about making changes to the
user_engine/app/models/permission.rb and have done this:
BEFORE CHANGE:
# we need to load all the controllers...
controller_fil...
2006 Feb 01
3
Testing components
...am really happy with the way it''s going. Unfortunately, all my
attempts at writing functional tests for them fail. Trying to duplicate
my normal controller tests I have:
require File.dirname(__FILE__) + ''/../test_helper''
require File.dirname(__FILE__) + ''news_controller''
# Re-raise errors caught by the controller.
class NewsController; def rescue_action(e) raise e end; end
class NewsControllerTest < Test::Unit::TestCase
def setup
@controller = NewsController.new
@request = ActionController::TestRequest.new
@response = ActionControl...
2010 Sep 04
3
its easy but i forgot all
my models
borrower ----- has_many :loans
loan ----- belongs_to :borrower
my loans _controller
def new
@borrower = Borrower.find(params[:borrower_id])
logger.debug '' @borrower.id''
logger.debug @borrower.id
@loan = Loan.new
respond_to do |format|
format.html # new.html.erb
format.xml { render :xml => @loan }
end
end
def crea...
2008 Mar 28
10
Inheriting from AdminController intstead from ApplicationController
Hi
I would like to do the following:
I have created an admin namespace and the required folders app/admin
views/admin etc. And then I wanted all controllers under app/admin to
inherit from a controller named AdminController which resists under
app/admin/admin.rb instead of inhereting from ApplicationController,
so I could better separate between admin and public section. The
AdminController
2006 Jan 23
2
UserEngine -- Permission.synchronize_with_controllers -- trouble with my own controller modules
...cally, it''s the controllers that are not in the base
controllers folder, but rather in a subfolder. I have my admin
controllers separated in their own "admin" directory directly under
the normal controllers directory.
I''ve stepped through the Permission.synchronize_with_controllers
method with the console to try to figure out what''s going on.
This line does pick up all of my controllers.
controller_files = Dir[RAILS_ROOT + "/app/controllers/**/*_controller.rb"]
But then this line doesn''t include any of my admin controllers.
Applicatio...
2007 Sep 16
2
Problem with recognize_path
Hello,
I am experiencing a weird problem on one of the 3 test servers I''m
using:
There is a controller named admin/statistics and I am trying to
access /admin/statistics
The matching rule is: map.connect '':controller/:action/:id''
On 2 of the 3 servers, recognize_path correctly matches to
Parameters: {"action"=>"index",
2006 Apr 07
6
Multiple view types for a single action?
Is it possible to have more than one kind of view for a specific action,
for example an .rhtml and a .rjs file to handle the view for the same
action?
I suspect not, but this makes me wonder if there a way to call the .rjs
file from within the .rhtml so the statements within it get executed?
Thanks,
Andy
2006 Apr 27
7
Role Based Authorization recipe implementation?
i got the rails recipes book, i have now an auth system for users
without problems, now i want to made a role based acces for my app, im
following the "Role Based Authorization" recipe of the book but i cant
make it to work even when the tables created and correctly added data
manually definig the roles and rights. als i dont know how to define a
right for use all the actions in a
2006 Jun 23
0
Engine controllers are read twice
In all our engines, the app/controllers/*_controller.rb are read twice
during application startup, resulting in undesirable side effects,
such as duplicated before and after filters.
We have post a ticket in the Rails Engine tracking system [1], but we
are doubting if it is also reasonable to post it in Rails Trac,
because, althought de engine has i...
2007 Sep 19
3
link_to method of different controller
I want to link to a method of a different controller. I thought I new
how to do this but the code that I have is not working:
<%= link_to ''Welcome Page'', { :action => ''index'', :controller =>
''music_controller'' } %>
Any ideas, thanks
~S
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrail...