# Config File for webgrades - kurtm.net demo version with images
# Written for version 1.3.
# See kurt.net/webgrades/ for help

# Hash marks (#) are treated as comments
# White space is not significant outside of quotes.
# All fields must be in the following form:
# NAME = "value"

# The title for the webpage. Shows up on the title bar of the browser
#  Default: "WebGrades"
TITLE 		= "WebGrades demo [images; no security]"

# The large text on the top of the page.
#  Default: "Welcome to WebGrades"
HEADER 		= "Welcome to the WebGrades demo...";

# Do you want pretty images (about 7K) and css on the page?
#  "1" = Yes, I do
#  "0" = No, text only please
#  Default: "1"
SHOW_IMAGES 	= "1";

# Do you want verbsoe debugging output on the html pages?
#  "1" = Yes. I like revealing sensitive information
#  "0" = No. I like to be safe.
#  Default: "0"
#  Bote: Turning on verbose output should be used for debugging only!
VERBOSE 	= "0";

# Do you want to require SSL security?
#  "1" = Yes, I do
#  "0" = No, I want to expose student's private information
#        over the network.
#  Default: "1"
SECURE_ONLY 	= "0";

# What is the url of the script?
#  If you require SSL, this must start out with HTTPS.
#  (and should use the server name "inst.eecs.berkeley.edu")
#  Otherwise, use HTTP
#  Be sure to include the full (absolute) url.
#  Default: "http://inst.eecs.berkeley.edu/~cs152/webgrades/"
SCRIPT_URL 	= "http://www.kurtm.net/webgrades/demo-images/"

# What directory should the script use as its UNIX location?
#  This can be relative. "." will always work.
#  Default = "."
SCRIPT_DIR 	= ".";

# Where is the master grading directory?
#  This will always be /home/ff/<class_name>/grading on the eecs machines
#  Use the absolute path
#  Default: "/home/ff/cs152/grading"
GRADING_DIR	= "/home/apache/public_html/webgrades/grading"

# Where is the glookup executable?
#  Make sure you use the one with the x86 architecture
#  (cuz inst.eecs is an x86 machine)
#  Use the absolute path
#  Will almost always be /home/ff/<class_name>/bin/arch/i86pc/glookup
#  Default: "/home/ff/cs152/bin/arch/i86pc/glookup"
GLOOKUP_EXE	= "/home/apache/public_html/webgrades/bin/glookup"

