Changes between Version 7 and Version 8 of WorkflowActionButtonsPlugin


Ignore:
Timestamp:
Aug 24, 2016, 4:37:20 PM (8 years ago)
Author:
figaro
Comment:

Further cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • WorkflowActionButtonsPlugin

    v7 v8  
    66
    77This plugin adds a row of "action buttons" to the top of every ticket detail page. These buttons allow you to quickly act on a ticket (with a workflow action like "reassign", "resolve", "reopen", etc) without scrolling down to the Actions section. When a button is pressed, a modal dialog opens up with a small form prompting the user for any additional information, eg resolution when resolving the ticket, or new owner when reassigning, and an optional comment.
     8
     9The plugin's action buttons are added to the top left of the ticket:
     10
     11[[Image(Screen Shot 2014-01-02 at 10.27.50 PM.png, 80%, border=2)]]
     12
     13A dialog box prompting the user for additional information:
     14
     15[[Image(Screen Shot 2014-01-02 at 10.28.07 PM.png, 80%, border=2)]]
     16
     17The dialog box after clicking the Resolve button:
     18
     19[[Image(Screen Shot 2014-01-02 at 10.39.14 PM.png, 80%, border=2)]]
    820
    921The plugin does nothing if Javascript is disabled.
     
    2941== Installation
    3042
    31 Install the plugin and then enable its components by setting `workflow_actionbuttons.* = enabled` in your `trac.ini` `[components]` section.
     43General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
     44
     45Enable its components by setting the following in your `trac.ini` file:
     46{{{#!ini
     47[components]
     48workflow_actionbuttons.* = enabled
     49}}}
     50
     51== Configuration
    3252
    3353You can customize the labels and icons displayed for each button. To do this, create a new `trac.ini` section `[ticket-workflow-action-buttons]`:
     
    4767}}}
    4868
    49 The icons are implemented with [http://fontawesome.io/icons/ Font Awesome]; a copy of Font Awesome is included in the plugin distribution.
    50 
    51 == Screenshots
    52 
    53 Screenshot of the plugin's action buttons added to the top of the ticket:
    54 
    55 [[Image(Screen Shot 2014-01-02 at 10.27.50 PM.png, 800, 600)]]
    56 
    57 Screenshot of the dialog box prompting the user for additional information:
    58 
    59 [[Image(Screen Shot 2014-01-02 at 10.28.07 PM.png, 800, 600)]]
    60 
    61 Screenshot of the dialog box after clicking the Resolve button:
    62 
    63 [[Image(Screen Shot 2014-01-02 at 10.39.14 PM.png, 800, 600)]]
     69The icons are implemented with [http://fontawesome.io/icons/ Font Awesome], a copy of which is included in the plugin distribution. Font Awesome is itself [http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL SIL Open Font License (OFL)] licensed.
    6470
    6571== Recent Changes