Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | let expires_in accept a must_revalidate flag | Xavier Noria | 2012-02-17 | 1 | -0/+3 |
| | |||||
* | Add HTML5 input[type="date"] helper | Olek Janiszewski | 2012-02-12 | 1 | -0/+2 |
| | |||||
* | Highlight defaults to HTML5 `mark` element | Brian Cardarella | 2012-02-05 | 1 | -0/+3 |
| | |||||
* | Add *_url helpers to get the full assets URL | Prem Sichanugrist | 2012-02-04 | 1 | -0/+4 |
| | | | | | | | Adds `image_url`, `javascript_url`, `stylesheet_url`, `audio_url`, `video_url`, and `font_url` to assets tag helper. These URL helpers will return the full path to your assets. This is useful when you are going to reference this asset from external host. | ||||
* | Fix override API response bug in respond_with | Prem Sichanugrist | 2012-02-03 | 1 | -0/+2 |
| | | | | | | | | | | Default responder was only using the given respond block when user requested for HTML format, or JSON/XML format with valid resource. This fix the responder so that it will use the given block regardless of the validity of the resource. Note that in this case you'll have to check for object's validity by yourself in the controller. Fixes #4796 | ||||
* | Remove default class to collection_check_boxes and | Rafael Mendonça França | 2012-02-02 | 1 | -4/+4 |
| | | | | | | collection_radio_buttons [Carlos Antonio da Silva + Rafael Mendonça França] | ||||
* | Add changelog, docs and guides entries | Carlos Antonio da Silva | 2012-02-02 | 1 | -1/+37 |
| | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | ||||
* | Replicate :form html5 attribute to hidden field for check_box | Carlos Antonio da Silva | 2012-02-02 | 1 | -0/+3 |
| | | | | | When the new html5 attribute :form is given to the check_box helper, it should be replicated to the hidden field as well. Closes #4848 | ||||
* | Remove slash from favicon_link_tag method attribute | Lucas Caton | 2012-01-31 | 1 | -0/+2 |
| | |||||
* | Do not generate label for attribute when giving nil | Carlos Antonio da Silva | 2012-01-26 | 1 | -0/+2 |
| | |||||
* | Add release date of Rails 3.2.0 to documentation | claudiob | 2012-01-26 | 1 | -1/+1 |
| | |||||
* | No need to check html_safe? twice | Rafael Mendonça França | 2012-01-20 | 1 | -0/+2 |
| | |||||
* | Do not deprecate performed. | José Valim | 2012-01-19 | 1 | -2/+1 |
| | |||||
* | ActionView now has its own logger | Rafael Mendonça França | 2012-01-18 | 1 | -0/+2 |
| | |||||
* | Update changelog | Carlos Antonio da Silva | 2012-01-17 | 1 | -1/+16 |
| | |||||
* | changelog entry for deprecated ActionController::Integration, ↵ | Vishnu Atrai | 2012-01-15 | 1 | -0/+17 |
| | | | | ActionController::IntegrationTest, ActionController::PerformanceTest,ActionController::AbstractRequest, ActionController::Request, ActionController::AbstractResponse others | ||||
* | Use a BodyProxy instead of including a Module that responds to close. | Santiago Pastorino | 2012-01-13 | 1 | -0/+4 |
| | | | | Closes #4441 if Active Record is disabled assets are delivered correctly | ||||
* | Merge pull request #4387 from Karunakar/releasenotes | Vijay Dev | 2012-01-12 | 1 | -3/+3 |
|\ | | | | | Added the release dates for rails 3.1.1, rails 3.1.2, rails 3.1.3 | ||||
| * | Added the release dates for rails 3.1.1, rails 3.1.2, rails 3.1.3 | Karunakar (Ruby) | 2012-01-08 | 1 | -3/+3 |
| | | |||||
* | | Add CHANGELOG entry | Santiago Pastorino | 2012-01-10 | 1 | -0/+2 |
|/ | |||||
* | Update actionpack/CHANGELOG.md | José Valim | 2012-01-06 | 1 | -2/+2 |
| | |||||
* | check_box helper with :disabled => true generates disabled hidden field. ↵ | Tadas Tamošauskas | 2012-01-05 | 1 | -0/+4 |
| | | | | fixes #1953 | ||||
* | Add font_path helper method | Santiago Pastorino | 2012-01-03 | 1 | -0/+2 |
| | |||||
* | Fix typos and formats for CHANGELOG | Trung Lê | 2012-01-04 | 1 | -114/+122 |
| | |||||
* | Add CHANGELOG entry | Santiago Pastorino | 2011-12-28 | 1 | -0/+2 |
| | |||||
* | Update CHANGELOGs | José Valim | 2011-12-24 | 1 | -0/+2 |
| | |||||
* | Update CHANGELOGs and guides. | José Valim | 2011-12-16 | 1 | -0/+2 |
| | |||||
* | Show detailed exceptions no longer returns true if the request is local in ↵ | José Valim | 2011-12-16 | 1 | -2/+2 |
| | | | | production. | ||||
* | Fix diagnostics page for routing errors. | José Valim | 2011-12-15 | 1 | -2/+2 |
| | |||||
* | Added :use_two_digit_numbers option [Lennart Fridén & Kim Persson] | Lennart Fridén | 2011-12-11 | 1 | -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 Farrington | 2011-12-11 | 1 | -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 Hansson | 2011-12-09 | 1 | -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é Valim | 2011-12-09 | 1 | -0/+13 |
| | |||||
* | Add information to the changelog about the changes to ↵ | Jean-Francois Turcot | 2011-12-08 | 1 | -0/+5 |
| | | | | ActionController::ParamsWrapper | ||||
* | Allow layout fallback when using `layout` method | Prem Sichanugrist | 2011-12-06 | 1 | -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-stable | Santiago Pastorino | 2011-12-06 | 1 | -0/+8 |
| | |||||
* | form_for with +:as+ option uses "action_as" as css class and id | Vasiliy Ermolovich | 2011-12-04 | 1 | -0/+12 |
| | |||||
* | Merge branch 'exceptions' with the following features: | José Valim | 2011-12-01 | 1 | -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é Valim | 2011-12-01 | 1 | -0/+2 |
| | | |||||
* | | Allow fresh_when/stale? to take a record instead of an options hash [DHH] | David Heinemeier Hansson | 2011-12-01 | 1 | -0/+2 |
|/ | |||||
* | Update CHANGELOG. | José Valim | 2011-12-01 | 1 | -1/+3 |
| | |||||
* | Log 'Filter chain halted as CALLBACKNAME rendered or redirected' every time ↵ | José Valim | 2011-11-30 | 1 | -0/+2 |
| | | | | a before callback halts. | ||||
* | update CHANGELOG | Vasiliy Ermolovich | 2011-11-28 | 1 | -0/+10 |
| | |||||
* | deprecation warning, changelog entry | lest | 2011-11-22 | 1 | -0/+4 |
| | |||||
* | Don't html-escape the :count option to translate if it's a Numeric. Fixes #3685. | Jon Leighton | 2011-11-19 | 1 | -0/+7 |
| | |||||
* | _html translation should escape interpolated arguments | lest | 2011-11-17 | 1 | -0/+14 |
| | |||||
* | Sync changelog entry | Jon Leighton | 2011-11-14 | 1 | -0/+2 |
| | |||||
* | Sync CHANGELOGs from 3-1-stable | Jon Leighton | 2011-11-14 | 1 | -0/+11 |
| | |||||
* | Implement a workaround for a bug in ruby-1.9.3p0. | Jon Leighton | 2011-11-06 | 1 | -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 Leighton | 2011-11-04 | 1 | -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 |