diff options
author | Ralph Amissah <ralph@amissah.com> | 2011-12-13 22:08:17 -0500 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2011-12-13 22:08:36 -0500 |
commit | b77338f9a9cc17af78819cb19e6e5e1b89f5e734 (patch) | |
tree | 4f90835ee9126895a88910a5487243c949530658 /lib | |
parent | v3: odf:odt, codeblocks, a match fix, affects e.g. "<<" (diff) |
v3: texpdf, output_by: filetype, fix, language code part of filename, fixsisu_3.1.8
* files previously given same name and written over
* [reported by chals (live-manual) on irc oftc #sisu]
* [output_by language and filename ok]
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sisu/v3/sysenv.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/sisu/v3/sysenv.rb b/lib/sisu/v3/sysenv.rb index 953c8eec..98a58f72 100644 --- a/lib/sisu/v3/sysenv.rb +++ b/lib/sisu/v3/sysenv.rb @@ -3818,15 +3818,13 @@ WOK end end def pdf_p - if @env.output_dir_structure.by_language_code? \ - or @env.output_dir_structure.by_filetype? + if @env.output_dir_structure.by_language_code? @md.fnb + '.portrait.' else 'portrait' + @md.lang_code_insert + '.' end end def pdf_l - if @env.output_dir_structure.by_language_code? \ - or @env.output_dir_structure.by_filetype? + if @env.output_dir_structure.by_language_code? @md.fnb + '.landscape.' else 'landscape' + @md.lang_code_insert + '.' end |