-
Notifications
You must be signed in to change notification settings - Fork 18
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
Draft: add additional flag for do_not_stream / recording optout enum #130
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -173,7 +173,7 @@ | |||||
<xs:complexType name="recording"> | ||||||
<xs:all> | ||||||
<xs:element type="xs:string" name="license"/> | ||||||
<xs:element type="xs:boolean" name="optout"/> | ||||||
<xs:element type="optoutEnum" name="optout"/> | ||||||
<xs:element type="httpURI" name="url" minOccurs="0"/> | ||||||
<xs:element type="httpURI" name="link" minOccurs="0"/> | ||||||
</xs:all> | ||||||
|
@@ -242,4 +242,17 @@ | |||||
</xs:simpleContent> | ||||||
</xs:complexType> | ||||||
|
||||||
<xs:simpleType name="optoutEnum"> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My understanding of recording and streaming is that both are independent from each other. As a user I would expect to see these flags in the schedule being presented as separate icon or similar. Is that possible with the enum or should it be split up? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For the XML schedule variant: I think we should try to combine both... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the reasoning for combining both? |
||||||
<xs:restriction base="xs:string"> | ||||||
<!-- Recording optout status 'false' is the normal case: We enable the live stream and create a recording, which we publish without and feedback from the speaker --> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Readability/understanding: |
||||||
<xs:enumeration value="false"/> | ||||||
<!-- Recording optout status 'true' means: The speaker does not want a recording of any kind. We will remove all personnel, and maybe even switch off all cameras --> | ||||||
<xs:enumeration value="true"/> | ||||||
<!-- Recording optout status 'maybe': We are allowed to create a recording / enable the live stream; but the speaker can decide afterwards if we can publish it --> | ||||||
<xs:enumeration value="maybe"/> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How about There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
<!-- Recording optout status 'unknown': We don't now if an recording will exist and recommend all on-premise participants to attent the event in persion --> | ||||||
saerdnaer marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
<xs:enumeration value="unknown"/> | ||||||
</xs:restriction> | ||||||
</xs:simpleType> | ||||||
|
||||||
</xs:schema> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should
with a live stream
bewith a recording but not with a live stream
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for the
schedule.json
, I would propose following assignment for a talk without recording + live-stream:The following assignment is a talk without a recording, but with a livestream: