summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDennis Roczek <dennisroczek@libreoffice.org>2015-06-09 06:01:37 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2015-06-23 16:05:51 +0200
commit257b8a04dbea1045bd1c110cd8f2e5e31aa67a98 (patch)
treed1028a7ee5091691ae6bbd8b54a5ee12ff72388c /bin
parent575629963e370e05c0ca90d58838094a5b4d11ff (diff)
improve lo-commit-stat script
'resolved' should also be removed and updating bug urls Change-Id: Ie8e71727856bcc44bd7f3311a9e1472327c9bf21 Reviewed-on: https://gerrit.libreoffice.org/16207 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com> (cherry picked from commit b990cdf57d6a85a36de713004a67a90ba2650623)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/lo-commit-stat5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/lo-commit-stat b/bin/lo-commit-stat
index 5a68820da868..92dd5e5ca088 100755
--- a/bin/lo-commit-stat
+++ b/bin/lo-commit-stat
@@ -17,7 +17,8 @@ my %module_dirname = (
my %bugzillas = (
- fdo => "https://bugs.libreoffice.org/show_bug.cgi?id=",
+ fdo => "https://bugs.documentfoundation.org/show_bug.cgi?id=",
+ tdf => "https://bugs.documentfoundation.org/show_bug.cgi?id=",
bnc => "https://bugzilla.novell.com/show_bug.cgi?id=",
rhbz => "https://bugzilla.redhat.com/show_bug.cgi?id=",
i => "https://bz.apache.org/ooo/show_bug.cgi?id=",
@@ -54,7 +55,7 @@ sub search_bugs($$$$)
# print " found $bug\n";
# remove bug number from the comment; it will be added later a standardized way
$bug_orig =~ s/\#/\\#/;
- $line =~ s/[Rr]esolve[ds]:?\s*$bug_orig\s*//;
+ $line =~ s/(,\s)*[Rr](elated|esolve[ds]):?\s*$bug_orig\s*//;
$line =~ s/\s*-\s*$bug_orig\s*//;
$line =~ s/\(?$bug_orig\)?\s*[:,-]?\s*//;