aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
Commit message (Collapse)AuthorAgeFilesLines
* Implement submit_to_remote as a wrapper around a more generic button_to_remoteTarmo Tänav2008-10-071-0/+2
| | | | | | | Removed the "return false" from submit_to_remote onclick end as button input elements have no default behavior to cancel. Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Added support for http_only cookies in cookie_store Added unit tests for ↵Pelle Braendgaard2008-09-171-0/+2
| | | | | | | secure and http_only cookies in cookie_store Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1046 state:committed]
* Added image_submit_tag confirm option [status:committed #784]Alastair Brunton2008-09-101-0/+2
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* The FormTagHelper#submit_tag helper will now pass along the original value ↵Jose Fernandez2008-09-101-0/+2
| | | | | | of the submit button to the params if the :disable_with option is used [status:committed #633] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Stopped logging template compiles as it only clogs up the logDavid Heinemeier Hansson2008-09-091-0/+2
|
* Use a more sensible resolution on the new millisecond benchmarksDavid Heinemeier Hansson2008-09-051-2/+2
|
* Changed all benchmarking reports to be in millisecondsDavid Heinemeier Hansson2008-09-051-0/+12
|
* Add support for shallow nesting of routes. [#838 state:resolved]Pratik Naik2008-08-301-0/+14
| | | | | | | | | | | | | | | | | | Adds :shallow option to resource route definition. If true, paths for nested resources which reference a specific member (ie. those with an :id parameter) will not use the parent path prefix or name prefix. Example : map.resources :users, :shallow => true do |user| user.resources :posts end * GET /users/1/posts (maps to PostsController#index action as usual) named route "user_posts" is added as usual. * GET /posts/2 (maps to PostsController#show action as if it were not nested) Additionally, named route "post" is added too.
* Added button_to_remote helperTarmo Tänav2008-08-291-0/+2
| | | | | | Ticket originally from http://dev.rubyonrails.org/ticket/3641 Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Deprecate render_component.Pratik Naik2008-08-291-0/+2
| | | | | Please install render_component plugin from http://github.com/rails/render_component/tree/master if your application uses this functionality.
* Routes may be restricted to lists of HTTP methods instead of a single method ↵Brennan Dunn2008-08-281-0/+4
| | | | | | | | or :any. [#407 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Deprecated implicit local assignments when rendering partialsJoshua Peek2008-08-281-0/+2
|
* Added TextHelper#current_cycle to return the current cycle for better design ↵Ken Collins2008-08-271-0/+2
| | | | | | | | options. [#417 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Allow polymorphic_url helper to take url options. [#880 state:resolved]Tarmo Tänav2008-08-211-0/+2
| | | | | | | | | All *_polymorphic_url, *_polymorphic_path helpers can now accept an options hash which will be passed on to the named route making it possible to generate polymorphic routes with additional url parameters. Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Switched integration test runner to use Rack processor instead of CGIJoshua Peek2008-08-201-0/+2
|
* Make AbstractRequest.if_modified_sense return nil if the header could not be ↵Jamis Buck2008-08-191-0/+2
| | | | parsed
* Update changelog for conditional GET utility methodsJeremy Kemper2008-08-121-2/+8
|
* Added back ActionController::Base.allow_concurrency flag and moved lock down ↵Joshua Peek2008-07-281-0/+2
| | | | to controller processing.
* AbstractRequest.relative_url_root is no longer automatically configured by a ↵Joshua Peek2008-07-241-0/+2
| | | | HTTP header. It can now be set in your configuration environment with config.action_controller.relative_url_root
* Update Prototype to 1.6.0.2 (Patrick Joyce) [#599 status:committed]David Heinemeier Hansson2008-07-191-0/+2
|
* etag! and last_modified! conditional GET helpersJeremy Kemper2008-07-171-0/+4
|
* All 2xx requests are considered successful [#217 state:resolved]Joshua Peek2008-07-161-0/+2
|
* Resolved conflictDavid Heinemeier Hansson2008-07-161-0/+47
|\
| * Removed config.action_view.cache_template_loading, use config.cache_classes ↵Joshua Peek2008-07-151-0/+2
| | | | | | | | instead
| * Get buffer for fragment cache from template's @output_bufferJoshua Peek2008-07-151-0/+2
| |
| * Set config.action_view.warn_cache_misses = true to receive a warning if you ↵Joshua Peek2008-07-121-0/+2
| | | | | | | | perform an action that results in an expensive disk operation that could be cached
| * Refactor template preloading. New abstractions include Renderable mixins and ↵Joshua Peek2008-07-121-0/+2
| | | | | | | | a refactored Template class.
| * Changed ActionView::TemplateHandler#render API method signature to ↵Joshua Peek2008-07-111-0/+2
| | | | | | | | render(template, local_assigns = {})
| * Reenable the use of the Accept header to give people a chance to update ↵Michael Koziarski2008-07-091-4/+5
| | | | | | | | their applications and provide feedback.
| * Changed PrototypeHelper#submit_to_remote to PrototypeHelper#button_to_remote ↵David Heinemeier Hansson2008-07-091-0/+2
| | | | | | | | to stay consistent with link_to_remote (submit_to_remote still works as an alias) (clemens) [#8994 status:closed]
| * Add :recursive option to javascript_include_tag and stylesheet_link_tag to ↵Damian Janowski2008-07-081-0/+2
| | | | | | | | | | | | be used along with :all. [#480 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * Disable the Accept header by defaultMichael Koziarski2008-07-071-0/+10
| | | | | | | | | | | | | | | | The accept header is poorly implemented by browsers and causes strange errors when used on public sites where crawlers make requests too. You should use formatted urls (e.g. /people/1.xml) to support API clients. Alternatively to re-enable it you need to set: config.action_controller.use_accept_header = true A special case remains for ajax requests which will have a javascript format for the base resource (/people/1) if the X-Requested-With header is present. This lets ajax pages still use format.js despite there being no params[:format]
| * Do not stat template files in production mode before rendering. You will no ↵Joshua Peek2008-07-051-0/+2
| | | | | | | | longer be able to modify templates in production mode without restarting the server
| * Deprecated TemplateHandler line offsetJoshua Peek2008-07-051-0/+2
| |
| * Simplify the implementation of assert_redirected_to to normalise the urls ↵Michael Koziarski2008-07-041-0/+5
| | | | | | | | | | | | before comparing. Also allows for a simpler implementation of redirect_to without most of the recursion. Also allows for assert_redirected_to @some_record
| * Remove old broken follow_redirect from functional tests. Still works in ↵Michael Koziarski2008-07-041-0/+5
| | | | | | | | | | | | integration tests. The follow_redirect in functional tests only worked if you used redirect_to :id=>foo, :action=>bar, rather than named routes.
| * Allow caches_action to accept cache store options. [#416 state:resolved]josevalim2008-07-041-0/+4
| | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * Remove old method of including javascripts define_javascript_functions.Michael Koziarski2008-07-031-0/+2
| | | | | | | | javascript_include_tag and friends do a much better job.
| * Deprecate :use_full_path render option. The supplying the option no longer ↵Joshua Peek2008-07-021-0/+2
| | | | | | | | has an effect.
* | Fixed that AssetTagHelper#compute_public_path shouldn't cache the asset_host ↵David Heinemeier Hansson2008-07-161-0/+2
|/ | | | along with the source or per-request proc's won't run [DHH]
* Add :as option to render a collection of partials with a custom local ↵Pratik Naik2008-07-021-0/+6
| | | | variable name. [#509 state:resolved] [Simon Jefford, Pratik Naik]
* Fix indentation and update changelogs for previous commitgbuesing2008-06-291-0/+2
|
* Made ActionView::Base#render_file privateJoshua Peek2008-06-251-0/+2
|
* Fixed polymorphic_url to be able to handle singleton resources.Tammer Saleh2008-06-221-0/+2
| | | | | | | Example usage: polymorphic_url([:admin, @user, :blog, @post]) # => admin_user_blog_post_url(@user, @post) [#461 state:resolved]
* Replaced TemplateFinder abstraction with ViewLoadPathsJoshua Peek2008-06-171-0/+2
|
* Added block-call style to link_to [Sam Stephenson/DHH]David Heinemeier Hansson2008-06-171-0/+6
|
* Last commit message was meant for changelog.Jeremy Kemper2008-06-141-0/+2
|
* Improve ActionCaching's format-handlingJonathan del Strother2008-06-111-0/+2
| | | | | | | | Make ActionCaching more aware of different mimetype formats. It will now use request.format to look up the cache type, in addition to the path extension. When expiring caches, the request format no longer affects which cache is expired. Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Make sure cache_template_loading works and don't use to_prepare callbackPratik Naik2008-06-111-2/+0
|
* Ensure ActionView::TemplateFinder view cache is rebuilt on initialize.Joshua Peek2008-06-081-0/+2
|