Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Made asset_tag_helper use config.perform_caching instead of ↵ | Denis Odorcic | 2010-03-12 | 1 | -18/+18 | |
| | | | | | | ActionController::Base.perform_caching Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Allow anything that responds to render to be given as :template and use ↵ | José Valim | 2010-03-12 | 1 | -104/+52 | |
| | | | | find_template instead of find in views. | |||||
* | %= works for content_tag and does not require parenthesis on method call | José Valim | 2010-03-12 | 1 | -2/+2 | |
| | ||||||
* | Make all AP tests pass for Ruby 1.9.1. | José Valim | 2010-03-12 | 3 | -9/+8 | |
| | ||||||
* | Fix test | Jeremy Kemper | 2010-03-11 | 1 | -1/+1 | |
| | ||||||
* | simplify alt tag generation for images | Eaden McKee | 2010-03-11 | 1 | -1/+4 | |
| | | | | | | [#2837 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Add tests for lookup context. | José Valim | 2010-03-11 | 3 | -1/+170 | |
| | ||||||
* | Merge branch 'master' of github.com:rails/rails | wycats | 2010-03-10 | 3 | -10/+9 | |
|\ | ||||||
| * | Merge branch 'master' of gitproxy:rails/rails | José Valim | 2010-03-10 | 3 | -8/+8 | |
| |\ | ||||||
| * | | Optimize and clean up how details key get expired. | José Valim | 2010-03-10 | 2 | -7/+4 | |
| | | | ||||||
| * | | Merge branch 'master' of gitproxy:rails/rails | José Valim | 2010-03-09 | 4 | -32/+24 | |
| |\ \ | ||||||
| * | | | Clean up the API required from ActionView::Template. | José Valim | 2010-03-09 | 1 | -3/+5 | |
| | | | | ||||||
* | | | | Make form helpers work with <%= | wycats | 2010-03-09 | 5 | -112/+132 | |
| | | | | ||||||
* | | | | Deprecate block_called_from_erb? pending a solution for getting it into apps | Carlhuda | 2010-03-09 | 3 | -21/+67 | |
| |_|/ |/| | | ||||||
* | | | skip_relative_url_root url_for option is dead | Joshua Peek | 2010-03-09 | 1 | -1/+1 | |
| | | | ||||||
* | | | Allow default_url_options to be set on route set | Joshua Peek | 2010-03-09 | 1 | -0/+4 | |
| | | | ||||||
* | | | RouteSet#rewrite => url_for | Joshua Peek | 2010-03-09 | 2 | -3/+3 | |
| | | | ||||||
* | | | Move AC::UrlRewriter onto route set | Joshua Peek | 2010-03-09 | 2 | -7/+3 | |
| |/ |/| | ||||||
* | | Reinstate dom_id in controllers. | Justin Ko | 2010-03-09 | 1 | -0/+8 | |
| | | | | | | | | | | | | | | [#3040 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | | Get rid of the instance-level URL rewriter | wycats | 2010-03-09 | 3 | -32/+16 | |
|/ | ||||||
* | Reinstate default_url_options and remove url_options= writer | Jeremy Kemper | 2010-03-08 | 2 | -24/+20 | |
| | ||||||
* | Clean LookupContext API. | José Valim | 2010-03-08 | 1 | -3/+3 | |
| | ||||||
* | Add support for mount RackApp, :at => "/sprockets" with a shorthand of mount ↵ | Carlhuda | 2010-03-08 | 1 | -0/+36 | |
| | | | | | | | | | | Sprockets => "/sprockets". This is different from the match syntax in that it cannot be used for controller/action and it does not assume an anchor at the end of the match. For instance, in the above example, if the client asked for "/sprockets/foo.js", the Sprockets app would have a SCRIPT_NAME of "/sprockets" and PATH_INFO of "/foo.js". | |||||
* | Merge master. | José Valim | 2010-03-08 | 2 | -1/+10 | |
|\ | ||||||
| * | Make sure nested singular resources get the correct name | Jan De Poorter | 2010-03-07 | 1 | -0/+10 | |
| | | | | | | | | | | | | [#3911 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
| * | Make many parts of Rails lazy. In order to facilitate this, | wycats | 2010-03-07 | 1 | -1/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | add lazy_load_hooks.rb, which allows us to declare code that should be run at some later time. For instance, this allows us to defer requiring ActiveRecord::Base at boot time purely to apply configuration. Instead, we register a hook that should apply configuration once ActiveRecord::Base is loaded. With these changes, brings down total boot time of a new app to 300ms in production and 400ms in dev. TODO: rename base_hook | |||||
* | | Move details to lookup_context and make resolvers use the cache key. | José Valim | 2010-03-08 | 1 | -41/+1 | |
| | | ||||||
* | | Speed up performance in resolvers by adding fallbacks just when required. | José Valim | 2010-03-08 | 2 | -4/+4 | |
| | | ||||||
* | | More refactoring on the views side of rendering. | José Valim | 2010-03-08 | 2 | -51/+84 | |
| | | ||||||
* | | Finally moved the find template logic to the views. | José Valim | 2010-03-08 | 1 | -2/+2 | |
| | | ||||||
* | | Move layout lookup to views. | José Valim | 2010-03-08 | 1 | -1/+1 | |
| | | ||||||
* | | Added template lookup responsible to hold all information used in template ↵ | José Valim | 2010-03-07 | 3 | -61/+4 | |
| | | | | | | | | lookup. | |||||
* | | First take on ViewPaths clean up. | José Valim | 2010-03-07 | 1 | -2/+2 | |
|/ | ||||||
* | Adds disable option to date_helpers generated hidden fields when ↵ | Santiago Pastorino | 2010-03-05 | 1 | -0/+55 | |
| | | | | | | | | html_options specifies it. ht by Marc Schütz [#3807 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Solved a problem that prevented render :file => work in layouts | Jose Fernandez | 2010-03-05 | 2 | -0/+7 | |
| | | | | Signed-off-by: wycats <wycats@gmail.com> | |||||
* | Remove the ability to set the mountpoint when initializing a route set. | Carl Lerche | 2010-03-04 | 1 | -24/+4 | |
| | ||||||
* | Tweak out url_for uses :script_name and add some tests | Carl Lerche | 2010-03-04 | 1 | -0/+58 | |
| | ||||||
* | Get rid of relative_url_path in favor of respecting SCRIPT_NAME. Also added ↵ | Carlhuda | 2010-03-04 | 1 | -2/+2 | |
| | | | | a way to specify a default SCRIPT_NAME when generating URLs out of the context of a request. | |||||
* | Refactor cache_store to use ActionController config | Carlhuda | 2010-03-04 | 2 | -9/+15 | |
| | ||||||
* | remove_method is private | Carlhuda | 2010-03-04 | 1 | -2/+2 | |
| | ||||||
* | Deprecated ActionController::Base.session_options= and ↵ | Carlhuda | 2010-03-04 | 2 | -4/+4 | |
| | | | | ActionController::Base.session_store= in favor of a config.session_store method (which takes params) and a config.cookie_secret variable, which is used in various secret scenarios. The old AC::Base options will continue to work with deprecation warnings. | |||||
* | Move stuff from compatibility.rb to deprecated.rb | Carlhuda | 2010-03-04 | 1 | -1/+0 | |
| | ||||||
* | Clarify cookie jar test | Jeremy Kemper | 2010-03-04 | 1 | -6/+1 | |
| | ||||||
* | Safely cleans up a test to avoid relying on a particular test order | wycats | 2010-03-04 | 1 | -10/+23 | |
| | ||||||
* | Fixes test ordering bug (ht: evan) | wycats | 2010-03-04 | 1 | -0/+3 | |
| | ||||||
* | Fix a bunch of failing AP / AM specs created from the previous ↵ | Carl Lerche | 2010-03-04 | 1 | -27/+15 | |
| | | | | AbstractController configuration refactor. | |||||
* | Merge branch 'configuration_refactor' | Carl Lerche | 2010-03-03 | 12 | -224/+129 | |
|\ | ||||||
| * | Move the original config method onto AbstractController | Carl Lerche | 2010-03-03 | 2 | -2/+2 | |
| | | ||||||
| * | Start refactoring the method of configuring ActionView | Carlhuda | 2010-03-03 | 4 | -24/+23 | |
| | | ||||||
| * | Deprecate IP spoofing settings that are directly on the controller in favor ↵ | Carlhuda | 2010-03-03 | 1 | -2/+0 | |
| | | | | | | | | of configuring a middleware |