1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-17 13:25:20 +03:00

Utility to convert issue numbers into changelog strings

This commit is contained in:
Damjan Adamic 2015-08-30 20:49:03 +02:00
parent 468b5520bd
commit 4b1bd9bfd5

47
radio/util/add-issue-links.py Executable file
View file

@ -0,0 +1,47 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
import traceback
import time
import re
import re
inputFile = sys.argv[1]
inp = open(inputFile, "r")
pattern = re.compile("#\d+")
while True:
skip = False
line = inp.readline()
if len(line) == 0:
break
line = line.strip('\r\n')
if len(line) == 0:
skip = True
if line.startswith("<"):
skip = True
if line.startswith("["):
skip = True
if not skip:
#line = line.strip()
#print "line: %s" % line
found = re.findall(pattern, line)
if len(found) > 0:
for issue in found:
line = line.replace(issue, '')
#add issues
issue_links = ["<a href=https://github.com/opentx/opentx/issues/%d>#%d</a>" % (int(issue[1:]), int(issue[1:])) for issue in found]
links = "(" + ", ".join(issue_links) + ")"
line = "<li>" + line + " " + links + "</li>"
print line
inp.close()
sys.exit(0)