Changeset 630


Ignore:
Timestamp:
11/14/08 06:58:16 (4 years ago)
Author:
SvenDowideit
Message:

Item109: more renaming of TWikiUserMapping

Location:
branches/Release04x02
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/Release04x02/lib/MANIFEST

    r625 r630  
    1616!include twikiplugins/TipsContrib/lib/TWiki/Contrib/TipsContrib 
    1717!include twikiplugins/TinyMCEPlugin/lib/TWiki/Plugins/TinyMCEPlugin 
    18 !include twikiplugins/TWikiUserMappingContrib/lib/TWiki/Contrib/TWikiUserMappingContrib 
     18!include twikiplugins/TopicUserMappingContrib/lib/TWiki/Contrib/TopicUserMappingContrib 
    1919!include twikiplugins/TwistyContrib/lib/TWiki/Contrib/TwistyContrib 
    2020!include twikiplugins/TwistyPlugin/lib/TWiki/Plugins/TwistyPlugin 
  • branches/Release04x02/lib/TWiki/Func.pm

    r610 r630  
    650650Return the cUID of the specified user. A cUID is a unique identifier which 
    651651is assigned by TWiki for each user. 
    652 BEWARE: While the default TWikiUserMapping uses a cUID that looks like a user's 
     652BEWARE: While the default TopicUserMapping uses a cUID that looks like a user's 
    653653LoginName, some characters are modified to make them compatible with rcs. 
    654654Other usermappings may use other conventions - the !JoomlaUserMapping 
  • branches/Release04x02/lib/TWiki/UI/Register.pm

    r624 r630  
    11691169 
    11701170    # Check if the login name is already registered 
    1171     # luckily, we're only considering TWikiUserMapping cfg's 
     1171    # luckily, we're only considering TopicUserMapping cfg's 
    11721172    # there are several possible interpretations of 'already registered' 
    11731173    # --- For setups with a PasswordManager... 
  • branches/Release04x02/lib/TWiki/UserMapping.pm

    r21 r630  
    2929to a display name and back. It is also where groups are maintained. 
    3030 
    31 See TWiki::Users::BaseUserMapping and TWiki::Users::TWikiUserMapping for 
     31See TWiki::Users::BaseUserMapping and TWiki::Users::TopicUserMapping for 
    3232the default implementations of this interface. 
    3333 
     
    4040and a unique user id that the mapper uses to identify the user. 
    4141 
    42 The null prefix is reserver for the TWikiUserMapping for compatibility 
     42The null prefix is reserver for the TopicUserMapping for compatibility 
    4343with old TWiki releases. 
    4444 
  • branches/Release04x02/lib/TWiki/Users.pm

    r21 r630  
    128128 
    129129    my $implUserMappingManager = $TWiki::cfg{UserMappingManager}; 
    130     $implUserMappingManager = 'TWiki::Users::TWikiUserMapping' 
     130    $implUserMappingManager = 'TWiki::Users::TopicUserMapping' 
    131131      if ( $implUserMappingManager eq 'none' ); 
    132132 
     
    452452 
    453453            # Strip users web id (legacy, probably specific to 
    454             # TWikiUserMappingContrib but may be used by other mappers 
     454            # TopicUserMappingContrib but may be used by other mappers 
    455455            # that support user topics) 
    456456            my ( $dummy, $nid ) = 
  • branches/Release04x02/lib/TWiki/Users/Password.pm

    r21 r630  
    7575also needs to call 
    7676$this->{session}->enter_context('passwords_modifyable'); 
    77 if you want to be able to use the existing TWikiUserMappingContrib ChangePassword topics 
     77if you want to be able to use the existing TopicUserMappingContrib ChangePassword topics 
    7878 
    7979=cut 
  • branches/Release04x02/tools/aggregateSvnLog.pl

    r3 r630  
    1515 
    1616#TODO: this will not deal with nested includes 
    17 my @plugins = qw/BehaviourContrib ClassicSkin CommentPlugin EditTablePlugin EmptyPlugin InterwikiPlugin JSCalendarContrib MailerContrib PatternSkin PreferencesPlugin RenderListPlugin SlideShowPlugin SmiliesPlugin SpreadSheetPlugin TablePlugin TipsContrib TinyMCEPlugin TWikiUserMappingContrib TwistyContrib TwistyPlugin WysiwygPlugin/; 
     17my @plugins = qw/BehaviourContrib ClassicSkin CommentPlugin EditTablePlugin EmptyPlugin InterwikiPlugin JSCalendarContrib MailerContrib PatternSkin PreferencesPlugin RenderListPlugin SlideShowPlugin SmiliesPlugin SpreadSheetPlugin TablePlugin TipsContrib TinyMCEPlugin TopicUserMappingContrib TwistyContrib TwistyPlugin WysiwygPlugin/; 
    1818#add the not released, but required plugins here. 
    1919push @plugins, 'UnitTestContrib'; 
Note: See TracChangeset for help on using the changeset viewer.