# # -*- coding: utf-8 -*- # -------------------------------------------------------------------------------- # # NEEDS TO BE CHANGED FOR EVERY INSTALLATION !!! # # -------------------------------------------------------------------------------- # server name as seen from outside including the protocol ending without slash, e.g. http://www.bgbm.org host = r'http://localhost' # webserver path to the root directory of the biocase provider software (biocase/www) starting with a slash. webroot = r'/biocase' # -------------------------------------------------------------------------------- # # NO NEEDS TO BE CHANGED # # -------------------------------------------------------------------------------- # the full absolute URL to the local pywrapper scripts PyWrapperURL = host + webroot + '/pywrapper.cgi' PySPICEURL = host + webroot + '/pyspice.cgi' # the name of the PSF file providersetupfile = 'provider_setup_file.xml' # encodings internalencoding = 'utf-8' outputencoding = 'utf-8'