Edgewall Software

Version 10 (modified by Christian Boos, 14 years ago) ( diff )

added list of tickets for component=project

ToDo for the TracProject (trac.edgewall.org, a.k.a. teo)

Short Term

  • raise min_karma to 2 (quite some spam goes through at karma 0 or 1)
  • Purge all the dummy tickets marked for deletion:
    -- (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);
    
    • done 2009-10-01

Longer Term

  • set up a read-only pysqlite Trac, just for the sake of having the pysqlite: references working again (#8760)
  • set up some test instances of Trac (#4163) (for multirepos!)

Other tickets for the project:

#10447
install blockdiag family on t.e.o.
#12681
Restore the t.e.o specific customization after the switch to Jinja2
#13567
Send summary of workflow to trac-builds mailing list on workflow_run event

Note: See TracWiki for help on using the wiki.