Changes between Version 1 and Version 2 of QuietPlugin


Ignore:
Timestamp:
Oct 29, 2011, 4:35:16 PM (12 years ago)
Author:
Rob Guttman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • QuietPlugin

    v1 v2  
    77This plugin provides a link to toggle on and off sending emails for your ticket changes.  The purpose is to reduce superfluous emails for changes the author deems unworthy.
    88
    9 This plugin is dependent upon the Announcer plugin (which must already be installed) and Javascript.  The toggling is handled via ajax so you can remain on the same page and not disrupt any current work.
     9[[Image(quiet.png)]]
     10
     11This plugin is dependent upon the [wiki:AnnouncerPlugin Announcer plugin] (which must already be installed) and Javascript.  The toggling is handled via ajax so you can remain on the same page and not disrupt any current work.  The toggle link will appear on {{{/newticket}}}, {{{/ticket}}}, {{{/query}}}, and {{{/report}}} pages since ticket changes are possible on all of these (e.g., via [wiki:BatchModifyPlugin BatchModify] or [wiki:GridModifyPlugin GridModify]).
     12
     13== Configuration ==
     14 1. Install the plugin (after downloading and unzipping):
     15    {{{
     16    cd quietplugin/0.12
     17    sudo python setup.py install
     18    }}}
     19
     20    See [http://trac.edgewall.org/wiki/TracPlugins TracPlugins] for more installation details and options.  You'll likely need to restart Trac's web server after installation.
     21
     22 2. Enable the plugin ''and'' '''disable''' {{{announcer.distributors.mail.EmailDistributor}}} in {{{trac.ini}}}:
     23    {{{
     24    [components]
     25    announcer.* = enabled
     26    announcer.distributors.mail.EmailDistributor = disabled
     27    quiet.* = enabled
     28    }}}
     29
     30    You can alternatively use the Trac Web Admin GUI.
     31
     32 3. (Optional) Customize the quiet mode labels:
     33    {{{
     34    [quiet]
     35    enter_label = Enter Quiet Mode
     36    leave_label = Leave Quiet Mode
     37    }}}
     38
    1039
    1140== Bugs/Feature Requests ==