# -*- perl -*- package info2html::config; #----------------------------------------------------------------- # info2html.conf #----------------------------------------------------------------- # PURPOSE # configuration settings for the 'info2html' script. # # AUTHOR # Karl Guggisberg # # HISTORY # 15.10.93 V 1.0b # 16.10.93 V 1.0c multple info files possible # 28.6.94 V 1.0d some minor changes # 8.4.95 V 1.1 some changements #---------------------------------------------------------------- use strict; #use vars qw(@ISA @EXPORT); # #@ISA = qw(Exporter); #@EXPORT = qw(@INFODIR $DOC_URL); #-- get location of info files from environment our @INFODIR = split(/:/,$ENV{'INFOPATH'}); #-- URL for documentation of info2html our $DOC_URL = 'http://info2html.sourceforge.net/'; 1;