svn commit: r53087 - head/en_US.ISO8859-1/htdocs/cgi

Allan Jude allanjude at FreeBSD.org
Fri May 31 15:11:49 UTC 2019


Author: allanjude
Date: Fri May 31 15:11:48 2019
New Revision: 53087
URL: https://svnweb.freebsd.org/changeset/doc/53087

Log:
  man.cgi: Disable downloading man page archives due to abuse
  
  Hat:	clusteradm

Modified:
  head/en_US.ISO8859-1/htdocs/cgi/man.cgi

Modified: head/en_US.ISO8859-1/htdocs/cgi/man.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/man.cgi	Fri May 31 11:32:12 2019	(r53086)
+++ head/en_US.ISO8859-1/htdocs/cgi/man.cgi	Fri May 31 15:11:48 2019	(r53087)
@@ -1184,6 +1184,10 @@ sub get_the_sources {
 # download a manual directory as gzip'd tar archive
 sub download {
 
+    # 2019-05-31: allanjude: Disable downloading as it is being abused.
+    print qq{Status: 418 No Downloads For You\n\n};
+    exit(0);
+
     $| = 1;
     my $filename = $manpath;
     $filename =~ s/\s+/_/;


More information about the svn-doc-all mailing list