2017-07-23 11:36:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2012-05-31 12:21:56 -04:00
|
|
|
#--
|
2022-01-01 01:22:15 -05:00
|
|
|
# Copyright (c) 2004-2022 David Heinemeier Hansson
|
2012-05-31 12:21:56 -04:00
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
# a copy of this software and associated documentation files (the
|
|
|
|
# "Software"), to deal in the Software without restriction, including
|
|
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
# the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
#++
|
|
|
|
|
2016-08-06 12:48:35 -04:00
|
|
|
require "active_support"
|
|
|
|
require "active_support/rails"
|
2017-10-21 09:21:02 -04:00
|
|
|
require "action_view/version"
|
2013-05-04 09:09:22 -04:00
|
|
|
|
|
|
|
module ActionView
|
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
2014-01-31 15:00:54 -05:00
|
|
|
ENCODING_FLAG = '#.*coding[:=]\s*(\S+)[ \t]*'
|
|
|
|
|
2013-05-04 09:09:22 -04:00
|
|
|
eager_autoload do
|
|
|
|
autoload :Base
|
|
|
|
autoload :Context
|
|
|
|
autoload :Digestor
|
|
|
|
autoload :Helpers
|
|
|
|
autoload :LookupContext
|
2013-06-27 08:44:29 -04:00
|
|
|
autoload :Layouts
|
2013-05-04 09:09:22 -04:00
|
|
|
autoload :PathSet
|
|
|
|
autoload :RecordIdentifier
|
2013-06-26 07:40:46 -04:00
|
|
|
autoload :Rendering
|
2013-05-04 09:09:22 -04:00
|
|
|
autoload :RoutingUrlFor
|
|
|
|
autoload :Template
|
2021-05-11 19:32:02 -04:00
|
|
|
autoload :TemplateDetails
|
2021-04-28 18:28:46 -04:00
|
|
|
autoload :TemplatePath
|
De-dup Templates, introduce UnboundTemplate
Previously it's possible to have multiple copies of the "same" Template.
For example, if index.html.erb is found both the :en and :fr locale, it
will return a different Template object for each. The same can happen
with formats, variants, and handlers.
This commit de-duplicates templates, there will now only be one template
per file/virtual_path/locals tuple.
We need to consider virtual_path because both `render "index"`, and
`render "index.html"` can both find the same file but will have
different virtual_paths. IMO this is rare and should be
deprecated/removed, but it exists now so we need to consider it in order
to cache correctly.
This commit introduces a new UnboundTemplate class, which represents a
template with unknown locals. Template objects can be built from it by
using `#with_locals`. Currently, this is just a convenience around
caching templates, but I hope it's a helpful concept that could have
more utility in the future.
2019-04-11 20:14:16 -04:00
|
|
|
autoload :UnboundTemplate
|
2013-06-25 08:58:29 -04:00
|
|
|
autoload :ViewPaths
|
2013-05-04 09:09:22 -04:00
|
|
|
|
|
|
|
autoload_under "renderer" do
|
|
|
|
autoload :Renderer
|
|
|
|
autoload :AbstractRenderer
|
|
|
|
autoload :PartialRenderer
|
2020-02-27 15:55:04 -05:00
|
|
|
autoload :CollectionRenderer
|
|
|
|
autoload :ObjectRenderer
|
2013-05-04 09:09:22 -04:00
|
|
|
autoload :TemplateRenderer
|
|
|
|
autoload :StreamingTemplateRenderer
|
|
|
|
end
|
|
|
|
|
|
|
|
autoload_at "action_view/template/resolver" do
|
|
|
|
autoload :Resolver
|
2019-12-18 11:23:50 -05:00
|
|
|
autoload :FileSystemResolver
|
2013-05-04 09:09:22 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
autoload_at "action_view/buffers" do
|
|
|
|
autoload :OutputBuffer
|
|
|
|
autoload :StreamingBuffer
|
|
|
|
end
|
|
|
|
|
|
|
|
autoload_at "action_view/flows" do
|
|
|
|
autoload :OutputFlow
|
|
|
|
autoload :StreamingFlow
|
|
|
|
end
|
|
|
|
|
|
|
|
autoload_at "action_view/template/error" do
|
|
|
|
autoload :MissingTemplate
|
|
|
|
autoload :ActionViewError
|
|
|
|
autoload :EncodingError
|
|
|
|
autoload :TemplateError
|
2019-06-19 13:42:52 -04:00
|
|
|
autoload :SyntaxErrorInTemplate
|
2013-05-04 09:09:22 -04:00
|
|
|
autoload :WrongEncodingError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-01 15:22:57 -04:00
|
|
|
autoload :CacheExpiry
|
2013-05-04 09:09:22 -04:00
|
|
|
autoload :TestCase
|
|
|
|
|
|
|
|
def self.eager_load!
|
|
|
|
super
|
2013-12-02 17:25:20 -05:00
|
|
|
ActionView::Helpers.eager_load!
|
2013-05-04 09:09:22 -04:00
|
|
|
ActionView::Template.eager_load!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-06 12:48:35 -04:00
|
|
|
require "active_support/core_ext/string/output_safety"
|
2013-05-04 09:09:22 -04:00
|
|
|
|
|
|
|
ActiveSupport.on_load(:i18n) do
|
2017-05-15 10:17:28 -04:00
|
|
|
I18n.load_path << File.expand_path("action_view/locale/en.yml", __dir__)
|
2013-05-04 09:09:22 -04:00
|
|
|
end
|