
| Line: 10 to 10 | ||||||||
|---|---|---|---|---|---|---|---|---|
| Added: | ||||||||
| > > | ObjectMethod finishComplete processing after the client's HTTP request has been responded to.
| |||||||
ObjectMethod findUser ($name[,$wikiname][,$nocreate]) -> $userObject
| ||||||||
| Changed: | ||||||||
| < < |
| |||||||
| > > |
| |||||||
Find the user object corresponding to $name, which may be either a | ||||||||
| Changed: | ||||||||
| < < | login name or a wiki name. The name is looked up in the
TWikiUsers topic. If $name is found (either in the list | |||||||
| > > | login name or a wiki name. If $name is found (either in the list | |||||||
of login names or the list of wiki names) the corresponding
user object is returned. In this case $wikiname is ignored.
If they are not found, and $nocreate is true, then return undef.
If $nocreate is false, then a user object is returned even if | ||||||||
| Changed: | ||||||||
| < < | the user is not listed in TWikiUsers. | |||||||
| > > | the user is not known. | |||||||
If $nocreate is false, and no $wikiname is given, then the
$name is used for both login name and wiki name. | ||||||||
| Line: 43 to 50 | ||||||||
| Changed: | ||||||||
| < < | ObjectMethod addUserToTWikiUsersTopic ($user) -> $topicName | |||||||
| > > | ObjectMethod addUserToMapping ($user) -> $topicName | |||||||
| Changed: | ||||||||
| < < | Add a user to the TWikiUsers topic. This is a topic that maps from usernames to wikinames. It is maintained by Register.pm, or manually outside TWiki. | |||||||
| > > | Add a user to the persistant mapping that maps from usernames to wikinames and vice-versa. | |||||||
| Line: 1 to 1 | ||||||||
|---|---|---|---|---|---|---|---|---|
| Added: | ||||||||
| > > | Package
Singleton object that handles mapping of users to wikinames and
vice versa, and user authentication checking.
| |||||||