aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
Commit message (Expand)AuthorAgeFilesLines
* Documentation for the drop_receiving_element helpers :onDrop callback. Closes...Pratik Naik2008-03-051-3/+31
* Moved template handlers related code from ActionView::Base to ActionView::Tem...Pratik Naik2008-03-054-41/+41
* Tests for div_for and content_tag_for helpers. Closes #11223 [thechrisoshow]Pratik Naik2008-03-051-1/+1
* Refactor partial rendering into a PartialTemplate class. [Pratik]Michael Koziarski2008-03-036-122/+109
* Fix syntax errors in the documentation for image submit tag. Closes #11073 [...Michael Koziarski2008-03-021-3/+3
* Allow html_options to be passed to all the date helpers. Closes #6000 [h-lam...Michael Koziarski2008-03-022-45/+58
* Added that requests with JavaScript as the priority mime type in the accept h...David Heinemeier Hansson2008-02-291-2/+21
* Make date_helper use tag and content_tag. Move to assert_dom_equal instead o...Michael Koziarski2008-02-201-18/+26
* Check the host string contains %d before using String#%, this avoids warning...Michael Koziarski2008-02-181-1/+1
* Ensure that :confirm doesn't need extra quotes when using drop_receiving_elem...Michael Koziarski2008-02-161-0/+3
* Fix problem with render :partial collections, records, and locals. #11057 [lo...Marcel Molina2008-02-081-2/+2
* Fix typo in form_helper documentation. Closes #10650 [xaviershay, kampers]Rick Olson2008-02-071-1/+1
* Add a slightly more informative exception message for ActionView::TemplateFin...Rick Olson2008-02-071-1/+6
* Introduce a Template class to ActionView. Closes #11024 [lifofifo]Michael Koziarski2008-02-065-82/+104
* Cache partial variable names to reduce garbageJeremy Kemper2008-02-031-1/+3
* Fix missing extension for caching. Closes #10733 [Catfish, tcoppock, mpalmer]Jeremy Kemper2008-02-032-2/+3
* Introduce the :index option for form_for and fields_for to simplify multi-mod...Jeremy Kemper2008-02-021-6/+15
* Fix number_to_human_size incorrectly removing trailing zeros. Closes #10099 [...Jeremy Kemper2008-02-021-1/+1
* Move the declaration of the compilation related cattr_accessors to compilable...Michael Koziarski2008-01-302-11/+12
* Correct line numbers from template errors. Closes #10937 [Aleksey Kondratenko]Michael Koziarski2008-01-271-1/+1
* Precalculate the Backtrace of a template error to avoid raising exceptions in...Michael Koziarski2008-01-271-4/+11
* Don't repeatedly add relative_url_root to asset sources. Closes #10767 [tomt...Michael Koziarski2008-01-271-5/+11
* Use File.join to construct partial path. Closes #10932 [patrick.t.joyce]Michael Koziarski2008-01-271-3/+4
* Handle corner case with image_tag when passed 'messed up' image names. Closes...Michael Koziarski2008-01-251-1/+1
* Refactor template compilation from AV::Base into the template handlers. Clos...Michael Koziarski2008-01-226-121/+144
* Add label_tag helper for generating elements. Closes #10802 [DefV]Michael Koziarski2008-01-211-0/+18
* Reapply the TemplateFinder first applied in [8669] then reverted in [8676]. C...Michael Koziarski2008-01-213-130/+185
* Revert r8669 for now, breaks Action Mailer. Reopens #10800.Jeremy Kemper2008-01-193-178/+130
* Introduce TemplateFinder to handle view paths and lookups. Closes #10800.Jeremy Kemper2008-01-193-130/+178
* Make render :partial recognise form builders and use the _form partial. Clos...Michael Koziarski2008-01-162-0/+18
* Correct docs on caching and all.jsMichael Koziarski2008-01-141-1/+1
* Allow users to declare other namespaces when using the atom feed helpers. Clo...Michael Koziarski2008-01-131-2/+28
* Fix a few caching errors, expose a case thats still not working (ref #107330 ...David Heinemeier Hansson2008-01-121-2/+2
* Fixed ActionView::Helpers::ActiveRecordHelper::form for when protect_from_for...David Heinemeier Hansson2008-01-111-3/+10
* * Pass around handler instances, not their classes [Koz]Michael Koziarski2008-01-115-18/+30
* Move fragment caching from special helper methods to TemplateHandler. Closes ...Jeremy Kemper2008-01-105-17/+29
* Fix CacheHelper#cache (closes #10733) [mindforge]David Heinemeier Hansson2008-01-101-8/+7
* Don't append the forgery token to an ajax request if it's serializing a form,...Michael Koziarski2008-01-081-2/+2
* Replace labelled_form_for example with one that will actually work. Referenc...Michael Koziarski2008-01-081-2/+3
* Doc fixes for #atom_feed_helper. Closes #10715 [hasmanyjosh]Rick Olson2008-01-071-3/+3
* Use explicit toplevel namespace for constant reference in AS::BasicObjectJeremy Kemper2008-01-071-1/+1
* Ruby 1.9 compat: truncate and excerpt helpersJeremy Kemper2008-01-071-52/+84
* Ruby 1.9 compat: remove stray colonJeremy Kemper2008-01-071-1/+1
* The asset_host block takes the controller request as an optional second argum...Jeremy Kemper2008-01-062-3/+32
* Moved the caching stores from ActionController::Caching::Fragments::* to Acti...David Heinemeier Hansson2008-01-031-6/+10
* Made fragment caching in views work for rjs and builder as well (closes #6642...David Heinemeier Hansson2008-01-031-1/+15
* Fixed rendering of partials with layout when done from site layout (closes #9...David Heinemeier Hansson2008-01-031-4/+12
* Fix atom_feed_helper to comply with the atom spec. Closes #10672 [xaviershay]Rick Olson2008-01-021-14/+18
* Fix that auto_link looks for ='s in url paths (Amazon urls have them). Close...Rick Olson2007-12-281-1/+1
* Introduce ActiveSupport::BasicObject which bridges Builder::BlankSlate and Ru...Jeremy Kemper2007-12-281-5/+1