Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Allow polymorphic_url helper to take url options. [#880 state:resolved] | Tarmo Tänav | 2008-08-21 | 1 | -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 CGI | Joshua Peek | 2008-08-20 | 1 | -0/+2 |
| | |||||
* | Make AbstractRequest.if_modified_sense return nil if the header could not be ↵ | Jamis Buck | 2008-08-19 | 1 | -0/+2 |
| | | | | parsed | ||||
* | Update changelog for conditional GET utility methods | Jeremy Kemper | 2008-08-12 | 1 | -2/+8 |
| | |||||
* | Added back ActionController::Base.allow_concurrency flag and moved lock down ↵ | Joshua Peek | 2008-07-28 | 1 | -0/+2 |
| | | | | to controller processing. | ||||
* | AbstractRequest.relative_url_root is no longer automatically configured by a ↵ | Joshua Peek | 2008-07-24 | 1 | -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 Hansson | 2008-07-19 | 1 | -0/+2 |
| | |||||
* | etag! and last_modified! conditional GET helpers | Jeremy Kemper | 2008-07-17 | 1 | -0/+4 |
| | |||||
* | All 2xx requests are considered successful [#217 state:resolved] | Joshua Peek | 2008-07-16 | 1 | -0/+2 |
| | |||||
* | Resolved conflict | David Heinemeier Hansson | 2008-07-16 | 1 | -0/+47 |
|\ | |||||
| * | Removed config.action_view.cache_template_loading, use config.cache_classes ↵ | Joshua Peek | 2008-07-15 | 1 | -0/+2 |
| | | | | | | | | instead | ||||
| * | Get buffer for fragment cache from template's @output_buffer | Joshua Peek | 2008-07-15 | 1 | -0/+2 |
| | | |||||
| * | Set config.action_view.warn_cache_misses = true to receive a warning if you ↵ | Joshua Peek | 2008-07-12 | 1 | -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 Peek | 2008-07-12 | 1 | -0/+2 |
| | | | | | | | | a refactored Template class. | ||||
| * | Changed ActionView::TemplateHandler#render API method signature to ↵ | Joshua Peek | 2008-07-11 | 1 | -0/+2 |
| | | | | | | | | render(template, local_assigns = {}) | ||||
| * | Reenable the use of the Accept header to give people a chance to update ↵ | Michael Koziarski | 2008-07-09 | 1 | -4/+5 |
| | | | | | | | | their applications and provide feedback. | ||||
| * | Changed PrototypeHelper#submit_to_remote to PrototypeHelper#button_to_remote ↵ | David Heinemeier Hansson | 2008-07-09 | 1 | -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 Janowski | 2008-07-08 | 1 | -0/+2 |
| | | | | | | | | | | | | be used along with :all. [#480 state:resolved] 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] | ||||
| * | Do not stat template files in production mode before rendering. You will no ↵ | Joshua Peek | 2008-07-05 | 1 | -0/+2 |
| | | | | | | | | longer be able to modify templates in production mode without restarting the server | ||||
| * | Deprecated TemplateHandler line offset | Joshua Peek | 2008-07-05 | 1 | -0/+2 |
| | | |||||
| * | Simplify the implementation of assert_redirected_to to normalise the urls ↵ | Michael Koziarski | 2008-07-04 | 1 | -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 Koziarski | 2008-07-04 | 1 | -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] | josevalim | 2008-07-04 | 1 | -0/+4 |
| | | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
| * | Remove old method of including javascripts define_javascript_functions. | Michael Koziarski | 2008-07-03 | 1 | -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 Peek | 2008-07-02 | 1 | -0/+2 |
| | | | | | | | | has an effect. | ||||
* | | Fixed that AssetTagHelper#compute_public_path shouldn't cache the asset_host ↵ | David Heinemeier Hansson | 2008-07-16 | 1 | -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 Naik | 2008-07-02 | 1 | -0/+6 |
| | | | | variable name. [#509 state:resolved] [Simon Jefford, Pratik Naik] | ||||
* | Fix indentation and update changelogs for previous commit | gbuesing | 2008-06-29 | 1 | -0/+2 |
| | |||||
* | Made ActionView::Base#render_file private | Joshua Peek | 2008-06-25 | 1 | -0/+2 |
| | |||||
* | Fixed polymorphic_url to be able to handle singleton resources. | Tammer Saleh | 2008-06-22 | 1 | -0/+2 |
| | | | | | | | Example usage: polymorphic_url([:admin, @user, :blog, @post]) # => admin_user_blog_post_url(@user, @post) [#461 state:resolved] | ||||
* | Replaced TemplateFinder abstraction with ViewLoadPaths | Joshua Peek | 2008-06-17 | 1 | -0/+2 |
| | |||||
* | Added block-call style to link_to [Sam Stephenson/DHH] | David Heinemeier Hansson | 2008-06-17 | 1 | -0/+6 |
| | |||||
* | Last commit message was meant for changelog. | Jeremy Kemper | 2008-06-14 | 1 | -0/+2 |
| | |||||
* | Improve ActionCaching's format-handling | Jonathan del Strother | 2008-06-11 | 1 | -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 callback | Pratik Naik | 2008-06-11 | 1 | -2/+0 |
| | |||||
* | Ensure ActionView::TemplateFinder view cache is rebuilt on initialize. | Joshua Peek | 2008-06-08 | 1 | -0/+2 |
| | |||||
* | Drop ActionController::Base.allow_concurrency flag | Joshua Peek | 2008-06-08 | 1 | -0/+2 |
| | |||||
* | Changelog: More efficient concat and capture helpers. Remove ↵ | Jeremy Kemper | 2008-06-07 | 1 | -0/+2 |
| | | | | ActionView::Base.erb_variable. | ||||
* | Add RJS#page.reload. [#277 state:resolved] | Sean Huber | 2008-06-04 | 1 | -0/+2 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Fixed Request#remote_ip to only raise hell if the HTTP_CLIENT_IP and ↵ | David Heinemeier Hansson | 2008-06-03 | 1 | -0/+4 |
| | | | | HTTP_X_FORWARDED_FOR doesnt match (not just if theyre both present) [Mark Imbriaco, Bradford Folkens] | ||||
* | Allow caches_action to accept a layout option [#198 state:resolved] | josevalim | 2008-06-03 | 1 | -0/+2 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Added Rack processor | Ezra Zygmuntowicz | 2008-06-01 | 1 | -0/+3 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Making ready for release of 2.1 | David Heinemeier Hansson | 2008-05-31 | 1 | -2/+2 |
| | |||||
* | InstanceTag#default_time_from_options overflows to DateTime | gbuesing | 2008-05-18 | 1 | -0/+2 |
| | |||||
* | Merge branch 'master' of git@github.com:rails/rails | rick | 2008-05-13 | 1 | -1/+5 |
|\ | |||||
| * | Making ready for RC1 release | David Heinemeier Hansson | 2008-05-11 | 1 | -1/+1 |
| | | |||||
| * | Fixed that forgery protection can be used without session tracking (Peter ↵ | David Heinemeier Hansson | 2008-05-11 | 1 | -0/+2 |
| | | | | | | | | Jones) [#139 state:resolved] | ||||
| * | Added session(:on) to turn session management back on in a controller ↵ | David Heinemeier Hansson | 2008-05-11 | 1 | -0/+2 |
| | | | | | | | | subclass if the superclass turned it off (Peter Jones) [#136 state:resolved] | ||||
* | | fix merge conflict with actionpack changelog | rick | 2008-05-10 | 1 | -0/+3 |
|\| |