##// END OF EJS Templates
code clean up lib/redmine/export/pdf.rb....
Toshi MARUYAMA -
r5215:91e4d7d29878
parent child
Show More
@@ -202,7 +202,7 module Redmine
202 end
202 end
203
203
204 # title
204 # title
205 pdf.SetFontStyle('B',11)
205 pdf.SetFontStyle('B',11)
206 pdf.RDMCell(190,10, title)
206 pdf.RDMCell(190,10, title)
207 pdf.Ln
207 pdf.Ln
208
208
@@ -271,7 +271,7 module Redmine
271 pdf.footer_date = format_date(Date.today)
271 pdf.footer_date = format_date(Date.today)
272 pdf.AddPage
272 pdf.AddPage
273
273
274 pdf.SetFontStyle('B',11)
274 pdf.SetFontStyle('B',11)
275 pdf.RDMCell(190,10,
275 pdf.RDMCell(190,10,
276 "#{issue.project} - #{issue.tracker} # #{issue.id}: #{issue.subject}")
276 "#{issue.project} - #{issue.tracker} # #{issue.id}: #{issue.subject}")
277 pdf.Ln
277 pdf.Ln
@@ -285,7 +285,7 module Redmine
285 pdf.SetFontStyle('B',9)
285 pdf.SetFontStyle('B',9)
286 pdf.RDMCell(35,5, l(:field_priority) + ":","LT")
286 pdf.RDMCell(35,5, l(:field_priority) + ":","LT")
287 pdf.SetFontStyle('',9)
287 pdf.SetFontStyle('',9)
288 pdf.RDMCell(60,5, issue.priority.to_s,"RT")
288 pdf.RDMCell(60,5, issue.priority.to_s,"RT")
289 pdf.Ln
289 pdf.Ln
290
290
291 pdf.SetFontStyle('B',9)
291 pdf.SetFontStyle('B',9)
General Comments 0
You need to be logged in to leave comments. Login now