esc-reporting/esc-analyze.py | 4 +++- esc-reporting/esc-report.py | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-)
New commits: commit e9f5ef47fc6529aab821f0413fb0dfce16355e7e Author: Xisco Fauli <aniste...@gmail.com> Date: Fri Sep 8 19:26:46 2017 +0200 Add android to the unconfirmed list diff --git a/esc-reporting/esc-analyze.py b/esc-reporting/esc-analyze.py index fbe22fe..b9f2bab 100755 --- a/esc-reporting/esc-analyze.py +++ b/esc-reporting/esc-analyze.py @@ -231,7 +231,7 @@ def util_create_statList(): 'needsUXEval' : 0, 'topicUI': 0}, 'qa': {'unconfirmed': {'count': 0, 'documentation': 0, 'enhancement': 0, 'needsUXEval': 0, - 'haveBacktrace': 0, 'needsDevAdvice': 0}}, + 'haveBacktrace': 0, 'needsDevAdvice': 0, 'android': 0}}, 'easyhacks' : {'needsDevEval': 0, 'needsUXEval': 0, 'cleanup_comments': 0, 'total': 0, 'assigned': 0, 'open': 0}, 'esc': {}}, @@ -469,6 +469,8 @@ def analyze_qa(): statList['data']['qa']['unconfirmed']['enhancement'] += 1 if row['component'] == 'Documentation': statList['data']['qa']['unconfirmed']['documentation'] += 1 + if row['component'] == 'Android app' or row['component'] == 'Android Viewer': + statList['data']['qa']['unconfirmed']['android'] += 1 util_build_period_stat(creationDate, email, 'qa', 'owner') diff --git a/esc-reporting/esc-report.py b/esc-reporting/esc-report.py index 61d229a..5850bd6 100755 --- a/esc-reporting/esc-report.py +++ b/esc-reporting/esc-report.py @@ -547,7 +547,8 @@ def report_qa(): " + needsUXEval: {} ({:+d})\n" \ " + haveBackTrace: {} ({:+d})\n" \ " + needsDevAdvice: {} ({:+d})\n" \ - " + documentation: {} ({:+d})\n".format( + " + documentation: {} ({:+d})\n" \ + " + android: {} ({:+d})\n".format( statList['data']['qa']['unconfirmed']['count'], statList['diff']['qa']['unconfirmed']['count'], statList['data']['qa']['unconfirmed']['enhancement'], @@ -559,7 +560,9 @@ def report_qa(): statList['data']['qa']['unconfirmed']['needsDevAdvice'], statList['diff']['qa']['unconfirmed']['needsDevAdvice'], statList['data']['qa']['unconfirmed']['documentation'], - statList['diff']['qa']['unconfirmed']['documentation']) + statList['diff']['qa']['unconfirmed']['documentation'], + statList['data']['qa']['unconfirmed']['android'], + statList['diff']['qa']['unconfirmed']['android']) print(text, file=fp) print(text, file=fpESC) _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits