summaryrefslogtreecommitdiffstats
path: root/build/bin/closed-to-rn.py
blob: 0928877e1cc39150d0d5c6c941be9b8c51b688e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python

import sys,string

filename = sys.argv[1]

fin = open(filename, "r")
lines = fin.readlines()
fin.close()

for line in lines:
	fields = string.split(line, "\t")

	if fields[0] != "id":
		ticketid = "<a href=\"http://dev.vaadin.com/ticket/%s\">#%s</a>" % (fields[0],fields[0])
		print "  <li>%s: %s</li>" % (ticketid, fields[1])