aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xen_US.ISO8859-1/htdocs/cgi/man.cgi8
1 files changed, 7 insertions, 1 deletions
diff --git a/en_US.ISO8859-1/htdocs/cgi/man.cgi b/en_US.ISO8859-1/htdocs/cgi/man.cgi
index 5e47bd60fd..700b552fc0 100755
--- a/en_US.ISO8859-1/htdocs/cgi/man.cgi
+++ b/en_US.ISO8859-1/htdocs/cgi/man.cgi
@@ -732,6 +732,10 @@ $manPathDefault = 'FreeBSD 12.0-RELEASE and Ports';
'MACH 2.5/i386', "$manLocalDir/MACH-2.5-i386",
);
+my @no_html_output = (
+ 'IRIX-6.5.30'
+);
+
my @no_pdf_output = (
'386BSD 0.0',
'386BSD 0.1',
@@ -775,6 +779,7 @@ my @no_pdf_output = (
);
my %no_pdf_output = map { $_ => 1 } @no_pdf_output;
+my %no_html_output = map { $_ => 1 } @no_html_output;
my %valid_arch = map { $_ => 1 }
qw/aarch64 acorn26 acorn32 algor alpha amd64 amiga arc arm arm26 arm32 arm64 armish atari aviion bebox cats cesfic cobalt dreamcast evbarm evbmips evbppc evbsh3 evbsh5 hp300 hp700 hpcarm hpcmips hpcsh hppa hppa64 i386 ibmnws landisk loongson luna68k luna88k mac68k macppc mipsco mmeye mvme68k mvme88k mvmeppc netwinder news68k newsmips next68k ofppc palm pc532 pegasos playstation2 pmax pmppc powerpc prep sandpoint sbmips sgi sgimips shark socppc sparc sparc64 sun2 sun3 sun3x tahoe vax walnut wgrisc x68k zaurus/;
@@ -1823,7 +1828,8 @@ ETX
<select name="format">
ETX
- my @format = ('html');
+ my @format = ();
+ push( @format, ( 'html' ) ) if !$no_html_output{$manpath};
push( @format, ( 'pdf' ) ) if !$no_pdf_output{$manpath};
push( @format, ( 'ascii' ) );