aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
...
* Update CHANGELOGJosé Valim2012-01-191-2/+0
|
* Update CHANGELOG and docs for config.assets.loggerGuillermo Iguaran2012-01-181-0/+2
|
* Update changelogCarlos Antonio da Silva2012-01-171-1/+16
|
* Add option to configure Sprockets loggerRafael Mendonça França2012-01-171-0/+2
|
* Use a BodyProxy instead of including a Module that responds to close.Santiago Pastorino2012-01-131-0/+4
| | | | Closes #4441 if Active Record is disabled assets are delivered correctly
* Add CHANGELOG entrySantiago Pastorino2012-01-101-0/+2
|
* Add font_path helper methodSantiago Pastorino2012-01-031-0/+2
|
* Add CHANGELOG entrySantiago Pastorino2011-12-281-0/+2
|
* Update CHANGELOGs.José Valim2011-12-241-0/+2
|
* Update CHANGELOGs and guides.José Valim2011-12-161-0/+2
|
* Show detailed exceptions no longer returns true if the request is local in ↵José Valim2011-12-161-2/+2
| | | | production.
* Fix diagnostics page for routing errors.José Valim2011-12-151-2/+2
|
* Added :use_two_digit_numbers option [Lennart Fridén & Kim Persson]Lennart Fridén2011-12-111-0/+3
| | | | | | | | | | Added use_two_digit_numbers select_tag option for displaying months and days with leading zeros without affecting the values (useful for e.g. ISO-style dates, 2011-08-01). Signed-off-by: José Valim <jose.valim@gmail.com> Conflicts: actionpack/CHANGELOG.md
* Add button_tag support to ActionView::Helpers::FormBuilder.Will Farrington2011-12-111-0/+10
| | | | | | | | | | This support is near-identical to the existing submit_tag support. Example: <%= form_for @post do |f| %> <%= f.button %> <% end %>
* Make ActiveSupport::Benchmarkable a default module for ↵David Heinemeier Hansson2011-12-091-0/+2
| | | | ActionController::Base, so the #benchmark method is once again available in the controller context like it used to be *DHH*
* Deprecate implicit layout lookup in favor of inheriting the _layout config.José Valim2011-12-091-0/+13
|
* Add information to the changelog about the changes to ↵Jean-Francois Turcot2011-12-081-0/+5
| | | | ActionController::ParamsWrapper
* Allow layout fallback when using `layout` methodPrem Sichanugrist2011-12-061-0/+10
| | | | | | | | | | | | Rails will now use your default layout (such as "layouts/application") when you specify a layout with `:only` and `:except` condition, and those conditions fail. For example, consider this snippet: class CarsController layout 'single_car', :only => :show end Rails will use 'layouts/single_car' when a request comes in `:show` action, and use 'layouts/application' (or 'layouts/cars', if exists) when a request comes in for any other actions.
* Sync AP CHANGELOG with 3-1-stableSantiago Pastorino2011-12-061-0/+8
|
* form_for with +:as+ option uses "action_as" as css class and idVasiliy Ermolovich2011-12-041-0/+12
|
* Merge branch 'exceptions' with the following features:José Valim2011-12-011-0/+2
|\ | | | | | | | | | | | | | | | | * A Railtie API for registering new exceptions and their respective status code (check Active Record railtie for an example) * Extraction of ShowExceptions middleware logging and debugging features into a middleware called DebugExceptions Conflicts: actionpack/CHANGELOG.md
| * Allow rescue responses to be configured through a railtie.José Valim2011-12-011-0/+2
| |
* | Allow fresh_when/stale? to take a record instead of an options hash [DHH]David Heinemeier Hansson2011-12-011-0/+2
|/
* Update CHANGELOG.José Valim2011-12-011-1/+3
|
* Log 'Filter chain halted as CALLBACKNAME rendered or redirected' every time ↵José Valim2011-11-301-0/+2
| | | | a before callback halts.
* update CHANGELOGVasiliy Ermolovich2011-11-281-0/+10
|
* deprecation warning, changelog entrylest2011-11-221-0/+4
|
* Don't html-escape the :count option to translate if it's a Numeric. Fixes #3685.Jon Leighton2011-11-191-0/+7
|
* _html translation should escape interpolated argumentslest2011-11-171-0/+14
|
* Sync changelog entryJon Leighton2011-11-141-0/+2
|
* Sync CHANGELOGs from 3-1-stableJon Leighton2011-11-141-0/+11
|
* Implement a workaround for a bug in ruby-1.9.3p0.Jon Leighton2011-11-061-0/+13
| | | | | | | | | | | | The bug is that an error would be raised while attempting to convert a template from one encoding to another. Please see http://redmine.ruby-lang.org/issues/5564 for more details. The workaround is to load all conversions into memory ahead of time, and will only happen if the ruby version is *exactly* 1.9.3p0. The hope is obviously that the underlying problem will be resolved in the next patchlevel release of 1.9.3.
* Convert CHANGELOGs to Markdown format.Jon Leighton2011-11-041-0/+5663
Reasons: * Markdown reads well as plain text, but can also be formatted. * It will make it easier for people to read on the web as Github formats the Markdown nicely. * It will encourage a level of consistency when people are writing CHANGELOG entries. The script used to perform the conversion is at https://gist.github.com/1339263