-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update fast-xml dep * Update lock * Start adding pretalx work * Factor out commonly used function * Reimplement pretalx parser for JSON data * Implement minimal pretalx API client * Refactor pretalx backend * Require an access token and URL for pretalx. * Rewrite some imports * Fix yarn.lock * Add tests for pretalx * force ipv4 * Remove stray newline * Use qaEnabled * Licence headers * Pull the list of talks and iterate on those instead. * Update pentabarf to look at online_qa * Add tests for online_qa * Add support for pulling in penta format schemas into the pretalx backend. * Update for code usage * Update short term refresh function to be optional. * Update code with new FOSDEM pretalx extensions * Add extension enum * Add tests * Replace example. * More tidying * Drop unused comment.
- Loading branch information
Showing
24 changed files
with
1,465 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<schedule> | ||
<conference> | ||
<title>Testcon01</title> | ||
<subtitle/> | ||
</conference> | ||
<tracks> | ||
<track online_qa="true">TrackWithQA</track> | ||
<track online_qa="false">TrackWithoutQA</track> | ||
</tracks> | ||
<day index="1" date="2023-02-04"> | ||
<room name="A.01 (Someroom)"> | ||
<event id="E001"> | ||
<start>09:00</start> | ||
<duration>00:15</duration> | ||
<room>A.01 (Someroom)</room> | ||
<slug>testcon_opening_remarks</slug> | ||
<title>Testcon01: Opening Remarks</title> | ||
<subtitle/> | ||
<track>TrackWithQA</track> | ||
<type>devroom</type> | ||
<language/> | ||
<abstract> | ||
<p>Opening remarks</p> | ||
</abstract> | ||
<description></description> | ||
<persons> | ||
<person id="9012">John Teststone</person> | ||
<person id="90367">Evå 完牲 Exampleson</person> <!-- seemed wise to test some Unicode --> | ||
</persons> | ||
<attachments> | ||
</attachments> | ||
<links> | ||
<link href="https://example.org">Submit feedback</link> | ||
</links> | ||
</event> | ||
<event id="E002"> | ||
<start>09:15</start> | ||
<duration>00:30</duration> | ||
<room>A.01 (Someroom)</room> | ||
<slug>testcon_opening_remarks</slug> | ||
<title>Testcon01: Opening Remarks</title> | ||
<subtitle/> | ||
<track>TrackWithoutQA</track> | ||
<type>devroom</type> | ||
<language/> | ||
<abstract> | ||
<p>Opening remarks</p> | ||
</abstract> | ||
<description></description> | ||
<persons> | ||
<person id="9012">John Teststone</person> | ||
<person id="90367">Evå 完牲 Exampleson</person> <!-- seemed wise to test some Unicode --> | ||
</persons> | ||
<attachments> | ||
</attachments> | ||
<links> | ||
<link href="https://example.org">Submit feedback</link> | ||
</links> | ||
</event> | ||
<event id="E003"> | ||
<start>09:30</start> | ||
<duration>00:30</duration> | ||
<room>A.01 (Someroom)</room> | ||
<slug>testcon_opening_remarks</slug> | ||
<title>Testcon01: Opening Remarks</title> | ||
<subtitle/> | ||
<track>UnspecifiedTrack</track> | ||
<type>devroom</type> | ||
<language/> | ||
<abstract> | ||
<p>Opening remarks</p> | ||
</abstract> | ||
<description></description> | ||
<persons> | ||
<person id="9012">John Teststone</person> | ||
<person id="90367">Evå 完牲 Exampleson</person> <!-- seemed wise to test some Unicode --> | ||
</persons> | ||
<attachments> | ||
</attachments> | ||
<links> | ||
<link href="https://example.org">Submit feedback</link> | ||
</links> | ||
</event> | ||
</room> | ||
<room name="AQ.5 (QA Room)"> | ||
<event id="E004" > | ||
<start>09:45</start> | ||
<duration>00:30</duration> | ||
<room>AQ.5 (QA Room)</room> | ||
<slug>testcon_opening_remarks</slug> | ||
<title>Testcon01: Opening Remarks</title> | ||
<subtitle/> | ||
<track>UnspecifiedTrack</track> | ||
<type>devroom</type> | ||
<language/> | ||
<abstract> | ||
<p>Opening remarks</p> | ||
</abstract> | ||
<description></description> | ||
<persons> | ||
<person id="9012">John Teststone</person> | ||
<person id="90367">Evå 完牲 Exampleson</person> <!-- seemed wise to test some Unicode --> | ||
</persons> | ||
<attachments> | ||
</attachments> | ||
<links> | ||
<link href="https://example.org">Submit feedback</link> | ||
</links> | ||
</event> | ||
</room> | ||
</day> | ||
</schedule> |
Oops, something went wrong.