Rails3.2: pdf: comment out ::ActionView::TemplateHandlers::ERB of rfpdf plugin (#4796)

ActionView::TemplateHandlers is deprecated on Rails3.2
and Redmine cannot boot on Rails3.2.
Redmine does not use this rfpdf plugin feature.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8702 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-01-26 05:15:40 +00:00
parent 6714d69767
commit 09c305d29f
2 changed files with 6 additions and 6 deletions

View File

@ -7,5 +7,5 @@ require('cgi')
require 'rfpdf' require 'rfpdf'
# Mime::Type.register "application/pdf", :pdf # Mime::Type.register "application/pdf", :pdf
ActionView::Template::register_template_handler 'rfpdf', RFPDF::TemplateHandlers::Base # ActionView::Template::register_template_handler 'rfpdf', RFPDF::TemplateHandlers::Base

View File

@ -1,11 +1,11 @@
module RFPDF module RFPDF
module TemplateHandlers module TemplateHandlers
class Base < ::ActionView::TemplateHandlers::ERB # class Base < ::ActionView::TemplateHandlers::ERB
def compile(template) # def compile(template)
src = "_rfpdf_compile_setup;" + super # src = "_rfpdf_compile_setup;" + super
end # end
end # end
end end
end end