Changes between Version 44 and Version 45 of AutocompleteUsersPlugin


Ignore:
Timestamp:
Sep 1, 2016, 7:33:01 AM (8 years ago)
Author:
figaro
Comment:

Split functional description and technical description

Legend:

Unmodified
Added
Removed
Modified
  • AutocompleteUsersPlugin

    v44 v45  
    55== Description
    66
    7 This plugin allows AJAX completion of users for the owner, reporter and CC fields on new and existing tickets. Currently, all the known users are autocompleted, though this could be restricted to those that have the ticket owner permission. A `/subjects` URL is served which presents the users and/or groups in a format suitable for the jQuery Autocompleter. The plugin should gracefully degrade when !JavaScript is disabled.
     7This plugin allows autocompletion of users for the owner, reporter and CC fields on new and existing tickets. Currently, all the known users are autocompleted, though this could be restricted to those that have the ticket owner permission.
    88
    99In addition to fields on new and existing tickets, the following fields are also autocompleted:
     
    1212 * Ticket custom fields (forthcoming).
    1313
    14 '''Note:''' Email addresses shown by this plugin are handled accordingly to the setting `trac.show_email_addresses` and the permission `EMAIL_VIEW`. That is, if `trac.show_email_addresses` is set to `false` and the current user doesn't have the permission `EMAIL_VIEW`, then all mail addresses will be obfuscated as usual in Trac. That is, email addresses will be displayed as `donjaun@...` rather than `donjaun@example.com`. In all other cases the full email address is visible.
     14[[Image(screenshot.png, border=2)]]
     15
     16'''Note:''' Email addresses shown by this plugin are handled according to the setting `trac.show_email_addresses` and the permission `EMAIL_VIEW`. That is, if `trac.show_email_addresses` is set to `false` and the current user doesn't have the permission `EMAIL_VIEW`, then all mail addresses will be obfuscated as usual in Trac. That is, email addresses will be displayed as `donjaun@...` rather than `donjaun@example.com`. In all other cases the full email address is visible.
     17
     18This autocomplete feature is implemented using AJAX. A `/subjects` URL is served which presents the users and/or groups in a format suitable for the jQuery Autocompleter. The plugin should gracefully degrade when !JavaScript is disabled.
    1519
    1620See also: TracAutoCompletePlugin
     
    4650}}}
    4751
    48 == Configuration
    49 
    5052After installing the plugin, add the following to your `trac.ini` file:
    5153
     
    5456autocompleteusers.* = enabled
    5557}}}
    56 
    57 == Example
    58 
    59 Screenshot of the plugin in action:
    60 
    61 [[Image(screenshot.png)]]
    6258
    6359== Recent Changes