aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/lockedit.pm
Commit message (Expand)AuthorAge
* stop using REMOTE_ADDR•••Everywhere that REMOTE_ADDR was used, a session object is available, so instead use its remote_addr method. In IkiWiki::Receive, stop setting a dummy REMOTE_ADDR. Note that it's possible for a session cookie to be obtained using one IP address, and then used from another IP. In this case, the first IP will now be used. I think that should be ok. Joey Hess2010-06-23
* Group related plugins into sections in the setup file, and drop unused rcs pl...Joey Hess2010-02-11
* lockedit can make sense with no auth plugins•••On second though, you might want a wide-open wiki with some locked pages that cannot be edited online. So, the right thing for lockedit to do when there are no auth plugins is to just say the page cannot be edited. Joey Hess2010-01-04
* lockedit: Detect if no authentication plugins are enabled, and die with an er...Joey Hess2010-01-04
* remove deprecated admin prefs•••A new ikiwiki-transition moveprefs subcommand can pull the old data out of the userdb and inject it into the setup file. Note that it leaves the old values behind in the userdb too. I did this because I didn't want to lose data if it fails writing the setup file for some reason, and the old data in the userdb will only use a small amount of space. Running the command multiple times will mostly not change anything. Joey Hess2008-12-24
* finalise version 3.00 of the plugin apiJoey Hess2008-12-23
* Coding style change: Remove explcit vim folding markers.Joey Hess2008-12-17
* lockedit: Support specifying which users (and IP addresses) a page is locked ...Joey Hess2008-10-08
* add plugin safe/rebuild info (part 1 of 2)•••too many plugins.. brain exploding.. Joey Hess2008-08-03
* remove description_html, add linkJoey Hess2008-08-03
* websetup form display doneJoey Hess2008-08-02
* hide deprecated values if empty after saveJoey Hess2008-08-01
* admin prefs move to setup file, stage 1•••The locked pages configuration is moving to a locked_pages option in the setup file, and the allowed attachments configuration to allowed_attachments. The admin prefs page can still be used for these, but that's depreacted and will only be shown if there's currently a value. Joey Hess2008-08-01
* minor optimisationJoey Hess2008-07-01
* fixesJoey Hess2008-01-07
* * Improved the canedit hook interface, allowing a callback function to be••• returned (and not run in some cases) rather than the plugins directly forcing a user to log in. * opendiscussion: allow editing of the toplevel discussion page, and, indirectly, allow creating new discussion pages. Joey Hess2008-01-07
* MAJOR basewiki reorg•••Including redir pages for the moved basewiki pages. These will be removed in a future release. Joey Hess2007-12-08
* * Improve handling of edits of locked pages by users who are not yet signed••• in. joey2007-05-07
* * Use fieldsets in the preferences form to group related options together.••• Especially cleans up the ordering of the admin's preferences form. joey2007-04-29
* * pagespec_match() has changed to take named parameters, to better allow••• 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. joey2007-04-27
* * Changed calling convention for httmllink slightly. The first three••• parameters remain the same, but additional options are now passed in using named parameters. * Change plugin interface version to 1.02 to reflect this change. * Add a new anchor option to htmllink. Thanks Ben for the idea. * Support anchors in wikilinks. * Add a "more" plugin based on one contributed by Ben to allow implementing those dreaded "Read more" links in blogs. joey2007-02-20
* * Patch based on a patch from Ethan to support relative matching in••• PageSpecs, by using "./". pagespec_match() has grown a new third parameter to support this. joey2007-02-06
* * Add canedit hook, allowing arbitrary controls over when a page can be••• 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. joey2007-02-02