vote up 1 vote down star
1

Has anyone implemented functionality (within trac or using external tools) to get the functionality of the bugzilla "whine"? (a report(s) run and the results emailed periodically - basically I want a weekly reminder sent to each assignee with a list of their open issues.

flag

59% accept rate
I can't believe this is the first result on google when searching "trac whine" – Mauricio Scheffer Oct 15 '08 at 20:45
And before I posted this the results were not useful for something like I was looking for. – tim Oct 22 '08 at 18:46

1 Answer

vote up 1 vote down check

Don't really know the answer to your question, but if not, it shouldn't be too hard to do yourself, trac has a database somewhere. Usually, it's an SQLite3 called $TRAC_ROOT/db/trac.db, from which you can select the relevant bits:

echo "SELECT owner, status, summary FROM ticket;" | sqlite3 $TRAC_ROOT/db/trac.db

Which would give you something like

tim|assigned|Implement bugzilla-style "whine" emails.
tim|assigned|Fix the other thing

...And from that, just <handwaving>.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.