From bd010f7b3f40ce2c53a9fd40d8ef1519ebcb30c5 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Wed, 24 May 2023 10:43:05 +0200 Subject: remove diffstat column and setDiffstat function, since it broken since years. It uses the outdated url webwml.alioth.debian.org --- english/devel/website/stats/diffstat.js | 16 ---------------- stattrans.pl | 3 --- 2 files changed, 19 deletions(-) diff --git a/english/devel/website/stats/diffstat.js b/english/devel/website/stats/diffstat.js index 4b457cf5d7c..83ff3ada57a 100644 --- a/english/devel/website/stats/diffstat.js +++ b/english/devel/website/stats/diffstat.js @@ -105,19 +105,3 @@ function diffstat_pretty(diff_or_error) { } return topspan; } - -// Replaces contents of element with diffstat information of the file between the revisions. -// -// Args: -// path: path to the original file, relative to the english directory -// r1, r2: the revision strings to compare -// element: the element which is populated with the diffstat information -function setDiffstat(path, r1, r2, element) { - // does not send CORS: - // var base = "https://anonscm.debian.org/viewvc/webwml/webwml/"; - var base = "http://webwml.alioth.debian.org/cgi-bin/anoncvs-cors/"; - var lang = "english"; - var url = base + lang + "/" + path + "?r1=" + r1 + "&r2=" + r2 + "&view=patch"; - element.innerHTML = '...'; - getTextAsync(url, function(text) { element.replaceChild(diffstat_pretty(text), element.firstChild); }); -} diff --git a/stattrans.pl b/stattrans.pl index c02fb8a5b75..c9db9fda803 100755 --- a/stattrans.pl +++ b/stattrans.pl @@ -489,10 +489,8 @@ foreach $lang (@search_in) { } else { $o_body .= sprintf "%s", $hits, $base, $base; } - my $stattd = sprintf 'Click to fetch diffstat data\' onClick="setDiffstat(\'%s\', \'%s\', \'%s\', this)">+/-', $file, $transversion{"$lang/$file"}, $version{"$orig/$file"}; if (!defined $status_db{$lang}) { $o_body .= sprintf "%s", $msg; - $o_body .= $stattd; } if ($msg eq 'Wrong translation version' || $msg eq 'The original no longer exists') { if (defined $status_db{$lang}) { @@ -637,7 +635,6 @@ foreach $lang (@search_in) { print HTML 'Diff'; } else { print HTML 'Comment'."\n"; - print HTML 'Diffstat'."\n"; print HTML 'Git command line'; } print HTML 'Log'; -- cgit v1.2.3