Changes between Version 8 and Version 9 of PendingTicketPlugin


Ignore:
Timestamp:
Nov 6, 2015, 2:46:14 PM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • PendingTicketPlugin

    v8 v9  
    1515
    1616If you have any issues, create a
    17 [http://trac-hacks.org/newticket?component=PendingTicketPlugin&owner=datallah new ticket].
     17[/newticket?component=PendingTicketPlugin new ticket].
    1818
    1919[[TicketQuery(component=PendingTicketPlugin&group=type,format=progress)]]
     
    2121== Download
    2222
    23 Download the zipped source from [download:pendingticketplugin here].
     23Download the zipped source from [export:pendingticketplugin here].
    2424
    2525== Source
    2626
    27 You can check out PendingTicketPlugin from [http://trac-hacks.org/svn/pendingticketplugin here] using Subversion, or [source:pendingticketplugin browse the source] with Trac.
     27You can check out PendingTicketPlugin from [/svn/pendingticketplugin here] using Subversion, or [source:pendingticketplugin browse the source] with Trac.
    2828
    2929== Installation
     
    3333If upgrading from Trac 0.10, you will need to convert the data using the `migrate_pending_attrib_to_status.py /path/to/tracenv` script which is included.
    3434
    35 Set up your ticket workflow to include a 'pending' status, for example:
    36 {{{
    37 #!ini
     35Set up your ticket workflow to include a 'pending' status, for example in your `trac.ini` file:
     36{{{#!ini
    3837[ticket-workflow]
    3938pending = new -> pending
     
    4241
    4342Specify a status for tickets that it needs to be moved to:
    44 {{{
    45 #!ini
     43{{{#!ini
    4644[ticket]
    4745pending_removal_status = new
     
    4947
    5048Install the !PendingStatusRemovePlugin to have the pending flag automatically removed when the reporter responds:
    51 {{{
    52 #!sh
     49{{{#!sh
    5350<CHECKOUT THE SOURCE AND GO TO THE ../removependingplugin DIRECTORY>
    5451setup.py bdist_egg
     
    5754
    5855You will also need to enable the Plugin in your `trac.ini` file:
    59 {{{
    60 #!ini
     56{{{#!ini
    6157[components]
    6258removepending.* = enabled
    6359}}}
    6460
    65 To enable the automatic closing of tickets, you'll need to set up a script to be run by cron.  Mine looks like this:[[BR]]
    66 {{{
    67 #!sh
     61To enable the automatic closing of tickets, you'll need to set up a script to be run by cron. Mine looks like this:
     62{{{#!sh
    6863#! /bin/bash
    6964
     
    8075
    8176Add a custom ticket field to your `trac.ini` file:
    82 {{{
    83 #!ini
     77{{{#!ini
    8478[ticket-custom]
    8579pending = checkbox
     
    8983
    9084If you're using the SimpleTicketPlugin, you may want to hide it:
    91 {{{
    92 #!ini
     85{{{#!ini
    9386[simpleticket]
    9487hide = pending
     
    9689
    9790Install the !PendingStatusRemovePlugin to have the pending flag automatically removed when the reporter responds:
    98 {{{
    99 #!sh
     91{{{#!sh
    10092<CHECKOUT THE SOURCE AND GO TO THE 0.10/removependingplugin DIRECTORY>
    10193setup.py bdist_egg
     
    10597You will also need to enable the Plugin in your `trac.ini` file:
    10698
    107 {{{
    108 #!ini
     99{{{#!ini
    109100[components]
    110101removepending.* = enabled
     
    113104To enable the automatic closing of tickets, you will need to set up a script to be run by cron. Example:
    114105
    115 {{{
    116 #!sh
     106{{{#!sh
    117107#! /bin/bash
    118108