summaryrefslogtreecommitdiffstats
path: root/vendor
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-03-30 03:27:09 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-03-30 03:27:09 +0000
commit000cf8fa9e5be11063fd8b87dae19ff4bb4d00f9 (patch)
tree70cb075c9d5fb16809669377ceca3a94be943a2c /vendor
parentb9b2f2454065a561d89374ed4a6e68d2b3ae6e2a (diff)
downloadredmine-000cf8fa9e5be11063fd8b87dae19ff4bb4d00f9.tar.gz
redmine-000cf8fa9e5be11063fd8b87dae19ff4bb4d00f9.zip
PDF: transplant r3389 (#61).
Korean support for PDF export (#4639). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5251 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'vendor')
-rw-r--r--vendor/plugins/rfpdf/lib/fpdf/korean.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/vendor/plugins/rfpdf/lib/fpdf/korean.rb b/vendor/plugins/rfpdf/lib/fpdf/korean.rb
index 64131405e..2b1f6de6c 100644
--- a/vendor/plugins/rfpdf/lib/fpdf/korean.rb
+++ b/vendor/plugins/rfpdf/lib/fpdf/korean.rb
@@ -139,13 +139,13 @@ UHC_widths={' ' => 333, '!' => 416, '"' => 416, '#' => 833, '$' => 625, '%' => 9
b2='LR'
else
b2=''
- if(border.index('L').nil?)
+ if(border.to_s.index('L').nil?)
b2+='L'
end
- if(border.index('R').nil?)
+ if(border.to_s.index('R').nil?)
b2+='R'
end
- b=border.index('T').nil? ? b2+'T' : b2
+ b=border.to_s.index('T').nil? ? b2+'T' : b2
end
end
sep=-1
@@ -178,7 +178,7 @@ UHC_widths={' ' => 333, '!' => 416, '"' => 416, '#' => 833, '$' => 625, '%' => 9
sep=i
ls=l
end
- l+=ascii ? cw[c.chr] : 1000
+ l+=(ascii ? cw[c.chr] : 1000) || 0
if(l>wmax)
#Automatic line break
if(sep==-1 or i==j)
@@ -202,7 +202,7 @@ UHC_widths={' ' => 333, '!' => 416, '"' => 416, '#' => 833, '$' => 625, '%' => 9
end
end
#Last chunk
- if(border and not border.index('B').nil?)
+ if(border and not border.to_s.index('B').nil?)
b+='B'
end
Cell(w,h,s[j,i-j],b,2,align,fill)