X-Git-Url: https://git.ladys.computer/Gitweb/blobdiff_plain/6745a06c525fbf2f19fa3a653269b3dad2f5d8ac0ceb81b2790a36cd7015d93f..a54780e8d169c3e0e378aca8db815c031215c2caa47d302d07933104f633e92e:/gitweb.perl?ds=sidebyside diff --git a/gitweb.perl b/gitweb.perl index 5d5401f..8c96a1d 100755 --- a/gitweb.perl +++ b/gitweb.perl @@ -3561,23 +3561,6 @@ sub parse_commit_text { $title =~ s/^ //; if ($title ne "") { $co{'title'} = chop_str($title, 80, 5); - # remove leading stuff of merges to make the interesting part visible - if (length($title) > 50) { - $title =~ s/^Automatic //; - $title =~ s/^merge (of|with) /Merge ... /i; - if (length($title) > 50) { - $title =~ s/(http|rsync):\/\///; - } - if (length($title) > 50) { - $title =~ s/(master|www|rsync)\.//; - } - if (length($title) > 50) { - $title =~ s/kernel.org:?//; - } - if (length($title) > 50) { - $title =~ s/\/pub\/scm//; - } - } $co{'title_short'} = chop_str($title, 50, 5); last; }