aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorJason Noble & Ralph Shnelvar <perlwizard@gmail.com>2011-07-24 12:50:23 -0600
committerJason Noble & Ralph Shnelvar <perlwizard@gmail.com>2011-07-24 12:50:23 -0600
commit48e85d8b8c6f9d23009e2795b347ce18ad6bff90 (patch)
tree0384eae67ba47c36bf7629cedbbcfbdd2019531c /railties/guides/source
parent5e8263b687d9b97b326eb2b265dc0474fee969a9 (diff)
downloadrails-48e85d8b8c6f9d23009e2795b347ce18ad6bff90.tar.gz
rails-48e85d8b8c6f9d23009e2795b347ce18ad6bff90.tar.bz2
rails-48e85d8b8c6f9d23009e2795b347ce18ad6bff90.zip
Moved ActionController, ActionView and ActionDispatch sections under ActionPack
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/getting_started.textile6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 2dd1b3f485..cb60b382ab 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -82,17 +82,17 @@ h5. Action Pack
Action Pack is a single gem that contains Action Controller, Action View and Action Dispatch. The "VC" part of "MVC".
-h5. Action Controller
+h6. Action Controller
Action Controller is the component that manages the controllers in a Rails application. The Action Controller framework processes incoming requests to a Rails application, extracts parameters, and dispatches them to the intended action. Services provided by Action Controller include session management, template rendering, and redirect management.
-h5. Action View
+h6. Action View
Action View manages the views of your Rails application. It can create both HTML and XML output by default. Action View
manages rendering templates, including nested and partial templates, and includes built-in AJAX support. View templates
are covered in more detail in another guide called "Layouts and Rendering":http://edgeguides.rubyonrails.org/layouts_and_rendering.html.
-h5. Action Dispatch
+h6. Action Dispatch
Action Dispatch handles routing of web requests and dispatches them as you want, either to your application or any other Rack application. Rack applications are a more advanced topic and are covered in a separate guide called "Rails on Rack":http://guides.rubyonrails.org/rails_on_rack.html.