Warning, /network/kio-extras/info/kde-info2html.conf is written in an unsupported language. File is not indexed.
0001 # -*- perl -*- 0002 package info2html::config; 0003 #----------------------------------------------------------------- 0004 # info2html.conf 0005 #----------------------------------------------------------------- 0006 # PURPOSE 0007 # configuration settings for the 'info2html' script. 0008 # 0009 # AUTHOR 0010 # Karl Guggisberg <guggis@iam.unibe.ch> 0011 # 0012 # HISTORY 0013 # 15.10.93 V 1.0b 0014 # 16.10.93 V 1.0c multple info files possible 0015 # 28.6.94 V 1.0d some minor changes 0016 # 8.4.95 V 1.1 some changements 0017 #---------------------------------------------------------------- 0018 0019 use strict; 0020 #use vars qw(@ISA @EXPORT); 0021 # 0022 #@ISA = qw(Exporter); 0023 #@EXPORT = qw(@INFODIR $DOC_URL); 0024 0025 0026 #-- location of info files. 0027 our @INFODIR = ( 0028 "/usr/share/info", 0029 "/usr/info", 0030 "/usr/lib/info", 0031 # "/usr/lib/teTeX/info", 0032 "/usr/local/info", 0033 "/usr/local/lib/info", 0034 "/usr/X11R6/info", 0035 "/usr/X11R6/lib/info", 0036 "/usr/X11R6/lib/xemacs/info" 0037 ); 0038 0039 0040 #-- URL for documentation of info2html 0041 our $DOC_URL = 'http://info2html.sourceforge.net/'; 0042 0043 1;