[xml/sgml-commit] r1308 - in /packages/xmlto/trunk/debian: changelog patches/499200_cannot_parse_XSLTPARAMS.dpatch

dleidert-guest at users.alioth.debian.org dleidert-guest at users.alioth.debian.org
Sun Jan 25 17:41:28 UTC 2009


Author: dleidert-guest
Date: Sun Jan 25 17:41:27 2009
New Revision: 1308

URL: http://svn.debian.org/wsvn/debian-xml-sgml/?sc=1&rev=1308
Log:
* debian/patches/499200_cannot_parse_XSLTPARAMS.dpatch: Adjusted.
  - xmlto.in: The value of a given (string)param=value pair was not
    parsed correctly due to a missing curly brace (closes: #513011).
    Thanks to Max Kellermann.

Modified:
    packages/xmlto/trunk/debian/changelog
    packages/xmlto/trunk/debian/patches/499200_cannot_parse_XSLTPARAMS.dpatch

Modified: packages/xmlto/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/xmlto/trunk/debian/changelog?rev=1308&op=diff
==============================================================================
--- packages/xmlto/trunk/debian/changelog (original)
+++ packages/xmlto/trunk/debian/changelog Sun Jan 25 17:41:27 2009
@@ -1,6 +1,10 @@
 xmlto (0.0.20-4) UNRELEASED; urgency=low
 
   * NOT RELEASED YET
+  * debian/patches/499200_cannot_parse_XSLTPARAMS.dpatch: Adjusted.
+    - xmlto.in: The value of a given (string)param=value pair was not
+      parsed correctly due to a missing curly brace (closes: #513011).
+      Thanks to Max Kellermann.
 
  -- Daniel Leidert (dale) <daniel.leidert at wgdd.de>  Thu, 09 Oct 2008 11:53:49 +0200
 

Modified: packages/xmlto/trunk/debian/patches/499200_cannot_parse_XSLTPARAMS.dpatch
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/xmlto/trunk/debian/patches/499200_cannot_parse_XSLTPARAMS.dpatch?rev=1308&op=diff
==============================================================================
--- packages/xmlto/trunk/debian/patches/499200_cannot_parse_XSLTPARAMS.dpatch (original)
+++ packages/xmlto/trunk/debian/patches/499200_cannot_parse_XSLTPARAMS.dpatch Sun Jan 25 17:41:27 2009
@@ -6,12 +6,16 @@
 ## DP:   'warning: failed to load external entity "XSLTPARAMS" [..]'. The patch
 ## DP:   has been suggested by Zed Pobre.
 ## DP:
+## DP: * xmlto.in: Using the --stringparam option failes because of a missing
+## DP:   opening brace. Thanks to Max Kellermann.
+## DP:
 ## DP: <URL:http://bugs.debian.org/499200>
+## DP: <URL:http://bugs.debian.org/513011>
 
 @DPATCH@
 diff -urNad trunk~/xmlto.in trunk/xmlto.in
---- trunk~/xmlto.in	2008-10-09 10:47:10.000000000 +0200
-+++ trunk/xmlto.in	2008-10-09 10:48:23.000000000 +0200
+--- trunk~/xmlto.in	2009-01-25 18:34:09.000000000 +0100
++++ trunk/xmlto.in	2009-01-25 18:34:28.000000000 +0100
 @@ -272,8 +272,8 @@
  	;;
    --stringparam)
@@ -19,7 +23,7 @@
 -	XSLTPARAMS="XSLTPARAMS --stringparam ${MYPARAM%=*}"
 -	XSLTPARAMS="XSLTPARAMS $MYPARAM#*=}"
 +	XSLTPARAMS="$XSLTPARAMS --stringparam ${MYPARAM%=*}"
-+	XSLTPARAMS="$XSLTPARAMS $MYPARAM#*=}"
++	XSLTPARAMS="$XSLTPARAMS ${MYPARAM#*=}"
  	shift 2
  	;;
    --noclean)




More information about the debian-xml-sgml-commit mailing list