2020-02-23 Fred Gleason <fredg@paravelsystems.com>

* Implemented superfeed in 'rdfeed.xml'.
This commit is contained in:
Fred Gleason
2020-02-23 17:24:48 -05:00
parent a2f571f759
commit 4f6c0eb2c9
30 changed files with 345 additions and 145 deletions

View File

@@ -52,7 +52,6 @@ EXTRA_DIST = audio_cards.txt\
extended_panels.txt\
feed_perms.txt\
feeds.txt\
feeds_key_names.txt\
gpio_events.txt\
gpis.txt\
gpos.txt\
@@ -100,6 +99,7 @@ EXTRA_DIST = audio_cards.txt\
stack_lines.txt\
stack_sched_codes.txt\
stations.txt\
superfeed_maps.txt\
switcher_nodes.txt\
system.txt\
triggers.txt\

View File

@@ -1,10 +0,0 @@
FEED_KEY_NAMES Table Layout for Rivendell
The FEED_KEY_NAMES table the mappings of actual RSS feeds with super
feeds.
FIELD NAME TYPE REMARKS
---------------------------------------------------------------
ID int(10) unsigned Primary key, auto increment
KEY_NAME varchar(8)
MEMBER_KEY_NAME varchar(8)

View File

@@ -0,0 +1,12 @@
SUPERFEED_MAPS Table Layout for Rivendell
The SUPERFEED_MAPS table contains the mappings of actual RSS feeds with super
feeds.
FIELD NAME TYPE REMARKS
------------------------------------------------------------------
ID int(10) unsigned Primary key, auto increment
FEED_ID int(10) unsigned From FEEDS.ID
MEMBER_FEED_ID int(10) unsigned From FEEDS.ID
KEY_NAME varchar(8) From FEEDS.KEY_NAME
MEMBER_KEY_NAME varchar(8) From FEEDS.KEY_NAME