diff options
Diffstat (limited to 'scripts/w3mman')
-rw-r--r-- | scripts/w3mman/CVS/Entries | 8 | ||||
-rw-r--r-- | scripts/w3mman/CVS/Repository | 1 | ||||
-rw-r--r-- | scripts/w3mman/CVS/Root | 1 | ||||
-rw-r--r-- | scripts/w3mman/Makefile.in | 1 | ||||
-rw-r--r-- | scripts/w3mman/w3mman2html.cgi.in | 4 |
5 files changed, 12 insertions, 3 deletions
diff --git a/scripts/w3mman/CVS/Entries b/scripts/w3mman/CVS/Entries new file mode 100644 index 0000000..2cc31ff --- /dev/null +++ b/scripts/w3mman/CVS/Entries @@ -0,0 +1,8 @@ +/.cvsignore/1.3/Mon Sep 22 22:53:53 2003// +/README/1.3/Wed Dec 18 16:48:02 2002// +/hlink.cgi/1.1/Thu Nov 15 00:32:14 2001// +/w3mman.1.in/1.6/Fri Apr 7 15:33:56 2006// +/w3mman.in/1.5/Fri Apr 7 15:33:56 2006// +/Makefile.in/1.5/Tue Jan 4 09:22:28 2011// +/w3mman2html.cgi.in/1.9/Tue Jan 4 09:22:28 2011// +D diff --git a/scripts/w3mman/CVS/Repository b/scripts/w3mman/CVS/Repository new file mode 100644 index 0000000..430e75e --- /dev/null +++ b/scripts/w3mman/CVS/Repository @@ -0,0 +1 @@ +w3m/scripts/w3mman diff --git a/scripts/w3mman/CVS/Root b/scripts/w3mman/CVS/Root new file mode 100644 index 0000000..121fa06 --- /dev/null +++ b/scripts/w3mman/CVS/Root @@ -0,0 +1 @@ +:ext:inu@w3m.cvs.sourceforge.net:/cvsroot/w3m diff --git a/scripts/w3mman/Makefile.in b/scripts/w3mman/Makefile.in index 6c567c7..569e2fc 100644 --- a/scripts/w3mman/Makefile.in +++ b/scripts/w3mman/Makefile.in @@ -24,7 +24,6 @@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ top_srcdir = @top_srcdir@ VPATH = $(top_srcdir):. -DESTDIR = CGIBIN_DIR = $(libexecdir)/$(PACKAGE)/cgi-bin AUXBIN_DIR = $(libexecdir)/$(PACKAGE) diff --git a/scripts/w3mman/w3mman2html.cgi.in b/scripts/w3mman/w3mman2html.cgi.in index 3cb105d..f430307 100644 --- a/scripts/w3mman/w3mman2html.cgi.in +++ b/scripts/w3mman/w3mman2html.cgi.in @@ -76,7 +76,7 @@ if ($query{"local"}) { if (! ($file =~ /^\//)) { $file = $query{"pwd"} . '/' . $file; } - open(F, "$MAN -l $file 2> /dev/null |"); + open(F, "MAN_KEEP_FORMATTING=1 $MAN -l $file 2> /dev/null |"); } else { $man = $query{"man"}; if ($man =~ s/\((\w+)\)$//) { @@ -92,7 +92,7 @@ if ($query{"local"}) { $section =~ s:([^-\w\200-\377.,])::g; $man =~ s:([^-\w\200-\377.,])::g; - open(F, "$MAN $section $man 2> /dev/null |"); + open(F, "MAN_KEEP_FORMATTING=1 $MAN $section $man 2> /dev/null |"); } $ok = 0; undef $header; |