Changes between Version 32 and Version 33 of QueuesPlugin


Ignore:
Timestamp:
Jul 23, 2015, 8:23:56 PM (9 years ago)
Author:
figaro
Comment:

Rearranged paragraphs to maintain consistency

Legend:

Unmodified
Added
Removed
Modified
  • QueuesPlugin

    v32 v33  
    88
    99The motivation for this plugin is for when you want to organize a work load in the order you intend to tackle it, ie as a work queue. Queues can be defined or segmented by milestone or any field(s) (or no fields). See the [wiki:QueuesPlugin#Examples examples below] for more details.
     10
     11== Bugs/Feature Requests ==
     12
     13Existing bugs and feature requests for QueuesPlugin are
     14[report:9?COMPONENT=QueuesPlugin here].
     15
     16If you have any issues, create a
     17[http://trac-hacks.org/newticket?component=QueuesPlugin&owner=robguttman new ticket].
     18
     19[[TicketQuery(component=QueuesPlugin&group=type,format=progress)]]
     20
     21== Download
     22
     23Download the zipped source from [download:queuesplugin here].
     24
     25== Source
     26
     27You can check out QueuesPlugin from [http://trac-hacks.org/svn/queuesplugin here] using Subversion, or [source:queuesplugin browse the source] with Trac.
    1028
    1129== Configuration
     
    4563
    4664See the [wiki:QueuesPlugin#Examples examples below] for more detailed configuration examples, options and capabilities.
    47 
    48 == Bugs/Feature Requests ==
    49 
    50 Existing bugs and feature requests for QueuesPlugin are
    51 [report:9?COMPONENT=QueuesPlugin here].
    52 
    53 If you have any issues, create a
    54 [http://trac-hacks.org/newticket?component=QueuesPlugin&owner=robguttman new ticket].
    55 
    56 [[TicketQuery(component=QueuesPlugin&group=type,format=progress)]]
    57 
    58 == Download
    59 
    60 Download the zipped source from [download:queuesplugin here].
    61 
    62 == Source
    63 
    64 You can check out QueuesPlugin from [http://trac-hacks.org/svn/queuesplugin here] using Subversion, or [source:queuesplugin browse the source] with Trac.
    6565
    6666== Examples
     
    8181ORDER BY CAST((CASE p.value
    8282                WHEN '' THEN '0'
    83                 ELSE COALESCE(p.value,'0') END) AS UNSIGNED) ASC,
     83                ELSE COALESCE(p.value, '0') END) AS UNSIGNED) ASC,
    8484         t.changetime DESC
    8585}}}
     
    112112ORDER BY CAST((CASE p.value
    113113                 WHEN '' THEN '0'
    114                  ELSE COALESCE(p.value,'0') END) AS INTEGER) ASC,
     114                 ELSE COALESCE(p.value, '0') END) AS UNSIGNED) ASC,
    115115         t.changetime DESC
    116116}}}
    117117
    118 If this was created as report {{{14}}}, update the {{{trac.ini}}} file as so (and restart your web server if needed):
     118If this was created as report {{{14}}}, update the {{{trac.ini}}} file:
    119119{{{#!ini
    120120[queues]
    121121reports = 13,14
    122122}}}
     123
     124Restart your web server as needed.
    123125
    124126Here's the screenshot of the report:
     
    150152         CAST((CASE p.value
    151153                 WHEN '' THEN '0'
    152                  ELSE COALESCE(p.value,'0') END) AS INTEGER) ASC,
     154                 ELSE COALESCE(p.value, '0') END) AS UNSIGNED) ASC,
    153155         t.changetime DESC
    154156}}}