Your message dated Thu, 9 Sep 1999 09:54:32 +0000 (GMT) with message-id <[EMAIL PROTECTED]> and subject line [Closing Bug report] has caused the attached bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I'm talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Ian Jackson (administrator, Debian bugs database) Received: with rfc822 via encapsulated-mail; Fri, 03 May 1996 02:44:18 GMT >From muffin.pronet.com!cas Thu May 2 19:43:19 1996 Return-Path: <[EMAIL PROTECTED]> Received: from pixar.com by mongo.pixar.com with smtp (Smail3.1.28.1 #15) id m0uFApy-0005yRC; Thu, 2 May 96 19:43 PDT Received: from muffin.pronet.com (taz.net.au) by pixar.com with SMTP id AA06469 (5.67b/IDA-1.5 for [EMAIL PROTECTED]); Thu, 2 May 1996 19:43:10 -0700 Received: by muffin.pronet.com id <[EMAIL PROTECTED]> (Debian /\oo/\ Smail3.1.29.1 #29.37); Fri, 3 May 96 12:41 EST Date: Fri, 3 May 1996 12:41:37 +1000 (EST) From: Craig Sanders <[EMAIL PROTECTED]> X-Sender: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: David Engel <[EMAIL PROTECTED]> Subject: tkman doesn't use /var/catman Message-Id: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Length: 1346 X-No-Junk-Mail: Do not send me junk mail under any circumstances. X-No-Junk-Mail: Do not add me to any mailing lists without my express request. Package: tkman Version: 1.7.5-1 tkman doesn't use /var/catman, and hence doesn't conform to Debian's file system standard. this results in 2 main problems: 1. It reformats each man page every time you view it, instead of using the cached version under /var/catman/ 2. If you enable saving of compressed man pages in Preferences, it tries to save it to /usr/man/cat?/.... this, of course, gets a "permission denied" message. location of catman pages doesn't seem to be a configurable option, so I guess they're hard-coded in to the binary. tkman is still usable (in fact, it's great!) but it makes browsing significantly less immediate. It should be more tightly integrated with man and mandb. BTW, here's a script to automatically generate old style whatis files for ALL directories in the manpath. TkMan uses whatis files rather than the mandb style files. ---cut here---makeallwhatis---cut here--- #!/bin/sh # makeallwhatis # # 1996-05-03 Craig Sanders <[EMAIL PROTECTED]> # # this script is militantly public domain. # # arguments: # -c Create mandb indexes _before_ creating whatis files, # passing all command line arguments "as is" to mandb if [ "$1" = "-c" ] ; then mandb $@ fi for i in `manpath | sed -e 's/:/ /g'`; do whatis -M $i -w "*" | sort >$i/whatis ; done ---cut here---makeallwhatis---cut here---