Edgewall Software

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

we're using mod_wsgi here, now

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

Maintenance

  • 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 2011-08-08

The "project" tickets

#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.