#!/usr/pkg/bin/bash

##  season.data - by Chris F.A. Johnson for the
##  Canadian Inquisition pub quiz league

## This file is edited at the beginning of each season
##
## This file is sourced to set variables with information on the 
## current season
##
## Each variable name must be followed immediately by =
## which must be followed immediately by the value of that
## variable. If the value contains a space, it must be quoted.

## prefix/directory used to designate last season's files
LASTSEASON=S2004

## prefix/directory for this season
SEASON=S2004

## name of this season
seasonname="Spring 2004"

## number of games in the regular season
seasongames=10

## Abbreviation for team setting the questions
inquisitors=aot

## Dates should be entered in SI format:
##	"2001-01-15" 

## Date of first game
week1="2004-05--3" 

## weeks with no game (one to a line, all enclosed in one pair of quotes)
## skipped="2003-10-06
## 2003-10-13"
skipped="2004-05-24"

## date of the finals
finals=2004-07-19

## location of finals
finalsplace=imperial

## Number of teams
teamnum=14

## DO NOT EDIT BELOW THIS LINE
htmldir=~torquiz/html/$SEASON
seasondir=$htmldir

export LASTSEASON SEASON seasonname seasongames inquisitors
export week1 skipped finals finalsplace teamnum htmldir seasondir
