Author: ygrego Date: 2015-02-23 16:55:48 +0000 (Mon, 23 Feb 2015) New Revision: 865 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/865 Log: New properties added to "Channel" class : onid(original netword ID), tsid(transport stream ID) and sid(service ID). These elements can be useful to validate a dvb-t channel. Modified: oipf/js/impl/model/Channel.js Modified: oipf/js/impl/model/Channel.js =================================================================== --- oipf/js/impl/model/Channel.js 2015-02-23 16:08:33 UTC (rev 864) +++ oipf/js/impl/model/Channel.js 2015-02-23 16:55:48 UTC (rev 865) @@ -59,6 +59,31 @@ */ tunerID: null, + /* + * Description: + * DVB or ISDB original network ID. + * + * Visibility Type: readonly Integer + */ + onid: null, + + /* + * Description: + * DVB or ISDB transport stream ID. + * + * Visibility Type: readonly Integer + */ + tsid: null, + + /* + * Description: + * DVB or ISDB service ID. + * + * Visibility Type: readonly Integer + */ + sid: null, + + init: function (name, channelType, channelId) { this.name = name; this.channelType = CHANNEL_CONSTANT[channelType];
participants (1)
-
ygregoï¼ users.nuiton.org