Displaying 1 result from an estimated 1 matches for "home_page_controller".
2006 Jan 31
3
Lost in routing
...les based system where my controllers are
all under modules. So the structure looks something like:
app/
   controllers/
        message/
              news_controller.rb
              email_controller.rb
        library
              books_controller.rb
              pictures_controller.rb
       home_page_controller.rb
Each of those controller has it''s own view, and there''s a central
application.rhtml for the layout. The layout has in it links to each
of the controllers using the form:
url_for(:controller => ''message/news'', :action => ''show'')
The ro...