aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-12-01 23:00:47 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-12-01 23:00:47 +0530
commit0181c2da977fc3de4e4c4eac602b26ff180cda2c (patch)
tree4ff327e807bc7729c5b99bf261bdbc5178faf227 /guides/source/action_controller_overview.md
parentfb42520252477d83560f2e2a2550c7f377e07bc1 (diff)
parent9685019c4a15eb0222984748e7413dc5920195f4 (diff)
downloadrails-0181c2da977fc3de4e4c4eac602b26ff180cda2c.tar.gz
rails-0181c2da977fc3de4e4c4eac602b26ff180cda2c.tar.bz2
rails-0181c2da977fc3de4e4c4eac602b26ff180cda2c.zip
Merge branch 'master' of github.com:lifo/docrails
Conflicts: guides/source/active_record_validations.md
Diffstat (limited to 'guides/source/action_controller_overview.md')
-rw-r--r--guides/source/action_controller_overview.md20
1 files changed, 11 insertions, 9 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index 6f161e83ea..69d99becb9 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -1,15 +1,17 @@
Action Controller Overview
==========================
-In this guide you will learn how controllers work and how they fit into the request cycle in your application. After reading this guide, you will be able to:
-
-* Follow the flow of a request through a controller
-* Understand why and how to store data in the session or cookies
-* Work with filters to execute code during request processing
-* Use Action Controller's built-in HTTP authentication
-* Stream data directly to the user's browser
-* Filter sensitive parameters so they do not appear in the application's log
-* Deal with exceptions that may be raised during request processing
+In this guide you will learn how controllers work and how they fit into the request cycle in your application.
+
+After reading this guide, you will know:
+
+* Follow the flow of a request through a controller.
+* Understand why and how to store data in the session or cookies.
+* Work with filters to execute code during request processing.
+* Use Action Controller's built-in HTTP authentication.
+* Stream data directly to the user's browser.
+* Filter sensitive parameters so they do not appear in the application's log.
+* Deal with exceptions that may be raised during request processing.
--------------------------------------------------------------------------------