Skip to content

Commit

Permalink
Merge pull request #81 from xfxf/master-origin
Browse files Browse the repository at this point in the history
Carl's LCA2020 changes he made on Ruan's laptop
  • Loading branch information
CarlFK authored Jan 13, 2020
2 parents 1dde4ce + 48aecf7 commit 73a6eb7
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions dj/scripts/addeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -1184,18 +1184,40 @@ def symposion_chrisjrn(self, schedule, show):
)
not_video_kinds = (
'break',
'morning tea',
'afternoon tea',
'Break',
'other',
'lunch',
'dinner',
'penguin dinner',
'Professional Delegates Networking Sessions (PDNS)',
'nothing',
'room changeover',
'off-site',
'free time',
)

# 'name': 'room changeover',

# Remove types of itmes that aren't for video
# schedule = [s for s in schedule if s['kind'] in video_types ]

# remove empty slots
# bad_keys = (80, 82, 91, 100, 102, 103)
# schedule = [s for s in schedule if s['conf_key'] not in bad_keys ]
schedule = [s for s in schedule if s['name'] not in [
'room changeover',
'room changover',
'unscheduled',
'Discussion',
'TBA',
'Lightning Talks',
'Peter Grehan: Bhyve and Containerization',

]]

# 108 = call-for-nominations-for-2020-linux-australia-council

bad_keys = (201, 235, 143, 234, 205, 108 )
schedule = [s for s in schedule if s['conf_key'] not in bad_keys ]
# remove enteries that don't have authors
# schedule = [s for s in schedule if "authors" in s]

Expand Down

0 comments on commit 73a6eb7

Please sign in to comment.