diff options
-rw-r--r-- | IkiWiki.pm | 2 | ||||
-rw-r--r-- | debian/changelog | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 6747a3ba4..a81e34c3d 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -1597,6 +1597,8 @@ sub rcs_receive () { } sub globlist_to_pagespec ($) { + print STDERR "warning: deprecated GlobList style PageSpec \"$_[0]\" will stop working in ikiwiki version 3.0\n"; + my @globlist=split(' ', shift); my (@spec, @skip); diff --git a/debian/changelog b/debian/changelog index ce3949436..2c8931735 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ ikiwiki (2.72) UNRELEASED; urgency=low * Avoid comments in recentchanges being broken links (smcv) + * Add deprecation warning for GlobLists, which will stop working in 3.0. -- Joey Hess <joeyh@debian.org> Mon, 22 Dec 2008 19:02:16 -0500 |