aboutsummaryrefslogtreecommitdiff
path: root/doc/plugins
Commit message (Collapse)AuthorAge
* * Replace underscores in shortcut texts with spaces when formatting forjoey2007-01-28
| | | | | display. This allows using a shortcut like [[wikipedia War_of_1812]], which links to the correct remote page, but is displayed nicely.
* web commit by JoshTriplett: Typo fix: s/overrideen/overridden/.joey2007-01-28
|
* rename and commentsjoey2007-01-16
|
* web commit by http://victormoral.myopenid.com/: Bug fixes in a new versionjoey2007-01-15
|
* web commit by http://victormoral.myopenid.com/: New third party pluginjoey2007-01-15
|
* * Add a rawhtml plugin that allows copying raw html files from the srcdir.joey2007-01-08
|
* web commit by jhjoey2007-01-02
|
* web commit by TobiOetiker: Made the page more consistant with the site stylejoey2006-12-30
|
* web commit by TobiOetikerjoey2006-12-30
|
* web commit by TobiOetikerjoey2006-12-30
|
* * Add a textile format plugin contributed by mazirian.joey2006-12-29
|
* * Initial work on internationalization of the program code. po/ikiwiki.potjoey2006-12-29
| | | | | is available for translation. * Export gettext() from IkiWiki module.
* web commit by http://mazirian.myopenid.com/: clarification, licensing.joey2006-12-29
|
* updatejoey2006-12-28
|
* updatejoey2006-12-28
|
* updatejoey2006-12-28
|
* response and reorgjoey2006-12-28
|
* fix rootpagejoey2006-12-28
|
* * Add mirrorlist plugin.joey2006-12-23
|
* add a poll pluginjoey2006-11-26
|
* add quick mode for speeding up generation of big archive pagesjoey2006-11-26
|
* renamejoey2006-11-22
|
* updatesjoey2006-11-22
|
* updatejoey2006-11-22
|
* typo typojoey2006-11-22
|
* fixjoey2006-11-22
|
* * Add toggle plugin.joey2006-11-22
| | | | | | | | * Introduce the nicebundle. This is a kind of plugin, that just enables many other plugins. It's an easy way to boost ikiwiki from its default, basic wiki, to a full-featured wiki, without manually picking the right set of plugins. New plugins will be added to the nicebundle from time to time.
* updatesjoey2006-11-21
|
* * Add "last" parameter to hook function. Very basic ordering, and hopefullyjoey2006-11-20
| | | | | | | | nothing more spohisticated will be needed. * Add formbuilder_setup and formbuilder hooks. * Split out a passwordauth module, that holds all the traditional password based authentication etc code. It's enabled by default, but can be disabled if you want only openid or some other auth method.
* typojoey2006-11-20
|
* doesn't really matter what do= is set to, as long as it's setjoey2006-11-20
|
* testingjoey2006-11-20
|
* testingjoey2006-11-20
|
* testingjoey2006-11-20
|
* testingjoey2006-11-20
|
* testingjoey2006-11-20
|
* testingjoey2006-11-20
|
* testingjoey2006-11-20
|
* testingjoey2006-11-20
|
* testingjoey2006-11-20
|
* testingjoey2006-11-20
|
* morejoey2006-11-20
|
* shortcut stuffjoey2006-11-20
|
* cleanupjoey2006-11-20
|
* * Add openidsignup config option.joey2006-11-20
| | | | | | | * Make the openid plugin support the callbacks from myopenid.com via its affiliate program. * Change how post signin actions are propigated through the signin process; they're now stored in the session.
* * Make auth methods pluggable.joey2006-11-20
| | | | | * Move httpauth support to a plugin. * Add an openid plugin to support logging in using OpenID.
* web commit by VictorMoral: New version 0.9joey2006-11-14
|
* * Patch from Ethan Glasser Camp to add a skip option to the inline plugin.joey2006-11-08
|
* * Implemented expiry options for aggregate plugin.joey2006-11-01
| | | | | | | | | * Use precalculated backlinks info when determining if files need an update due to a page they link to being added/removed. Mostly significant if there are lots of pages. * Remove duplicate link info when saving index. In some cases it could pile up rather badly. (Probably not the best way to deal with this problem.)
* instead of over and over. Typical speedup is ~4x. Max possible speedup:joey2006-10-28
| | | | | | | | | | | | 8x. * Add "scan" parameter to hook(), which is used to make the hook be called during the scanning pass, as well as the render pass. The meta and tag plugins need to use the new scan parameter, so will any others that modify %links. * Now that links are calculated in a separate pass, it can also precalculate backlinks in one pass, which is O(N^2) instead of the previous code that was O(N^3). A very nice speedup for wikis with lots (thousands) of pages.