Changes between Version 29 and Version 30 of UserManagerPlugin


Ignore:
Timestamp:
Nov 24, 2015, 9:21:50 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • UserManagerPlugin

    v29 v30  
    1111 - provides filterable team rosters based on user profiles (+ custom fields)
    1212
    13 '''Note''': This plugin is the next ''step'' of TeamRosterPlugin. To use UserManagerPlugin disable TeamRosterPlugin, in case you have it enabled.
    14 UserManagerPlugin is compatible ~90% with data managed by TeamRosterPlugin, so switching from TeamRosterPlugin to UserManagerPlugin is safe (no data loss).
     13'''Note''': This plugin is the next step of TeamRosterPlugin. To use UserManagerPlugin disable TeamRosterPlugin, in case you have it enabled.
     14UserManagerPlugin is for ~90% compatible with data managed by TeamRosterPlugin, so switching from TeamRosterPlugin to UserManagerPlugin is safe (no data loss).
    1515
    1616== Bugs/Feature Requests
    1717
    18 Check [report:9?COMPONENT=UserManagerPlugin existing bugs and feature requests], but feel also free to [/newticket?component=UserManagerPlugin create a new ticket].
     18Existing bugs and feature requests for UserManagerPlugin are
     19[report:9?COMPONENT=UserManagerPlugin here].
     20
     21If you have any issues, create a
     22[/newticket?component=UserManagerPlugin new ticket].
    1923
    2024[[TicketQuery(component=UserManagerPlugin&group=type,format=progress)]]
     
    2226== Download
    2327
    24 Download the [download:usermanagerplugin zipped source].
     28Download the [export:usermanagerplugin zipped source].
    2529
    2630== Source
    2731
    28 Check out from the [http://trac-hacks.org/svn/usermanagerplugin subversion repository], or [source:usermanagerplugin browse the source] with Trac.
     32Check out from the [/svn/usermanagerplugin subversion repository], or [source:usermanagerplugin browse the source] with Trac.
    2933
    3034== Installation
     
    9498
    9599# Search users ( Dummy example: All active developers that have an gmail account )
    96 search_result_list = UserManager(env).search_users(User( role="developer", email="%gmail.com"))
     100search_result_list = UserManager(env).search_users(User(role="developer", email="%gmail.com"))
    97101for user in search_result_list:
    98102    print user.username
     
    120124# Remove
    121125UserManager(env).remove_user(user)
    122 
    123126}}}
    124127