aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2012-06-30 00:43:22 -0400
committerRalph Amissah <ralph@amissah.com>2012-06-30 00:43:22 -0400
commita1a1c16e1fdd1fca76852fa2a4fae9b3e0579fbd (patch)
tree4d542bec674dc3683524c651a614a6e6c4802955
parentv3: 3.3.2 version & changelog "opened" (diff)
v3: texpdf, xetex screen reporting of warnings off unless sisu -pV usedsisu_3.3.2
-rw-r--r--data/doc/sisu/CHANGELOG_v32
-rw-r--r--lib/sisu/v3/sysenv.rb7
2 files changed, 8 insertions, 1 deletions
diff --git a/data/doc/sisu/CHANGELOG_v3 b/data/doc/sisu/CHANGELOG_v3
index 015c1d33..f36f16b1 100644
--- a/data/doc/sisu/CHANGELOG_v3
+++ b/data/doc/sisu/CHANGELOG_v3
@@ -21,6 +21,8 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_3.3.2.orig.tar.xz
sisu_3.3.2-1.dsc
sisu_3.3.2-1.debian.tar.gz
+* v3: texpdf, xetex screen reporting of warnings off unless sisu -pV used
+
%% 3.3.1.orig.tar.xz (2012-06-23:25/6)
http://git.sisudoc.org/?p=code/sisu.git;a=log;h=refs/tags/sisu_3.3.1
http://git.sisudoc.org/?p=code/sisu.git;a=log;h=refs/tags/debian/sisu_3.3.1-1
diff --git a/lib/sisu/v3/sysenv.rb b/lib/sisu/v3/sysenv.rb
index ee881e43..23326b40 100644
--- a/lib/sisu/v3/sysenv.rb
+++ b/lib/sisu/v3/sysenv.rb
@@ -781,7 +781,12 @@ module SiSU_Env
@texpdf
end
def latex2pdf(md,papersize='a4') #convert from latex to pdf
- tell=((@cmd =~/[MVv]/) ? '' : '> /dev/null' )
+ tell=if @cmd =~/[MV]/
+ ''
+ elsif @cmd =~/[v]/
+ %q{2>&1 | grep -v ' WARNING '}
+ else %q{2>&1 | grep -v '$'}
+ end
mode='batchmode' #mode='nonstopmode'
program_ref="\n\t\tSee http://www.tug.org/applications/pdftex/\n\t\tOn Debian this is is included in tetex-extra"
texpdf=tex2pdf_engine