]> sipb.mit.edu Git - ikiwiki.git/blob - debian/changelog
* Fix link() PageSpecs to not just look at the raw link text, but at where
[ikiwiki.git] / debian / changelog
1 ikiwiki (1.48) UNRELEASED; urgency=low
2
3   * Fix link() PageSpecs to not just look at the raw link text, but at where
4     that given link points based on the page doing the linking. Note that this
5     could make such PageSpecs match different things than before, if you
6     relied on the old behavior of them only matching the raw link text.
7   * This required changing the match_* interface, adding a third parameter.
8   * Allow link() PageSpecs to match relative, as is allowed with globs.a
9   * Add postform option to inline plugin.
10   * Add an bug tracker to the softwaresite example.
11
12  -- Joey Hess <joeyh@debian.org>  Wed, 21 Mar 2007 16:58:00 -0400
13
14 ikiwiki (1.47) unstable; urgency=low
15
16   * Fix a security hole that allowed insertion of unsafe content via the meta
17     plugins's support for inserting html link and meta tags. Now such content
18     is passed through the htmlscrubber like everything else.
19   * Unfortunatly, that means that some valid uses of those tags are no longer
20     usable, and special case methods needed to be added for including
21     stylesheets, and for doing openid delegation. If you use either of these
22     in your wiki, it will need to be modified. See the meta plugin docs
23     for details.
24
25  -- Joey Hess <joeyh@debian.org>  Wed, 21 Mar 2007 14:05:00 -0400
26
27 ikiwiki (1.46) unstable; urgency=low
28
29   * Fix a bug with inlined create page links, including Discussion links on
30     blog post pages. The links will now create pages relative to the page that
31     actually contains the link.
32   * French update. Closes: #414597
33   * Fix some broken logic in cgi creation of a subpage when a toplevel page
34     with the same name already exists, and generally simplify the edit code.
35   * Make ikiwiki -verbose -setup with a setup file that enabled syslog logging
36     output the verbose build log to stdout, rather than to the syslog.
37   * Detect the case of two people independently creating the same page at the
38     same time, and let the second person resolve the conflict.
39   * Applied a patch from Michał to make the mercurial backend pass --quiet to
40     hg.
41   * Fix a security hole that allowed a web user to insert arbitrary html in
42     the title of a page due to missing escaping of titles in the meta plugin.
43
44  -- Joey Hess <joeyh@debian.org>  Wed, 21 Mar 2007 01:51:30 -0400
45
46 ikiwiki (1.45) unstable; urgency=low
47
48   * Allow for underscores to appear in page titles, if encoded appropriately
49     (__95__) in filenames. Previously, all underscores were replaced with
50     spaces. Thanks, Enrico Zini for noticing that bug.
51   * Add "template" option to inline plugin to allow for use of customised
52     templates.
53   * Add titlepage template for inline plugin.
54   * Add preview parameter to preprocesser calls, use this rather than the
55     previous ugly hack used to avoid writing rss feeds in previews.
56   * Fix the img plugin to avoid overwriting images in previews. Instead it
57     does all the work to make sure the resizing works, and dummys up a resized
58     image using width and height attributes.
59   * Also fixes img preview display, the links were wrong in preview before.
60   * Add a sparkline plugin.
61   * Add a postsparkline plugin.
62   * The slash escaping when adding to a blog from the CGI was not working
63     since it ended up being double-escaped. Instead, just remove slashes.
64   * Fix some nasty issues with page name escaping during previewing
65     (introduced in 1.44).
66   * Add a table plugin, derived from the one written by Victor Moral.
67   * The underscore escaping support exposed a bug in edit links: Such links
68     were titlepage escaped in the urls, and then doubly escaped by the CGI
69     when editing. To fix this, I removed the titlepage escaping in the edit
70     urls.
71   * That means that *every edit link* on the wiki is potentially changed.
72     Rebuilding wikis on upgrade to this version therefore necessary; enabled
73     that in postinst.
74   * Correct a deadlock that could occur in post-commit if the aggregate plugin
75     was enabled and tried to lock the already locked wiki.
76
77  -- Joey Hess <joeyh@debian.org>  Sat, 10 Mar 2007 21:11:05 -0500
78
79 ikiwiki (1.44) unstable; urgency=low
80
81   * Patch by Ben to fix validaton of atom feeds by fixing the category tags.
82   * Add a openidlogin-bg.gif to wikiicons and have the stylesheet use it for the
83     OpenID login form rather than linking to a remote logo, to avoid various
84     issues. Since there is not yet a license for the actual OpenID logo, this
85     file is currently a blank image. Users who want to can copy
86     http://openid.net/login-bg.gif into their wiki.
87   * Allow setting NOTAINT=1 when building the wiki to remove taint checking
88     flags, which can be useful on some hosting providers.
89   * Fix a bug that made links like [[0|foo]] use "foo" as the link text,
90     instead of "0".
91   * Changed calling convention for httmllink slightly. The first three
92     parameters remain the same, but additional options are now passed in using
93     named parameters.
94   * Change plugin interface version to 1.02 to reflect this change.
95   * Add a new anchor option to htmllink. Thanks Ben for the idea.
96   * Support anchors in wikilinks.
97   * Add a "more" plugin based on one contributed by Ben to allow implementing
98     those dreaded "Read more" links in blogs.
99   * Don't error out if estcmd fails, just print a warning message. estcmd is
100     too fragile to let it kill ikiwiki.
101   * Make img plugin not fail immediately if Image::Magick is not available.
102     This lets ikiwiki not build depend on perlmagic.
103   * Detect old versions of xgettext and avoid using them.
104   * perl is broken: print "" || die fails! Work around this insanity.
105   * Smarter detection of no-op changes to po files.
106   * Elegant patch from Ethan to clean up the display of page names in the
107     dropdown when creating a new page.
108   * Since the CGI had to drop the wiki lock to avoid deadlocking the
109     commit hook, it was possible for one CGI to race another one and "win"
110     the commit of both their files. This race has been fixed by adding a new
111     commitlock, which when locked by the CGI, disables the commit hook
112     (except for commit mails). The CGI then takes care of the updates the
113     commit hook would have done.
114   * French translation update. Closes: #411899
115   * Patch from HenrikBrixAndersen to fix a broken use of foreach in the
116     search plugin.
117   * Correct a bug that could lead to infinite looping after signin in some
118     circumstances.
119   * Patch from Ethan to improve behavior if a page is deleted or moved while
120     someone is editing it.
121   * Some cleanup of field setting in the failed edit and conflict handling
122     code.
123
124  -- Joey Hess <joeyh@debian.org>  Sat, 24 Feb 2007 20:16:35 -0500
125
126 ikiwiki (1.43) unstable; urgency=low
127
128   * Allow plugins to add new types of tests that can be used in PageSpecs.
129   * Add a "conditional" plugin, which allows displaying text if a condition
130     is true. It is enabled by default so conditional can be used in the
131     basewiki.
132   * Use conditionals in the template for plugins, so that plugin pages
133     say if they're currently enabled or not, and in various other places
134     in the wiki.
135   * Updated Spanish translation.
136   * Make the basewiki be full of symlinks to pages that should be the same
137     in the doc wiki. This will allow direct edits to alter the base wiki
138     without manual munging.
139   * Fix the template, toggle, and conditional plugins to filter text before
140     preprocessing it.
141   * Fix smiley plugin to support smileys at the very beginning or end of
142     the content.
143   * Allow multiple tag settings to appear in a single page.
144   * Many changes to make ikiwiki very resistant to write failures
145     including out of disk space situations. ikiwiki should never leave
146     truncated files, and if the error occurs during a web-based file edit,
147     the user will be given an opportunity to retry.
148     Inspired by the many ways Moin Moin destroys itself when out of disk. :-)
149   * Fix syslogging of errors.
150   * Patch from Ethan to allow using meta tags to set creation dates of pages.
151   * Add a prettydate plugin that formats dates in a more readable fashion.
152     (I had to get a pretty date somehow today..)
153   * Updated Czech translation.
154   * Avoid potential syslog format string issue, although only older versions
155     of perl are vulnerable and it is not known to really be exploitable from
156     ikiwiki.
157   * Add explicit module prereqs to Makefile.PL
158   * New domain name for ikiwiki: ikiwiki.info. Update your links.
159
160  -- Joey Hess <joeyh@debian.org>  Sun, 18 Feb 2007 23:26:32 -0500
161
162 ikiwiki (1.42) unstable; urgency=low
163
164   * Fix several more missing translations of Discussion.
165   * Fix for missing backlinks() in pagestats plugin.
166   * Add canedit hook, allowing arbitrary controls over when a page can be
167     edited.
168   * Move code forcing signing before edit to a new "signinedit" plugin, and
169     code checking for locked pages into a new "lockedit" plugin. Both are
170     enabled by default.
171   * Remove the anonok config setting. This is now implemented by a new
172     "anonok" plugin. Anyone with a wiki allowing anonymous edits should
173     change their configs to enable this new plugin.
174   * Add an opendiscussion plugin that allows anonymous users to edit
175     discussion pages, on a wiki that otherwise wouldn't allow it.
176   * Lots of CGI code reorg and cleanup.
177   * Avoid using lots of memory when copying large non-html files.
178     Yes, you can keep videos in the wiki..
179   * Add feedshow option to allow reducing the number of items included in
180     an rss or atom feed.
181   * Change based on a patch from Ethan to support relative matching in
182     PageSpecs, by using "./".
183   * pagespec_match() has grown a new third parameter to support this.
184   * Add "reverse" option to inline to invert sort orders.
185   * Drop the BSD license for the templates and basewiki, and just allow them
186     to be used as close to public domain as possible.
187   * viewcvs is now viewvc (in Debian unstable), update everything to use the
188     new name.
189   * Fix a security hole that allowed a web user to edit images and other
190     non-page format files in the wiki. To exploit this, the file already had
191     to exist in the wiki, and the web user would need to somehow use the web
192     based editor to replace it with malicious content.
193     (Sorry Josh, this means you can't edit style.css directly anymore,
194     although I do appreciate your fixes, actually..)
195
196  -- Joey Hess <joeyh@debian.org>  Sat, 10 Feb 2007 15:37:39 -0500
197
198 ikiwiki (1.41) unstable; urgency=low
199
200   * Gettext 1.04 or up is needed for the OO interface that ikiwiki needs,
201     if an older version is installed, just don't gettext strings, instead of
202     crashing.
203   * Added smileys for Moin Moin compatability.
204   * Fix handling of discussion links on discussion pages when l10n is used.
205   * Make gitorigin_branch and gitmaster_branch configurable via the setup
206     file. Closes: #408599
207   * French translation update. Closes: #408593
208   * Improve use of svn merge, by specifying the file to merge, rather than
209     chdiring to the srcdir (which wasn't right when merging in a subdir).
210     Thanks Ethan.
211   * Always call rcs_update after a commit during a web edit, to work around
212     the problem described in bugs/svn_fails_to_update. Thanks to Ethan for the
213     analysis and patch.
214   * Replace underscores in shortcut texts with spaces when formatting for
215     display. This allows using a shortcut like [[wikipedia War_of_1812]],
216     which links to the correct remote page, but is displayed nicely.
217   * When building the doc wiki, build with LANG=C.
218   * More gettext fun.
219   * Fix openid signin secret generation code. This fixes the bug that made
220     all openid signins fail the first time, and then succeed the second
221     time.
222
223  -- Joey Hess <joeyh@debian.org>  Tue, 30 Jan 2007 02:36:53 -0500
224
225 ikiwiki (1.40) unstable; urgency=low
226
227   * Fix missing categories in rss/atom feeds.
228   * Add French translation by Jean-Luc Coulon. Closes: #406881
229   * Fix bogus use of CDATA in atom feeds. Closes: #406898
230
231  -- Joey Hess <joeyh@debian.org>  Sun, 14 Jan 2007 21:42:27 -0500
232
233 ikiwiki (1.39) unstable; urgency=low
234
235   * Add a rawhtml plugin that allows copying raw html files from the srcdir.
236   * Fix --locale to control LC_ALL now.
237   * Include the pot file in the source tarball. Closes: #405890
238   * Add a Swedish translation by Daniel Nylander. Closes: #406410
239   * Add a Czech translation by Miroslav Kure.
240   * Add a Bulgarian translation by Damyan Ivanov. Closes: #406580
241   * Add a Gujarati translation by Kartik Mistry. Closes: #406635
242   * Add a Vietnamese translation by Clytie Siddall.
243   * Fix encoding issue with use of Locale::Gettext. Seems that the OO
244     interface returns proper utf-8 decoded strings, unlike the traditional
245     interface, so use the OO interface.
246   * Search in default location for templates as a fallback when templatedir is
247     pointed elsewhere, so that only modified templates need to be copied into
248     a templatedir. Based on work by JeremyReed.
249   * In the aggregator, check for and deal with post filenames that are
250     longer than the maximum file length.
251   * Change the RecentChanges page to show the path of changed pages.
252   * Various minor bugfixes.
253
254  -- Joey Hess <joeyh@debian.org>  Sat, 13 Jan 2007 23:30:20 -0500
255
256 ikiwiki (1.38) unstable; urgency=low
257
258   * Corrected a bum regexp in openid munging.
259   * Added a Spanish translation by Victor Moral.
260   * A few translation infrastructure fixes.
261   * Added a Polish translation by Paweł Tęcza.
262
263  -- Joey Hess <joeyh@debian.org>  Fri,  5 Jan 2007 23:13:59 -0500
264
265 ikiwiki (1.37) unstable; urgency=low
266
267   * Add mirrorlist plugin.
268   * Fixed permissions of some files that were 600 in the tarball. (Did not
269     affect the deb).
270   * Avoid creating edit links when the cgi url is not known.
271   * Avoid displaying discussion links at all, if there's not a discussion
272     page, when the cgi url isn't known.
273   * Before, svn was used as the RCS by default unless configured otherwise,
274     now it defaults to using no RCS unless configured to do so, to avoid some
275     suprising behavior when using a setup file and not uncommenting any RCS
276     options.
277   * Fix some bugs in the commit email sending code.
278   * Improve code that ignores files in the underlaydir if the srcdir has a
279     file building the same page. Now it will work even if the extensions of
280     the source files differ.
281   * Initial work on internationalization of the program code. po/ikiwiki.pot
282     is available for translation.
283   * Export gettext() from IkiWiki module.
284   * Don't put discussion links on discussion pages.
285   * Allow disabling of plugins included in goodstuff.
286   * Add a textile format plugin contributed by mazirian.
287   * If a userdir is configured, links to pages in it can be made without
288     specifying the path. This allows for easy signing of comments by linking
289     to your page in the userdir.
290   * Escape slashes in page titles entered in the blog post form.
291   * Munge openids of the form somehost.com/user (trial, may revert).
292
293  -- Joey Hess <joeyh@debian.org>  Sun, 31 Dec 2006 17:31:22 -0500
294
295 ikiwiki (1.36) unstable; urgency=low
296
297   * Fix various links on the hyperestraier pages.
298   * Use POST for poll to avoid some robots.
299   * Fix sometimes broken links to Discussion pages from blog pages.
300   * Add userdir config setting.
301   * Fix man page perms in install.
302   * Fix an issue with inlining a page with a rss feed inside another
303     page with an rss feed.
304   * Turn $config{wiki_file_prune_regexps} into an array that is easier to
305     manipulate.
306   * Only exclude rss and atom files from processing if the inline plugin
307     is enabled and that feed type is enabled. Else it's just a copyable file
308     type.
309   * Move rss and atom option handling code into the inline plugin.
310   * Applied a rather old patch from Recai to fix the "pruning is too strict"
311     issue. Now you can have wiki source directories inside dotdirs and the
312     like, if you want.
313   * Patch from Emanuele Aina to fix modification time code in mercurual
314     backend.
315   * Add support for links of the form [[/foo]]
316   * Fix code to make absolute urls for rss feeds, was missing some urls.
317   * Fix double-escaping of html entities in titles etc in rss feeds
318     that occured if escaped characters were present in the page filename.
319
320  -- Joey Hess <joeyh@debian.org>  Fri, 22 Dec 2006 15:55:05 -0500
321
322 ikiwiki (1.35) unstable; urgency=low
323
324   * Fix daemonisation code to only do daemon setup things after forking the
325     child process.
326   * The hack used to make the pagetemplate hook have access to the editpage
327     template won't work with CGI::FormBuilder 3.0401, so disable it for now.
328   * CGI::FormBuilder 3.0401 seems to work ok now with ikiwiki, although
329     there might still be bugs lurking..
330
331  -- Joey Hess <joeyh@debian.org>  Fri,  1 Dec 2006 19:14:36 -0500
332
333 ikiwiki (1.34.2) unstable; urgency=low
334
335   * Allow /etc/ikiwiki/wikilist to list just the names of users, if so then
336     ~user/.ikiwiki/wikilist will be read.
337   * Fix url absolution code in inline plugin to support class and id fields in
338     links and imgs, and to support anchor urls.
339   * More build deps updates.
340   * /dev/null fortune failures
341
342  -- Joey Hess <joeyh@debian.org>  Tue, 28 Nov 2006 12:58:47 -0500
343
344 ikiwiki (1.34.1) unstable; urgency=low
345
346   * Add libtime-duration-perl to build deps, as it's used by the svn module
347     which is now tested at build.
348
349  -- Joey Hess <joeyh@debian.org>  Mon, 27 Nov 2006 12:26:12 -0500
350
351 ikiwiki (1.34) unstable; urgency=low
352
353   * Add an openid plugin to support logging in using OpenID.
354   * Web commits by OpenID users will record the full OpenID url for the user,
355     but in recentchanges, these urls will be converted to a simplified display
356     form+link.
357   * Modified svn, git, tla backends to recognise such web commits.
358   * Move httpauth support to a plugin.
359   * Add openidsignup config option.
360   * Make the openid plugin support the callbacks from myopenid.com via its
361     affiliate program.
362   * Add toggle plugin.
363   * Add a poll plugin.
364   * Add quick mode for archive page generation.
365   * Introduce the goodstuff bundle. This is a kind of plugin, that just enables
366     many other plugins. It's an easy way to boost ikiwiki from its default,
367     basic wiki, to a full-featured wiki, without manually picking the right
368     set of plugins. New plugins will be added to goodstuff from time to
369     time.
370   * Change how post signin actions are propigated through the signin process;
371     they're now stored in the session.
372   * Add optional "desc" parameter to shortcut definitions.
373   * Avoid locking the wiki at all when handling some basic cgi stuff
374     (searches, recentchanges).
375   * Add "last" parameter to hook function. Very basic ordering, and hopefully
376     nothing more spohisticated will be needed.
377   * Add formbuilder_setup and formbuilder hooks.
378   * Split out a passwordauth module, that holds all the traditional password
379     based authentication etc code. It's enabled by default, but can be disabled
380     if you want only openid or some other auth method.
381   * Rename ikiwiki.pl so MakeMaker doesn't see it, and install it.
382   * Add some code to the build system that tries to determine if the
383     lib installation directory is in @INC. If it's not, munge ikiwiki
384     to hardcode the path to the lib directory. This should allow installing
385     ikiwiki in nonstandard locations, including home directories, by just
386     setting PREFIX at build time.
387   * Fix nested examples directory in deb.
388   * Add a test suite for the mercurial backend, contributed by Emanuele Aina.
389   * Add a test suite for the svn backend.
390   * Add a test suite for the git backend, from Recai
391   * Daemonize before sending RPC pings, since that can take a while
392     and/or hang.
393   * Daemonize before sending commit mails, as that can also take a long
394     time/hang if the mail server is unhappy.
395   * Factor out commit mail sending code into new function.
396   * Change rcs_commit, it is now passed the name of the user doing the commit
397     and their IP address, and needs to construct its own commit message
398     containing them, or do something more appropriate for the given RCS.
399   * Add softwaresite example.
400   * Mercurial backend improvements, including --get-ctime support. (Emanuele
401     Aina)
402   * Git backend improvements, including bug fixes and better robustness,
403     from Recai.
404
405  -- Joey Hess <joeyh@debian.org>  Sun, 26 Nov 2006 20:46:56 -0500
406
407 ikiwiki (1.33) unstable; urgency=low
408
409   * Fix issue with aggregate plugin updating expired pages.
410   * Avoid syntax errors in templates used by the template plugin crashing
411     ikiwiki.
412   * Enable utf8 file IO in aggregate plugin.
413   * Fix some issues with the new registration form.
414   * Patch from Ethan Glasser Camp to add a skip option to the inline plugin.
415   * Make sure to check for errors from every eval.
416   * Fix img plugin's handling of adding dependencies for images that do not
417     yet exist.
418   * Work around a strange bug in CGI::FormBuilder 3.0401 that makes
419     FORM-SUBMIT unusable on customised formbuilder templates. For now,
420     hardcode the submit buttons in editpage.tmpl instead of using the
421     template variable, which is ok, since the buttons are static.
422   * Work with hyperestraier 1.4.9.
423
424  -- Joey Hess <joeyh@debian.org>  Wed, 15 Nov 2006 18:32:26 -0500
425
426 ikiwiki (1.32) unstable; urgency=low
427
428   * Add a separate pass to find page links, and only render each page once,
429     instead of over and over. Typical speedup is ~4x. Max possible speedup:
430     8x.
431   * Add "scan" parameter to hook(), which is used to make the hook be called
432     during the scanning pass, as well as the render pass. The meta and tag
433     plugins need to use the new scan parameter, so will any others that modify
434     %links.
435   * Now that links are calculated in a separate pass, it can also
436     precalculate backlinks in one pass, which is O(N^2) instead of the
437     previous code that was O(N^3). A very nice speedup for wikis with lots
438     (thousands) of pages.
439   * Stylish update to the ikiwiki logo, thanks to Recai Oktaş and Selçuk
440     Erdem.
441   * Add a default stylesheet entry for the pagecloud.
442   * Add examples page with some examples of things that can be done using
443     ikiwiki, like a weblog. The examples can be copied into a user's wiki
444     for a quick start, without needing to learn everything about how to put
445     them together.
446   * Install the source of the examples into /usr/share/doc/ikiwiki/examples.
447   * Add perlmagick to build-depends so syntax check of img plugin works.
448     Closes: #396702
449   * Improve login/register process, the login dialog has only name and
450     password fields, which allows more web browsers to regognise it as a login
451     field, and is less confusing.
452   * Implemented expiry options for aggregate plugin.
453   * Use precalculated backlinks info when determining if files need an update
454     due to a page they link to being added/removed. Mostly significant if
455     there are lots of pages.
456   * Remove duplicate link info when saving index. In some cases it could
457     pile up rather badly. (Probably not the best way to deal with this
458     problem.)
459   * Patch from James Westby to support podcasting, photoblogging, vidcasting,
460     or what have you, by creating enclosures for non-page items that are
461     included in feeds.
462
463  -- Joey Hess <joeyh@debian.org>  Fri,  3 Nov 2006 14:46:37 -0500
464
465 ikiwiki (1.31) unstable; urgency=low
466
467   * Patch from Pawel Tecza to cp -a the templates in the Makefile.
468   * Change the rss feed title from the wikiname to the page title, with
469     an exception for the wiki's toplevel index page, which will still use the
470     wikiname as the feed title.
471     Overriding the page title with meta title already overrode the rss feed
472     tittle.
473   * Add an img plugin, based on Christian Mock's img plugin, but stripped
474     down to the bare essentials. Useful for handling large images on websites.
475   * Sanitize possibly problimatic characters out of the polygen grammar names,
476     just in case. Should not be exploitable anyway, since it only tries to run
477     polygen after finding the specified grammar file.
478   * Add missing dependency on the URI perl module.
479   * Add basic spam fighting tool for admins: An admin's prefs page now allows
480     editing a list of banned users.
481
482  -- Joey Hess <joeyh@debian.org>  Fri, 27 Oct 2006 23:16:33 -0400
483
484 ikiwiki (1.30) unstable; urgency=low
485
486   * Add no_override parameter to hook().
487   * Add a shortcut plugin, inspired by Victor Moral's contributed shortcuts
488     plugin, but featuring a more ikiwiki-ish syntax and with shortcuts that
489     can be configured using a page in wiki.
490   * Fix support for --pingurl at the command line.
491   * Fix a subtle bug in will_render that broke some builds, by only clearing
492     items from renderedfiles the first time per build.
493   * Wrap entire technortati ping operation in an eval to catch all possible
494     failure modes, after I observed a simple ->value crashing ikiwiki when
495     a ping failed.
496
497  -- Joey Hess <joeyh@debian.org>  Mon, 16 Oct 2006 15:17:38 -0400
498
499 ikiwiki (1.29) unstable; urgency=low
500
501   * Patch from Paul Tötterman to use CP in the Makefile.
502   * Patch from Alec Berryman adding a http_auth config item that allows
503     using HTTP Authentication instead of ikiwiki's built in authentication.
504     Useful for eg, large sites with their own previously existing user auth
505     setup. Closes: #384534
506   * Change %renderedfiles to store an array of files rendered from a given
507     source file, to allow tracking of extra rendered files like rss feeds.
508   * Note that plugins that accessed this variable will need to be updated!
509     The plugin interface has been increased to version 1.01 for this change.
510     As few plugins use %renderedfiles I haven't done anything else to ensure
511     compatability of old plugins.
512   * Add will_render function to the plugin interface, used to register that a
513     page renders a destination file, and do some security checks. Previously
514     but no longer rendered files will be cleaned up.
515   * Use will_render in the inline and linkmap plugins.
516   * You will need to rebuild your wiki on upgrade to this version.
517   * Atom feed support based on a patch by Clint Adams.
518   * Add feeds=no option to inline preprocessor directive to turn off all types
519     of feeds.
520   * $IkiWiki::version now holds the program version, and is accessible to
521     plugins.
522   * Make the aggregate plugin emphasize error messages.
523   * Patch from Recai to limit recentchanges to displaying max 10 files for a
524     given changeset (to avoid large number of file changes excessively
525     bloating the page).
526
527  -- Joey Hess <joeyh@debian.org>  Fri, 13 Oct 2006 23:14:28 -0400
528
529 ikiwiki (1.28) unstable; urgency=low
530
531   * inline: Add ability to sort by page name, based on a patch from
532     Benjamin A'Lee.
533   * Fix a forkbomb in various calls to IPC::Open2, which has a highly
534     braindead interface. Closes: #389383
535   * Don't rm -rf ikiwiki on distclean, since a) there's no such file
536     and b) those poor Mac OSX users and their case insensative files!
537   * Don't fail syntax check if Text::Typography isn't installed.
538     Closes: #389406
539
540  -- Joey Hess <joeyh@debian.org>  Tue, 26 Sep 2006 02:08:17 -0400
541
542 ikiwiki (1.27) unstable; urgency=low
543
544   * Work on firming up the plugin interface:
545     - Plugins should not need to load IkiWiki::Render to get commonly
546       used functions, so moved some functions from there to IkiWiki.
547     - Picked out the set of functions and variables that most plugins
548       use, documented them, and made IkiWiki export them by default,
549       like a proper perl module should.
550     - Use the other functions at your own risk.
551     - This is not quite complete, I still have to decide whether to
552       export some other things.
553   * Changed all plugins included in ikiwiki to not use "IkiWiki::" when
554     referring to stuff now exported by the IkiWiki module.
555   * Add a module version number to IkiWiki, so you can "use IkiWiki '1.00'"
556     to declare which version of the interface your plugin needs.
557   * Anyone with a third-party ikiwiki plugin is strongly encouraged
558     to make like changes to it and avoid use of non-exported symbols from
559     "IkiWiki::".
560   * Link debian/changelog and debian/news to NEWS and CHANGELOG.
561   * Support hyperestradier version 1.4.2, which adds a new required phraseform
562     setting.
563   * If an inlined page has a permalink, link the page title to that.
564   * Patch from Recai to use utf8 when reading the setup file, so that
565     utf8 wikinames from there will be used properly.
566   * Patch from Recai to kill utf-8 on the wiki name when generating the
567     session cookie.
568   * Change ddate plugin to use the DateTime::Calendar::Discordian perl module.
569   * Fix a baseurl problem in hyperestradier search results.
570   * Add a stub local.css to avoid problems with 404's.
571   * Patch from Recai to fix a wide character warning from the search plugin
572     during setup if the wikiname contains utf8.
573   * Yet another fix for those poor case-insensative OS X users.
574   * pagetemplate hooks are now also called when generating cgi pages.
575   * Add a favicon plugin, which simply adds a link tag for an icon to each
576     page (and cgis).
577   * Patch from James Westby to deal with the case where you're editing a
578     new page, hit cancel, and need to be redirected to somewhere sane.
579   * Various documentation improvements by various wiki users.
580   * Support Text::Markdown from CPAN, which has a different interface from
581     the original markdown or the one in Debian.
582   * Version the libcgi-session-perl dependency, some features that need
583     the new version are used in some cases (sslcookie).
584   * Numerous tla fixes from Clint.
585   * Updated ikiwiki.svgz from Recai, includes an icon and is used to generate
586     a multi-resolution favicon.ico.
587   * README.Debian: typo Closes: #388110
588   * chomp trailing newline at the end of templates read in by the template
589     plugin, to allow use of the template preprocessor directive in
590     whitespace-sensative situations. Closes: #387073
591   * Patch from James Westby to make the location of the estseek.cgi script
592     configurable.
593   * Add typography (SmartyPants) plugin by Recai.
594   * Add --render mode, which can be used to preview an edit at the command
595     line by test rendering a single page.
596   * Add a googlecalendar plugin. A bit special-purpose, but it shows
597     one way to to deal with user-supplied content that could cause XSS
598     issues w/o the htmlscrubber, and won't survive the scrubber.
599
600  -- Joey Hess <joeyh@debian.org>  Sun, 24 Sep 2006 00:02:21 -0400
601
602 ikiwiki (1.26) unstable; urgency=low
603
604   * Add a missing -n to tla undo call.
605   * otl2hmtl can't be safely used with IPC::Open2 since it sometimes
606     writes before consuming its whole stdin. Avoid this deadlock.
607   * Fix alt tags for outline checkboxes.
608
609  -- Joey Hess <joeyh@debian.org>  Fri,  8 Sep 2006 16:24:16 -0400
610
611 ikiwiki (1.25) unstable; urgency=low
612
613   * Add proper waitpid calls for open2ed processes throughout to avoid
614     zombies; this hit htmltidy especially badly.
615   * Drop real uid/gid in the suid wrapper, thus allowing commits to remote
616     subversion repos and fixing some other issues.
617   * Add support for tla, contributed by Clint Adams. Closes: #385936
618   * Add support for mercurial, contributed by Emanuele Aina.
619   * Include <link rel> tag for RSS feeds, used by some aggregators and
620     firefox to find the feed.
621   * Add a linkmap plugin (requires graphviz).
622
623  -- Joey Hess <joeyh@debian.org>  Fri,  8 Sep 2006 01:54:14 -0400
624
625 ikiwiki (1.24) unstable; urgency=low
626
627   * Simplify the data structure returned by rcs_recentchanges to avoid
628     each rcs plugin needing to form complex strings on its own.
629   * Fix another destpage issue in the inline directive. Closes: #385512
630     again.
631
632  -- Joey Hess <joeyh@debian.org>  Sun,  3 Sep 2006 15:46:45 -0400
633
634 ikiwiki (1.23) unstable; urgency=low
635
636   * Allow inline directives to be nested inside eg, sidebars. Closes: #385512
637
638  -- Joey Hess <joeyh@debian.org>  Sun,  3 Sep 2006 12:14:45 -0400
639
640 ikiwiki (1.22) unstable; urgency=low
641
642   * Change how the stylesheet url is determined in the templates: Remove
643     STYLEURL and add BASEURL to all templates (some already had it). This
644     new more general variable can be used to link to other things (eg, images)
645     from the template, as well as stylesheets.
646   * Fix a bug introduced last version to do with nested inlines.
647   * Allow preprocessor directives to span multiple lines, both to make
648     long ones with lots of values easier to write, and to allow for ones with
649     multi-line quoted values.
650   * Allow preprocessor directives to contain python-like triple-quoted
651     text blocks, for easy nesting of quotes inside.
652   * Add a template plugin.
653   * Make pagespec merge code smarter about merging duplicate pagespecs.
654   * Patch from Jordà Polo to make Setup::Standard support hashes in config
655     files.
656   * Change order of linkify and preprocess; first preprocess and then linkify.
657     This allows passing a wikilink inside a parameter to a preprocessor
658     directive without it being expanded to html, and leaking out of the
659     parameter, which had required some non-obvious use of triple-quoting
660     to avoid. Note that any preprocessor plugins that output something
661     that looks like a wikilink will now have it treated as such; AFAIK
662     this doesn't change any behavior though except for the template plugin.
663   * Enable preprocessor directives when previewing an edit.
664   * Make all pages pull in a local.css style sheet, if present. This won't
665     be included in ikiwiki, but can be created to make local styling changes
666     w/o needing to merge in every new change to the distributed style.css.
667   * Use DESTDIR and not PREFIX to specify installation prefix for packaging.
668   * Support running "perl Makefile.PL PREFIX=foo" to build ikiwiki to run
669     from a different directory.
670   * Generalised preprocesser loop protection code.
671   * Patch from James Westby to allow a description to be set for rss feeds.
672   * Patch from James Westby to add a template for the search form.
673   * Added a ddate plugin.
674   * Patch from James Westby to add a --sslcookie switch, which forces
675     cookies to only be sent over ssl connections to avoid interception.
676   * Fix preferences page on anonok wikis; still need to sign in to get
677     to the preferences page.
678   * Add toc (table of contents) plugin.
679   * Change htmlize, format, and sanitize hooks to use named parameters.
680   * Patch from James Westby to add an actions option to inline; this
681     adds Edit and Discussion links at the end of blog entries.
682   * Due to some css changes, you'll want to rebuild your wiki on upgrade
683     to this version. Will be handled automatically by the deb.
684   * Add processed date to aggregate preprocessor directive status output.
685
686  -- Joey Hess <joeyh@debian.org>  Fri,  1 Sep 2006 22:03:34 -0400
687
688 ikiwiki (1.21) unstable; urgency=low
689
690   * Add a tail fin^W^Wsidebar plugin by Tuomo Valkonen.
691   * If a page links to itself, mark up the link text in a span with
692     class="selflink" so that it can be styled. I don't have a useful style
693     defined for that though.
694   * Call filter hooks on inlined page content.
695   * Support inlining pages raw, rather than creating a blog.
696   * Clean up yes/no parameter parsing in inline plugin.
697   * Implemented better cycle detection in the inline plugin; nested inlines
698     will now work.
699   * Add a map plugin contributed by Alessandro Dotti Contra.
700   * Add otl format plugin, which handles files as created by vimoutliner.
701   * Fix ikiwiki-mass-rebuild to work in the way the postinst uses it.
702   * Add first draft at a Restructured Text (rst) plugin, by Sergio
703     Talens-Oliag. Note that this has many known issues -- see the caveats on
704     the plugin's page.
705   * Credit everyone who wrote a plugin on the plugins' wiki pages.
706   * Fix utf-8 in blog post form.
707
708  -- Joey Hess <joeyh@debian.org>  Sun, 20 Aug 2006 16:42:54 -0400
709
710 ikiwiki (1.20) unstable; urgency=low
711
712   * Relicense the templates and basewiki under the 2-clause BSD license.
713     Since these can easily become part of other people's websites, they
714     should be under as permissive a license as possible.
715   * Add --syslog config option, to log to the syslog.
716   * Catch failing IPC::Open2 in tidy plugin and retry in case this is a
717     transient failure to fork (which I've seen happen in the wild).
718   * Fix a bug in the aggregator introduced last version that caused all
719     aggregator state to be lost during a non-aggregating build.
720
721  -- Joey Hess <joeyh@debian.org>  Thu, 17 Aug 2006 19:05:56 -0400
722
723 ikiwiki (1.19) unstable; urgency=low
724
725   * Fix several related bugs in page type determination during online editing.
726   * Add some locking to prevent 2 aggregators from running at once.
727   * Fix an infinite loop in the aggregator when finding a unique filename.
728
729  -- Joey Hess <joeyh@debian.org>  Wed, 16 Aug 2006 13:46:25 -0400
730
731 ikiwiki (1.18) unstable; urgency=low
732
733   * The last release accidentially installed ikiwiki as ikiwiki.pl, now fixed.
734   * Add --version.
735   * Man page format fixups.
736   * If the meta plugin overides the page title, set a title_overridden
737     variable in the template to true. This allows doing things with the
738     templates conditional on the title being overriden.
739   * Add a %pagecase which maps lower-case page names to the actual case
740     used in the filename. Use this in bestlinks calculation instead of
741     forcing the link to lowercase.
742   * Also use %pagecase in various other places that want to check if a page
743     with a given name exists.
744   * This means that links to pages with mixed case names will now work,
745     even if the link is in some other case mixture, and mixed case pages
746     should be fully supported throughout ikiwiki.
747   * Recommend rebuilding wikis on upgrade to this version.
748
749  -- Joey Hess <joeyh@debian.org>  Sat, 12 Aug 2006 22:10:48 -0400
750
751 ikiwiki (1.17) unstable; urgency=low
752
753   * Disable tidy generator tag.
754   * Move tidy back to sanitize hook, found out how to only show body.
755   * Turn off tidy indentation too.
756   * Turn on HTML::Template loop_context_vars; not actually used in stock
757     templates but can be useful for things like making comma-delimited lists
758     of tags or what have you.
759   * Remove <br> from end of aggregate preprocessor directive output.
760   * Ship ikiwiki executable as ikiwiki.pl in source to avoid issues on
761     case-sensative filesystems like OSX.
762   * Improve markdown loading. First, try to load it as a proper perl module,
763     in case it was installed as one. Then fall back to trying
764     /usr/bin/markdown.
765   * Document in install page how to install markdown, since it has no
766     installation procedure in the upstream tarball.
767   * Set die_on_bad_params => 0 for all templates, to allow users to modify
768     them without annoyances.
769   * Suck in the page content when generating an inline archive page, to work
770     around the meta plugin's lack of caching of title metadata across runs.
771
772  -- Joey Hess <joeyh@debian.org>  Sat, 12 Aug 2006 12:52:13 -0400
773
774 ikiwiki (1.16) unstable; urgency=low
775
776   * Try to handle relative links in aggregated feeds. However,
777     the current support is a crude hack due to limitations of XML::Feed:
778     xml:base is not supported, neither is Content-Location. And of course,
779     relative links in RSS feeds are ill-undefined..
780   * Make aggregator save permalinks and author name to pages as metadata.
781   * Add permalink and author support to meta plugin, affecting RSS feeds
782     and blog pages.
783   * Various CSS and formatting changes.
784   * Encode link and guid urls in rss feeds to avoid illegal utf8 slipping in.
785   * Add xhtml files to the default prune regexp.
786   * Also generate rel=bookmark links for permalinks.
787   * Fix the htmltidy plugin, which wasn't working due my breaking it when
788     I added it..
789   * Don't run tidy with -xml as that fails if the input is not well-formed.
790     Run it with -asxhtml instead, so it will output well-formed xhtml no
791     matter what the input.
792   * Disable tidy warnings too.
793   * Add a new format hook, and make tidy use it, since tidy can really only
794     operate on and output complete html documents, not the body chunks
795     that sanitise gets.
796   * Fix dates in rss feeds if running localised, so they're still rfc 822.
797
798  -- Joey Hess <joeyh@debian.org>  Fri,  4 Aug 2006 20:48:36 -0400
799
800 ikiwiki (1.15) unstable; urgency=low
801
802   * Remove CDPATH and other env vars perl taint checking doesn't like.
803     Closes: #381279
804   * Added created_before and created_after PageSpec limits.
805
806  -- Joey Hess <joeyh@debian.org>  Thu,  3 Aug 2006 13:00:57 -0400
807
808 ikiwiki (1.14) unstable; urgency=low
809
810   * Memoize pagespec translation, this speeds up a build of the ikiwiki tree
811     by 10% or so.
812   * Fix stupid bug in date matching, patch from Roland Mas. Closes: #381132
813   * Added many unit tests for pagespec_match.
814
815  -- Joey Hess <joeyh@debian.org>  Wed,  2 Aug 2006 11:34:06 -0400
816
817 ikiwiki (1.13) unstable; urgency=low
818
819   * ikiwiki can now download and aggregate feeds with its new aggregate
820     plugin, so it's possible to implement a Planet using ikiwiki!
821   * Add a run_hooks function for the common task of running all hooks of a
822     given type.
823   * Add a savestate hook.
824   * Don't put blog post forms on pages if there's no cgiurl set.
825   * --setup --refresh no longer rebuilds wrappers. Use --setup --refresh
826     --wrappers to do that.
827   * Add %IkiWiki::forcerebuild to provide a way for plugins like aggregate
828     to update pages that haven't changed on disk.
829   * Change meta tags to use html entity-escaped text for values, so that
830     quotes and such can be represented in title tags.
831   * Depend and build-depend on HTML::Parser for HTML::Entities which is used
832     for the above.
833   * Make --rebuild also cause --aggregate to re-download and write aggregated
834     pages.
835   * Avoid outputting duplicate meta info.
836   * Include title metadata on aggregated posts for capitalised and un-munged
837     titles.
838   * Title metadata of inlined pages now shows up in blogs and rss feeds.
839   * Fix issue with unicode filenames and updating the hyper estradier search
840     index. (Aka Please Please Please, let that be the last one.)
841   * Patch from Roland Mas to support an rss=no parameter to inline directives.
842     Closes: #380743
843   * Renamed GlobLists to PageSpecs.
844   * PageSpecs can now include nested parens, "and", and "or". This remains
845     backwards compatible to the old GlobList format. It's implemented by
846     treating the GlobList as a very limited microlanguage that is transformed
847     to perl code that does the matching.
848   * The old GlobList format is deprecated, and I encourage users to switch to
849     using the new PageSpec format. Compatability with the old format will be
850     removed at some point, possibly by 2.0.
851   * Wiki rebuild needed on upgrade to this version due to PageSpec change.
852   * Add support for creation_month and creation_year to PageSpec.
853     Closes: #380680
854   * Changes to index file encoding.
855
856  -- Joey Hess <joeyh@debian.org>  Tue,  1 Aug 2006 21:21:19 -0400
857
858 ikiwiki (1.12) unstable; urgency=low
859
860   "Viva l'Italia!"
861   * New pagestats plugin from Enrico, which can generate a table counting
862     the backlinks for each page, or a del.icio.us style cloud.
863   * Build-depend on libtext-wikiformat-perl, so that the syntax check of
864     the wikiformat plugin works. Thanks, Emanuele Aina.
865   * Patch from Alessandro Dotti Contra to clean up backlinks and navbar
866     display, running them through pagetitle. This removes ugly underscores and
867     other gunk from the display, much nicer. You may want to rebuild your wiki
868     when upgrading to get the cleanup globally.
869   * Polygen plugin from Enrico.
870   * htmltidy plugin from Faidon.
871   * Locale patch from Faidon:
872     - Adds a locale setting to setup files.
873     - Proper local time, if the locale configuration option is used.
874     - Support for UTF-8 (or ISO-8859-X) filenames in SVN. Before this patch,
875       commiting (or even rcs_updating) on repositories with UTF-8 filenames was
876       impossible.
877   * Add getopt hook type, this allows plugins to add new command-line options.
878   * Add --tagbase option to tag plugin.
879   * Add exclude option in setup files, works same as --exclude.
880   * Put categories in rss feeds for tagged items.
881   * Allow preprocessor directives to be expanded in inlined blog pages.
882     However, to avoid inlining loops etc, don't expand inline directives in
883     inlined pages.
884   * fortune plugin (trivial)
885   * Tag plugins according to type.
886
887  -- Joey Hess <joeyh@debian.org>  Sat, 29 Jul 2006 17:12:56 -0400
888
889 ikiwiki (1.11) unstable; urgency=low
890
891   * Patch from Enrico that
892     - Adds a tag plugin that allows more easily tagging pages.
893       The meta plugin can also still be used for that, but the tag plugin
894       also lists a page's tags at the bottom of the page.
895     - Allows preprocessor directives to have parameters with no specified
896       value.
897     - Fixes preprocessor directive parameter parsing so that
898       foo=bar baz now means "foo=bar" and a "baz" with no value.
899   * Run pagetemplate hooks when inlining pages so that inlined pages also
900     list their tags.
901   * Make all plugins with pagetemplate hooks check that variables exist
902     on the template before setting them, for robustness.
903   * Switch pagetemplate hooks to using named parameters.
904   * Pass a destpage parameter to preprocessor and pagetemplate hooks.
905     This will be the page that a source page will be part of, which is
906     different than the source page for inlined pages.
907   * Audited all plugins to endure they pass (page, destpage) to htmllink
908     appropriatly. This means inlining of various plugins will not work
909     properly, with correct links generated.
910
911  -- Joey Hess <joeyh@debian.org>  Thu, 27 Jul 2006 20:51:23 -0400
912
913 ikiwiki (1.10) unstable; urgency=low
914
915   * Run page through any relevant filters when generating a page preview.
916   * Noticed a bug in the wikitext markup plugin -- it made CamelCase links the
917     default throughout the wiki, not only on wikitext pages. Decided to call
918     this a feature, and split the camelcase support out into a separate plugin
919     that is independant of wikitext.
920   * Fix CamelCase regexp to not break [[FooBar|BazBar]] WikiLinks.
921
922  -- Joey Hess <joeyh@debian.org>  Wed, 26 Jul 2006 18:06:35 -0400
923
924 ikiwiki (1.9) unstable; urgency=low
925
926   * Improve display of parentlinks and page title of toplevel index page.
927   * Patch from Faidon to use svn --limit when possible for recentchanges,
928     speeds up recentchanges a lot for wikis with more history.
929   * Patch from Recai to fix utf8 issues in git backend.
930   * Add wikitext markup plugin, which supports ".wiki" pages written in the
931     original wiki syntax, CamelCase links and all.
932   * Support a w3mmode, which lets w3m run ikiwiki using its local CGI
933     support, to edit pages etc without a web server.
934   * Display CGI processing errors if present.
935   * Fix from Faidon for a XML parser issue that breaks utf-8 for
936     RecentChanges. Avoid using XML::SAX::PurePerl, which is buggy in this
937     area, and also way slow.
938   * Match 'web commit from' in SVN and git, these are web commits too.
939     (Faidon)
940   * Consolidated all decode_utf8 in FormBuilder's fields to make the code more
941     readable and avoid future mistakes. The patch seems to work and for the
942     first time I have a UTF-8 username ;-) (Faidon)
943   * Use form->field consistently, not form->param.
944   * Patch from Recai to allow selection of page type when creating a new page.
945     Default page type is inherited from the link clicked on to create the new
946     page.
947
948  -- Joey Hess <joeyh@debian.org>  Wed, 26 Jul 2006 17:25:30 -0400
949
950 ikiwiki (1.8) unstable; urgency=low
951
952   * Fix orphans plugin to not count a link to a nonexistant page as a reason
953     for a page not being an orphan.
954   * Support pinging services such as Technorati using XML-RPC to notify them
955     about changes to rss feeds.
956   * Parse svn log as xml for improved utf8 and security. Note that this makes
957     ikiwiki depend on XML::Simple. Patch by Faidon Liambotis.
958   * POSIX::strftime doesn't know about encodings and doesn't return a utf8
959     flagged string even if the locale causes it to generate utf8 output,
960     so make sure to let perl know it should be handled as utf8. Also,
961     the optimised version used for standard time formats won't work if the
962     user has changed locale, so drop it. Thanks, Faidon Liambotis.
963   * Fix re-encoding of the comments field to utf8 if a commit fails
964     due to a conflict. Thanks, Faidon Liambotis.
965   * Let svn know that commits have utf8 commit messages. Thanks, Faidon
966     Liambotis.
967   * Add insane double encode/decode to utf8 around call to markdown.
968     This works around a truely strange bug, which is apparently a bug in
969     perl, #376329. Also added a test case for it.
970   * Improve layout of edit page so formatting help link is always visible w/o
971     getting in the way of the preview.
972   * Centralised all calls to HTML::Template and force all the templates
973     to be read as utf8.
974   * Support pages with utf8 filenames. Patch by Faidon Liambotis.
975   * Introduce add_plugins and disable_plugins config options in setup files.
976     This allows adding or removing plugins w/o overriding the whole list of
977     default plugins, which makes it easier to upgrade when new default plugins
978     are added.
979   * Support htmlize plugins and make mdwn one such plugin, which is enabled by
980     default (of course!). Based on a patch by Faidon Liambotis.
981   * Add a html plugin, which can be used to write wikis in raw html,
982     if you'd ever want to do such a thing. Slightly tricky, since ikiwiki
983     defaults to not processing .html files, since w/o this plugin they would
984     be copied unsanitised. With this plugin, it will process and html
985     sanitise them, like any other page type.
986   * Rebuilding wrappers is necessary on upgrade to this version.
987   * Make ikiwiki --setup --refresh rebuild wrappers, so wrapper rebuild
988     will be automatically done on all upgrades.
989   * Don't send pings if the wiki is being rebuilt.
990   * Work around very innefficient behavior in File::Spec::abs2rel. Result
991     is a savings of 2 pointless fork/execs per link calculation, which
992     results in ~25% speedup of ikiwiki building its own doc wiki, and
993     about 35% speedup displaying RecentChanges!
994   * Make RecentChanges use a table and some CSS, should be much more readable.
995     No code changes involved.
996   * Encode & in diffurl in examples, to conform to pedantic rules.
997   * Speed up RecentChanges by another 40% or so with some memoization.
998   * Memoize abs2rel, which is still kinda slow, for another 30% speedup
999     in time to build the doc wiki.
1000
1001  -- Joey Hess <joeyh@debian.org>  Tue,  4 Jul 2006 12:46:29 -0400
1002
1003 ikiwiki (1.7) unstable; urgency=low
1004
1005   * Updated logo from Recai with some kerning and alingment tuning.
1006   * Patch from Recai to fix git recentchanges code to work with git 1.4 which
1007     changed some output.
1008   * Copyright update.
1009
1010  -- Joey Hess <joeyh@debian.org>  Sun, 18 Jun 2006 23:33:35 -0400
1011
1012 ikiwiki (1.6) unstable; urgency=low
1013
1014   * YA utf-8 patch from Recai, this time to fix previewing a page so that
1015     the text in the input box is re-encoded back to utf-8.
1016   * -CSD does not affect modules, so readfile() was not using the utf-8 input
1017     layer, which led to lots of problems; make it force read files as utf-8.
1018     Closes: #373203
1019   * Note that as a consequence, this version of ikiwiki will actually try to
1020     parse utf8 in source files for the first time, which may expose broken
1021     utf8 in wiki sources that was hidden before. Most common will be
1022     perl warnings like "utf8 "\xE9" does not map to Unicode"
1023   * writefile() likewise needs to use the utf8 output layer.
1024   * Remove the -CSD from ikiwiki's hashbang since it's useless to have it
1025     there.
1026   * Revert some of the decode_utf8 changes in CGI.pm that seem unnecessary
1027     given the readfile fix.
1028   * Add utf-8 testcases for readfile and htmlize.
1029   * Put back the encode_utf8 in the input to markdown; it's really not utf-8
1030     safe.
1031   * More utf-8 fixes from Recai, partly to things I broke above:
1032     - The serious problem is that writefile() saves the content in undecoded
1033       format in CGI, hence all (non-ascii) chars are corrupted permanently.
1034     - Comment field in edit page is not decoded and all the non-ascii chars in
1035       this field are corrupted as the result.  We should decode it as we do it
1036       for the content.
1037     - Add 'use encoding "utf8"' to CGI.pm to avoid warnings about wide
1038       character in print.
1039   * New SVG logo from Recai.
1040
1041  -- Joey Hess <joeyh@debian.org>  Sun, 18 Jun 2006 19:18:46 -0400
1042
1043 ikiwiki (1.5) unstable; urgency=low
1044
1045   * Add --timeformat config option to allow changing how dates are displayed.
1046     Note that as a side effect, dates will now be displayed using the local
1047     timezone, not as GMT.
1048   * More security review.
1049   * Patch from Dr. Zini to add link() and backlink() to globlists. This allows
1050     for some handy stuff like:
1051     - Using links as a kind of tag; creating blog pages that list all pages
1052       containing a given tag/link or not containing some other tag.
1053     - Subscribing to mail notifications whenever a change is made to a page
1054       that is a backlink of page foo. Ie, "Please notify me of changes in all
1055       pages that link to my home page in the wiki"
1056     - Locking any pages that are linked to from a particular page, so that
1057       lists of locks can be exposed in the wiki.
1058   * Reorganised the doc wiki's todo/* pages, using a link/tag to flag
1059     when a todo item is done, instead of the previous moving it to a different
1060     subdir.
1061   * Allow pagetemplate plugins to override *anything* in the template.
1062   * Add a meta plugin, which allows specifying various metadata about pages,
1063     like license and author. It also allows for inserting html link and meta
1064     tags into html, overriding the title, and adding hidden WikiLinks, which
1065     can be useful when using link-based globbing for page categorisation.
1066   * Remove preprocessor directives from inlined pages.
1067   * Allow simple preprocessor directive values to be specified w/o quotes.
1068   * Add support for using git instead of subversion as the RCS backend,
1069     tremendous thanks to Recai Oktaş for this.
1070   * Doc updates for git.
1071   * Fix absolute url munging in rss generation to support https, ftp, etc urls
1072     not just http urls.
1073   * Patch from Recai Oktaş to improve utf-8 support, it should now use proper
1074     utf-8 for edit and other fields, and for recentchanges. There may still
1075     be utf-8 issues with the preferences page though.
1076
1077  -- Joey Hess <joeyh@debian.org>  Sun, 11 Jun 2006 19:56:54 -0400
1078
1079 ikiwiki (1.4) unstable; urgency=low
1080
1081   * Tell HTML::Scrubber to treat "/" as a valid attribute which is its
1082     very strange way of enabling proper XHTML <br /> type tags. Output html
1083     should be always valid again now.
1084   * The page name and parent links has switched from using a <h1> to a styled
1085     <span>, so pages can use <h1> internally instead of needing to use <h2>.
1086   * Updated all of ikiwiki's own wiki pages for that.
1087   * Add pagetemplate hook, which can be used by plugins that want to mess
1088     around with adding new stuff to the page template.
1089   * Remove headercontent; the search plugin now adds the search box to the
1090     header by registering a pagetemplate hook, and other plugins should do
1091     similarly.
1092   * Rebuilding on upgrade to this version is recommended.
1093   * Add a html validity check to the test suite, using the wdg-html-validator,
1094     if available.
1095   * Make the html valid when there is nothing in the actions list.
1096   * Reordered some function call parameters for consistency.
1097   * Enable full utf-8 support for page input and output.
1098   * Add a workaround for markdown, which does not work well with utf-8
1099     strings.
1100   * --getctime had bitrotted (well I only ever used it the once so far..),
1101     fix and make it a bit more flexible
1102   * rcs_getctime is changed, now rather than needing to loop over all pages,
1103     it should just use the rcs to get the ctime of the passed file.
1104   * When inlining a page in another one, links from the inlined page are now
1105     expanded the same as they are when rendering the inlined page as a
1106     standalone page. So rather than being expanded from the POV of the
1107     inlining page, they are expanded from the POV of the inlined page.
1108
1109     For example, a link from blog/foo to "bar" will now link to blog/bar
1110     if it exists. Previously this needed to be a link explicitly to
1111     "blog/bar"; such links will also continue to work.
1112
1113     (This was slightly complex to do as the link still has to be constructed
1114     relative to the inlining page.)
1115   * Make page edit textarea resize to fit browser window.
1116   * Add -refresh option to ikiwiki-mass-rebuild and use that on upgrades that
1117     do not need a full rebuild, in order to update any basewiki pages.
1118
1119  -- Joey Hess <joeyh@debian.org>  Sat, 27 May 2006 15:08:49 -0400
1120
1121 ikiwiki (1.3) unstable; urgency=low
1122
1123   * Fix the preinst introduced in the last version. Closes: #367458
1124
1125  -- Joey Hess <joeyh@debian.org>  Tue, 16 May 2006 02:43:02 -0500
1126
1127 ikiwiki (1.2) unstable; urgency=low
1128
1129   * Remove dups from the brokenlinks list.
1130   * Add libc6-dev to dependencies, needed to build wrappers.
1131   * Install wikilist in correct location. Closes: #367371
1132
1133  -- Joey Hess <joeyh@debian.org>  Mon, 15 May 2006 10:53:49 -0500
1134
1135 ikiwiki (1.1) unstable; urgency=low
1136
1137   * Rename inlinepage to depends, so that it can be used to refer to more
1138     dependency relationships than just inlining. This will require a rebuild
1139     on upgrade to this version.
1140   * Move the rss link, put it in the blogpost form if there is one and at the
1141     top if not. This is both nicer because easier to find, and it cleans up
1142     the code which had used inlinepage as a flag for adding the link later.
1143   * Allow the depends GlobList to be built up from multiple sources (such as
1144     plugins) during a page render.
1145   * Which means that more than one blog is now supported to appear on a
1146     single page. (With some limitations, like only the last one getting an
1147     rss file.)
1148   * Added a plugin system.
1149   * Added a pagecount plugin, enabled by default.
1150   * Support PreProcessorDirectives with no parameters, ie "[[pagecount ]]".
1151   * Fixed/optimised backlinks code, to avoid rebuilding pages to update
1152     backlinks when the backlinks hadn't really changed.
1153   * Moved inline page support, rss generation etc into the inline plugin,
1154     enabled by default.
1155   * Added brokenlinks plugin, not enabled by default, but rather handy.
1156   * Fix several broken links in the doc wiki.
1157   * Smarter behavior when creating a page and a page of the same name (but
1158     different location) already exists.
1159   * Add an orphans plugin for finding pages that nothing links to.
1160   * Removed backlinks page, which it turns out nothing used.
1161   * Split off an IkiWiki.pm out of ikiwiki and have all the other modules use
1162     it, this will allow for adding a unit test suite.
1163   * Add unit tests for several core functions, including globlist_match,
1164     dirname, basename, bestlink, linkify, pagetitle, titlepage.
1165   * Smart globlist merging.
1166   * Patch from Thomas Schwinge to switch from --svn to --rcs=svn, etc,
1167     to pave the way for adding other RCS support. This also changes the
1168     setup files, where before they had svn => 1 or svn => 0, now they have
1169     rcs => "svn" or rcs => "".
1170   * Add a debian/NEWS file with upgrade notes.
1171   * Load whatever rcs module is specified, so new ones can be just dropped in
1172     as plugins and work. (Well, in theory.)
1173   * Add some basic docs about writing RCS modules.
1174   * Broke search capability out into a plugin, removed the --hyperestraier
1175     switch.
1176   * Added smiley plugin, nicely controlled and documented by the smileys page.
1177   * Copied in some smileys from Moin Moin.
1178   * Allow links of the form [[some page|page]], with whitespace in the link
1179     text.
1180   * Removed --sanitize and --no-sanitize, replaced with --plugin htmlscrubber
1181     and --disable-plugin htmlscrubber.
1182   * Allow discussion links on pages to be turned off with --no-discussion.
1183   * Add ikiwiki-mass-rebuild script, ripped out of the postinst.
1184   * Add some new config items to the estseek.conf template, which are needed
1185     by hyperestraier 1.2.3.
1186
1187  -- Joey Hess <joeyh@debian.org>  Fri,  5 May 2006 17:00:41 -0400
1188
1189 ikiwiki (1.0) unstable; urgency=low
1190
1191   * First official release.
1192
1193  -- Joey Hess <joeyh@debian.org>  Tue, 25 Apr 2006 02:08:17 -0400