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

Wolfram Schneider wosch at FreeBSD.org
Mon Dec 22 16:46:14 UTC 2014


Author: wosch
Date: Mon Dec 22 16:46:13 2014
New Revision: 46112
URL: https://svnweb.freebsd.org/changeset/doc/46112

Log:
  do not offer PostScript and latin1 output anymore
  
  These formats are rarely used, less than once a day.

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	Mon Dec 22 16:27:30 2014	(r46111)
+++ head/en_US.ISO8859-1/htdocs/cgi/man.cgi	Mon Dec 22 16:46:13 2014	(r46112)
@@ -1635,9 +1635,8 @@ ETX
 ETX
 
     my @format = ('html');
-    push( @format, ( 'pdf', 'ps' ) ) if !$no_pdf_output{$manpath};
-    push( @format, ( 'latin1', 'ascii' ) )
-      ;    # you need a 8 bit clean man, e.g. jp-man
+    push( @format, ( 'pdf' ) ) if !$no_pdf_output{$manpath};
+    push( @format, ( 'ascii' ) );
 
     foreach (@format) {
         print qq{<option value="$_">$_</option>\n};


More information about the svn-doc-all mailing list