Edgewall Software

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

need to update the Genshi version used on bento

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)
  • a few closed tickets are flagged as fixowner, which means they could benefit from a TracWorkflow adaptation, allowing the "change_owner" transition, as in tags/trac-0.11/contrib/workflow/opensource-workflow.ini@#L20.
  • Purge all the dummy tickets marked for deletion:
    create view tobedeleted as
      select id, 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 id from tobedeleted);
    delete from ticket where id in (select id from tobedeleted);
    

Testing

The bento builds fail on trunk currently since some time (e.g. build:1785) and I just recently managed to reproduce it locally. Looking at the html, I see:

comment:1 Changed 0 seconds ago byadmin

…looks familiar? It's the #G300 issue.

So the Genshi advanced-i18n branch on bento should be updated.

Longer Term

  • set up some test instances of Trac (#4163) (at least for 0.10-stable and 0.11dev)
Note: See TracWiki for help on using the wiki.