ЖЕЛЕЗНОДОРОЖНЫЕ ПЕРЕХОДНЫЕ ВИДЫ Рендеризация - PullRequest
0 голосов
/ 06 декабря 2010

Я хочу переопределить, как rails создает представление * .html.erb

В пакете ActionView я уже пытался это сделать. Делать это

class ERB
  class Compiler # :nodoc:
..
 class Buffer # :nodoc:
  def compile(s)
   ...
   #It stores in a buffer each ruby chunk in the views inside of a Buffer.
  end
 end
   end
...
 # Here it is where is called compile method. 
 # The thing is that if my view is made up of several *.html.erb files such as partials this method will be invoked each time.        
        #INVOKED PER EACH html.erb file

 def initialize(str, safe_level=nil, trim_mode=nil, eoutvar='_erbout')
     puts ">>> initialize"    
     @safe_level = safe_level
    # ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.update(:default => "%d %b %Y")
     compiler = ERB::Compiler.new(trim_mode)
    # raise "need a block" 
    # ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.update(:default => nil)
     set_eoutvar(compiler, eoutvar)
     @src = compiler.compile(str)  
     @filename = nil
   end
 end
end

Я бы хотел узнать, когда начнется процесс внизу. Я имею в виду, какой класс, файл и т. Д. Мне нужно переопределить, чтобы увидеть, где Rails начинает вызывать все html.erb для конкретного представления.

Я думаю, что я должен быть здесь:

require 'delegate'
require 'optparse'
require 'fileutils'
require 'tempfile'
require 'erb'

module Rails
  module Generator
    module Commands

        class Create 

              # Generate a file for a Rails application using an ERuby template.
              # Looks up and evaluates a template by name and writes the result.
              #
              # The ERB template uses explicit trim mode to best control the
              # proliferation of whitespace in generated code.  <%- trims leading
              # whitespace; -%> trims trailing whitespace including one newline.
              #
              # A hash of template options may be passed as the last argument.
              # The options accepted by the file are accepted as well as :assigns,
              # a hash of variable bindings.  Example:
              #   template 'foo', 'bar', :assigns => { :action => 'view' }
              #
              # Template is implemented in terms of file.  It calls file with a
              # block which takes a file handle and returns its rendered contents.
              def template(relative_source, relative_destination, template_options = {})
                puts "EEEEEEEEEEEEEEEEEEEEEe"
                file(relative_source, relative_destination, template_options) do |file|
                  # Evaluate any assignments in a temporary, throwaway binding.
                  vars = template_options[:assigns] || {}
                  b = template_options[:binding] || binding
                  vars.each { |k,v| eval "#{k} = vars[:#{k}] || vars['#{k}']", b }

                  # Render the source file with the temporary binding.
                  ERB.new(file.read, nil, '-').result(b)
                end
             end

        end

    end
  end
end

Но я не нахожу никаких следов от метода put.

Все переименования помещаются в файл с именем /lib/*_extensions.erb, а в /config/initializers/extensions.rb у меня есть следующее:

Dir[File.dirname(__FILE__) + "/../../lib/*_extensions.rb"].each do |fn|
  require fn
end

Я не хочу раскрывать, почему я это делаю.

Спасибо

1 Ответ

0 голосов
/ 08 декабря 2010

Я хотел использовать before_render, которого нет по крайней мере в Rails 2.3.4.

Итак, если вы хотите сделать это, я сделал следующее:

    class ApplicationController < ActionController::Base
      helper :all # include all helpers, all the time
      protect_from_forgery # See ActionController::RequestForgeryProtection for details

      # Scrub sensitive parameters from your log
      # filter_parameter_logging :password

      protected
      def render(options = nil, extra_options = {}, &block) #:doc:
        puts "BEFORE render"
        puts "Setting %H:%M:%S"
        ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.merge!(:default => "%H:%M:%S")
        # call the ActionController::Base render to show the page
        super
       puts "AFTER render"
       puts "Resetting"
       ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.merge!(:default => nil)
      end

end
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...