From b128bdcf7b15865aaae49635a1dcbcaca07fc6ef Mon Sep 17 00:00:00 2001 From: Ondrej Vasik Date: Nov 18 2015 08:52:51 +0000 Subject: do not detect links browser as elinks, update version git-svn-id: https://svn.fedorahosted.org/svn/xmlto@85 eb1b79c1-ba03-4820-82f3-b60cf523859b --- diff --git a/ChangeLog b/ChangeLog index 008ddc2..f81f317 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2915-11-18 Ondrej Vasik + * xmlto.in: fix broken temp files removal trap + * configure.in: do not detect links as elinks browser + as they are not compatible in recent versions + 2015-11-10 Justin Turney * xmlto.in: add new option --profile for preprocessing documents with profiling stylesheet diff --git a/NEWS b/NEWS index 8b29f3f..884bd41 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ Xmlto news ---------- +0.0.28 (stable) + - fix broken temp files removal (introduced in 0.0.27) + - links detection changed to elinks (new links options + not compatible) + + 0.0.27 (stable) - remove several bashisms from scripts - add new option --profile for preprocessing documents diff --git a/configure.in b/configure.in index 8970d16..8352663 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -AC_INIT(xmlto, 0.0.27) +AC_INIT(xmlto, 0.0.28) AC_CONFIG_SRCDIR(xmlto.spec.in) AM_INIT_AUTOMAKE([dist-bzip2 subdir-objects 1.6]) AC_CONFIG_HEADERS(config.h) @@ -100,8 +100,8 @@ dnl AC_ARG_VAR([LYNX], [Name and path of the `lynx' browser.]) AC_PATH_PROG([LYNX], [lynx], [lynx]) -AC_ARG_VAR([LINKS], [Name and path of the `links/elinks' browser.]) -AC_PATH_PROG([LINKS], [elinks], [elinks], [links]) +AC_ARG_VAR([LINKS], [Name and path of the `elinks' browser.]) +AC_PATH_PROG([LINKS], [elinks], [elinks]) AC_ARG_VAR([W3M], [Name and path of the `w3m' browser.]) AC_PATH_PROG([W3M], [w3m], [w3m]) diff --git a/xmlto.spec.in b/xmlto.spec.in index 3830c73..806ef57 100644 --- a/xmlto.spec.in +++ b/xmlto.spec.in @@ -97,6 +97,11 @@ rm -rf %{buildroot} %{_datadir}/xmlto/format/xhtml1/* %changelog +* Wed Nov 18 2015 Ondrej Vasik +- New version 0.0.28 +- fix broken temp files removal +- do not detect links browser as elinks + * Tue Nov 10 2015 Ondrej Vasik - New version 0.0.27 - remove several bashisms in scripts