diff options
author | Ralph Amissah <ralph@amissah.com> | 2011-03-24 20:07:41 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2011-03-24 20:08:20 -0400 |
commit | e5d3440be5a3925ec932df1a32c6b6e48f6e9b5b (patch) | |
tree | 0e332a7b7d535089b5dbfc994c4f4dd623c07036 /lib | |
parent | v3, v2: bin/sisu*: v3 development ruby >=1.9.2p180; v2 maintenance ruby >=1.8.7 (diff) |
v2, v3: texpdf bugfix, where map_nametags not found, drop tag, rather than crashsisu_3.0.5
* Debian-live, live-manual (Ben Armstrong, chals?, reported new bug in a
number of translations (that crashed the pdf generator). It turns out
where map_nametags is not found the document crashes. Fix.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sisu/v2/texpdf_format.rb | 2 | ||||
-rw-r--r-- | lib/sisu/v3/texpdf_format.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/sisu/v2/texpdf_format.rb b/lib/sisu/v2/texpdf_format.rb index dbf0d095..b2dd0e32 100644 --- a/lib/sisu/v2/texpdf_format.rb +++ b/lib/sisu/v2/texpdf_format.rb @@ -419,7 +419,7 @@ module SiSU_TeX_Pdf map_nametags[url][:ocn] else nil end - ocn_lnk=(url=~/^\d+$/ ? url : (map_nametags[url][:ocn])) + ocn_lnk=(url=~/^\d+$/ ? url : ocn_lnk) if ocn_lnk and not ocn_lnk.empty? idx \ ? (str.sub!(rgx_url_internal,"\\hyperlink{#{ocn_lnk}}{#{link}}")) \ diff --git a/lib/sisu/v3/texpdf_format.rb b/lib/sisu/v3/texpdf_format.rb index a91095e8..b235e1fc 100644 --- a/lib/sisu/v3/texpdf_format.rb +++ b/lib/sisu/v3/texpdf_format.rb @@ -421,7 +421,7 @@ module SiSU_TeX_Pdf map_nametags[url][:ocn] else nil end - ocn_lnk=(url=~/^\d+$/ ? url : (map_nametags[url][:ocn])) + ocn_lnk=(url=~/^\d+$/ ? url : ocn_lnk) if ocn_lnk and not ocn_lnk.empty? idx \ ? (str.sub!(rgx_url_internal,"\\hyperlink{#{ocn_lnk}}{#{link}}")) \ |