├── .bowerrc ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── LICENSE ├── README.md ├── README_RU.md ├── bower.json ├── config.xml ├── css ├── img │ ├── buttons.png │ └── key_i.png ├── input.css ├── keyboard.css ├── legend.css ├── log.css └── voicelink.css ├── demo └── demoApp │ ├── README.md │ ├── config.xml │ ├── css │ ├── img │ │ ├── buttons.png │ │ └── key_i.png │ ├── input.css │ ├── keyboard.css │ ├── legend.css │ └── style.css │ ├── icon │ ├── lg_icon.png │ ├── sb_demo_115x95.png │ ├── sb_demo_85x70.png │ └── sb_demo_95x78.png │ ├── img │ ├── bg.jpg │ └── logo.png │ ├── index.html │ ├── js │ ├── app.js │ ├── legendTriggers.js │ ├── lib │ │ └── smartbox.js │ ├── scenes │ │ ├── input.js │ │ ├── navigation.js │ │ └── videos.js │ └── smartbox.js │ ├── philips.php │ ├── videos.js │ └── widget.info ├── dist ├── smartbox.css ├── smartbox.js └── smartbox.min.js ├── docs ├── en_input.md ├── en_keyboard.md ├── en_log.md ├── en_nav.md ├── en_nav_alg.md ├── en_nav_extended.md ├── en_platform.md ├── en_player.md ├── en_voice.md ├── img │ ├── legend.jpg │ ├── mag_11.png │ └── mag_20.png ├── nav_slides │ ├── slide1.png │ ├── slide2.png │ ├── slide3.png │ ├── slide4.png │ ├── slide5.png │ ├── slide6.png │ └── slide7.png ├── ru_input.md ├── ru_keyboard.md ├── ru_legend.md ├── ru_log.md ├── ru_mag.md ├── ru_nav.md ├── ru_nav_alg.md ├── ru_nav_extended.md ├── ru_platform.md ├── ru_player.md └── ru_voice.md ├── dune_plugin_sm_demo ├── dune_plugin.xml ├── icon.png └── main.php ├── examples ├── bootstrap.min.css ├── keyboard │ └── index.html ├── legend │ └── index.html ├── navigation │ ├── complex │ │ └── index.html │ ├── hello_world │ │ └── index.html │ ├── phantom │ │ └── index.html │ └── popup │ │ └── index.html └── player │ ├── index.html │ ├── player.css │ └── player.js ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── index.html ├── package.json ├── philips.php ├── src ├── libs │ ├── event_emitter.js │ ├── jquery-1.10.2.min.js │ ├── json2.js │ └── lodash.compat.min.js ├── platforms │ ├── _browser │ │ ├── player.browser.js │ │ ├── sb.platform.browser.js │ │ └── voicelink.browser.js │ ├── dune │ │ ├── player.dune.js │ │ └── sb.platform.dune.js │ ├── lg │ │ ├── player.lg.js │ │ └── sb.platform.lg.js │ ├── mag │ │ ├── player.mag.js │ │ └── sb.platform.mag.js │ ├── philips │ │ ├── player.philips.js │ │ └── sb.platform.philips.js │ └── samsung │ │ ├── localstorage.js │ │ ├── player.samsung.js │ │ ├── sb.platform.samsung.js │ │ └── voicelink.samsung.js ├── plugins │ ├── input.js │ ├── keyboard.js │ ├── legend.js │ ├── log.js │ ├── nav.js │ ├── player.js │ └── voicelink.js ├── sb.js └── sb.platform.js └── test ├── external.css ├── external.js ├── lib ├── jasmine-html.js ├── jasmine.css └── jasmine.js ├── platform.test.js ├── player.config.example.js ├── player.config.js ├── player.test.js ├── run_test.js └── voicelink.test.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/libs" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/README.md -------------------------------------------------------------------------------- /README_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/README_RU.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/bower.json -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/config.xml -------------------------------------------------------------------------------- /css/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/css/img/buttons.png -------------------------------------------------------------------------------- /css/img/key_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/css/img/key_i.png -------------------------------------------------------------------------------- /css/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/css/input.css -------------------------------------------------------------------------------- /css/keyboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/css/keyboard.css -------------------------------------------------------------------------------- /css/legend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/css/legend.css -------------------------------------------------------------------------------- /css/log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/css/log.css -------------------------------------------------------------------------------- /css/voicelink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/css/voicelink.css -------------------------------------------------------------------------------- /demo/demoApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/README.md -------------------------------------------------------------------------------- /demo/demoApp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/config.xml -------------------------------------------------------------------------------- /demo/demoApp/css/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/css/img/buttons.png -------------------------------------------------------------------------------- /demo/demoApp/css/img/key_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/css/img/key_i.png -------------------------------------------------------------------------------- /demo/demoApp/css/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/css/input.css -------------------------------------------------------------------------------- /demo/demoApp/css/keyboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/css/keyboard.css -------------------------------------------------------------------------------- /demo/demoApp/css/legend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/css/legend.css -------------------------------------------------------------------------------- /demo/demoApp/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/css/style.css -------------------------------------------------------------------------------- /demo/demoApp/icon/lg_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/icon/lg_icon.png -------------------------------------------------------------------------------- /demo/demoApp/icon/sb_demo_115x95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/icon/sb_demo_115x95.png -------------------------------------------------------------------------------- /demo/demoApp/icon/sb_demo_85x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/icon/sb_demo_85x70.png -------------------------------------------------------------------------------- /demo/demoApp/icon/sb_demo_95x78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/icon/sb_demo_95x78.png -------------------------------------------------------------------------------- /demo/demoApp/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/img/bg.jpg -------------------------------------------------------------------------------- /demo/demoApp/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/img/logo.png -------------------------------------------------------------------------------- /demo/demoApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/index.html -------------------------------------------------------------------------------- /demo/demoApp/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/js/app.js -------------------------------------------------------------------------------- /demo/demoApp/js/legendTriggers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/js/legendTriggers.js -------------------------------------------------------------------------------- /demo/demoApp/js/lib/smartbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/js/lib/smartbox.js -------------------------------------------------------------------------------- /demo/demoApp/js/scenes/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/js/scenes/input.js -------------------------------------------------------------------------------- /demo/demoApp/js/scenes/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/js/scenes/navigation.js -------------------------------------------------------------------------------- /demo/demoApp/js/scenes/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/js/scenes/videos.js -------------------------------------------------------------------------------- /demo/demoApp/js/smartbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/js/smartbox.js -------------------------------------------------------------------------------- /demo/demoApp/philips.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/philips.php -------------------------------------------------------------------------------- /demo/demoApp/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/demo/demoApp/videos.js -------------------------------------------------------------------------------- /demo/demoApp/widget.info: -------------------------------------------------------------------------------- 1 | Use Alpha Blending = Yes 2 | Screen Resolution = 1280x720 3 | -------------------------------------------------------------------------------- /dist/smartbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/dist/smartbox.css -------------------------------------------------------------------------------- /dist/smartbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/dist/smartbox.js -------------------------------------------------------------------------------- /dist/smartbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/dist/smartbox.min.js -------------------------------------------------------------------------------- /docs/en_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/en_input.md -------------------------------------------------------------------------------- /docs/en_keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/en_keyboard.md -------------------------------------------------------------------------------- /docs/en_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/en_log.md -------------------------------------------------------------------------------- /docs/en_nav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/en_nav.md -------------------------------------------------------------------------------- /docs/en_nav_alg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/en_nav_alg.md -------------------------------------------------------------------------------- /docs/en_nav_extended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/en_nav_extended.md -------------------------------------------------------------------------------- /docs/en_platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/en_platform.md -------------------------------------------------------------------------------- /docs/en_player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/en_player.md -------------------------------------------------------------------------------- /docs/en_voice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/en_voice.md -------------------------------------------------------------------------------- /docs/img/legend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/img/legend.jpg -------------------------------------------------------------------------------- /docs/img/mag_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/img/mag_11.png -------------------------------------------------------------------------------- /docs/img/mag_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/img/mag_20.png -------------------------------------------------------------------------------- /docs/nav_slides/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/nav_slides/slide1.png -------------------------------------------------------------------------------- /docs/nav_slides/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/nav_slides/slide2.png -------------------------------------------------------------------------------- /docs/nav_slides/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/nav_slides/slide3.png -------------------------------------------------------------------------------- /docs/nav_slides/slide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/nav_slides/slide4.png -------------------------------------------------------------------------------- /docs/nav_slides/slide5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/nav_slides/slide5.png -------------------------------------------------------------------------------- /docs/nav_slides/slide6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/nav_slides/slide6.png -------------------------------------------------------------------------------- /docs/nav_slides/slide7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/nav_slides/slide7.png -------------------------------------------------------------------------------- /docs/ru_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_input.md -------------------------------------------------------------------------------- /docs/ru_keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_keyboard.md -------------------------------------------------------------------------------- /docs/ru_legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_legend.md -------------------------------------------------------------------------------- /docs/ru_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_log.md -------------------------------------------------------------------------------- /docs/ru_mag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_mag.md -------------------------------------------------------------------------------- /docs/ru_nav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_nav.md -------------------------------------------------------------------------------- /docs/ru_nav_alg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_nav_alg.md -------------------------------------------------------------------------------- /docs/ru_nav_extended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_nav_extended.md -------------------------------------------------------------------------------- /docs/ru_platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_platform.md -------------------------------------------------------------------------------- /docs/ru_player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_player.md -------------------------------------------------------------------------------- /docs/ru_voice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/docs/ru_voice.md -------------------------------------------------------------------------------- /dune_plugin_sm_demo/dune_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/dune_plugin_sm_demo/dune_plugin.xml -------------------------------------------------------------------------------- /dune_plugin_sm_demo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immosmart/smartbox/HEAD/dune_plugin_sm_demo/icon.png -------------------------------------------------------------------------------- /dune_plugin_sm_demo/main.php: -------------------------------------------------------------------------------- 1 |