aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
Commit message (Collapse)AuthorAgeFilesLines
...
* Extract ActiveSupport::TypedArray class to ensure an array is all of the ↵Joshua Peek2008-07-221-25/+6
| | | | same type [#673 state:resolved]
* Memoize ActionView::Base pick_template and find_partial_path for rendering ↵Joshua Peek2008-07-223-7/+11
| | | | duration
* Refactored NumberHelper API to accept arguments as an options hash [#666 ↵Clemens Kofler2008-07-211-32/+66
| | | | | | state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Refactor DateHelper and improve test coverage [#665 state:resolved]Clemens Kofler2008-07-211-156/+142
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Fixed spelling mistake in deprecation warning [#381 state:resolved]Joshua Peek2008-07-191-4/+6
|
* Ensure ActionView::PathSet::Path is not initialized with a precompiled pathJoshua Peek2008-07-191-0/+2
|
* Fixed index and auto index for nested fields_for [#327 state:resolved]Kevin Glowacz2008-07-191-7/+23
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Update Prototype to 1.6.0.2 (Patrick Joyce) [#599 status:committed]David Heinemeier Hansson2008-07-191-154/+150
|
* Removed handling of string parameter in link_to to have all URL generation ↵Clemens Kofler2008-07-191-43/+50
| | | | | | done by url_for Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Removed unused option from FormHelper#fields_for [#641 state:resolved]Clemens Kofler2008-07-191-4/+0
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Ruby 1.9: Fixed regexp warning by replacing nested repeat operator + and ? ↵Joshua Peek2008-07-191-1/+1
| | | | with '*'
* Ruby 1.9: Strip encoding from ERB source since you can not change character ↵Joshua Peek2008-07-191-2/+5
| | | | encoding during a method
* Set the response content type to that of found template if not explicitly ↵Tom Ward2008-07-184-3/+16
| | | | | | set elsewhere [#444 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Removed lagacy TemplateHandler#render API. Left in a legacy TemplateHandler ↵Joshua Peek2008-07-185-41/+13
| | | | and Compilable stub so plugins will not have to change anything.
* Changed ActiveSupport::Memoizable API to extend since it mainly adds the ↵Joshua Peek2008-07-183-4/+4
| | | | memoize class method
* Merge branch 'master' of git@github.com:rails/railsJeremy Kemper2008-07-172-37/+25
|\
| * Wrap AssetTagHelper's computed public path cache in a threadsafe storeJoshua Peek2008-07-172-37/+25
| |
* | Merge branch 'master' into i18n-mergeJeremy Kemper2008-07-1715-77/+153
|\| | | | | | | | | | | | | Conflicts: actionpack/lib/action_view/helpers/form_options_helper.rb activerecord/lib/active_record/validations.rb
| * Resolved conflictDavid Heinemeier Hansson2008-07-1631-928/+826
| |\
| | * Fixed template recompile logic [#630 state:resolved]Stefan Kaes2008-07-161-22/+31
| | | | | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
| | * Merge with docrails.Pratik Naik2008-07-1612-30/+85
| | |
| | * Removed config.action_view.cache_template_loading, use config.cache_classes ↵Joshua Peek2008-07-153-8/+17
| | | | | | | | | | | | instead
| | * JavaScriptGenerator should only sets output_buffer for the duration of the ↵Jeremy Kemper2008-07-152-10/+12
| | | | | | | | | | | | update block
| * | Fixed that AssetTagHelper#compute_public_path shouldn't cache the asset_host ↵David Heinemeier Hansson2008-07-161-11/+14
| | | | | | | | | | | | along with the source or per-request proc's won't run [DHH]
* | | moving country helpers from form_options_helper to form_country_helper againSven Fuchs2008-07-162-81/+14
| | |
* | | fixing another timezone dependent testSven Fuchs2008-07-161-1/+1
| | |
* | | merge forward to current rails/masterSven Fuchs2008-07-1628-993/+866
|\ \ \ | | |/ | |/|
| * | Get buffer for fragment cache from template's @output_bufferJoshua Peek2008-07-156-215/+190
| | |
| * | Ruby 1.9 compat: only eval with block.binding in 1.9, uses more memory than ↵Jeremy Kemper2008-07-151-6/+12
| | | | | | | | | | | | eval with block
| * | Ruby 1.9 compat: call Proc#binding explicitly. [#623 state:resolved]松田 明2008-07-151-1/+1
| | |
| * | memorize typoJoshua Peek2008-07-143-10/+10
| | |
| * | Include Memoizable in ActionView::TemplateJoshua Peek2008-07-143-43/+27
| | |
| * | Use sub instead of gsubTarmo Tänav2008-07-141-1/+1
| | | | | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
| * | Eager load Partial variable_name and counter_name. Tidy up ↵Joshua Peek2008-07-144-45/+49
| | | | | | | | | | | | render_partial_collection.
| * | Move dead recompile_template? alsoJeremy Kemper2008-07-142-17/+2
| | |
| * | Remove dead code from mergeJeremy Kemper2008-07-141-30/+0
| | |
| * | Fix bad mergeJeremy Kemper2008-07-141-2/+2
| | |
| * | Use instance_method(...) to check whether the method existsJeremy Kemper2008-07-141-2/+44
| | |
| * | Ensure :index works with fields_for select methods. [#518 state:resolved]rsl2008-07-141-4/+4
| | | | | | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * | Check first render format and extension. Fixes failing ActionMailer test.Joshua Peek2008-07-131-1/+1
| | |
| * | Made ActionView::Base#first_render a little more private. And added ↵Joshua Peek2008-07-133-7/+6
| | | | | | | | | | | | _last_render to track the most recent render. Will fix #609 as a side effect. [#609 state:resolved]
| * | Set config.action_view.warn_cache_misses = true to receive a warning if you ↵Joshua Peek2008-07-122-3/+32
| | | | | | | | | | | | perform an action that results in an expensive disk operation that could be cached
| * | Refactor template preloading. New abstractions include Renderable mixins and ↵Joshua Peek2008-07-1212-447/+338
| | | | | | | | | | | | a refactored Template class.
| * | Ensure mail_to label is obfuscated for javascript encoding. [#294 ↵Johan Sørensen2008-07-121-1/+1
| | | | | | | | | | | | | | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * | Changed ActionView::TemplateHandler#render API method signature to ↵Joshua Peek2008-07-114-6/+6
| | | | | | | | | | | | render(template, local_assigns = {})
| * | WhitespaceMichael Koziarski2008-07-111-2/+1
| | |
| * | Check for response in builder template since ActionMailer does not have oneJoshua Peek2008-07-111-1/+2
| | |
| * | Put a newline rather than a semicolon at the end of RJS source to avoid ↵Jeremy Kemper2008-07-091-1/+1
| | | | | | | | | | | | parse errors with embedded heredocs
| * | Use ActionController::Base.logger to report template compilation errors ↵Jeremy Kemper2008-07-091-4/+4
| | | | | | | | | | | | since there is no AV::Base.logger
| * | Rendering default template for missing actions works with non-word ↵Jeremy Kemper2008-07-091-1/+1
| | | | | | | | | | | | characters in action name