]> scripts.mit.edu Git - www/ikiwiki.git/blob - doc/news/version_1.8.mdwn
be082f3263292981c5530e2ee2b9b53b91d1bbc1
[www/ikiwiki.git] / doc / news / version_1.8.mdwn
1 ikiwiki 1.8 released with these changes:
2
3    * Fix orphans plugin to not count a link to a nonexistant page as a reason
4      for a page not being an orphan.
5    * Support pinging services such as Technorati using XML-RPC to notify them
6      about changes to rss feeds.
7    * Parse svn log as xml for improved utf8 and security. Note that this makes
8      ikiwiki depend on XML::Simple. Patch by Faidon Liambotis.
9    * POSIX::strftime doesn't know about encodings and doesn't return a utf8
10      flagged string even if the locale causes it to generate utf8 output,
11      so make sure to let perl know it should be handled as utf8. Also,
12      the optimised version used for standard time formats won't work if the
13      user has changed locale, so drop it. Thanks, Faidon Liambotis.
14    * Fix re-encoding of the comments field to utf8 if a commit fails
15      due to a conflict. Thanks, Faidon Liambotis.
16    * Let svn know that commits have utf8 commit messages. Thanks, Faidon
17      Liambotis.
18    * Add insane double encode/decode to utf8 around call to markdown.
19      This works around a truely strange bug, which is apparently a bug in
20      perl, #376329. Also added a test case for it.
21    * Improve layout of edit page so formatting help link is always visible w/o
22      getting in the way of the preview.
23    * Centralised all calls to HTML::Template and force all the templates
24      to be read as utf8.
25    * Support pages with utf8 filenames. Patch by Faidon Liambotis.
26    * Introduce add\_plugins and disable\_plugins config options in setup files.
27      This allows adding or removing plugins w/o overriding the whole list of
28      default plugins, which makes it easier to upgrade when new default plugins
29      are added.
30    * Support htmlize plugins and make mdwn one such plugin, which is enabled by
31      default (of course!). Based on a patch by Faidon Liambotis.
32    * Add a html plugin, which can be used to write wikis in raw html,
33      if you'd ever want to do such a thing. Slightly tricky, since ikiwiki
34      defaults to not processing .html files, since w/o this plugin they would
35      be copied unsanitised. With this plugin, it will process and html
36      sanitise them, like any other page type.
37    * Rebuilding wrappers is necessary on upgrade to this version.
38    * Make ikiwiki --setup --refresh rebuild wrappers, so wrapper rebuild
39      will be automatically done on all upgrades.
40    * Don't send pings if the wiki is being rebuilt.
41    * Work around very innefficient behavior in File::Spec::abs2rel. Result
42      is a savings of 2 pointless fork/execs per link calculation, which
43      results in ~25% speedup of ikiwiki building its own doc wiki, and
44      about 35% speedup displaying RecentChanges!
45    * Make RecentChanges use a table and some CSS, should be much more readable.
46      No code changes involved.
47    * Encode & in diffurl in examples, to conform to pedantic rules.
48    * Speed up RecentChanges by another 40% or so with some memoization.
49    * Memoize abs2rel, which is still kinda slow, for another 30% speedup
50      in time to build the doc wiki.