-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfconfig.py
41 lines (30 loc) · 865 Bytes
/
confconfig.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# CONFCONFIG.PY
# Author: Saugata Ghose (ghose at illinois dot edu)
# Last Updated: September 24, 2023
#
# settings to be customized for each conference
# for use with gensched.py
from collections import OrderedDict
workshopDates = OrderedDict([
('Saturday' , 'October 28'),
('Sunday' , 'October 29')
]);
workshopDaysAbbr = 'Sat/Sun';
workshopSchedulePage = 'program/workshops.php';
conferenceDates = OrderedDict([
('Monday' , 'October 30'),
('Tuesday' , 'October 31'),
('Wednesday' , 'November 1')
]);
conferenceSchedulePage = 'program/';
timeZone = 'EDT';
# in minutes
paperLength = 16;
mapPaths = {
# 'Grand AB' : 'test.png',
# path used for all other locations
'-default-' : 'attend/'
};
printLocations = False;
printJSInline = False;
printIndent = 2;