aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove old method of including javascripts define_javascript_functions.Michael Koziarski2008-07-031-26/+0
| | | | javascript_include_tag and friends do a much better job.
* Remove strange alias for JavaScriptHelperMichael Koziarski2008-07-031-2/+0
|
* Deprecate :use_full_path render option. The supplying the option no longer ↵Joshua Peek2008-07-024-31/+32
| | | | has an effect.
* Make sure render :collection doesnt set nil local when :as is absentPratik Naik2008-07-021-1/+2
|
* Add :as option to render a collection of partials with a custom local ↵Pratik Naik2008-07-023-11/+14
| | | | variable name. [#509 state:resolved] [Simon Jefford, Pratik Naik]
* Ensure proper output when submit_tag is used with :disabled_with. [#388 ↵Scott Stewart2008-07-021-2/+4
| | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fix indentation and update changelogs for previous commitgbuesing2008-06-291-2/+2
|
* Added support for regexp matching of priority zones in time_zone_select ↵Ernie Miller2008-06-291-2/+9
| | | | [#195 state:resolved]
* Ensure FormBuilder date helpers respects html_options. [#506 state:resolved] ↵Pratik Naik2008-06-291-3/+3
| | | | | | [Pascal Ehlert] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Allow single quote (the ' character) in the middle of URL when ↵Cheah Chu Yeow2008-06-271-1/+1
| | | | | | auto_link-ing. [#471 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Hide InlineTemplate class from ActionController and use ActionView's render APIJoshua Peek2008-06-251-6/+5
|
* Made ActionView::Base#render_file privateJoshua Peek2008-06-251-20/+20
|
* Consolidate CustomHandlerTest, TemplateFileTest, and TemplateObjectTest and ↵Joshua Peek2008-06-251-7/+3
| | | | test them at a higher level of abstraction in ViewRenderTest.
* Improve readabilityJeremy Kemper2008-06-241-1/+3
|
* link_to_function and button_to_function shouldn't modify their options hashesJeremy Kemper2008-06-231-2/+2
|
* Performance: javascript helper tweaks to speed up escaping and reduce object ↵Jeremy Kemper2008-06-213-60/+73
| | | | allocations when building options strings
* Check whether blocks are called from erb using a special __in_erb_template ↵Jeremy Kemper2008-06-196-39/+62
| | | | variable visible in block binding.
* Move erb_trim_mode setting to the ERB template handler. Keep a ↵Jeremy Kemper2008-06-192-5/+9
| | | | Base.erb_trim_mode= delegator around.
* Replaced TemplateFinder abstraction with ViewLoadPathsJoshua Peek2008-06-178-206/+293
|
* Performance: PartialTemplate#initializeJeremy Kemper2008-06-171-37/+37
|
* Added block-call style to link_to [Sam Stephenson/DHH]David Heinemeier Hansson2008-06-171-18/+42
|
* Reload cached templates when a new handler is registeredPratik Naik2008-06-151-0/+1
|
* Opps, I forgot to add template_handlers.rb to my index.Joshua Peek2008-06-111-0/+46
|
* Moved template handler registration into a mix-in module.Joshua Peek2008-06-112-66/+26
|
* Make sure cache_template_loading works and don't use to_prepare callbackPratik Naik2008-06-111-0/+1
|
* TimeZone -> ActiveSupport::TimeZone. [#387 state:resolved]Ruy Asan2008-06-111-2/+2
|
* Delegate ActionView::Base#controller_name to controllerPratik Naik2008-06-101-1/+1
|
* add deprecation for the #concat helper's 2nd argument, which is no longer neededrick2008-06-091-1/+5
|
* Removed TemplateFinder.update_extension_cache_for since view path cache will ↵Joshua Peek2008-06-092-16/+1
| | | | be updated on boot.
* Removed used check_view_paths after 057768cJoshua Peek2008-06-091-7/+0
|
* Process view paths passed to AV::Base#initialize instead of raising.Jeremy Kemper2008-06-081-10/+1
|
* with_output_buffer returns the temporary buffer instead of the result of the ↵Jeremy Kemper2008-06-081-0/+1
| | | | block
* Use output_buffer reader and writer methods exclusively instead of hitting ↵Jeremy Kemper2008-06-086-15/+11
| | | | the instance variable so others can override the methods.
* Remove some internal dead code that supported content_forJeremy Kemper2008-06-061-15/+5
|
* concat should ignore nilJeremy Kemper2008-06-061-1/+1
|
* javascript_tag should only concat when block_given?Jeremy Kemper2008-06-061-7/+10
|
* Merge branch 'master' into erboutJeremy Kemper2008-06-061-3/+4
|\
| * Drop a string conversion from the often-called tag_options helperJeremy Kemper2008-06-061-3/+4
| |
* | Merge branch 'master' into erboutJeremy Kemper2008-06-052-2/+3
|\|
| * Ensure render :file works inside templatesPratik Naik2008-06-051-1/+2
| |
| * Make partial counter start from 0.Frederick Cheung2008-06-051-1/+1
| | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* | Merge branch 'master' into erboutJeremy Kemper2008-06-051-0/+10
|\|
| * Add RJS#page.reload. [#277 state:resolved]Sean Huber2008-06-041-0/+10
| | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* | Stack @output_buffer for nested renderingJeremy Kemper2008-06-031-2/+2
| |
* | Don't pass block binding to concatJeremy Kemper2008-06-028-31/+21
| |
* | Work with @output_buffer instead of _erboutJeremy Kemper2008-06-024-13/+25
| |
* | Try replacing _erbout with @output_bufferJeremy Kemper2008-06-026-54/+25
|/
* Remove dead code, and the tests for it.Michael Koziarski2008-05-311-69/+0
|
* Don't require AV::TestCases to have a helper class. Only include the helper ↵Jeremy Kemper2008-05-261-10/+4
| | | | class in setup if it hasn't been already.
* Merge docrails.Pratik Naik2008-05-2510-183/+196
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>