# This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Check for bugIds in the summary. Ignore those with a '-' after the digits. # Those are used for file names ( e.g. tdf129410-1.ods )
bugIds = re.findall("\\b(?:bug|fdo|tdf|lo)[#:]?(\\d+)(?!-)\\b", summary) if bugIds isNoneor len(bugIds) == 0: continue
for bugId in bugIds:
isIgnored = False for i in ignoredBugs: if i in summary:
isIgnored = True if isIgnored: continue
listOfBugIdsWithoutTest = [] for k,v in results.items(): for k1, v1 in v.items(): for bugId, info in v1.items(): if bugId notin hasTestSet:
listOfBugIdsWithoutTest.append(bugId)
bugzillaJson = []
resultList = []
fixList = [] #Split the list into different chunks for the requests, otherwise it fails for chunk in splitList(listOfBugIdsWithoutTest, 50):
urlGet = 'https://bugs.documentfoundation.org/rest/bug?id=' + ','.join(chunk)
rGet = requests.get(urlGet)
rawData = json.loads(rGet.text)
rGet.close()
bugzillaJson.extend(rawData['bugs'])
for k,v in results.items(): for k1, v1 in v.items(): for bugId, info in v1.items():
args = set() if len(sys.argv) > 1:
arg1 = sys.argv[1] if arg1 == '-h'or arg1 == "--help":
usage()
sys.exit(1) for i in sys.argv: if i.isdigit():
args.add(i)
main(sorted(args))
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet am 2026-06-06)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.