diff options
author | Simon McVittie <smcv@debian.org> | 2015-06-13 20:00:08 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2015-06-13 20:00:08 +0100 |
commit | 7a2117bf8c2cf5372e64ab7b368803eec7e6f5d7 (patch) | |
tree | 7b1679110dcc581c62dda475a7a98ccd3ab0f7b0 /debian | |
parent | f2365c3e660fe0b00a051ce893cdcad0016e560e (diff) | |
download | ikiwiki-7a2117bf8c2cf5372e64ab7b368803eec7e6f5d7.tar ikiwiki-7a2117bf8c2cf5372e64ab7b368803eec7e6f5d7.tar.gz |
img: stop ImageMagick trying to be clever if filenames contain a colon
$im->Read() takes a filename-like argument with several sets of special
syntax. Most of the possible metacharacters are escaped by the
default `wiki_file_chars` (and in any case not particularly disruptive),
but the colon ":" is not.
It seems the way to force ImageMagick to treat colons within the
filename as literal is to prepend a colon, so do that.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index d29819f97..2b79e51ab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ ikiwiki (3.20150611) UNRELEASED; urgency=medium * inline: change default sort order from age to "age title" for determinism + * img: avoid ImageMagick misinterpreting filenames containing a colon -- Simon McVittie <smcv@debian.org> Thu, 11 Jun 2015 08:32:35 +0100 |