Edgewall Software

Version 9 (modified by Christian Boos, 15 years ago) ( diff )

update status of current tasks, added ref. to #8760

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!)
Note: See TracWiki for help on using the wiki.