-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmisc.py
More file actions
56 lines (45 loc) · 1.3 KB
/
Copy pathmisc.py
File metadata and controls
56 lines (45 loc) · 1.3 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from enum import Enum
class SpeakerQuestion:
affiliation = "Company/Organization/Educational Institution"
homepage = "Social (Homepage)"
twitter = "Social (X/Twitter)"
bluesky = "Social (Bluesky)"
linkedin = "Social (LinkedIn)"
mastodon = "Social (Mastodon)"
gitx = "Social (GitHub/GitLab)"
class SubmissionQuestion:
outline = "Outline"
tweet = "Abstract as a short post (150 character max)"
delivery = "My presentation can be delivered in-person"
level = "Expected audience expertise"
class SubmissionState(Enum):
accepted = "accepted"
confirmed = "confirmed"
withdrawn = "withdrawn"
rejected = "rejected"
canceled = "canceled"
submitted = "submitted"
class Room(Enum):
"""
Rooms at the conference venue, this can change year to year
"""
s1 = "S1"
s2 = "S2"
s4 = "S4"
s3a = "S3A"
s3b = "S3B"
s4a = "S4A"
s4b = "S4B"
glass_room = "F0 (Glass Room)"
s4_1_2_3 = "S4 (1, 2, 3)"
s4_4 = "S4 (4)"
s4_5 = "S4 (5)"
fishbowl = "F2 (Fishbowl Room)"
room_2_017_2_018 = "Room 2.017/2.018"
poster_hall_a = "Poster Hall A"
poster_hall_b = "Poster Hall B"
poster_hall_c = "Poster Hall C"
exhibit_hall = "Exhibit Hall"
class EventType(Enum):
SESSION = "session"
BREAK = "break"