home *** CD-ROM | disk | FTP | other *** search
- #
- # ALPHABrowser the World Wide Web browser for character terminals
- # on UNIX systems.
- #
- # Copyright (C) JSB Computer Systems Ltd., 1996.
- #
- # University of Kansas copyright
- #
- # This product includes computer software created and made
- # available by The University of Kansas.
- #
- # THIS SOFTWARE IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO
- # REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
- # EXAMPLE, BUT NOT LIMITATION, COPYRIGHT HOLDERS MAKE NO
- # REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY
- # PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION
- # WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR
- # OTHER RIGHTS. COPYRIGHT HOLDERS WILL BEAR NO LIABILITY FOR ANY USE
- # OF THIS SOFTWARE OR DOCUMENTATION.
- # --------------------------------------------------------------------
-
- #
- # Default configuration file
- #
-
- ## STARTFILE is the default URL if none is specified on the command line
- STARTFILE:file:///usr/jsbwww/browser/Welcome.html
-
- ## Printer definitions
- ## any number of printers may be defined by using multiple
- ## printer definition sets. Printers may be any program
- ## that could be useful to your users, they do not necessarily
- ## have to print.
- ##
- ## the definition of a printer is of the form
- ## PRINTER:<printer name>:<printer command>:<printer option>:<lines/page>
- ##
- ## <printer name> is the name that the user will see
- ## <printer command> is the command line arguments for printing a file.
- ## %s will be replaced with the file being printed.
- ## If a second %s is given the second %s will be replaced by a
- ## suggested filename that is prettier than the tempfile
- ## name given in the first %s. This does not remove the first
- ## %s from the command line in any manner. If you need to
- ## use only the second %s file name in your printer command,
- ## then I suggest creating a script which will first copy the
- ## first %s file name to the second %s file name, and then
- ## executing your print command with the second %s file name.
- ## <printer option> specifies whether the printer should be disabled for
- ## users without printing options. The options are
- ## TRUE or FALSE;
- ## TRUE means the printer will always be ENABLED
- ## regardless of printer or anonymous settings
- ## FALSE means the printer will be DISABLED when
- ## the -noprint option is on, or for anonymous
- ## users which are not allowed to print
- ##
- ## <lines/page> is an optional parameter for indicating the number of
- ## lines per page for the printer. Defaults to 66. Used
- ## for computing the approximate number of pages and
- ## generating a statusline query of whether to proceed if
- ## the document is longer than 4 printer pages. Uses the
- ## current screen length for the computation when the
- ## built in "print to screen" option is selected.
- ##
- ## You must put the whole definition on one line.
- ##
- ## If you must use a colon, precede it with a backslash!
- ##
- ## examples
- ##PRINTER:Computer Center printer:lpr -Pccprt %s:FALSE
- ##PRINTER:Office printer:lpr -POffprt %s:TRUE
- ##
- ## check out the lpansi program in utils/ for printing on vt100
- ## attached printers.
- ##PRINTER:Use vt100 print sequence to print from your local terminal:lpansi %s:TRUE
- ## don't use the following printer on anonymous accounts since
- ## allowing shell input is very dangerous
- ##PRINTER:Specify your own print command:echo -n "Enter a print command\: "; read word; sh -c "$word %s":FALSE
- PRINTER:System Default:lp %s:FALSE
-
- ## Downloader definitions
- ## any number of downloaders may be defined by using multiple
- ## downloader definition sets. Downloaders may be any program
- ## that could be useful to your users, they do not necessarily
- ## have to be a download protocol program. The most common use
- ## of a downloader is to use Ckermit or some other transfer
- ## program so that the user may easily transfer files back to
- ## their local machine over a serial link.
- ##
- ## the definition of a downloader is of the form
- ## DOWNLOADER:<downloadername>:<downloader command>:<downloader option>
- ##
- ## <downloader name> is the name that the user will see
- ## <downloader command> is the command line arguments for printing a file
- ## the %s will be replaced with the file being printed
- ## If a second %s is given the second %s will be replaced
- ## by a suggested filename that is nicer than the tempfile
- ## name given in the first %s. This does not replace the
- ## first %s in the command line. If your command needs
- ## the suggest file name on the command line only, then
- ## I suggest creating a script that will first copy the
- ## first %s file name to the second %s file name, and then
- ## execute the downloading command using the second %s file
- ## name (e.g., 'sz' needs such a script interposed).
- ## <downloader option> specifies whether the downloader should be disabled for
- ## anonymous users. The options are
- ## TRUE or FALSE;
- ## TRUE means the downloader will always be ENABLED
- ## regardless of the anonymous settings
- ## FALSE means the downloader will be DISABLED when
- ## the user is anonymous.
- ##
- ## You must put the whole definition on one line.
- ##
- ## If you must use a colon, precede it with a backslash!
- ##
- ## examples
- ##DOWNLOADER:Use Kermit to download to the local terminal:kermit -i -s %s %s:TRUE
- ##DOWNLOADER:Use Zmodem to download to the local terminal:sz %s:TRUE
-
- # Proxy variables
- #
- # The ALPHABrowser supports the use of proxy servers that can
- # act as firewall gateways and caching servers.
- # Each protocol used by ALPHABrowser can be mapped
- # separately using PROTOCOL_proxy environment variables.
- # If you have not set them externally, you can set them at run time via
- # this configuration file or from the options menu.
- # These settings will not override external settings.
- #
- #http_proxy:http://some.server.dom:port/
- #ftp_proxy:http://some.server.dom:port/
- #gopher_proxy:http://some.server.dom:port/
- #news_proxy:http://some.server.dom:port/
- #wais_proxy:http://some.server.dom:port/
- #no_proxy:host.domain.dom
-