3 # General settings for the scripts in this directory. 
    4 # Override the settings in `experiment_settings.sh`. 
    8 # # -- BEGIN -- boilerplate settings and library loading ------------------------- 
    9 # SCRIPTNAME="$(basename "$0")" 
   10 # SCRIPTDIR="$(dirname "$0")" 
   12 # declare LibraryToLoad 
   13 # for LibraryToLoad in 'settings.sh' 'experiment_settings.sh' 'utilities.sh' ; do 
   15 #   source "${SCRIPTDIR%/}/${LibraryToLoad}" || exit $? 
   19 # # -- END -- boilerplate settings and library loading --------------------------- 
   22 declare DefaultExperimentName=
'ICARUS' 
   24 # name for a log directory (scripts may set it where they want) 
   27 # the GIT branch or commit to check out before generating the documentation. 
   28 declare DefaultBranch=
'master' 
   30 # the subdirectory under the GIT repository where documentation generation might be found 
   31 declare RepoDocSubdir=
'doc' 
   33 # where the content is published 
   34 declare PublishBaseDir=
'/web/sites/i/icarus-exp.fnal.gov/htdocs/at_work/software/doc' 
   36 # directory of Doxygen generation metadata, relative to Doxygen output directory 
   37 declare MetadataFileRelPath=
'meta/doxygen' 
   39 # name of the index file for package software versions (must match the hard-coded name from the web site) 
   40 declare VersionListFile=
'versionlist.html' 
   42 # name of the current version of the software 
   43 declare LatestLinkName=
'latest' 
   45 # GitHub group name for fetching code 
   46 declare GitHubExperimentGroup=
'SBNSoftware'