mirror of
https://github.com/redmine/redmine.git
synced 2026-03-05 12:01:23 +01:00
rfpdf compatibility with Rails 2.1 fix.
git-svn-id: http://redmine.rubyforge.org/svn/branches/work@1614 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
10
rails-2.1/vendor/plugins/rfpdf/lib/rfpdf/view.rb
vendored
10
rails-2.1/vendor/plugins/rfpdf/lib/rfpdf/view.rb
vendored
@@ -45,6 +45,14 @@ module RFPDF
|
||||
:temp_dir => "#{File.expand_path(RAILS_ROOT)}/tmp"
|
||||
}.merge(@action_view.controller.instance_eval{ @options_for_rfpdf } || {}).with_indifferent_access
|
||||
end
|
||||
|
||||
def self.compilable?
|
||||
false
|
||||
end
|
||||
|
||||
def compilable?
|
||||
self.class.compilable?
|
||||
end
|
||||
|
||||
def render(template, local_assigns = {})
|
||||
@pdf_name = "Default.pdf" if @pdf_name.nil?
|
||||
@@ -66,7 +74,7 @@ module RFPDF
|
||||
local_assigns.each do |key,val|
|
||||
class << self; self; end.send(:define_method,key){ val }
|
||||
end
|
||||
ERB.new(template).result(binding)
|
||||
ERB.new(template.source).result(binding)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user