mirror of
https://github.com/opentx/opentx.git
synced 2025-07-17 21:35:27 +03:00
Utility to convert issue numbers into changelog strings
This commit is contained in:
parent
468b5520bd
commit
4b1bd9bfd5
1 changed files with 47 additions and 0 deletions
47
radio/util/add-issue-links.py
Executable file
47
radio/util/add-issue-links.py
Executable 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)
|
Loading…
Add table
Add a link
Reference in a new issue