Changes between Version 31 and Version 32 of CcSelectorPlugin
- Timestamp:
- May 15, 2022, 7:16:11 AM (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CcSelectorPlugin
v31 v32 5 5 == Description 6 6 7 This plugin provides a more helpful experience in the editing of a Trac ticket's CC field than the standard Trac core's functionality. A pop-up window with a list of checkboxes is opened. The user can the check/uncheck boxes, and email addresses are added to or removed from the CC field as needed.7 This plugin provides a more helpful experience in the editing of a Trac ticket's CC field than the standard Trac core's functionality. A pop-up window with a list of checkboxes is opened. The user can then check/uncheck boxes, and email addresses are added to or removed from the CC field as needed. 8 8 9 9 [[Image(cc_selector.png, border=2)]] 10 10 11 11 Developer list is fetched from the Trac database. Users who logged in at least once (see `session` table) and have the 'TICKET_VIEW' permission are 12 listed. If you like the old variant better, which is implemented as a hardcoded list in a javascript file, you should stick with the older release [4001] .12 listed. If you like the old variant better, which is implemented as a hardcoded list in a !JavaScript file, you should stick with the older release [4001] . 13 13 14 Of course, you can always edit the Cc field without all this hassle, all addresses you entered manually will be shown, too and canbe removed with checkboxes.14 Editing the Cc field without using the pop-up window remains possible: all email addresses you enter manually are shown and can subsequently be removed with checkboxes. 15 15 16 See AutocompleteUsersPlugin for another way to help with filling the Cc ticket field.16 See AutocompleteUsersPlugin for another way to help with populating the Cc ticket field. 17 17 18 18 === Technical notes 19 19 20 '''!JavaScript is required''' for this plugin to work and it is tested with Firefox, Mozilla and Internet Explorer 6. Reports of this working under Opera /Safari are welcome.20 '''!JavaScript is required''' for this plugin to work and it is tested with Firefox, Mozilla and Internet Explorer 6. Reports of this working under Opera or Safari are welcome. 21 21 22 22 A long-term ambition is to reduce JavaScript logic in favor of a more capable Genshi template, or even a JS-free plugin implementation. 23 24 This plugin works with both Trac 0.10, 0.11, and 0.12 (since rev3531).25 I18n support for Trac >= 0.12 is planned to be added to the 0.11 branch in a backwards-compatible way.26 23 27 24 == Bugs/Feature Requests … … 80 77 But English message texts are still the (POSIX) default. If this isn't your preferred language, you can 81 78 1. check if it's already available from the [TracPluginTranslation Trac plugin l10n project] at [http://www.transifex.net/projects/p/Trac_Plugin-L10N/resource/cc_selector Transifex] or 82 2. do it yourself (see the [t:wiki:CookBook/PluginL10N#Dotranslatorswork l10n cookbook page for Trac plugins] for more details).79 1. do it yourself (see the [t:wiki:CookBook/PluginL10N#Dotranslatorswork l10n cookbook page for Trac plugins] for more details). 83 80 84 81 Contributing your translation is highly appreciated.[[BR]]