X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/fa1cb20542a8c249706e0b219c70682e22af915a..38ee1764bfc415504ab17826be5ae990e6245b8b:/doc/index/discussion.mdwn diff --git a/doc/index/discussion.mdwn b/doc/index/discussion.mdwn index 904cedeb6..f15d91c6d 100644 --- a/doc/index/discussion.mdwn +++ b/doc/index/discussion.mdwn @@ -117,7 +117,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 @@ -147,16 +147,6 @@ Ok, that's my last 2 cents for a while. --[Mazirian](http://mazirian.com) ---- -# RecentChanges should show path to wiki sub-pages? - -The RecentChanges only shows the final file name for the recently changes file, -for example "discussion". It would be more useful to see "index/discussion" -or the path to the sub-page. I think this is handled by the htmllink() routine. - -> Went ahead and did this, IMHO the display is ok as-is. --[[Joey]] - ----- - # Should not create an existing page This might be a bug, but will discuss it here first. @@ -172,3 +162,29 @@ Clicking on an old "?" or going to a create link but new Markdown content exists >>> discussion, or users/discussion, but not index/discussion, since this >>> page already exists. If all the pages existed, it would do the redirect >>> thing. --[[Joey]] + +---- + +# User database tools? + +Any tool to view user database? + +Any tool to edit the user database? + +> No, but it's fairly easy to write such tools in perl. For example, to +> list all users in the user database: + + joey@kodama:~/src/joeywiki/.ikiwiki>perl -le 'use Storable; my $userinfo=Storable::retrieve("userdb"); print $_ foreach keys %$userinfo' + http://joey.kitenet.net/ + foo + +> To list each user's email address: + + 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]]