"Fossies" - the Fresh Open Source Software Archive

Member "info2html-2.0/info2html.conf" (17 Aug 2006, 3016 Bytes) of package /linux/www/old/info2html-2.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Generic config files source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 # -*-Perl-*-
    2 #-----------------------------------------------------------------
    3 #                           info2html.conf
    4 #-----------------------------------------------------------------
    5 # PURPOSE
    6 #   configuration settings for the 'info2html' script.
    7 #
    8 # AUTHOR
    9 #   Karl Guggisberg  <guggis@iam.unibe.ch>
   10 #
   11 # HISTORY
   12 #   15.10.93 V 1.0b   
   13 #   16.10.93 V 1.0c  multple info files possible
   14 #   28.6.94  V 1.0d  some minor changes
   15 # 1998.05.05   1.2   removed unused configuration; new URL for info2html
   16 #                   Jon Howell (jonh@cs.dartmouth.edu)
   17 # 2006-08-17   2.0   several new config variables added
   18 #                   Sean M. Burke (sburke@cpan.org)
   19 #----------------------------------------------------------------
   20 
   21 # Some of the following bits of code use some Unicode symbols. If that
   22 # bothers you, you can change them all to just an asterisk; or use the
   23 # commented-out code that inlines some graphics that your web server may
   24 # or may not already have in its /icons directory; or use other graphics
   25 # from whatever URLs you like.
   26 
   27 #-- URL for an icon for cross references
   28 #$CR_URL        = '';
   29 $CR_URL        = '&#8658;';
   30 
   31 #-- Leading decoration for menu items
   32 #$MENU_DOT = "* ";
   33 $MENU_DOT = "&#183; ";
   34 
   35 #-- URL specifying an icon for an 'up' link
   36 #$UP_URL        = '<img border=1 width=20 height=22 src="/icons/up.gif" alt="up">';
   37 $UP_URL        = '<span class="icon">&#8593;</span>';
   38 
   39 #-- URL specifying an icon for a 'next' link
   40 #$NEXT_URL      = '<img border=1 width=20 height=22 src="/icons/right.gif" alt="next">';
   41 $NEXT_URL      = '<span class="icon">&#8594;</span>';
   42 
   43 #-- URL specifying an icon for a 'prev' link
   44 #$PREV_URL      = '<img border=1 width=20 height=22 src="/icons/left.gif" alt="previous">';
   45 $PREV_URL      = '<span class="icon">&#8592;</span>';
   46 
   47 #-- URL specifying an icon for a link to the catalog page
   48 #$CATALOG_URL   = '<img src="/icons/ball.red.gif" title="catalog" alt="catalog" border=1 width=20 height=22>';
   49 $CATALOG_URL   = '<span class="icon">&#8662;</span>';
   50 
   51 
   52 #-- Location of info files.  Customize as necessary!
   53 # Note that we (currently) don't use quite the same path-resolution
   54 # logic as the standalone 'info' program, so you can't (yet) just
   55 # exactly copy its infopath settings into here.
   56 
   57 @INFODIR = (
   58         '/usr/share/info/',
   59         '/usr/share/info/emacs-21/',
   60 
   61         '/usr/local/GNU/info',
   62         '/usr/local/GNU/emacs18.58/info',
   63         '/usr/local/info',
   64         '/opt/FSFgzip/info',
   65         '/opt/FSFgmake/info',
   66         '/opt/GCC2721/info',
   67         '/usr/local/lib/bash-doc-2.01/lib/readline/doc/'
   68 );
   69 
   70 #-- URL for documentation of info2html
   71 $DOC_URL = "http://info2html.sourceforge.net/";
   72 
   73 #-- code to exclude from indexing
   74 $BOTS_STAY_AWAY = '<meta name="ROBOTS" content="NOINDEX, NOFOLLOW" >';
   75 
   76 #-- code put in every output document's 'head' section
   77 $HTML_HEAD_STUFF =  qq!
   78  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >
   79  $BOTS_STAY_AWAY
   80  <link rel="stylesheet" type="text/css" title="main" href="/info2html.css" >
   81  <meta name="generator" content="info2html v$VERSION" >
   82 !;
   83 
   84 #End