aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
Commit message (Expand)AuthorAgeFilesLines
* Make sure that custom inflections are picked up by map.resources by triggerin...Michael Koziarski2007-10-131-7/+20
* Update versions here tooDavid Heinemeier Hansson2007-10-121-1/+1
* JavaScriptVariableProxy#to_json ignores the options argJeremy Kemper2007-10-111-1/+1
* Extracted sanitization methods from TextHelper to SanitizeHelper [DHH] Change...David Heinemeier Hansson2007-10-102-308/+326
* rescue_from accepts :with => lambda { |exception| ... } or a normal block. Cl...Jeremy Kemper2007-10-101-4/+7
* Add :status to redirect_to allowing users to choose their own response code w...Michael Koziarski2007-10-092-10/+25
* form_for example for namespaced routes. Closes #9769 [sjgman9]Michael Koziarski2007-10-081-0/+6
* 1 years -> 1 yearJeremy Kemper2007-10-081-1/+1
* Add link_to :back which uses your referrer with a fallback to a javascript li...Michael Koziarski2007-10-081-3/+11
* error_messages_for and friends also work with local variables. Closes #9699.Jeremy Kemper2007-10-072-5/+21
* Fix url_for, redirect_to, etc. with :controller => :symbol instead of 'string...Jeremy Kemper2007-10-072-1/+5
* String#to_xs uses the fast_xs extension if available for Builder speedup.Jeremy Kemper2007-10-071-0/+1
* BlankSlate -> BasicObjectJeremy Kemper2007-10-071-1/+1
* Use StringIO and Tempfile subclasses instead of defining singleton methods on...Jeremy Kemper2007-10-061-47/+59
* Rewind stdin if possible after multipart parsing.Jeremy Kemper2007-10-061-0/+1
* Don't generate strings to log unless they'll actually get logged.Jeremy Kemper2007-10-061-1/+1
* Bump versions for 1.2.4 release.Jeremy Kemper2007-10-051-2/+2
* Move #query_string to AbstractRequestJeremy Kemper2007-10-032-3/+10
* rescue LoadError if memcache isn't available while loading the MemCache fragm...Rick Olson2007-10-031-0/+4
* Use #require_library_or_gem to load the memcache library for the MemCache ses...Rick Olson2007-10-032-1/+2
* Move ActionController::Routing.optimise_named_routes to ActionController::Bas...Rick Olson2007-10-033-14/+14
* Merge session fixation fixes from stableMichael Koziarski2007-10-021-4/+12
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-0224-128/+148
* Fixed that render template did not honor exempt_from_layout (closes #9698) [p...David Heinemeier Hansson2007-09-301-3/+3
* Fixed that a response has to be available for that exact mime type for it to ...David Heinemeier Hansson2007-09-291-1/+1
* Fixed that strip_tags blows up with invalid html (closes #9730) [lifo]David Heinemeier Hansson2007-09-291-4/+6
* Ensure request is present, as well as defined. [nzkoz]Michael Koziarski2007-09-291-4/+4
* Re-enable Routing optimisation code for _url methods, add defined?(request) t...Michael Koziarski2007-09-282-9/+5
* Better error messages if you leave out the :secret option for request forgery...Rick Olson2007-09-281-1/+5
* Allow ability to disable request forgery protection, disable it in test mode ...Rick Olson2007-09-285-9/+20
* Fixed spelling errors (closes #9706) [tarmo/rmm5t]David Heinemeier Hansson2007-09-2810-11/+11
* Fixed the layout defaults (closes #9564) [lifo]David Heinemeier Hansson2007-09-281-14/+19
* Avoid calling is_missing on LoadErrors. Closes #7460.Nicholas Seckar2007-09-271-1/+1
* Reinstate the default AR.instantiate_observers to_prepare block.Jeremy Kemper2007-09-261-0/+6
* Move Railties' Dispatcher to ActionController::Dispatcher, introduce before_ ...Jeremy Kemper2007-09-261-0/+183
* Protect button_to behind protect_from_forgery (closes #9675) [lifo]David Heinemeier Hansson2007-09-251-2/+7
* Added failing tests for iphoneDavid Heinemeier Hansson2007-09-251-4/+11
* Change from InvalidToken to InvalidAuthenticityToken to be more specificDavid Heinemeier Hansson2007-09-242-16/+21
* Stop rdoc from whiningDavid Heinemeier Hansson2007-09-242-8/+8
* Move rescue_action_with_handler from rescue_action to perform_action so it is...Jeremy Kemper2007-09-241-2/+2
* Include asset host in public path cache key. Clear cache between asset tag te...Jeremy Kemper2007-09-242-9/+17
* port over some of the csrf_killer README docsRick Olson2007-09-241-0/+13
* Beefed up docs a bitDavid Heinemeier Hansson2007-09-241-17/+27
* Cache computed public asset paths.Jeremy Kemper2007-09-241-16/+20
* Cache more file existence checks. Flip-flop escaping.Jeremy Kemper2007-09-241-9/+16
* Cache file existence checks and the list of all stylesheet sources. Manually ...Jeremy Kemper2007-09-241-7/+10
* The tag helper may bypass escaping.Jeremy Kemper2007-09-241-17/+26
* Cache asset ids.Jeremy Kemper2007-09-241-3/+12
* escape_once uses negative lookahead to avoid double-escaping instead of a sec...Jeremy Kemper2007-09-241-6/+1
* Optimized named routes respect AbstractRequest.relative_url_root. Closes #9612.Jeremy Kemper2007-09-231-0/+2