2004-11-23 20:04:44 -05:00
|
|
|
#--
|
2011-12-31 15:27:47 -05:00
|
|
|
# Copyright (c) 2004-2012 David Heinemeier Hansson
|
2004-11-23 20:04:44 -05: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.
|
|
|
|
#++
|
|
|
|
|
2009-12-20 17:06:40 -05:00
|
|
|
require 'active_support/ruby/shim'
|
2009-12-16 12:56:51 -05:00
|
|
|
require 'active_support/core_ext/class/attribute_accessors'
|
|
|
|
|
|
|
|
require 'action_pack'
|
2009-01-22 17:18:10 -05:00
|
|
|
|
2008-11-23 14:42:07 -05:00
|
|
|
module ActionView
|
2009-12-02 23:01:01 -05:00
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
eager_autoload do
|
2011-06-21 09:58:27 -04:00
|
|
|
autoload :AssetPaths
|
2010-10-14 03:32:53 -04:00
|
|
|
autoload :Base
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Context
|
2011-11-29 04:17:25 -05:00
|
|
|
autoload :CompiledTemplates, "action_view/context"
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Helpers
|
2010-08-05 05:17:09 -04:00
|
|
|
autoload :LookupContext
|
2010-10-14 03:32:53 -04:00
|
|
|
autoload :PathSet
|
|
|
|
autoload :Template
|
|
|
|
autoload :TestCase
|
2009-12-22 18:27:37 -05:00
|
|
|
|
2010-10-10 05:03:18 -04:00
|
|
|
autoload_under "renderer" do
|
2011-05-01 04:33:30 -04:00
|
|
|
autoload :Renderer
|
2010-10-10 05:03:18 -04:00
|
|
|
autoload :AbstractRenderer
|
|
|
|
autoload :PartialRenderer
|
|
|
|
autoload :TemplateRenderer
|
2011-04-16 04:28:47 -04:00
|
|
|
autoload :StreamingTemplateRenderer
|
2010-10-10 05:03:18 -04:00
|
|
|
end
|
|
|
|
|
2010-08-05 05:17:09 -04:00
|
|
|
autoload_at "action_view/template/resolver" do
|
|
|
|
autoload :Resolver
|
|
|
|
autoload :PathResolver
|
|
|
|
autoload :FileSystemResolver
|
2011-05-09 09:10:19 -04:00
|
|
|
autoload :OptimizedFileSystemResolver
|
2010-10-10 17:11:50 -04:00
|
|
|
autoload :FallbackFileSystemResolver
|
2010-08-05 05:17:09 -04:00
|
|
|
end
|
2009-12-22 18:27:37 -05:00
|
|
|
|
2011-04-16 04:28:47 -04:00
|
|
|
autoload_at "action_view/buffers" do
|
|
|
|
autoload :OutputBuffer
|
|
|
|
autoload :StreamingBuffer
|
|
|
|
end
|
|
|
|
|
|
|
|
autoload_at "action_view/flows" do
|
|
|
|
autoload :OutputFlow
|
|
|
|
autoload :StreamingFlow
|
|
|
|
end
|
|
|
|
|
2010-08-05 05:17:09 -04:00
|
|
|
autoload_at "action_view/template/error" do
|
|
|
|
autoload :MissingTemplate
|
|
|
|
autoload :ActionViewError
|
|
|
|
autoload :EncodingError
|
|
|
|
autoload :TemplateError
|
|
|
|
autoload :WrongEncodingError
|
|
|
|
end
|
2008-11-23 14:42:07 -05:00
|
|
|
end
|
2010-01-04 16:59:23 -05:00
|
|
|
|
2010-05-17 11:41:54 -04:00
|
|
|
ENCODING_FLAG = '#.*coding[:=]\s*(\S+)[ \t]*'
|
2008-11-23 14:42:07 -05:00
|
|
|
end
|
2008-01-21 15:45:04 -05:00
|
|
|
|
2010-03-10 16:11:48 -05:00
|
|
|
require 'active_support/i18n'
|
For performance reasons, you can no longer call html_safe! on Strings. Instead, all Strings are always not html_safe?. Instead, you can get a SafeBuffer from a String by calling #html_safe, which will SafeBuffer.new(self).
* Additionally, instead of doing concat("</form>".html_safe), you can do
safe_concat("</form>"), which will skip both the flag set, and the flag
check.
* For the first pass, I converted virtually all #html_safe!s to #html_safe,
and the tests pass. A further optimization would be to try to use
#safe_concat as much as possible, reducing the performance impact if
we know up front that a String is safe.
2010-01-31 22:17:42 -05:00
|
|
|
require 'active_support/core_ext/string/output_safety'
|
2009-10-07 16:31:20 -04:00
|
|
|
|
2008-11-18 03:59:46 -05:00
|
|
|
I18n.load_path << "#{File.dirname(__FILE__)}/action_view/locale/en.yml"
|