1 ikiwiki 1.34 released with [[toggle text="these changes"]]
3 * Add an openid plugin to support logging in using OpenID.
4 * Web commits by OpenID users will record the full OpenID url for the user,
5 but in recentchanges, these urls will be converted to a simplified display
7 * Modified svn, git, tla backends to recognise such web commits.
8 * Move httpauth support to a plugin.
9 * Add openidsignup config option.
10 * Make the openid plugin support the callbacks from myopenid.com via its
14 * Add quick mode for archive page generation.
15 * Introduce the goodstuff bundle. This is a kind of plugin, that just enables
16 many other plugins. It's an easy way to boost ikiwiki from its default,
17 basic wiki, to a full-featured wiki, without manually picking the right
18 set of plugins. New plugins will be added to goodstuff from time to
20 * Change how post signin actions are propigated through the signin process;
21 they're now stored in the session.
22 * Add optional "desc" parameter to shortcut definitions.
23 * Avoid locking the wiki at all when handling some basic cgi stuff
24 (searches, recentchanges).
25 * Add "last" parameter to hook function. Very basic ordering, and hopefully
26 nothing more spohisticated will be needed.
27 * Add formbuilder\_setup and formbuilder hooks.
28 * Split out a passwordauth module, that holds all the traditional password
29 based authentication etc code. It's enabled by default, but can be disabled
30 if you want only openid or some other auth method.
31 * Rename ikiwiki.pl so MakeMaker doesn't see it, and install it.
32 * Add some code to the build system that tries to determine if the
33 lib installation directory is in @INC. If it's not, munge ikiwiki
34 to hardcode the path to the lib directory. This should allow installing
35 ikiwiki in nonstandard locations, including home directories, by just
36 setting PREFIX at build time.
37 * Fix nested examples directory in deb.
38 * Add a test suite for the mercurial backend, contributed by Emanuele Aina.
39 * Add a test suite for the svn backend.
40 * Add a test suite for the git backend, from Recai
41 * Daemonize before sending RPC pings, since that can take a while
43 * Daemonize before sending commit mails, as that can also take a long
44 time/hang if the mail server is unhappy.
45 * Factor out commit mail sending code into new function.
46 * Change rcs\_commit, it is now passed the name of the user doing the commit
47 and their IP address, and needs to construct its own commit message
48 containing them, or do something more appropriate for the given RCS.
49 * Add softwaresite example.
50 * Mercurial backend improvements, including --get-ctime support. (Emanuele
52 * Git backend improvements, including bug fixes and better robustness,