diff options
author | Dai Sato <satodai@w3m.jp> | 2006-04-07 15:31:52 +0000 |
---|---|---|
committer | Dai Sato <satodai@w3m.jp> | 2006-04-07 15:31:52 +0000 |
commit | 608eca22f68213a42c0fc819bebfe1dac4968b05 (patch) | |
tree | d9186b2d1ad2ce5bd7e05225a65590012ee4e5ac | |
parent | rewind to 10 Feb 2006. (diff) | |
download | w3m-608eca22f68213a42c0fc819bebfe1dac4968b05.tar.gz w3m-608eca22f68213a42c0fc819bebfe1dac4968b05.zip |
rewind to 10 Feb 2006.
-rw-r--r-- | scripts/w3mman/w3mman.1.in | 11 | ||||
-rw-r--r-- | scripts/w3mman/w3mman.in | 5 | ||||
-rw-r--r-- | scripts/w3mman/w3mman2html.cgi.in | 47 |
3 files changed, 17 insertions, 46 deletions
diff --git a/scripts/w3mman/w3mman.1.in b/scripts/w3mman/w3mman.1.in index 1c0361d..eb30237 100644 --- a/scripts/w3mman/w3mman.1.in +++ b/scripts/w3mman/w3mman.1.in @@ -1,4 +1,4 @@ -.TH W3MMAN 1 "Nov 5, 2005" +.TH W3MMAN 1 "Mar 14, 2002" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: @@ -19,9 +19,6 @@ w3mman \- an interface to the on-line reference manuals by w3m(1) .br .B w3mman .RI "[-M " path "] -k " keyword -.br -.B w3mman -.RI -l " file .SH DESCRIPTION .B w3mman is the system's manual pager by @@ -34,13 +31,9 @@ Specify .I path as MANPATH. .TP -.BI \-k " keyword" +.B \-k " keyword" Specify .I keyword. -.TP -.BI \-l " file" -Specify a -.I file. .SH ENVIRONMENT .TP .B W3MMAN_W3M diff --git a/scripts/w3mman/w3mman.in b/scripts/w3mman/w3mman.in index 6a27e70..6c6f65d 100644 --- a/scripts/w3mman/w3mman.in +++ b/scripts/w3mman/w3mman.in @@ -8,7 +8,6 @@ sub usage { ($_ = $0) =~ s@.*/@@; print STDERR "$_ [-M <path>] [[<section>] <command>]\n"; print STDERR "$_ [-M <path>] [-k <keyword>]\n"; - print STDERR "$_ [-l <file>]\n"; exit 1; } @@ -21,10 +20,6 @@ while (@ARGV) { } elsif (/^-k$/) { @ARGV || &usage(); $query = "?keyword=" . &form_encode(shift @ARGV); - } elsif (/^-l$/) { - @ARGV || &usage(); - $query = "?quit=ok&local=" . &form_encode(shift @ARGV); - $query .= "&pwd=" . &form_encode($ENV{'PWD'}); } elsif (/^-/) { &usage(); } elsif (/^\d/ || $_ eq 'n') { diff --git a/scripts/w3mman/w3mman2html.cgi.in b/scripts/w3mman/w3mman2html.cgi.in index 3cb105d..f41d487 100644 --- a/scripts/w3mman/w3mman2html.cgi.in +++ b/scripts/w3mman/w3mman2html.cgi.in @@ -19,7 +19,7 @@ if ($QUERY =~ /\=/) { $query{"man"} = &form_decode($QUERY); } -if ((! $query{"man"}) && (! $query{"local"})) { +if (! $query{"man"}) { if ($query{"keyword"}) { $keyword = $query{"keyword"}; $k = &html_quote($keyword); @@ -71,29 +71,21 @@ EOF exit; } -if ($query{"local"}) { - $file = $query{"local"}; - if (! ($file =~ /^\//)) { - $file = $query{"pwd"} . '/' . $file; - } - open(F, "$MAN -l $file 2> /dev/null |"); +$man = $query{"man"}; +if ($man =~ s/\((\w+)\)$//) { + $section = $1; + $man_section = "$man($1)"; +} elsif ($query{"section"}) { + $section = $query{"section"}; + $man_section = "$man($section)"; } else { - $man = $query{"man"}; - if ($man =~ s/\((\w+)\)$//) { - $section = $1; - $man_section = "$man($1)"; - } elsif ($query{"section"}) { - $section = $query{"section"}; - $man_section = "$man($section)"; - } else { - $section = ""; - $man_section = "$man"; - } - - $section =~ s:([^-\w\200-\377.,])::g; - $man =~ s:([^-\w\200-\377.,])::g; - open(F, "$MAN $section $man 2> /dev/null |"); + $section = ""; + $man_section = "$man"; } + +$section =~ s:([^-\w\200-\377.,])::g; +$man =~ s:([^-\w\200-\377.,])::g; +open(F, "$MAN $section $man 2> /dev/null |"); $ok = 0; undef $header; $blank = -1; @@ -184,11 +176,6 @@ if ($prev) { close(F); if (! $ok) { if ($query{'quit'}) { - if ($query{'local'}) { - print STDERR "File $file not found.\n"; - } else { - print STDERR "No manual entry for $man_section.\n"; - } print STDERR "No manual entry for $man_section.\n"; print <<EOF; w3m-control: EXIT @@ -203,11 +190,7 @@ Content-Type: text/html <body> <pre> EOF - if ($query{'local'}) { - print "File <B>$file</B> not found.\n"; - } else { - print "No manual entry for <B>$man_section</B>.\n"; - } + print "No manual entry for <B>$man_section</B>.\n"; } print <<EOF; </pre> |