diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-02-08 20:01:56 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-02-08 20:01:56 +0000 |
commit | de2f2f6652c03aea5c6ea3ad517d9d4e7d8ea4e8 (patch) | |
tree | 90861844ee3f33c4e6af6a252c8686eda46acc13 /doc/index | |
parent | 1eb59c47606c733be40cbf8923fb00b3210cc667 (diff) | |
download | ikiwiki-de2f2f6652c03aea5c6ea3ad517d9d4e7d8ea4e8.tar ikiwiki-de2f2f6652c03aea5c6ea3ad517d9d4e7d8ea4e8.tar.gz |
respond
Diffstat (limited to 'doc/index')
-rw-r--r-- | doc/index/discussion.mdwn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/index/discussion.mdwn b/doc/index/discussion.mdwn index 6f9793462..374391cda 100644 --- a/doc/index/discussion.mdwn +++ b/doc/index/discussion.mdwn @@ -171,3 +171,20 @@ 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]] |