git: 457180190c - main - remove stale disabled code (includes, mailto, section indexes, intro)
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 01 May 2024 10:41:40 UTC
The branch main has been updated by wosch: URL: https://cgit.FreeBSD.org/doc/commit/?id=457180190c5dcfb19a30d4950ad2bd54f4226dc8 commit 457180190c5dcfb19a30d4950ad2bd54f4226dc8 Author: Wolfram Schneider <wosch@FreeBSD.org> AuthorDate: 2024-05-01 10:41:23 +0000 Commit: Wolfram Schneider <wosch@FreeBSD.org> CommitDate: 2024-05-01 10:41:23 +0000 remove stale disabled code (includes, mailto, section indexes, intro) --- website/content/en/cgi/man.cgi | 65 ------------------------------------------ 1 file changed, 65 deletions(-) diff --git a/website/content/en/cgi/man.cgi b/website/content/en/cgi/man.cgi index d82411491b..3800b72f0b 100755 --- a/website/content/en/cgi/man.cgi +++ b/website/content/en/cgi/man.cgi @@ -1226,13 +1226,6 @@ $want_to_link_to_this_page = 1; &do_man( &env('SCRIPT_NAME'), &env('PATH_INFO'), &env('QUERY_STRING') ) unless defined($main'plexus_configured); -$enable_include_links = 0; -$enable_mailto_links = 0; - -my $enable_section_indexes = 0; -my $enable_intro = 0; - - # # end of config ####################################################################################### @@ -1308,9 +1301,6 @@ sub do_man { return &faq_output($u) if ( $path =~ /\/(faq|help)\.html$/ ); return &get_the_sources if ( $path =~ /source$/ ); - return &include_output($path) - if ( $enable_include_links && $path =~ m%^/usr/include/% && -f $path ); - return &indexpage if ( $form eq "" ); &decode_form( $form, *form, 0 ); @@ -1835,24 +1825,12 @@ qq{Please try a <a href="$BASE?apropos=1&manpath=freebsd-release-ports&q } $_ = &encode_data($_); - if ( $enable_include_links - && m,(<b>)?\#include(</b>)?\s+(<b>)?\<\;(.*\.h)\>\;(</b>)?, ) - { - $match = $4; - ( $regexp = $match ) =~ s/\./\\\./; - s,$regexp,\<a href=\"$BASE/usr/include/$match\"\>$match\</A\>,; - } # detect references to other manual pages and set link if (/^\s/) { # skip man headers / first line s,((<[IB]>)?[\w\_\.\-]+(</[IB]>)?\(([1-9ln][a-zA-Z]*)\)),&mlnk($1),oige; } - # detect E-Mail Addreses in manpages - if ( $enable_mailto_links && /\@/ ) { -s/([a-z0-9_\-\.]+\@[a-z0-9\-\.]+\.[a-z]+)/<a href="mailto:$1">$1<\/A>/gi; - } - # detect URLs in manpages if (m,\b(http|https)://,) { s|(https?://[^\s\)&<>'`";\]\[]+)|sprintf("<a href=\"%s\">%s</a>%s", &url_strip($1))|egi; @@ -2120,8 +2098,6 @@ sub encode_data { push @word, $l[$i]; $i += 2; $flag = 'b'; - - #printf STDERR 'B'; } # italic @@ -2130,8 +2106,6 @@ sub encode_data { push @word, $l[ $i + 2 ]; $i += 2; $flag = 'i'; - - #printf STDERR 'I'; } } @@ -2172,45 +2146,6 @@ sub indexpage { local ($m) = ( $manpath ? $manpath : $manPathDefault ); $m = &encode_url($m); - if ($enable_section_indexes) { - print "<b><i>Section Indexes</i></b>:\n"; - foreach ( '1', '2', '3', '4', '5', '6', '7', '8', '9', 'n' ) { - print qq{¤ } if $_ ne '1'; - print -qq{<a href="$BASE?query=($_)&sektion=&apropos=1&manpath=$m&title=Section%20$_Index">$_</a>\n}; - } - } - - if ($enable_intro) { - print "<br /><b><i>Explanations of Man Sections:</i></b>\n"; - foreach ( '1', '2', '3', '4', '5', '6', '7', '8', '9' ) { - print qq{¤ } if $_ ne '1'; - print -qq{<a href="$BASE?query=intro&sektion=$_&apropos=0&manpath=$m&title=Introduction%20Section%20$_">intro($_)</a>\n}; - } - } - - if (0) { - print "<br />\n<b><i>Quick Reference Categories:</i></b>\n"; - foreach ( - 'database', 'disk', 'driver', 'ethernet', 'mail', - 'net', 'nfs', 'nis', 'protocol', 'ppp', - 'roff', 'string', 'scsi', 'statistic', 'tcl', - 'tcp', 'time' - ) - { - print -qq{¤ <a href="$BASE?query=$_&sektion=&apropos=1&manpath=$m&title=Quick%20Ref%20$_">$_</a>\n}; - } - } - - print <<ETX if 0 && $mailto; -URL: <a href="$BASE" target="_parent">$www{'home'}$BASE</a><br /> -ETX - - if ($enable_section_indexes || $enable_intro) { - print "<br />\n"; - } &html_footer( 'no_home_link' => 1, 'no_help_link' => 1 ); }