Skip to content

Commit

Permalink
Add speaker info to xml export
Browse files Browse the repository at this point in the history
  • Loading branch information
loomchild committed Dec 1, 2024
1 parent fceaca7 commit 91b31ed
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions content/schedule/pentabarf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ xml.schedule do
xml.track track[:name], {:online_qa=>track[:online_qa]}
end
end
xml.persons do
speakers.each do | speaker |
xml.person({:id=>speaker[:person_id]}) do
xml.name speaker[:name]
xml.slug speaker[:slug]
xml.biography speaker[:abstract]
xml.extended_biography speaker[:description]
end
end
end
days.each_with_index do | day, index |
start_time = Time.iso8601("#{day[:conference_day]}T#{conf[:day_change]}")
end_time = start_time + (((23 * 60) + 59) * 60)
Expand Down

0 comments on commit 91b31ed

Please sign in to comment.