#!/bin/csh -f
# hhlwiki_local
# -----------------------------------------------------------------------------
# C shell script to access local copy of the HHL Wiki in specified browser
# -----------------------------------------------------------------------------
# Revision History:
#   $Log$
# -----------------------------------------------------------------------------

set browser = "open"
set topic = ""
if ($#argv > 0) then
    if ("$1" == "ff" || "$1" == "chr" || "$1" == "chrome" || "$1" == "safari" ) then
        set browser = $1:q
        shift
    else
        set topic = "$*:q"
        shift
    endif
endif

if ("$topic" == "") then
    echo $browser ~/fred/HHL/wiki/HHLWEB/index.html
         $browser ~/fred/HHL/wiki/HHLWEB/index.html
else 
    set topic = `echo $topic | tr ' ' '+'`
    echo $browser ~/fred/HHL/wiki/HHLWEB/$topic
         $browser ~/fred/HHL/wiki/HHLWEB/$topic
endif