Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rooms sponsors #66

Merged
merged 4 commits into from
Mar 10, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions server/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -488,22 +488,22 @@ function avnoc() {
function room($room, $year = '', $month = '', $day = '', $hour = '', $minute = '') {

$room_lookup_table = array(
"ballroom-a" => "BallroomA",
"ballroom-b" => "BallroomB",
"ballroom-c" => "BallroomC",
"ballroom-de" => "BallroomDE",
"ballroom-f" => "BallroomF",
"ballroom-g" => "BallroomG",
"ballroom-h" => "BallroomH",
"room-101" => "Room101",
"room-103" => "Room103",
"room-104" => "Room104",
"room-105" => "Room105",
"room-106" => "Room106",
"room-107" => "Room107",
"room-209" => "Room209",
"room-211" => "Room211",
"room-212" => "Room212",
"ballroom-a" => "BallroomA",
"ballroom-b" => "BallroomB",
"ballroom-c" => "BallroomC",
"ballroom-de" => "BallroomDE",
"ballroom-f" => "BallroomF",
"ballroom-g" => "BallroomG",
"ballroom-h" => "BallroomH",
"room-101" => "Room101",
"room-103" => "Room103",
"room-104" => "Room104",
"room-105" => "Room105",
"room-106" => "Room106",
"room-107" => "Room107",
"room-209" => "Room209",
"room-211" => "Room211",
"room-212" => "Room212",
);

?>
Expand Down
46 changes: 30 additions & 16 deletions server/room.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@
#$starttime = mktime(0, 0, 0, 3, 5, 2020) / 60;
#$starttime = mktime(0, 0, 0, 3, 9, 2023) / 60;


# after "spring forward"
#$starttime = mktime(23, 0, 0, 7, 27, 2022) / 60;
$starttime = mktime(23, 0, 0, 3, 8, 2023) / 60;
#$starttime = mktime(23, 0, 0, 3, 8, 2023) / 60;
$starttime = mktime(0, 0, 0, 3, 14, 2024) / 60;


$sponsors_for_room = array();
$sponsor_class = "Room";
Expand Down Expand Up @@ -186,7 +189,7 @@
"netknights",
"perforce",
"redhat",
"site24x7",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for fixing this!

"site247",
"suse",
);

Expand Down Expand Up @@ -361,20 +364,31 @@
$times = array();

$shorten_topics = array(
"BoFs" => "BoFs",
"CloudNative" => "CloudNative",
"Developer" => "Developer",
"DevOpsDayLA" => "DevOps Day LA",
"General" => "General",
"MySQL" => "MySQL",
"Observability" => "Observability",
"OpenData" => "Open Data",
"OpenGovernment" => "Open Government",
"OpenMedical" => "Open Medical",
"PosgreSQL" => "PostgreSQL",
"Security" => "Security",
"Sponsored" => "Sponsored",
"SystemsandInfrastructure" => "Systems and Infrastructure",
"CareerDay" => "Career Day",
"CloudNative" => "Cloud Native",
"DataonKubernetes" => "Data on Kubernetes",
"Developer" => "Developer",
"DevOpsDayLA" => "DevOpsDay LA",
"Embedded" => "Embedded",
"FOSSHOME" => "FOSS@HOME",
"General" => "General",
"KernelandLowLevelSystems" => "Kernel and Low Level Systems",
"Keynote" => "Keynote",
"KubernetesCommunityDay" => "Kubernetes Community Day",
"MySQL" => "MySQL",
"NextGeneration" => "Next Generation",
"NixCon" => "NixCon",
"Observability" => "Observability",
"OpenGovernment" => "Open Government",
"OpenSourceAIandAppliedScience" => "Open Source AI and Applied Science",
"PostgreSQL" => "PostgreSQL",
"ReproducibleandImmutableSoftware" => "Reproducible and Immutable Software",
"Security" => "Security",
"Sponsored" => "Sponsored",
"SystemsandInfrastructure" => "Systems and Infrastructure",
"Ubucon" => "Ubucon",
"UpSCALE" => "UpSCALE",
"Workshops" => "Workshops"
);

foreach ($xml->node AS $node) {
Expand Down
Loading