# -*-Perl-*- #----------------------------------------------------------------- # 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) # 2006-08-17 2.0 several new config variables added # Sean M. Burke (sburke@cpan.org) # 2015-12-27 V 2.1 Removed trailing slashes from INFO directories. # +A.M.Danischewski (adam _ my lastname@not gamil.com #---------------------------------------------------------------- # Some of the following bits of code use some Unicode symbols. If that # bothers you, you can change them all to just an asterisk; or use the # commented-out code that inlines some graphics that your web server may # or may not already have in its /icons directory; or use other graphics # from whatever URLs you like. #-- URL for an icon for cross references $CR_URL = ''; #$CR_URL = '⇒'; #-- Leading decoration for menu items #$MENU_DOT = "* "; $MENU_DOT = "· "; #-- URL specifying an icon for an 'up' link #$UP_URL = 'up'; $UP_URL = ''; #-- URL specifying an icon for a 'next' link #$NEXT_URL = 'next'; $NEXT_URL = ''; #-- URL specifying an icon for a 'prev' link #$PREV_URL = 'previous'; $PREV_URL = ''; #-- URL specifying an icon for a link to the catalog page #$CATALOG_URL = 'catalog'; $CATALOG_URL = ''; #-- Location of info files. Customize as necessary! # Note that we (currently) don't use quite the same path-resolution # logic as the standalone 'info' program, so you can't (yet) just # exactly copy its infopath settings into here. @INFODIR = ( '/usr/share/info', '/usr/share/info/emacs-21', '/usr/local/GNU/info', '/usr/local/GNU/emacs18.58/info', '/usr/local/info', '/opt/FSFgzip/info', '/opt/FSFgmake/info', '/opt/GCC2721/info', '/usr/local/lib/bash-doc-2.01/lib/readline/doc' ); #-- URL for documentation of info2html $DOC_URL = "http://info2html.sourceforge.net/"; #-- code to exclude from indexing $BOTS_STAY_AWAY = ''; #-- code put in every output document's 'head' section $HTML_HEAD_STUFF = qq! $BOTS_STAY_AWAY !; #End