Trac Ticket Queries

In addition to reports, Trac provides support for custom ticket queries, used to display lists of tickets meeting a specified set of criteria.

To configure and execute a custom query, switch to the View Tickets module from the navigation bar, and select the Custom Query link.

Filters

When you first go to the query page the default filters will display all open tickets, or if you're logged in it will display open tickets assigned to you. Current filters can be removed by clicking the button to the right with the minus sign on the label. New filters are added from the pulldown list in the bottom-right corner of the filters box. Filters with either a text box or a pulldown menu of options can be added multiple times to perform an or of the criteria.

You can use the fields just below the filters box to group the results based on a field, or display the full description for each ticket.

Once you've edited your filters click the Update button to refresh your results.

Clicking on one of the query results will take you to that ticket. You can navigate through the results by clicking the Next Ticket or Previous Ticket links just below the main menu bar, or click the Back to Query link to return to the query page.

You can safely edit any of the tickets and continue to navigate through the results using the Next/Previous/Back to Query links after saving your results. When you return to the query any tickets which was edited will be displayed with italicized text. If one of the tickets was edited such that it no longer matches the query criteria the text will also be greyed. Lastly, if a new ticket matching the query critera has been created, it will be shown in bold.

The query results can be refreshed and cleared of these status indicators by clicking the Update button again.

Saving Queries

While Trac does not yet allow saving a named query and somehow making it available in a navigable list, you can save references to queries in Wiki content, as described below.

You may want to save some queries so that you can come back to them later. You can do this by making a link to the query from any Wiki page.

[query:status=new|assigned|reopened&version=1.0 Active tickets against 1.0]

Which is displayed as:

Active tickets against 1.0

This uses a very simple query language to specify the criteria (see Query Language).

Alternatively, you can copy the query string of a query and paste that into the Wiki link, including the leading ? character:

[query:?status=new&status=assigned&status=reopened&group=owner Assigned tickets by owner]

Which is displayed as:

Assigned tickets by owner

Using the [[TicketQuery]] Macro

The [[TicketQuery]] macro lets you display lists of tickets matching certain criteria anywhere you can use WikiFormatting.

Example:

[[TicketQuery(version=1.0|2.0&resolution=duplicate)]]

This is displayed as:

#20
Página 500
#33
Página de partidos
#37
Página de contacto
#45
Crear opinión
#51
Permitir donaciones
#53
Página de edicción de datos del político
#69
Opiniones sobre opiniones
#70
Notificación por email de opiniones sobre mi opinión
#73
Precálculo score / VootaRank
#75
Moderar peticion de acceso politico
#76
Agregar a la opinión fotos, videos
#104
Orden de las opiniones
#127
Cambiar orden opiniones en página político
#149
Enlace ranking desde ficha
#150
No tenemos aviso legal en catalán
#157
Feed-back usuarios
#182
la interrogación en la ficha es redundante
#183
Añadir 3 líneas más en la caja de presentación del usuario en su perfil
#208
Página clonk 404 falla en dummy
#217
Añadir un mensaje de notificación al redirigir un usuario a la página de login
#222
catalá y español en el pie de página
#231
Nombre bonito para imágenes instituciones
#273
Cambiar presentación opiniones en página político
#274
Páginación opiniones en página usuario
#286
Flow de pantallas en el proceso de login
#311
+ peso al nombre en resultados de búsquedas
#332
Modificar tamño máximo presentación usuarios y políticos y partidos
#360
Estudio y diseño de las entidades
#384
Propuestas en página usuario
#390
Widget o API twitter
#398
el top6 de la home lleva varios dias sin moverse
#411
Precompletar formulario de contacto
#415
enlaces en facebook
#432
pequeña cuestión al hacer login en un político con mi opinión
#434
Página elección - circunscripción (ej. Girona)
#478
ie8 no pinta el ranking
#512
Bug admin político en lña vinculación con usuario
#518
La maquetación se come píxeles en los comentarios de las propuesta
#525
undefined en el rollover de muchas propuestas en el ranking
#529
Error en la tooltip de propuestas
#533
Incluir propuestas en intro home
#535
Error en nombre usuario asociado a político en listado políticos en admin
#539
Estado de los enlaces en las opiniones
#541
Quitar la tip que tenemos bajo la caja de búsqueda en la home
#542
Botón más
#546
Poner mismo filtro en página usuario que en página últimas opiniones
#557
Refactorización Javascript
#576
El paginador falla cuando sólo hay un elemento
#579
Añadir etiquetas a los políticos, partidos o propuestas
#595
Permitir cargar programa del partido en admin
#617
Estilos en el autor de la propuesta
#635
Aparecen opiniones ES en últimas opiniones CA
#642
Validar páginas con el W3C Validator
#659
cutToLength corta mal caracteres multibyte
#677
Mejorar la experiencia de vootar cuando no estoy logueado
#682
Scroll horizontal dentro de una pestaña
#683
propuesta catalanas en la home
#684
dummy indexa?
#687
Adjunto de 0 KB
#699
http://voota.es/take no funciona
#727
Los cambios que hago en mi perfil de Voota no se reflejan en FB

Just like the query: wiki links, the parameter of this macro expects a query string formatted according to the rules of the simple ticket query language.

A more compact representation without the ticket summaries is also available:

[[TicketQuery(version=1.0|2.0&resolution=duplicate, compact)]]

This is displayed as:

#20, #33, #37, #45, #51, #53, #69, #70, #73, #75, #76, #104, #127, #149, #150, #157, #182, #183, #208, #217, #222, #231, #273, #274, #286, #311, #332, #360, #384, #390, #398, #411, #415, #432, #434, #478, #512, #518, #525, #529, #533, #535, #539, #541, #542, #546, #557, #576, #579, #595, #617, #635, #642, #659, #677, #682, #683, #684, #687, #699, #727

Query Language

query: TracLinks and the [[TicketQuery]] macro both use a mini “query language” for specifying query filters. Basically, the filters are separate by ampersands (&). Each filter then consists of the ticket field name, an operator, and one or more values. More than one value are separated by a pipe (|), meaning that the filter matches any of the values.

The available operators are:

= the field content exactly matches the one of the values
~= the field content contains one or more of the values
^= the field content starts with one of the values
$= the field content ends with one of the values

All of these operators can also be negated:

!= the field content matches none of the values
!~= the field content does not contain any of the values
!^= the field content does not start with any of the values
!$= the field content does not end with any of the values

See also: TracTickets, TracReports, TracGuide