-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmisc.py
More file actions
49 lines (38 loc) · 1.14 KB
/
misc.py
File metadata and controls
49 lines (38 loc) · 1.14 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
from enum import Enum
class SpeakerQuestion:
affiliation = "Company / Institute"
homepage = "Homepage"
twitter = "Twitter handle"
bluesky = "Social (Bluesky)"
linkedin = "LinkedIn"
mastodon = "Social (Mastodon)"
gitx = "Github/Gitlab"
class SubmissionQuestion:
tweet = "Abstract as a tweet"
delivery = "My presentation can be delivered"
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
"""
liffey_a = "Liffey A"
liffey_b = "Liffey B"
liffey_hall_1 = "Liffey Hall 1"
liffey_hall_2 = "Liffey Hall 2"
wicklow_hall_1 = "Wicklow Hall 1"
wicklow_hall_2 = "Wicklow Hall 2"
wicklow_hall_2a = "Wicklow Hall 2A"
wicklow_hall_2b = "Wicklow Hall 2B"
the_auditorium = "The Auditorium"
liffey_meeting_room_2 = "Liffey Meeting Room 2"
forum = "Forum"
class EventType(Enum):
SESSION = "session"
BREAK = "break"