38 lines
851 B
Python
38 lines
851 B
Python
|
|
import subprocess
|
|
import sys
|
|
|
|
TRACDB = 'trac.db'
|
|
|
|
|
|
def readdb():
|
|
cmds = ['sqlite3', TRACDB, 'SELECT id,keywords FROM ticket WHERE status<>"closed";']
|
|
p = subprocess.Popen(cmds, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
comm = p.communicate()
|
|
data = comm[0]
|
|
ret = {}
|
|
for line in data.splitlines():
|
|
pos1 = line.find('|')
|
|
if pos1 <= 0:
|
|
continue
|
|
nr = line[:pos1]
|
|
for kw in line[pos1 + 1:].split(' '):
|
|
if kw == '':
|
|
continue
|
|
if kw not in ret:
|
|
ret[kw] = []
|
|
ret[kw].append(nr)
|
|
return ret
|
|
|
|
|
|
for arg in sys.argv[1:]:
|
|
if arg.endswith('/trac.db'):
|
|
TRACDB = arg
|
|
|
|
data = readdb()
|
|
for kw in sorted(data.keys()):
|
|
out = kw + ':'
|
|
for ticket in data[kw]:
|
|
out = out + ' ' + ticket
|
|
print(out)
|