aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/opendiscussion.pm
Commit message (Collapse)AuthorAge
* opendiscussion: don't allow editing discussionpage if discussion is disabledSimon McVittie2013-01-02
|
* Group related plugins into sections in the setup file, and drop unused rcs ↵Joey Hess2010-02-11
| | | | plugins from the setup file.
* opendiscussion: This plugin will also now allow posting commentsJoey Hess2010-02-06
| | | | to otherwise locked-down sites.
* ensure opendiscussion hook is always called before lockeditJoey Hess2010-02-06
| | | | This was only ordered ok due to luck before.
* Fix several places that did not properly handle capitalization of the ↵Joey Hess2010-01-02
| | | | | | discussionpage setting. Specifically, fixes discussion actions on discussion pages, and unbreaks the opendiscussion plugin.
* Add discussionpage configuration settingJoey Hess2009-08-13
| | | | | | By adding this setting, we get both more configurability, and a minor optimisation too, since gettext does not need to be called continually to get the Discussion value.
* fix further places where translated discussion case was assumedJoey Hess2009-06-04
| | | | | Another benefit is that consistently using gettext("Discussion") eliminates the need to translate one string.
* finalise version 3.00 of the plugin apiJoey Hess2008-12-23
|
* Coding style change: Remove explcit vim folding markers.Joey Hess2008-12-17
|
* add plugin safe/rebuild info (part 2 of 3)Joey Hess2008-08-03
| | | | (brain.. melting..)
* * opendiscussion: allow editing of the toplevel discussion pageJoey Hess2008-01-07
|
* * pagespec_match() has changed to take named parameters, to better allowjoey2007-04-27
| | | | | | | | | for extended pagespecs. The old calling convention will still work for back-compat for now. * The calling convention for functions in the IkiWiki::PageSpec namespace has changed so they are passed named parameters. * Plugin interface version increased to 2.00 since I don't anticipate any more interface changes before 2.0.
* * Add canedit hook, allowing arbitrary controls over when a page can bejoey2007-02-02
edited. * Move code forcing signing before edit to a new "signinedit" plugin, and code checking for locked pages into a new "lockedit" plugin. Both are enabled by default. * Remove the anonok config setting. This is now implemented by a new "anonok" plugin. Anyone with a wiki allowing anonymous edits should change their configs to enable this new plugin. * Add an opendiscussion plugin that allows anonymous users to edit discussion pages, on a wiki that is otherwise wouldn't allow it. * Lots of CGI code reorg and cleanup.