]> source.dussan.org Git - redmine.git/commitdiff
PDF: code clean up lib/redmine/export/pdf.rb.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 10 Apr 2011 08:34:31 +0000 (08:34 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 10 Apr 2011 08:34:31 +0000 (08:34 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5384 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/export/pdf.rb

index c3b26a32dded53289471cbf8a68fb0fee0e255b7..3956248810369fbe439c134b463794fc636b9879 100644 (file)
@@ -84,7 +84,7 @@ module Redmine
       class IFPDF < FPDF
         include Redmine::I18n
         attr_accessor :footer_date
-        
+
         def initialize(lang)
           super()
           set_language_if_valid lang
@@ -98,17 +98,17 @@ module Redmine
             extend(PDF_Japanese)
             AddSJISFont()
             @font_for_content = 'SJIS'
-            @font_for_footer = 'SJIS'
+            @font_for_footer  = 'SJIS'
           when 'GB18030'
             extend(PDF_Chinese)
             AddGBFont()
             @font_for_content = 'GB'
-            @font_for_footer = 'GB'
+            @font_for_footer  = 'GB'
           when 'BIG5'
             extend(PDF_Chinese)
             AddBig5Font()
             @font_for_content = 'Big5'
-            @font_for_footer = 'Big5'
+            @font_for_footer  = 'Big5'
           else
             @font_for_content = 'Arial'
             @font_for_footer  = 'Helvetica'
@@ -116,11 +116,11 @@ module Redmine
           SetCreator(Redmine::Info.app_name)
           SetFont(@font_for_content)
         end
-        
+
         def SetFontStyle(style, size)
           SetFont(@font_for_content, style, size)
         end
-        
+
         def SetTitle(txt)
           txt = begin
             utf16txt = Iconv.conv('UTF-16BE', 'UTF-8', txt)