Author: ygrego Date: 2015-01-30 09:03:45 +0000 (Fri, 30 Jan 2015) New Revision: 747 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/747 Log: Adding of a directorie "style" and codManagerObject as property of OipfObjectFactory. Added: oipf/style/ oipf/style/picture/ oipf/style/picture/400px-TV-T&PC.svg.png Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-01-30 08:19:48 UTC (rev 746) +++ oipf/js/impl/OipfObjectFactory.js 2015-01-30 09:03:45 UTC (rev 747) @@ -27,7 +27,7 @@ init: function() { console.log("[INFO] constructor of OipfObjectFactory class called."); this.applicationManagerObject = new ApplicationManagerObject(); - this.channelConfigObject = new channelConfigObject(); + this.channelConfig = new ChannelConfig(); this.searchManagerObject = new SearchManagerObject(); this.remoteManagementObject = new RemoteManagementObject(); }, @@ -41,8 +41,31 @@ */ applicationManagerObject: null, - channelConfigObject: null, + codManagerObject: null, + /*The ChannelConfig class provides the entry point for applications to get information about the list of channels + * available. It can be obtained in two ways: + * -By calling the method getChannelConfig() of the video/broadcast embedded object as defined in + * section 7.13.1.3. + * -By calling the method createChannelConfig() of the object factory API as defined in section 7.1.1. + * The availability of the properties and methods are dependent on the capabilities description as specified in section 9.3. + * The following table provides a list of the capabilities and the associated properties and methods. If the capability is false + * the properties and methods SHALL NOT be available to the application. Properties and methods not listed in the + * following table SHALL be available to all applications as long as the OITF has indicated support for tuner control (i.e. + * <video_broadcast>true</video_broadcast> as defined in section 9.3.1) in their capability. + * ------------------------------------------------------------------------ + * Capability | Properties | Methods + * --------------------------------- --------------- ---------------------- + * Element <extendedAVControl> | onChannelScan | startScan() + * is set to “ true ” as defined in | | stopScan() + * section 9.3.6. | | + * --------------------------------- --------------- ---------------------- + * Element <video_broadcast | |createChannelList() + * type="ID_IPTV_SDS"> is set as | | + * defined in section 9.3.6. | | + */ + channelConfig: null, + /* * Description: Access to the functionality of the application/oipfRemoteManagement embedded object SHALL adhere to the * security requirements as defined in section 10. @@ -55,7 +78,6 @@ */ searchManagerObject: null, - /* * Description: * This method SHALL return true if and only if an object of the specified type is supported by @@ -181,7 +203,7 @@ createChannelConfig: function() { console.log("[INFO] createChannelConfigObject() of OipfObjectFactory class called."); - return this.channelConfigObject; + return this.channelConfig; }, /*! @@ -191,7 +213,7 @@ createCodManagerObject: function() { console.log("[INFO] createCodManagerObject() of OipfObjectFactory class called."); - return this.verifOipfObjectExisting(codManager_dae_mime_type); + return this.codManagerObject; }, /*! Added: oipf/style/picture/400px-TV-T&PC.svg.png =================================================================== (Binary files differ) Property changes on: oipf/style/picture/400px-TV-T&PC.svg.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream
participants (1)
-
ygrego@users.nuiton.org