mirror of
https://github.com/meineerde/redmine.git
synced 2026-01-15 20:02:54 +00:00
https://github.com/edwinmoss/rfpdf revision a04724b4af95c15a99675b34e353c15534d20411 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5247 e93f8b46-1217-0410-a6f0-8f06a7374b81
13 lines
203 B
Ruby
13 lines
203 B
Ruby
module RFPDF
|
|
module TemplateHandlers
|
|
class Base < ::ActionView::TemplateHandlers::ERB
|
|
|
|
def compile(template)
|
|
src = "_rfpdf_compile_setup;" + super
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|