Sha256: d4e6c79b62d592391d5c2570a890dfe18ab72ffa4cf288f5aae09d92364bf4b8

Contents?: true

Size: 1.81 KB

Versions: 69

Compression:

Stored size: 1.81 KB

Contents

module ActionView #:nodoc:
  module TemplateHandlers #:nodoc:
    autoload :ERB, 'action_view/template_handlers/erb'
    autoload :RJS, 'action_view/template_handlers/rjs'
    autoload :Builder, 'action_view/template_handlers/builder'

    def self.extended(base)
      base.register_default_template_handler :erb, TemplateHandlers::ERB
      base.register_template_handler :rjs, TemplateHandlers::RJS
      base.register_template_handler :builder, TemplateHandlers::Builder

      # TODO: Depreciate old template extensions
      base.register_template_handler :rhtml, TemplateHandlers::ERB
      base.register_template_handler :rxml, TemplateHandlers::Builder
    end

    @@template_handlers = {}
    @@default_template_handlers = nil

    # Register a class that knows how to handle template files with the given
    # extension. This can be used to implement new template types.
    # The constructor for the class must take the ActiveView::Base instance
    # as a parameter, and the class must implement a +render+ method that
    # takes the contents of the template to render as well as the Hash of
    # local assigns available to the template. The +render+ method ought to
    # return the rendered template as a string.
    def register_template_handler(extension, klass)
      @@template_handlers[extension.to_sym] = klass
    end

    def template_handler_extensions
      @@template_handlers.keys.map(&:to_s).sort
    end

    def registered_template_handler(extension)
      extension && @@template_handlers[extension.to_sym]
    end

    def register_default_template_handler(extension, klass)
      register_template_handler(extension, klass)
      @@default_template_handlers = klass
    end

    def handler_class_for_extension(extension)
      registered_template_handler(extension) || @@default_template_handlers
    end
  end
end

Version data entries

69 entries across 68 versions & 14 rubygems

Version Path
actionpack-2.3.18 lib/action_view/template_handlers.rb
actionpack_csi-2.3.5.p8 lib/action_view/template_handlers.rb
actionpack-2.3.17-rack-upgrade-2.3.17 lib/action_view/template_handlers.rb
actionpack-2.3.17 lib/action_view/template_handlers.rb
actionpack_csi-2.3.5.p7 lib/action_view/template_handlers.rb
actionpack_csi-2.3.5.p6 lib/action_view/template_handlers.rb
actionpack-2.3.16 lib/action_view/template_handlers.rb
actionpack-rack-upgrade-2-2.3.16 lib/action_view/template_handlers.rb
actionpack-rack-upgrade-2-2.3.15 lib/action_view/template_handlers.rb
actionpack-2.3.15 lib/action_view/template_handlers.rb
actionpack-rack-upgrade-2.3.16 lib/action_view/template_handlers.rb
actionpack-rack-upgrade-2.3.15 lib/action_view/template_handlers.rb
actionpack-rack-upgrade-2.3.14 lib/action_view/template_handlers.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/actionpack-2.3.14/lib/action_view/template_handlers.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/actionpack-2.3.12/lib/action_view/template_handlers.rb
actionpack-2.3.14 lib/action_view/template_handlers.rb
kajam-1.0.3.rc2 vendor/rails/actionpack/lib/action_view/template_handlers.rb
actionpack-2.3.12 lib/action_view/template_handlers.rb
radiant-1.0.0.rc2 vendor/rails/actionpack/lib/action_view/template_handlers.rb
radiant-1.0.0.rc1 vendor/rails/actionpack/lib/action_view/template_handlers.rb