Edgewall Software

Changes between Initial Version and Version 2 of Ticket #7865


Ignore:
Timestamp:
Dec 5, 2008, 9:20:22 AM (15 years ago)
Author:
Christian Boos
Comment:

I'll look into this.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7865

    • Property Keywords query added
    • Property Owner set to Christian Boos
    • Property Milestone0.11.3
    • Property Severity trivialminor
  • Ticket #7865 – Description

    initial v2  
    1 I believe the syntax added in
    2 http://trac.edgewall.org/ticket/2502
     1I believe the syntax was added in #2502.
    32
    4 which allows grouping for compact form is nice but could be improved.
    5 In my trac I currently have
     3This allows for grouping in compact mode. It is nice but could be improved.
     4In my trac I currently have:
     5{{{
    66[[TicketQuery(format=compact,group=owner,status=!closed,milestone!=future)]]
     7}}}
     8which renders as:
     9{{{
    710#17,40, #1,8,10,13,26,27,34,35,41,43,44,45,48,50,52,55,58,59, #54,
    811#33, #16,22,23,24,30,31,32,36,47,49,51,56,57
    9 
    10 this is very nice but I beleive the grouping should have the label added so
     12}}}
     13This is very nice but I believe the grouping should have the label prepended, so:
     14{{{
    1115[[TicketQuery(format=compact,group=owner,status=!closed,milestone!=future)]]
     16}}}
     17would render as:
     18{{{
    1219userX #17,40, userY
    1320#1,8,10,13,26,27,34,35,41,43,44,45,48,50,52,55,58,59, userZ #54, userW
    1421#33, userQ #16,22,23,24,30,31,32,36,47,49,51,56,57
     22}}}
    1523
    16 this way it will be a lot simpler to identify which group not only the
     24This way it will be a lot simpler to identify which group is what not only the
    1725grouping itself.
    1826
    1927I believe this is a very trivial change, but I'm not entirely sure
    20 where is this variable stored, is it query.group ?
     28where is this variable stored, is it query.group?