6a875eb691
csv and pdf encoding are know defined for each language (general_csv_encoding and general_pdf_encoding keys in lang files) added SJIS font for japanese pdf exports git-svn-id: http://redmine.rubyforge.org/svn/trunk@287 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
306 B
Plaintext
10 lines
306 B
Plaintext
<% pdf=IfpdfHelper::IFPDF.new(current_language)
|
|
pdf.SetTitle("#{@project.name} - ##{@issue.tracker.name} #{@issue.id}")
|
|
pdf.AliasNbPages
|
|
pdf.footer_date = format_date(Date.today)
|
|
pdf.AddPage
|
|
|
|
render :partial => 'issues/pdf', :locals => { :pdf => pdf, :issue => @issue }
|
|
%>
|
|
|
|
<%= pdf.Output %> |