aboutsummaryrefslogtreecommitdiffstats
path: root/english/devel
diff options
context:
space:
mode:
authorThomas Lange <lange@debian.org>2023-10-02 23:02:12 +0200
committerThomas Lange <lange@debian.org>2023-10-02 23:02:12 +0200
commita7230c87f8a94017b17ed71b668fe7ab0c419433 (patch)
treecd3a78039ba06cc0c63154128a82378bafdf2c76 /english/devel
parent151fe4440a15f4706835cb6573a4d19b2168ee05 (diff)
remove unused script, closes: #1019872
Diffstat (limited to 'english/devel')
-rwxr-xr-xenglish/devel/website/stats/anoncvs-cors19
1 files changed, 0 insertions, 19 deletions
diff --git a/english/devel/website/stats/anoncvs-cors b/english/devel/website/stats/anoncvs-cors
deleted file mode 100755
index d0e7f61239a..00000000000
--- a/english/devel/website/stats/anoncvs-cors
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/perl
-# A CORS-enabled proxy for the anonymous web frontend to the webwml CVS
-# repository. Used by the diffstat viewing component of translation statistics
-# page.
-# Copyright 2011 Marcin Owsiany <porridge@debian.org>
-use warnings;
-use strict;
-use CGI;
-use CGI::Carp 'fatalsToBrowser';
-use LWP::UserAgent;
-
-my $q = CGI->new;
-my $url = 'https://anonscm.debian.org/viewvc/webwml/webwml/' . $q->path_info .'?'. $ENV{'QUERY_STRING'};
-my $req = HTTP::Request->new(GET => $url);
-my $res = LWP::UserAgent->new->request($req);
-
-print $q->header(-type => $res->content_type, -status => $res->code, '-Access-Control-Allow-Origin' => '*');
-print $res->decoded_content;
-

© 2014-2024 Faster IT GmbH | imprint | privacy policy