aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
Commit message (Collapse)AuthorAgeFilesLines
...
* | reverting changes to form_options_helper for mergeSven Fuchs2008-07-161-2/+58
| |
* | Removed unnecessary or condition in #error_messages_forLuca Guidi2008-07-081-1/+1
| |
* | Added localize helper methodLuca Guidi2008-07-081-0/+4
| |
* | Make sure object name is translated in #error_messages_forLuca Guidi2008-07-081-0/+1
| |
* | align with changes in i18nSven Fuchs2008-07-063-7/+6
| |
* | add a translation helperSven Fuchs2008-07-061-0/+16
| |
* | remove core extensions in favor of I18n#translate and I18n#localizeSven Fuchs2008-07-022-3/+4
| |
* | Fixed Date and Time localization for ActiveSupportLuca Guidi2008-07-021-21/+0
| |
* | remove call to self.locale from helpersSven Fuchs2008-06-233-14/+5
| |
* | remove generic translate helpersSven Fuchs2008-06-231-19/+0
| |
* | rather cosmetic improvements of test coverageSven Fuchs2008-06-231-1/+1
| |
* | check self.locale instead of request.locale in helpersSven Fuchs2008-06-223-4/+4
| |
* | Replaced country_options_for_select with old,Sven Fuchs2008-06-223-71/+87
| | | | | | | | | | | | untranslated version and moved country-related helpers to a new FormCountryHelper helper module so that they can easily be moved to a plugin. Updated tests accordingly.
* | Renamed lang/ to locale/ because that's what we seem toSven Fuchs2008-06-211-0/+0
| | | | | | | | | | | | standarize on. Also, in future this place can be used for data/code that's not literally translations but conceptually belongs to the locale (like custom pluralization algorithms etc.).
* | Changed process of storing translations from theSven Fuchs2008-06-211-1/+1
| | | | | | | | | | | | | | | | | | client libraries to the backend: clients now can pass a block to backend#populate which can contain code to load and register translations. This makes sense for backends that persist their translations (e.g. to db) so the repeated loading and passing of translations throughout the server startup would be wasted resources.
* | rename Backend::Simple#add_translations to set_translationsSven Fuchs2008-06-202-2/+2
| | | | | | | | because it overwrites existing translations
* | add a generic tranlate view helperSven Fuchs2008-06-191-0/+19
| |
* | integrating I18n into RailsSven Fuchs2008-06-195-88/+189
|/
* 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>