-
Notifications
You must be signed in to change notification settings - Fork 7
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
Colibo feed type #226
Open
turegjorup
wants to merge
11
commits into
develop
Choose a base branch
from
feature/2533_colibo_feed_type
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Colibo feed type #226
Changes from 2 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
8bd989e
2533: Refactored namespacing for feed types and models
turegjorup aed4bfc
2533: Add Colibo Feed
turegjorup c59f5bd
3208: Fixed migration
tuj b6c052b
3208: Cleaned up implementation
tuj e05ab3f
3208: Changed to only show allowed recipients in slide creation flow
tuj 9148f42
3208: Fixed coding standards issues
tuj 2be4536
3208: Fixed coding standards issues
tuj 1e56d2f
Merge branch 'develop' into feature/2533_colibo_feed_type
tuj 7c2e546
3208: Removed refactorings from feature
tuj 95e1a11
Merge branch 'feature/2533_colibo_feed_type' of github.com:os2display…
tuj 8c380bf
3208: Removed todos
tuj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
File renamed without changes.
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,33 @@ | ||
# Feed Overview | ||
|
||
"Feeds" in OS2display are external data sources that can provide up-to-data to slides. The idea is that if you can set | ||
up slide based on a feed and publish it. The Screen Client will then fetch new data from the feed whenever the Slide is | ||
shown on screen. | ||
|
||
The simplest example is a classic RSS news feed. You can set up a slide based on the RSS slide template, configure the | ||
RSS source URL, and whenever the slide is on screen it will show the latest entries from the RSS feed. | ||
|
||
This means that administrators can set up slides and playlists that stays up to date automatically. | ||
|
||
## Architecture | ||
|
||
The "Feed" architecture is designed to enable both generic and custom feed types. To enable this all feed based screen | ||
templates are designed to support a given "feed output model". These are normalized data sets from a given feed type. | ||
|
||
Each feed implementation defines which output model it supports. Thereby multiple feed implementations can support the | ||
same output model. This is done to enable decoupling of the screen templates from the feed implementation. | ||
|
||
For example: | ||
|
||
* If you have a news source that is not a RSS feed you can implement a "FeedSource" that fetches data from your source | ||
then normalizes the data and outputs it as the RSS output model. When setting up RSS slides this feed source can then | ||
be selected as the source for the slide. | ||
* OS2display has calendar templates that can show bookings or meetings. To show data from your specific calendar or | ||
booking system you can implement a "FeedSource" that fetches booking data from your source and normalizes it to match | ||
the calendar output model. | ||
|
||
@todo | ||
|
||
Slide -> Feed -> FeedSource | ||
Auth | ||
Caching |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Todo what?