#----------------------------------------------------------------- # 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 # 1998.05.05 1.2 removed unused configuration; new URL for info2html # Jon Howell (jonh@cs.dartmouth.edu) #---------------------------------------------------------------- #-- this URLs specifie several icons. You may copy this icons on your #-- site and change the URLs if you don't want to access the icons #-- on the given server. #-- URL for an icon for cross references $CR_URL = ''; #-- URL specifying an icon for an 'up' link $UP_URL = ""; #-- URL specifying an icon for a 'next' link $NEXT_URL = ""; #-- URL specifying an icon for a 'prev' link $PREV_URL = ""; #-- URL specifying an icon for a link to the catalog page $CATALOG_URL = ""; #-- location of info files. @INFODIR = ( '/usr/share/info', '/usr/local/share/info', '/usr/info', '/usr/local/info', split(/:/, $ENV{'INFODIR'}), split(/:/, $ENV{'INFOPATH'}) ); #-- URL for documentation of info2html $DOC_URL = "http://www.cs.dartmouth.edu/~jonh/info2html/";