X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/736b4f3dad7647c0f269f6d6f342fd951aa393a6..9d48f4c702cff8ab2621676269dc75535d748bd4:/doc/index/discussion.mdwn diff --git a/doc/index/discussion.mdwn b/doc/index/discussion.mdwn index e60ab0f50..f03f3ae45 100644 --- a/doc/index/discussion.mdwn +++ b/doc/index/discussion.mdwn @@ -74,20 +74,13 @@ Any plugins or support for exporting to LaTeX? # Using with CVS? -Any examples of using ikiwiki with cvs? - -> No, although the existing svn backend could fairly esily be modified into -> a CVS backend, by someone who doesn't mind working with CVS. --[[Joey]] +Moved to a [[todo_item|todo/CVS_backend]]. --[[JoshTriplett]] ---- # Show differences before saving page? -It would be nice to be able to have a button to show "Differences" (or "Show Diff") when -editing a page. Is that an option that can be enabled? - -> It's doable, it could even be done by a [[todo/plugin]], I think. -> --[[Joey]] +Moved to the existing [[todo_item|todo/preview_changes]]. --[[JoshTriplett]] ---- @@ -117,7 +110,7 @@ actions. However, it may not be something everyone appreciates. Any thoughts? --[Mazirian](http://mazirian.com) > Maybe, although it would need to take the critisism at -> http://www.cs.tut.fi/~jkorpela/forms/accesskey.html into account. +> into account. >> Thank you for that link. Given that the edit link is the first thing you tab to >> in the current layout, I guess it isn't all that necessary. I have had a @@ -165,18 +158,26 @@ Clicking on an old "?" or going to a create link but new Markdown content exists ---- -# Discuss without login? Or feedback forum? Or fine-tuned per-page access control? +# User database tools? -Any plugin or option for allowing website visitors to edit the discuss page without logging in (without having ikiwiki accounts)? +Any tool to view user database? -Or any plugin to add a feedback form (and maybe threads) to extend a Wiki webpage? +Any tool to edit the user database? -Or is there per-page access control that can be fine-tuned to lock some users or groups for specific pages? -(The [[pagespec]] does show a way to lock all pages except for Discussion pages, but I want some users to also be able to edit other pages.) +> No, but it's fairly easy to write such tools in perl. For example, to +> list all users in the user database: -I want a way for website visitors to be able to give feedback on the wiki pages without having to sign up or log in. -I don't want them to be able to edit the exiting wiki pages except maybe Discussion page. + joey@kodama:~/src/joeywiki/.ikiwiki>perl -le 'use Storable; my $userinfo=Storable::retrieve("userdb"); print $_ foreach keys %$userinfo' + http://joey.kitenet.net/ + foo -(For some reason, it seems like I asked this before ...) +> To list each user's email address: ---JeremyReed \ No newline at end of file + joey@kodama:~/src/joeywiki/.ikiwiki>perl -le 'use Storable; my $userinfo=Storable::retrieve("userdb"); print $userinfo->{$_}->{email} foreach keys %$userinfo' + + joey@kitenet.net + +> Editing is simply a matter of changing values and calling Storable::store(). +> I've not written actual utilities to do this yet because I've only needed +> to do it rarely, and the data I've wanted has been different each time. +> --[[Joey]]