> I just got trac installed and it's running wonderfully. I wanted to > change the initial Timeline appearance, however: it listed several pages > of wiki updates by 'trac', presumably as the system was installed. > > But as I'm testing and demo'ing the system for the other staff, those > events get in the way. > > My solution: I edited the from clause of the query in > web_ui.get_timeline_events() to read: > > "FROM wiki WHERE time>=%s AND time<=%s AND author != 'trac'"
This is presumably already documented somewhere, but another simple approach, and the one I took was: sqlite3 <trac environment dir>/db/trac.db update wiki set time = null where author = 'trac'; Of course if your patch gets into the code that is no longer necessary, but it does the trick on current installs. _______________________________________________ Trac mailing list [email protected] http://lists.edgewall.com/mailman/listinfo/trac
