ToDo for the TracProject (trac.edgewall.org, a.k.a. teo)
Maintenance
- Review of 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
- Purge all tickets marked for deletion, ie have keyword
tobedeleted
:-- (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);
- Review wiki pages that are part of a release: 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.
- Review wiki pages that are not part of a release. and a good place to start is TracDev,
The "project" tickets
When adding a ticket that pertains to the project site, please add the keyword project
:
Last modified
21 months ago
Last modified on Mar 10, 2023, 8:10:40 AM
Note:
See TracWiki
for help on using the wiki.