1 ikiwiki 1.27 released with these changes:
3 * Work on firming up the plugin interface:
4 - Plugins should not need to load IkiWiki::Render to get commonly
5 used functions, so moved some functions from there to IkiWiki.
6 - Picked out the set of functions and variables that most plugins
7 use, documented them, and made IkiWiki export them by default,
8 like a proper perl module should.
9 - Use the other functions at your own risk.
10 - This is not quite complete, I still have to decide whether to
11 export some other things.
12 * Changed all plugins included in ikiwiki to not use "IkiWiki::" when
13 referring to stuff now exported by the IkiWiki module.
14 * Add a module version number to IkiWiki, so you can "use IkiWiki '1.00'"
15 to declare which version of the interface your plugin needs.
16 * Anyone with a third-party ikiwiki plugin is strongly encouraged
17 to make like changes to it and avoid use of non-exported symbols from
19 * Link debian/changelog and debian/news to NEWS and CHANGELOG.
20 * Support hyperestradier version 1.4.2, which adds a new required phraseform
22 * If an inlined page has a permalink, link the page title to that.
23 * Patch from Recai to use utf8 when reading the setup file, so that
24 utf8 wikinames from there will be used properly.
25 * Patch from Recai to kill utf-8 on the wiki name when generating the
27 * Change ddate plugin to use the DateTime::Calendar::Discordian perl module.
28 * Fix a baseurl problem in hyperestradier search results.
29 * Add a stub local.css to avoid problems with 404's.
30 * Patch from Recai to fix a wide character warning from the search plugin
31 during setup if the wikiname contains utf8.
32 * Yet another fix for those poor case-insensative OS X users.
33 * pagetemplate hooks are now also called when generating cgi pages.
34 * Add a favicon plugin, which simply adds a link tag for an icon to each
36 * Patch from James Westby to deal with the case where you're editing a
37 new page, hit cancel, and need to be redirected to somewhere sane.
38 * Various documentation improvements by various wiki users.
39 * Support Text::Markdown from CPAN, which has a different interface from
40 the original markdown or the one in Debian.
41 * Version the libcgi-session-perl dependency, some features that need
42 the new version are used in some cases (sslcookie).
43 * Numerous tla fixes from Clint.
44 * Updated ikiwiki.svgz from Recai, includes an icon and is used to generate
45 a multi-resolution favicon.ico.
46 * README.Debian: typo Closes: #[388110](http://bugs.debian.org/388110)
47 * chomp trailing newline at the end of templates read in by the template
48 plugin, to allow use of the template preprocessor directive in
49 whitespace-sensative situations. Closes: #[387073](http://bugs.debian.org/387073)
50 * Patch from James Westby to make the location of the estseek.cgi script
52 * Add typography (SmartyPants) plugin by Recai.
53 * Add --render mode, which can be used to preview an edit at the command
54 line by test rendering a single page.
55 * Add a googlecalendar plugin. A bit special-purpose, but it shows
56 one way to to deal with user-supplied content that could cause XSS
57 issues w/o the htmlscrubber, and won't survive the scrubber.