= ToDo for the TracProject (trac.edgewall.org, a.k.a. teo) = == Maintenance == 1. Review of [t:report/1 open tickets] and mark tickets as `tobedeleted` allows the site administrators to rapidly reduce the backlog. Many tickets will have gone stale for one of the following reasons: * proposed enhancement is no longer being championed by the reporter * technology affected is superseded by newer implementations or upgrades * the reported defect occurs under highly specific circumstances and has only a marginal benefit when fixed 1. Purge all tickets marked for deletion, ie have keyword `tobedeleted`: {{{ #!sql -- (for PostgreSQL) create view tobedeleted as select id, summary, status, resolution, keywords from ticket where keywords like '%tobedeleted%' and status='closed' and resolution='invalid'; delete from ticket_change where ticket in (select id from tobedeleted); delete from attachment where type='ticket' and id in (select CAST(id AS text) from tobedeleted); delete from ticket where id in (select id from tobedeleted); }}} 1. Review wiki pages that are part of a release: [t:TracProject/DefaultWikiPages]. This is not specific to t.e.o., but a good practice anyway, as this site is the authoritative source for Trac documentation. 1. Review wiki pages that are not part of a release. and a good place to start is [t:TracDev], == The //"project"// tickets When adding a ticket that pertains to the project site, please add the keyword `project`: [[TicketQuery(component=project,status!=closed)]]