From 22a22000bfbfe874f59001f800ff5ae10dbec0f4 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Sat, 23 Jun 2012 20:17:08 -0400 Subject: sha256 (3.3.1) --- data/doc/sisu/CHANGELOG_v3 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/doc/sisu/CHANGELOG_v3 b/data/doc/sisu/CHANGELOG_v3 index d86a7fbf..4babee97 100644 --- a/data/doc/sisu/CHANGELOG_v3 +++ b/data/doc/sisu/CHANGELOG_v3 @@ -17,9 +17,9 @@ v3 branch once stable will supersede & replace current stable v2 branch 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 http://www.jus.uio.no/sisu/pkg/src/sisu_3.3.1.orig.tar.xz - sisu_3.3.1.orig.tar.xz - sisu_3.3.1-1.dsc - sisu_3.3.1-1.debian.tar.gz + 96cde8f54b01789d335d34790900f5921db1c661fe31ae8c614e478c0fd0ad9c 1690476 sisu_3.3.1.orig.tar.xz + d4f174fadef8a30d8efe6c76e0f543603037587eb3c25005fa1c63bd0b7cf3f5 1382 sisu_3.3.1-1.dsc + 0f98f13f63c0a50af32a1eef06f772edcf3545b931d8fd82acde52091182b476 297413 sisu_3.3.1-1.debian.tar.gz * v3: texpdf_format, urls in headings break pdf documents, fix (e.g. output generation of document sample gpl.fsf.sst pdf fixed) -- cgit v1.2.3 From 6c8cd3343a9225711ff81bbf349252dd3231dc25 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Sat, 30 Jun 2012 00:41:05 -0400 Subject: v3: 3.3.2 version & changelog "opened" --- data/doc/sisu/CHANGELOG_v3 | 8 ++++++++ data/sisu/v3/v/version.yml | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/data/doc/sisu/CHANGELOG_v3 b/data/doc/sisu/CHANGELOG_v3 index 4babee97..015c1d33 100644 --- a/data/doc/sisu/CHANGELOG_v3 +++ b/data/doc/sisu/CHANGELOG_v3 @@ -13,6 +13,14 @@ Reverse Chronological: %% Development branch UNSTABLE v3 branch once stable will supersede & replace current stable v2 branch +%% 3.3.2.orig.tar.xz (2012-06-30:26/6) +http://git.sisudoc.org/?p=code/sisu.git;a=log;h=refs/tags/sisu_3.3.2 +http://git.sisudoc.org/?p=code/sisu.git;a=log;h=refs/tags/debian/sisu_3.3.2-1 +http://www.jus.uio.no/sisu/pkg/src/sisu_3.3.2.orig.tar.xz + sisu_3.3.2.orig.tar.xz + sisu_3.3.2-1.dsc + sisu_3.3.2-1.debian.tar.gz + %% 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/data/sisu/v3/v/version.yml b/data/sisu/v3/v/version.yml index 8fd6aa7a..19d0ec65 100644 --- a/data/sisu/v3/v/version.yml +++ b/data/sisu/v3/v/version.yml @@ -1,5 +1,5 @@ --- -:version: 3.3.1 -:date_stamp: 2012w25/6 -:date: "2012-06-23" +:version: 3.3.2 +:date_stamp: 2012w26/6 +:date: "2012-06-30" :project: SiSU -- cgit v1.2.3 From a1a1c16e1fdd1fca76852fa2a4fae9b3e0579fbd Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Sat, 30 Jun 2012 00:43:22 -0400 Subject: v3: texpdf, xetex screen reporting of warnings off unless sisu -pV used --- data/doc/sisu/CHANGELOG_v3 | 2 ++ lib/sisu/v3/sysenv.rb | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3