aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
Commit message (Collapse)AuthorAgeFilesLines
* Update some code styles.Rafael Mendonça França2012-10-061-50/+48
| | | | | * Uses the Ruby 1.9 hash syntax * Avoid escaping " inside string using the %{} syntax
* Accept :remote as symbol in link_to optionsRiley Lynch2012-10-061-2/+5
| | | | | Accept either :remote or 'remote' in both the html_options and (url_)options hash arguments to link_to.
* Add nodoc to now public fragment_name_with_digestRyan Garver2012-10-041-0/+1
|
* Merge branch 'master' into feature/public-fragment_name_with_digestRyan Garver2012-10-023-7/+11
|\
| * Merge pull request #7708 from bdurand/optimize_log_subscribersRafael Mendonça França2012-10-011-2/+5
| |\ | | | | | | Optimize log subscribers to check if the log level is sufficient
| | * Optimize log subscribers to check if the log level is sufficient before ↵Brian Durand2012-09-301-2/+5
| | | | | | | | | | | | performing an operations.
| * | prefix TemplateAssertions ivars (#7459)Yves Senn2012-10-011-3/+3
| | |
| * | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-09-281-2/+2
| |\ \ | | | | | | | | | | | | | | | | Conflicts: actionpack/lib/action_view/helpers/asset_tag_helper.rb
| | * | update image_tag output in examples to actualNihad Abbasov2012-09-251-4/+4
| | |/ | | | | | | [ci-skip]
| * | Fix tests broken by adding a new instance variable to view test casesJeremy Kemper2012-09-271-0/+1
| | |
* | | Move the CacheHelper#fragment_name_with_digest to be public so custom ↵Ryan Garver2012-09-271-11/+11
|/ / | | | | | | fragment caching can benefit from it.
* | Adds missing dependency to ActionView::TestCase::BehaviorAndy Lindeman2012-09-261-0/+2
| | | | | | | | | | | | | | | | | | * The module is needed for the `determine_constant_from_test_name` method. * Without it, the including class is required to also include `ActiveSupport::Testing::ConstantLookup` or a `NoMethodError` will be raised upon instantiation of that class. * Issue introduced in c0a24555f9e2749fb94efe1967cb9943db0b6a7e
* | change ^ and $ anchors in regexp to \A and \z respectivelyNihad Abbasov2012-09-251-1/+1
| | | | | | | | http://guides.rubyonrails.org/security.html#regular-expressions
* | allow to pass numerical value to size option in image_tagNihad Abbasov2012-09-251-4/+5
| | | | | | | | | | This will set image's both width and height attributes to value passed in size option.
* | Support helper tests using spec DSLMike Moore2012-09-241-4/+3
| | | | | | | | | | Improve how helper tests to resolve the helper class from the test name. Add tests for helper tests using the minitest spec DSL.
* | Register helper and view tests for minitest's spec DSLMike Moore2012-09-241-0/+3
|/
* copy edits 137e5d9Xavier Noria2012-09-181-1/+1
|
* Add extra documentation for password_fieldArek W2012-09-181-1/+1
| | | | I think this should be explicit as the password fields behaviour is inconsistent with other fields in this regard. It had me scratching my head until I dug through the source code.
* Merge pull request #7669 from guilleiguaran/rename-rb-handlerCarlos Antonio da Silva2012-09-171-1/+1
|\ | | | | Rename .rb template handler to .ruby to avoid conflicts with mustache classes
| * Rename .rb template handler to .ruby to avoid conflicts with mustache views ↵Guillermo Iguaran2012-09-171-1/+1
| | | | | | | | classes
* | allowing pass couple extension to register_template_handler callTima Maslyuchenko2012-09-171-3/+6
|/
* use presence method instead of checking for blankNihad Abbasov2012-09-141-1/+1
|
* Add .rb template handlerGuillermo Iguaran2012-09-111-0/+1
| | | | This handler simply allows arbitrary Ruby code as a template
* Tidy up excerpt separator logic a bitCarlos Antonio da Silva2012-09-081-17/+11
|
* Refactor some date helpers to use merge!Carlos Antonio da Silva2012-09-081-5/+9
| | | | Also just set the hash value instead of merging when it's only one key.
* Add a separation option for the excerpt functionGuirec Corbel2012-09-081-11/+49
| | | | | | | | | | The separation option enable to keep entire words, lines or anything. To split by line, like github, we can set the separation option as \n. To split by word, like google, we can set the separation option as " ". The radius option represent the number of lines or words we want to have in the result. The default behaviour is the same. If we don't set the separation option, it split the text any where.
* fix tests on Ruby 2.0.0Aaron Patterson2012-09-061-1/+1
|
* Define just the cattr_reader.Rafael Mendonça França2012-09-051-1/+2
| | | | | This will trim down the API and avoid some error that can be made changing the cache object.
* Use the same logger that ActionView::Base for the DigestorRafael Mendonça França2012-09-051-2/+5
|
* Remove unneeded requiresRafael Mendonça França2012-09-051-7/+3
| | | | | We should not require all the core extensions inside the frameworks. The logger is already defined in the Action View framework.
* We dont need to include the name and the format in the digest -- source is ↵David Heinemeier Hansson2012-09-041-1/+1
| | | | authoritative enough
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-09-011-0/+4
|\
| * reverting changes from commit b0896c38Sven Kraeuter | 5v3n2012-09-011-1/+1
| |
| * there is no "delete" action in a controllerSven Kräuter2012-08-311-1/+1
| |
| * Added example of using options_for_select() with select_tag()Kir Shatrov2012-08-301-0/+4
| |
* | Remove unneeded requirePiotr Sarnacki2012-09-011-1/+0
| |
* | Sprockets-rails tests failDmitry Vorotilin2012-09-012-3/+8
| | | | | | | | | | | | | | Method invalid_asset_host! was delegated to controller but sprockets compile assets in their own scope without controller. And if we set asset_host with second parameter it should raise error through invalid_asset_host!. But since controller is nil it cannot be reached.
* | Further improve RENDER_DEPENDENCY regexp commentsChristos Zisopoulos2012-08-301-1/+1
| |
* | Improve RENDER_DEPENDENCY regexp comment to keep the doc editor happy.Christos Zisopoulos2012-08-301-1/+1
| |
* | `Digestor` can now parse old style hash syntax for `render`Christos Zisopoulos2012-08-301-4/+4
| |
* | `Digestor` ignores most whitespace when parsing `render` invocationsChristos Zisopoulos2012-08-301-2/+2
| |
* | Add automatic template digests to all CacheHelper#cache calls (originally ↵David Heinemeier Hansson2012-08-292-9/+197
| | | | | | | | spiked in the cache_digests plugin) *DHH*
* | Fix ActionView::RecordIdentifier to work as a singletonPiotr Sarnacki2012-08-281-0/+1
| | | | | | | | | | We extend it with self, but the methods were not working properly were used directly on module.
* | Deprecate Template#mime_typePiotr Sarnacki2012-08-281-0/+6
| |
* | Implement ActionView::Template::TypesPiotr Sarnacki2012-08-284-4/+64
| | | | | | | | | | | | AV::Template::Types is a small abstraction to allow to specify template types that can be used in ActionView. When Action Pack is loaded it's replaced with Mime::Type.
* | Don't require action_dispatch in ActionView::UrlHelpersPiotr Sarnacki2012-08-283-98/+124
| | | | | | | | | | | | | | | | | | | | ActionDispatch::Routing::UrlFor was always required in UrlHelpers. This was changed by splitting previous implementation of UrlHelper into 2 modules: ActionView::Helpers::UrlHelper and ActionView::Routing::UrlHelper. The former one keeps only basic implementation of url_for. The latter adds features that allow to use routes and is only required when url_helpers or mounted_helpers are required.
* | Use ActionView::Base.logger instead of AC::Base.loggerPiotr Sarnacki2012-08-281-1/+1
| |
* | Add ActionView::Base.default_formatsPiotr Sarnacki2012-08-282-1/+4
| | | | | | | | | | | | | | | | default_formats array is used by LookupContext in order to allow rendering templates when :formats option is not passed. Previously it was always set to Mime::SET, which created dependency on Action Pack. In order to remove this dependency, Mime::SET is used only if ActionController is loaded.
* | Remove Mime::Type translations from Action ViewPiotr Sarnacki2012-08-284-11/+10
| | | | | | | | | | Action View should not be responsible for translating mime types. Any translation that's needed should be handled at controller level.
* | Deprecate mime types lookup in auto_discovery_link_tagPiotr Sarnacki2012-08-281-0/+8
| | | | | | | | | | | | Automatically handling mime types for things other than :rss and :atom is not functionality that justifies dependency on Mime::Type from actionpack.