diff options
author | www-data <www-data@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-07-04 16:51:42 +0000 |
---|---|---|
committer | www-data <www-data@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-07-04 16:51:42 +0000 |
commit | 1f6ed67e69ba586cbefa75c07dcd43d63f558fee (patch) | |
tree | 002afd6c4d4a1e7a2f8a02b1e48e04c173a26a9e | |
parent | 29f24d4ea2d533fac2e86a2b36baf823be705378 (diff) |
web commit by joey
-rw-r--r-- | doc/news/version_1.8.mdwn | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/doc/news/version_1.8.mdwn b/doc/news/version_1.8.mdwn index be082f326..0c0d92ac8 100644 --- a/doc/news/version_1.8.mdwn +++ b/doc/news/version_1.8.mdwn @@ -1,4 +1,28 @@ -ikiwiki 1.8 released with these changes: +A special release for July 4th with many improvements. + +*Upgrade notes:* + + If your wiki is configured with a setup file, you should modify it to + stop setting the "plugin" list directly, and instead add or remove plugins + via the add_plugins and disable_plugins lines. For example, if you had: + + plugin => [qw{inline smiley search}], + + Change it to these lines, which disables the default htmlscrubber plugin + and adds the two additional plugins: + + add_plugins => [qw{smiley search}], + disable_plugins => [qw{htmlscrubber}], + + Making this change makes your ikiwiki setup file more future-proof since + new default plugins will be automatically used. + + You will need to rebuild your ikiwiki wrappers when upgrading to this + version. If you listed your wiki in /etc/ikiwiki/wikilist this will be + done automatically when the Debian package is upgraded. Or use + ikiiki-mass-rebuild --refresh to force a refresh. + +*Changes:* * Fix orphans plugin to not count a link to a nonexistant page as a reason for a page not being an orphan. |