Changes between Version 3 and Version 4 of TracRpcGetAllUsersPlugin


Ignore:
Timestamp:
Jan 16, 2018, 6:24:06 AM (6 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracRpcGetAllUsersPlugin

    v3 v4  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = TracRpcGetAllUsers - Trac xmlrpc user related apis
     3= XMLRPC user related APIs
    44
    55== Description
    66
    7 **Provides some user related apis for  [wiki:XmlRpcPlugin].**
     7This plugin provides some user related APIs for [wiki:XmlRpcPlugin].
    88
    9 This plugin provides following api:
     9This plugin provides the following APIs:
    1010
    11111. {{{user.getAllUsers}}},
    12 returning a dict of all known users, equals to {{{env.get_known_users(True)}}}
    13 e.g.
     12returns a dict of all known users, equals to {{{env.get_known_users(True)}}}, for example:
    1413{{{
    1514{
     
    2019
    21202. {{{user.getAllUserGroups}}},
    22 returning a dict of all user gruops, equals to {{{PermissionSystem.get_groups_dict}}}
    23 e.g.
     21returns a dict of all user groups, equals to {{{PermissionSystem.get_groups_dict}}}, for example:
    2422{{{
    2523{
     
    2927
    30283. {{{user.getPermission}}},
    31 returning a list of all permissions and actions,
    32 e.g.
     29returns a list of all permissions and actions, for example:
    3330{{{
    3431['WIKI_VIEW', 'authecated', ..]
     
    3633
    37344. {{{user.resolveUsers}}}
    38 returning a list of users according to given permission or group
    39 e.g.
     35returns a list of users according to given permission or group, for example:
    4036{{{
    4137user.resolveUsers('WIKI_VIEW')
     
    6460== Installation
    6561
    66 ** requires [wiki:XmlRpcPlugin] **
     62This plugin requires [wiki:XmlRpcPlugin] to be installed.
    6763
    6864General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.