Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added stale?/fresh? and fresh_when methods to provide a layer of abstraction ↵ | David Heinemeier Hansson | 2008-10-21 | 1 | -17/+53 |
| | | | | above request.fresh? and friends [DHH] | ||||
* | Make sure last_modified! works with <= rather than just equality. | Michael Koziarski | 2008-10-07 | 1 | -1/+3 |
| | |||||
* | Merge docrails | Pratik Naik | 2008-10-05 | 1 | -4/+12 |
| | |||||
* | Return processing lock to dispatcher, the finer grained lock was ↵ | Aliaksey Kandratsenka | 2008-10-04 | 1 | -8/+1 |
| | | | | | | | | | | incompatible with the reloading in development mode. This commit also adds ActionController::Dispatcher#dispatch_unlocking -- non-locking version of dispatch. It's named anologously to POSIX {getc,getchar,...}_unlocked functions. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1170 state:committed] | ||||
* | Call controller_path instance method so it can be easily overridden [#1141 ↵ | David Masover | 2008-09-30 | 1 | -2/+2 |
| | | | | | | state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Fix etag! and last_modified! to work as advertised. | Michael Koziarski | 2008-09-30 | 1 | -2/+4 |
| | | | | Add tests too. | ||||
* | Check for uninitialized instance variables | Jeremy Kemper | 2008-09-08 | 1 | -1/+1 |
| | |||||
* | Use defined? check since @view_paths may be uninitialized | Jeremy Kemper | 2008-09-08 | 1 | -1/+5 |
| | |||||
* | Moved layout exemption logic into the view | Joshua Peek | 2008-08-31 | 1 | -16/+2 |
| | |||||
* | Prefix ActionView::Base private methods with an underscore | Joshua Peek | 2008-08-31 | 1 | -1/+1 |
| | |||||
* | Fix AM tests and add tests for rendering logging | Pratik Naik | 2008-08-31 | 1 | -0/+2 |
| | |||||
* | Add lost log messages about template rendering | Pratik Naik | 2008-08-31 | 1 | -1/+0 |
| | |||||
* | Move layout rendering logic to ActionView::Base | Pratik Naik | 2008-08-31 | 1 | -10/+17 |
| | |||||
* | Move copying ivar logic from ActionController::Base to ActionView::Base | Pratik Naik | 2008-08-31 | 1 | -32/+5 |
| | |||||
* | Remove unused use_full_path argument | Pratik Naik | 2008-08-31 | 1 | -5/+5 |
| | |||||
* | Dont pass controller partial layout option to view | Pratik Naik | 2008-08-30 | 1 | -1/+1 |
| | |||||
* | Remove double layout check | Pratik Naik | 2008-08-30 | 1 | -6/+1 |
| | |||||
* | Deprecate render_component. | Pratik Naik | 2008-08-29 | 1 | -2/+6 |
| | | | | | Please install render_component plugin from http://github.com/rails/render_component/tree/master if your application uses this functionality. | ||||
* | Store application and other context specific helper modules in ↵ | Joshua Peek | 2008-08-26 | 1 | -1/+1 |
| | | | | ActionView::Base#helpers | ||||
* | Removed template_public? because it will always be true since the default ↵ | Joshua Peek | 2008-08-21 | 1 | -5/+1 |
| | | | | template is never a partial | ||||
* | Cleanup around partial rendering | Ryan Bates | 2008-08-21 | 1 | -17/+3 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | deprecate Base#assign_default_content_type_and_charset | Jeremy Kemper | 2008-08-21 | 1 | -0/+5 |
| | |||||
* | Move default content type and charset from Base to Response. Handle charset ↵ | Jeremy Kemper | 2008-08-21 | 1 | -10/+0 |
| | | | | = nil. | ||||
* | Return nil instead of a space when passing an empty collection or nil to ↵ | Ryan Bates | 2008-08-19 | 1 | -3/+6 |
| | | | | | | 'render :partial' [#791 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Be more careful about deducing action_methods | Jeremy Kemper | 2008-08-06 | 1 | -6/+10 |
| | |||||
* | Ensure public superclass methods don't shadow public controller methods. ↵ | Jeremy Kemper | 2008-08-05 | 1 | -3/+3 |
| | | | | Case in point, ruby-debug's Kernel#start shadowing a controller's start action. | ||||
* | List available actions in UnknownAction exception message | Jeremy Kemper | 2008-07-31 | 1 | -1/+1 |
| | |||||
* | Fix file permissions | Tarmo Tänav | 2008-07-31 | 1 | -0/+0 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Added back ActionController::Base.allow_concurrency flag and moved lock down ↵ | Joshua Peek | 2008-07-28 | 1 | -1/+14 |
| | | | | to controller processing. | ||||
* | ActionController::Base.relative_url_root falls back to ↵ | Joshua Peek | 2008-07-24 | 1 | -1/+6 |
| | | | | ENV['RAILS_RELATIVE_URL_ROOT'] | ||||
* | AbstractRequest.relative_url_root is no longer automatically configured by a ↵ | Joshua Peek | 2008-07-24 | 1 | -0/+4 |
| | | | | HTTP header. It can now be set in your configuration environment with config.action_controller.relative_url_root | ||||
* | Memoize ActionView::Base pick_template and find_partial_path for rendering ↵ | Joshua Peek | 2008-07-22 | 1 | -0/+2 |
| | | | | duration | ||||
* | etag! and last_modified! conditional GET helpers | Jeremy Kemper | 2008-07-17 | 1 | -2/+13 |
| | |||||
* | Use fully-qualified controller name when logging. [#600 state:resolved] | Ripta Pasay | 2008-07-17 | 1 | -1/+1 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Set config.action_view.warn_cache_misses = true to receive a warning if you ↵ | Joshua Peek | 2008-07-12 | 1 | -2/+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 Peek | 2008-07-12 | 1 | -5/+4 |
| | | | | a refactored Template class. | ||||
* | Remove some Symbol#to_proc usage in runtime code. [#484 state:resolved] | Cheah Chu Yeow | 2008-07-09 | 1 | -6/+6 |
| | |||||
* | Reenable the use of the Accept header to give people a chance to update ↵ | Michael Koziarski | 2008-07-09 | 1 | -3/+3 |
| | | | | their applications and provide feedback. | ||||
* | Ensure url_for(nil) falls back to url_for({}). [#472 state:resolved] | Cheah Chu Yeow | 2008-07-09 | 1 | -1/+2 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Disable the Accept header by default | Michael Koziarski | 2008-07-07 | 1 | -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] | ||||
* | Simplify the implementation of assert_redirected_to to normalise the urls ↵ | Michael Koziarski | 2008-07-04 | 1 | -15/+17 |
| | | | | | | before comparing. Also allows for a simpler implementation of redirect_to without most of the recursion. Also allows for assert_redirected_to @some_record | ||||
* | Reduce the number of callsites for new TemplateFiles | Joshua Peek | 2008-07-03 | 1 | -2/+3 |
| | |||||
* | Remove unneeded ObjectWrapper class. | Michael Koziarski | 2008-07-03 | 1 | -1/+1 |
| | | | | Was previously needed to work around the semantics of a deprecated (now removed) API to render :partial | ||||
* | Deprecate :use_full_path render option. The supplying the option no longer ↵ | Joshua Peek | 2008-07-02 | 1 | -5/+5 |
| | | | | has an effect. | ||||
* | Add :as option to render a collection of partials with a custom local ↵ | Pratik Naik | 2008-07-02 | 1 | -1/+4 |
| | | | | variable name. [#509 state:resolved] [Simon Jefford, Pratik Naik] | ||||
* | Make sure render :template works with :locals. [#524 state:resolved] | Tim Haines | 2008-07-02 | 1 | -1/+4 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Hide InlineTemplate class from ActionController and use ActionView's render API | Joshua Peek | 2008-06-25 | 1 | -2/+1 |
| | |||||
* | Made ActionView::Base#render_file private | Joshua Peek | 2008-06-25 | 1 | -1/+1 |
| | |||||
* | Replaced TemplateFinder abstraction with ViewLoadPaths | Joshua Peek | 2008-06-17 | 1 | -14/+10 |
| | |||||
* | Fix url_for with no arguments when default_url_options is not explicitly ↵ | Luke Redpath | 2008-06-17 | 1 | -2/+2 |
| | | | | | | defined. [#339 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com> |