Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clean up unused methods from AV::Base and pass in the template object on ↵ | José Valim | 2010-10-10 | 3 | -11/+13 |
| | | | | rendering. | ||||
* | Add expire! and rerender to the template API. This will be used by SASS ↵ | José Valim | 2010-10-10 | 1 | -2/+47 |
| | | | | template handler. | ||||
* | Add some unit tests to Template#refresh. | José Valim | 2010-10-10 | 1 | -4/+28 |
| | |||||
* | Resolvers now consider timestamps. | José Valim | 2010-10-10 | 1 | -0/+45 |
| | | | | | | | | | | | Before this patch, every request in development caused the template to be compiled, regardless if it was updated in the filesystem or not. This patch now checks the timestamp and only compiles it again if any change was done. While this probably won't show any difference for current setups, but it will be useful for asset template handlers (like SASS), as compiling their templates is slower than ERb, Haml, etc. | ||||
* | Deprecate old template handler API. Remove old handlers. | José Valim | 2010-10-10 | 1 | -2/+2 |
| | |||||
* | Add more docs and tests to templates. | José Valim | 2010-10-09 | 1 | -0/+12 |
| | |||||
* | Fix 1.9.2 failures. | José Valim | 2010-10-08 | 1 | -4/+4 |
| | |||||
* | fix rendering a partial with an array as its :object [#5746 state:resolved] | Michael Koziarski | 2010-10-08 | 1 | -0/+4 |
| | | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> Conflicts: actionpack/lib/action_view/render/partials.rb | ||||
* | Allow cache to be temporarily disabled through lookup_context. | José Valim | 2010-10-07 | 1 | -0/+21 |
| | |||||
* | Remove locals dependency from template. | José Valim | 2010-10-07 | 1 | -0/+1 |
| | | | | | | This means that templates does not need to store its source anymore, allowing us to reduce the ammount of memory taken by our Rails processes. Naively speaking, if your app/views contains 2MB of files, each of your processes (after being hit by a bunch of requests) will take 2MB less of memory after this commit. This is extremely important for the upcoming features. Since Rails will also render CSS and JS files, their source won't be stored as well allowing us to decrease the ammount of memory taken. | ||||
* | Rename _assigns to view_assigns in AV::TC | David Chelimsky | 2010-10-03 | 1 | -0/+31 |
| | | | | | | | | | - also add tests - also deprecate _assigns [#5751 state:resolved] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | added test for form_for with search_field | Aditya Sanghi | 2010-10-02 | 1 | -0/+15 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | delete repeated code | Aaron Patterson | 2010-10-01 | 1 | -18/+0 |
| | |||||
* | Fix test that wasn't running at all. | Emilio Tagua | 2010-09-28 | 1 | -1/+1 |
| | |||||
* | Redefine duplicated test name. | Emilio Tagua | 2010-09-28 | 1 | -1/+1 |
| | |||||
* | Use helper method here. | Emilio Tagua | 2010-09-28 | 1 | -6/+5 |
| | |||||
* | Silence warnings here, only setting Encoding.default_external for testing. | Emilio Tagua | 2010-09-28 | 1 | -2/+3 |
| | |||||
* | Silence warnings here, only setting Encoding.default_external for testing. | Emilio Tagua | 2010-09-28 | 1 | -2/+3 |
| | |||||
* | Add parenthesis to avoid syntax warnings. | Emilio Tagua | 2010-09-28 | 2 | -2/+2 |
| | |||||
* | Remove duplicated method. | Emilio Tagua | 2010-09-28 | 1 | -2/+0 |
| | |||||
* | Initialize @_virtual_path path ivar. | Emilio Tagua | 2010-09-28 | 1 | -0/+1 |
| | |||||
* | Rename tests to avoid name collisions and warnings when running rake task. | Emilio Tagua | 2010-09-28 | 1 | -5/+5 |
| | |||||
* | Rename duplicated test, and give it a correct name. Remove nonsense line. | Emilio Tagua | 2010-09-28 | 1 | -2/+1 |
| | |||||
* | Remove duplicated test. | Emilio Tagua | 2010-09-28 | 1 | -20/+0 |
| | |||||
* | Remove more warnings shadowing outer local variable. | Emilio Tagua | 2010-09-27 | 1 | -1/+1 |
| | | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Remove more warnings shadowing outer local variable. | Emilio Tagua | 2010-09-27 | 1 | -1/+1 |
| | |||||
* | Use parentheses when using assert_match followed by a regexp to avoid warnings. | Emilio Tagua | 2010-09-27 | 5 | -16/+16 |
| | |||||
* | Remove last tests with deprecated form_for and cleanup form_for helper | Carlos Antonio da Silva | 2010-09-26 | 1 | -63/+49 |
| | | | | | | | This cleans up the last bits of deprecation stuff from form_for helper. However there is still a bug when using :as => foo[], with index. The classes and ids are being generated using [], such as foo[]_edit. This bug already existed but it was not detected before. | ||||
* | Select tags with array options are deprecated, removing | Carlos Antonio da Silva | 2010-09-26 | 1 | -6/+0 |
| | |||||
* | Review most of the form_for deprecated tests, missing tests with index like [] | Carlos Antonio da Silva | 2010-09-26 | 1 | -405/+321 |
| | |||||
* | Remove duplicate helper method | Krekoten' Marjan | 2010-09-25 | 1 | -3/+0 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | These tests shouldn't depend on local time to pass or fail, we can use utc here. | Emilio Tagua | 2010-09-24 | 2 | -2/+2 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | file_field propagates up multipart property even inside of fields_for | Santiago Pastorino | 2010-09-20 | 1 | -0/+21 |
| | |||||
* | application.js should be the last file on javascript_include_tag(:all) | Santiago Pastorino | 2010-09-19 | 1 | -8/+8 |
| | |||||
* | argument error is done for us | Aaron Patterson | 2010-09-18 | 1 | -0/+6 |
| | |||||
* | file_field makes the enclosing form multipart | Santiago Pastorino | 2010-09-18 | 1 | -0/+18 |
| | |||||
* | Allow view helper's #initialize method to be called. [#5061 state:resolved] | Carl Lerche | 2010-09-13 | 1 | -0/+13 |
| | |||||
* | Start cleanup of deprecations in ActionView | Carlos Antonio da Silva | 2010-09-06 | 1 | -8/+0 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Merge remote branch 'drogus/remove_deprecated_routes' | José Valim | 2010-09-05 | 4 | -7/+6 |
|\ | | | | | | | This merge removes the deprecated routes mapper from Rails and update its tests. | ||||
| * | Removed deprecated RouteSet API, still many tests fail | Piotr Sarnacki | 2010-09-05 | 4 | -7/+6 |
| | | |||||
* | | Make number_to_human and number_with_precision work with negatives | Santiago Pastorino | 2010-09-05 | 1 | -0/+2 |
| | | |||||
* | | Fix indentation errors | Santiago Pastorino | 2010-09-05 | 1 | -47/+47 |
| | | |||||
* | | Fix number_to_human(0) exception [#5532 state:resolved] | Ben Sharpe | 2010-09-05 | 1 | -0/+1 |
|/ | | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Remove namespace for isolated namespaced models in forms | Piotr Sarnacki | 2010-09-03 | 1 | -0/+17 |
| | |||||
* | Added ability to set asset_path for engines | Piotr Sarnacki | 2010-09-03 | 1 | -0/+23 |
| | |||||
* | Extended url_for to handle specifying which router should be used. | Piotr Sarnacki | 2010-09-03 | 2 | -51/+41 |
| | | | | | | | A few examples: url_for Blog::Engine, :posts_path url_for Blog::Engine, @post url_for Blog::Engine, :action => "main", :controller => "index" | ||||
* | Removing unnecessary code from render_test | Thiago Pradi | 2010-09-02 | 1 | -2/+0 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Removing unnecessary code | Thiago Pradi | 2010-09-02 | 1 | -7/+0 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Added :format option for form_for helper and spec for this [#5226 ↵ | Alex Chrome | 2010-09-01 | 1 | -2/+18 |
| | | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Remove NonConcattingString. | José Valim | 2010-08-29 | 1 | -2/+0 |
| |