Skip to content

Commit

Permalink
Item109: TWikiGuest -> WikiGuest
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/HTTPDUserAdminContrib@666 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
SvenDowideit authored and SvenDowideit committed Nov 15, 2008
1 parent 364a1c1 commit fe72ecc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion data/TWiki/HTTPDUserAdminContrib.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ though the [[http://search.cpan.org/~lds/HTTPD-User-Manage-1.66/lib/HTTPD/UserAd

It has been developed and tested for the TWiki-4.2, though _may_ be useable for previous releases.

You receive maximal performance benefit by using the =SQL= mode, and ensuring ={Register}{AllowLoginName}= is off (so that the %MAINWEB%.TWikiUsers topic is not needed to convert login names to Wiki Names.
You receive maximal performance benefit by using the =SQL= mode, and ensuring ={Register}{AllowLoginName}= is off (so that the %MAINWEB%.WikiUsers topic is not needed to convert login names to Wiki Names.

See the Extensions | HTTPDUserAdminContrib section of =configure= to set up the specific options.

Expand Down
4 changes: 2 additions & 2 deletions lib/TWiki/Users/HTTPDUserAdminUser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ use Error qw( :try );
Password manager that uses HTTPD::UserAdmin to manage users and passwords.
Subclass of [[TWikiUsersPasswordDotPm][ =TWiki::Users::Password= ]].
Subclass of [[WikiUsersPasswordDotPm][ =TWiki::Users::Password= ]].
See documentation of that class for descriptions of the methods of this class.
Duplicates functionality of
[[TWikiUsersHtPasswdUserDotPm][ =TWiki::Users::HtPasswdUser=]];
[[WikiUsersHtPasswdUserDotPm][ =TWiki::Users::HtPasswdUser=]];
and Adds the possiblilty of using DBM files, and databases to store the user information.
see http://search.cpan.org/~lds/HTTPD-User-Manage-1.66/lib/HTTPD/UserAdmin.pm
Expand Down
6 changes: 3 additions & 3 deletions lib/TWiki/Users/HTTPDUserAdminUserMapping.pm
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ sub getLoginName {
---++ ObjectMethod _userReallyExists ($login) -> boolean
test if the login is in the TWikiUsers topic, or in the password file
test if the login is in the WikiUsers topic, or in the password file
depending on the AllowLoginNames setting
=cut
Expand Down Expand Up @@ -434,7 +434,7 @@ sub findUserByWikiName {
if( $this->isGroup( $wn )) {
push( @users, $wn);
} elsif( $TWiki::cfg{Register}{AllowLoginName} ) {
# Add additional mappings defined in TWikiUsers
# Add additional mappings defined in WikiUsers

my @usernames = $this->{passwords}->listMatchingUsers($TWiki::cfg{HTTPDUserAdminContrib}{WikiNameField}, $wn);
push( @users, @usernames );
Expand Down Expand Up @@ -515,7 +515,7 @@ sub passwordError {


#######################################################################
# don't create or use the MAIN.TWikiUsers topic
# don't create or use the MAIN.WikiUsers topic
# this is a copy of the functionality in TopicUserMapping, with the TWikiUser topic part removed
#TODO: shame that its the UI::Registration code that creates the User topic - tahts close to pointless too

Expand Down

0 comments on commit fe72ecc

Please sign in to comment.