aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base/conditional_get.rb
Commit message (Collapse)AuthorAgeFilesLines
* Reduce the cost of using ActionController::Http significantly by:Yehuda Katz2009-05-271-0/+3
| | | | | | | | | | * Removing the dependency on AD::Request and AD::Response * Moving the logic for the request and response object into a new module that is included by default. * Changing Renderer and Redirector to use self.headers, self.content_type, and self.status, which have very basic default implementations on AC::Http. When RackConvenience is included (which it is by default on AC::Base), the full Request/Response logic is used instead of the simple logic.
* Add HTTP Authentication to the new basePratik Naik2009-05-221-1/+1
|
* Ported ConditionalGet to new BaseYehuda Katz + Carl Lerche2009-05-111-1/+90
|
* Ported fresh_when into a ConditionalGet moduleYehuda Katz + Carl Lerche2009-05-111-0/+42